Version Description
- 30/07/2019 =
- Compatibility issue fixed with PHP 5.4 / 5.6
- Few minor bugfix and improvements
Download this release
Release Info
| Developer | re_enter_rupok |
| Plugin | |
| Version | 3.1.5 |
| Comparing to | |
| See all releases | |
Code changes from version 3.1.4.1 to 3.1.5
- assets/front-end/css/adv-accordion/index.css +9 -43
- assets/front-end/css/adv-accordion/index.min.css +1 -1
- assets/front-end/css/adv-tabs/index.css +25 -87
- assets/front-end/css/adv-tabs/index.min.css +1 -1
- assets/front-end/css/call-to-action/index.css +14 -64
- assets/front-end/css/call-to-action/index.min.css +1 -1
- assets/front-end/css/components/load-more.css +7 -26
- assets/front-end/css/components/load-more.min.css +1 -1
- assets/front-end/css/contact-form-7/index.css +0 -5
- assets/front-end/css/contact-form-7/index.min.css +1 -1
- assets/front-end/css/content-ticker/index.css +5 -28
- assets/front-end/css/content-ticker/index.min.css +1 -1
- assets/front-end/css/creative-btn/index.css +11 -85
- assets/front-end/css/creative-btn/index.min.css +1 -1
- assets/front-end/css/data-table/index.css +18 -84
- assets/front-end/css/data-table/index.min.css +1 -1
- assets/front-end/css/eael.css +9086 -3070
- assets/front-end/css/eael.min.css +0 -1
assets/front-end/css/adv-accordion/index.css
CHANGED
|
@@ -4,8 +4,6 @@
|
|
| 4 |
.eael-adv-accordion {
|
| 5 |
width: auto;
|
| 6 |
height: auto;
|
| 7 |
-
-webkit-transition: all 0.3s ease-in-out;
|
| 8 |
-
-o-transition: all 0.3s ease-in-out;
|
| 9 |
transition: all 0.3s ease-in-out;
|
| 10 |
}
|
| 11 |
|
|
@@ -15,41 +13,22 @@
|
|
| 15 |
font-size: 1rem;
|
| 16 |
font-weight: 600;
|
| 17 |
line-height: 1;
|
| 18 |
-
-webkit-transition: all 0.3s ease-in-out;
|
| 19 |
-
-o-transition: all 0.3s ease-in-out;
|
| 20 |
transition: all 0.3s ease-in-out;
|
| 21 |
-
display: -webkit-box;
|
| 22 |
-
display: -webkit-flex;
|
| 23 |
-
display: -ms-flexbox;
|
| 24 |
display: flex;
|
| 25 |
-
-
|
| 26 |
-
-
|
| 27 |
-
-ms-flex-pack: justify;
|
| 28 |
-
justify-content: space-between;
|
| 29 |
-
-webkit-box-align: center;
|
| 30 |
-
-webkit-align-items: center;
|
| 31 |
-
-ms-flex-align: center;
|
| 32 |
-
align-items: center;
|
| 33 |
cursor: pointer;
|
| 34 |
}
|
| 35 |
|
| 36 |
.eael-adv-accordion .eael-accordion-list .eael-accordion-header .fa-toggle {
|
| 37 |
-
|
| 38 |
-
-ms-transform: rotate(0deg);
|
| 39 |
-
transform: rotate(0deg);
|
| 40 |
z-index: 10;
|
| 41 |
-
-webkit-transition: all 0.3s ease-in-out;
|
| 42 |
-
-o-transition: all 0.3s ease-in-out;
|
| 43 |
transition: all 0.3s ease-in-out;
|
| 44 |
}
|
| 45 |
|
| 46 |
.eael-adv-accordion .eael-accordion-list .eael-accordion-header.active .fa-toggle {
|
| 47 |
-
|
| 48 |
-
-ms-transform: rotate(90deg);
|
| 49 |
-
transform: rotate(90deg);
|
| 50 |
z-index: 10;
|
| 51 |
-
-webkit-transition: all 0.3s ease-in-out;
|
| 52 |
-
-o-transition: all 0.3s ease-in-out;
|
| 53 |
transition: all 0.3s ease-in-out;
|
| 54 |
}
|
| 55 |
|
|
@@ -62,8 +41,7 @@
|
|
| 62 |
display: none;
|
| 63 |
border: 1px solid #eee;
|
| 64 |
padding: 15px;
|
| 65 |
-
|
| 66 |
-
box-sizing: border-box;
|
| 67 |
font-size: 1rem;
|
| 68 |
line-height: 1.7;
|
| 69 |
}
|
|
@@ -78,50 +56,38 @@
|
|
| 78 |
|
| 79 |
@-webkit-keyframes rotate-90 {
|
| 80 |
0% {
|
| 81 |
-
|
| 82 |
-
transform: rotateY(0deg);
|
| 83 |
}
|
| 84 |
100% {
|
| 85 |
-
|
| 86 |
-
transform: rotateY(-180deg);
|
| 87 |
}
|
| 88 |
}
|
| 89 |
|
| 90 |
@keyframes rotate-90 {
|
| 91 |
0% {
|
| 92 |
-
|
| 93 |
-
transform: rotateY(0deg);
|
| 94 |
}
|
| 95 |
100% {
|
| 96 |
-
|
| 97 |
-
transform: rotateY(-180deg);
|
| 98 |
}
|
| 99 |
}
|
| 100 |
@-webkit-keyframes fadeIn {
|
| 101 |
0% {
|
| 102 |
opacity: 1;
|
| 103 |
-
-webkit-transition: all 0.3s ease-in-out;
|
| 104 |
-
-o-transition: all 0.3s ease-in-out;
|
| 105 |
transition: all 0.3s ease-in-out;
|
| 106 |
}
|
| 107 |
100% {
|
| 108 |
opacity: 1;
|
| 109 |
-
-webkit-transition: all 0.3s ease-in-out;
|
| 110 |
-
-o-transition: all 0.3s ease-in-out;
|
| 111 |
transition: all 0.3s ease-in-out;
|
| 112 |
}
|
| 113 |
}
|
| 114 |
@keyframes fadeIn {
|
| 115 |
0% {
|
| 116 |
opacity: 1;
|
| 117 |
-
-webkit-transition: all 0.3s ease-in-out;
|
| 118 |
-
-o-transition: all 0.3s ease-in-out;
|
| 119 |
transition: all 0.3s ease-in-out;
|
| 120 |
}
|
| 121 |
100% {
|
| 122 |
opacity: 1;
|
| 123 |
-
-webkit-transition: all 0.3s ease-in-out;
|
| 124 |
-
-o-transition: all 0.3s ease-in-out;
|
| 125 |
transition: all 0.3s ease-in-out;
|
| 126 |
}
|
| 127 |
}
|
| 4 |
.eael-adv-accordion {
|
| 5 |
width: auto;
|
| 6 |
height: auto;
|
|
|
|
|
|
|
| 7 |
transition: all 0.3s ease-in-out;
|
| 8 |
}
|
| 9 |
|
| 13 |
font-size: 1rem;
|
| 14 |
font-weight: 600;
|
| 15 |
line-height: 1;
|
|
|
|
|
|
|
| 16 |
transition: all 0.3s ease-in-out;
|
|
|
|
|
|
|
|
|
|
| 17 |
display: flex;
|
| 18 |
+
justify-content: space-between;
|
| 19 |
+
align-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
cursor: pointer;
|
| 21 |
}
|
| 22 |
|
| 23 |
.eael-adv-accordion .eael-accordion-list .eael-accordion-header .fa-toggle {
|
| 24 |
+
transform: rotate(0deg);
|
|
|
|
|
|
|
| 25 |
z-index: 10;
|
|
|
|
|
|
|
| 26 |
transition: all 0.3s ease-in-out;
|
| 27 |
}
|
| 28 |
|
| 29 |
.eael-adv-accordion .eael-accordion-list .eael-accordion-header.active .fa-toggle {
|
| 30 |
+
transform: rotate(90deg);
|
|
|
|
|
|
|
| 31 |
z-index: 10;
|
|
|
|
|
|
|
| 32 |
transition: all 0.3s ease-in-out;
|
| 33 |
}
|
| 34 |
|
| 41 |
display: none;
|
| 42 |
border: 1px solid #eee;
|
| 43 |
padding: 15px;
|
| 44 |
+
box-sizing: border-box;
|
|
|
|
| 45 |
font-size: 1rem;
|
| 46 |
line-height: 1.7;
|
| 47 |
}
|
| 56 |
|
| 57 |
@-webkit-keyframes rotate-90 {
|
| 58 |
0% {
|
| 59 |
+
transform: rotateY(0deg);
|
|
|
|
| 60 |
}
|
| 61 |
100% {
|
| 62 |
+
transform: rotateY(-180deg);
|
|
|
|
| 63 |
}
|
| 64 |
}
|
| 65 |
|
| 66 |
@keyframes rotate-90 {
|
| 67 |
0% {
|
| 68 |
+
transform: rotateY(0deg);
|
|
|
|
| 69 |
}
|
| 70 |
100% {
|
| 71 |
+
transform: rotateY(-180deg);
|
|
|
|
| 72 |
}
|
| 73 |
}
|
| 74 |
@-webkit-keyframes fadeIn {
|
| 75 |
0% {
|
| 76 |
opacity: 1;
|
|
|
|
|
|
|
| 77 |
transition: all 0.3s ease-in-out;
|
| 78 |
}
|
| 79 |
100% {
|
| 80 |
opacity: 1;
|
|
|
|
|
|
|
| 81 |
transition: all 0.3s ease-in-out;
|
| 82 |
}
|
| 83 |
}
|
| 84 |
@keyframes fadeIn {
|
| 85 |
0% {
|
| 86 |
opacity: 1;
|
|
|
|
|
|
|
| 87 |
transition: all 0.3s ease-in-out;
|
| 88 |
}
|
| 89 |
100% {
|
| 90 |
opacity: 1;
|
|
|
|
|
|
|
| 91 |
transition: all 0.3s ease-in-out;
|
| 92 |
}
|
| 93 |
}
|
assets/front-end/css/adv-accordion/index.min.css
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
.eael-adv-accordion{width:auto;height:auto
|
| 1 |
+
.eael-adv-accordion{width:auto;height:auto;transition:all .3s ease-in-out}.eael-adv-accordion .eael-accordion-list .eael-accordion-header{padding:15px;border:1px solid rgba(0,0,0,.02);font-size:1rem;font-weight:600;line-height:1;transition:all .3s ease-in-out;display:flex;justify-content:space-between;align-items:center;cursor:pointer}.eael-adv-accordion .eael-accordion-list .eael-accordion-header .fa-toggle{transform:rotate(0);z-index:10;transition:all .3s ease-in-out}.eael-adv-accordion .eael-accordion-list .eael-accordion-header.active .fa-toggle{transform:rotate(90deg);z-index:10;transition:all .3s ease-in-out}.fa-accordion-icon{display:inline-block;margin-right:10px}.eael-adv-accordion .eael-accordion-list .eael-accordion-content{display:none;border:1px solid #eee;padding:15px;box-sizing:border-box;font-size:1rem;line-height:1.7}.eael-adv-accordion .eael-accordion-list .eael-accordion-content p{margin:0}.eael-adv-accordion .eael-accordion-list .eael-accordion-content.active{display:block}@-webkit-keyframes rotate-90{0%{transform:rotateY(0)}100%{transform:rotateY(-180deg)}}@keyframes rotate-90{0%{transform:rotateY(0)}100%{transform:rotateY(-180deg)}}@-webkit-keyframes fadeIn{0%{opacity:1;transition:all .3s ease-in-out}100%{opacity:1;transition:all .3s ease-in-out}}@keyframes fadeIn{0%{opacity:1;transition:all .3s ease-in-out}100%{opacity:1;transition:all .3s ease-in-out}}
|
assets/front-end/css/adv-tabs/index.css
CHANGED
|
@@ -10,42 +10,22 @@
|
|
| 10 |
padding: 0px;
|
| 11 |
margin: 0px;
|
| 12 |
list-style-type: none;
|
| 13 |
-
display: -webkit-box;
|
| 14 |
-
display: -webkit-flex;
|
| 15 |
-
display: -ms-flexbox;
|
| 16 |
display: flex;
|
| 17 |
-
-
|
| 18 |
-
-
|
| 19 |
-
-ms-flex-pack: start;
|
| 20 |
-
justify-content: flex-start;
|
| 21 |
-
-webkit-box-align: center;
|
| 22 |
-
-webkit-align-items: center;
|
| 23 |
-
-ms-flex-align: center;
|
| 24 |
-
align-items: center;
|
| 25 |
z-index: 1;
|
| 26 |
}
|
| 27 |
|
| 28 |
.eael-advance-tabs .eael-tabs-nav > ul li {
|
| 29 |
position: relative;
|
| 30 |
padding: 1em 1.5em;
|
| 31 |
-
|
| 32 |
-
-webkit-flex: 1 1 auto;
|
| 33 |
-
-ms-flex: 1 1 auto;
|
| 34 |
-
flex: 1 1 auto;
|
| 35 |
cursor: pointer;
|
| 36 |
-
display: -webkit-box;
|
| 37 |
-
display: -webkit-flex;
|
| 38 |
-
display: -ms-flexbox;
|
| 39 |
display: flex;
|
| 40 |
-
-
|
| 41 |
-
-
|
| 42 |
-
-ms-flex-pack: center;
|
| 43 |
-
justify-content: center;
|
| 44 |
-
-webkit-box-align: center;
|
| 45 |
-
-webkit-align-items: center;
|
| 46 |
-
-ms-flex-align: center;
|
| 47 |
-
align-items: center;
|
| 48 |
text-align: center;
|
|
|
|
| 49 |
}
|
| 50 |
|
| 51 |
.eael-advance-tabs .eael-tabs-nav > ul li:after {
|
|
@@ -65,6 +45,12 @@
|
|
| 65 |
display: none;
|
| 66 |
}
|
| 67 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 68 |
.eael-advance-tabs.active-caret-on .eael-tabs-nav > ul li.active:after,
|
| 69 |
.eael-advance-tabs.active-caret-on .eael-tabs-nav > ul li.active-default:after {
|
| 70 |
display: none;
|
|
@@ -76,14 +62,8 @@
|
|
| 76 |
}
|
| 77 |
|
| 78 |
.eael-tabs-content {
|
| 79 |
-
display: -webkit-box;
|
| 80 |
-
display: -webkit-flex;
|
| 81 |
-
display: -ms-flexbox;
|
| 82 |
display: flex;
|
| 83 |
-
|
| 84 |
-
-webkit-flex: 1 1 auto;
|
| 85 |
-
-ms-flex: 1 1 auto;
|
| 86 |
-
flex: 1 1 auto;
|
| 87 |
}
|
| 88 |
|
| 89 |
.eael-advance-tabs .eael-tabs-content > div {
|
|
@@ -108,33 +88,20 @@
|
|
| 108 |
}
|
| 109 |
|
| 110 |
.eael-tab-top-icon li {
|
| 111 |
-
display: -webkit-box;
|
| 112 |
-
display: -webkit-flex;
|
| 113 |
-
display: -ms-flexbox;
|
| 114 |
display: flex;
|
| 115 |
-
|
| 116 |
-
-ms-flex-wrap: wrap;
|
| 117 |
-
flex-wrap: wrap;
|
| 118 |
text-align: center;
|
| 119 |
}
|
| 120 |
|
| 121 |
.eael-tab-top-icon li a {
|
| 122 |
-
display: -webkit-box;
|
| 123 |
-
display: -webkit-flex;
|
| 124 |
-
display: -ms-flexbox;
|
| 125 |
display: flex;
|
| 126 |
-
|
| 127 |
-
-ms-flex-wrap: wrap;
|
| 128 |
-
flex-wrap: wrap;
|
| 129 |
text-align: center;
|
| 130 |
}
|
| 131 |
|
| 132 |
.eael-tab-top-icon li .fa,
|
| 133 |
.eael-tab-top-icon li .eael-tab-title {
|
| 134 |
-
|
| 135 |
-
-webkit-flex: 1 1 100%;
|
| 136 |
-
-ms-flex: 1 1 100%;
|
| 137 |
-
flex: 1 1 100%;
|
| 138 |
line-height: 1;
|
| 139 |
}
|
| 140 |
|
|
@@ -144,33 +111,20 @@
|
|
| 144 |
|
| 145 |
/*--- Vertical Tabs ---*/
|
| 146 |
.eael-advance-tabs.eael-tabs-vertical {
|
| 147 |
-
display: -webkit-box;
|
| 148 |
-
display: -webkit-flex;
|
| 149 |
-
display: -ms-flexbox;
|
| 150 |
display: flex;
|
| 151 |
}
|
| 152 |
|
| 153 |
.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav {
|
| 154 |
-
|
| 155 |
-
-webkit-flex: 0 0 auto;
|
| 156 |
-
-ms-flex: 0 0 auto;
|
| 157 |
-
flex: 0 0 auto;
|
| 158 |
}
|
| 159 |
|
| 160 |
.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav > ul {
|
| 161 |
-
-
|
| 162 |
-
-webkit-box-direction: normal;
|
| 163 |
-
-webkit-flex-flow: column wrap;
|
| 164 |
-
-ms-flex-flow: column wrap;
|
| 165 |
-
flex-flow: column wrap;
|
| 166 |
}
|
| 167 |
|
| 168 |
.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav > ul > li {
|
| 169 |
width: 100%;
|
| 170 |
-
-
|
| 171 |
-
-webkit-justify-content: start;
|
| 172 |
-
-ms-flex-pack: start;
|
| 173 |
-
justify-content: start;
|
| 174 |
}
|
| 175 |
|
| 176 |
.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav > ul li::after {
|
|
@@ -186,43 +140,27 @@
|
|
| 186 |
|
| 187 |
@media only screen and (max-width: 767px) {
|
| 188 |
.eael-advance-tabs .eael-tabs-nav > ul {
|
| 189 |
-
|
| 190 |
-
-ms-flex-wrap: wrap;
|
| 191 |
-
flex-wrap: wrap;
|
| 192 |
}
|
| 193 |
|
| 194 |
.eael-advance-tabs .eael-tabs-nav > ul li {
|
| 195 |
-
|
| 196 |
-
-webkit-flex: 1 100%;
|
| 197 |
-
-ms-flex: 1 100%;
|
| 198 |
-
flex: 1 100%;
|
| 199 |
}
|
| 200 |
|
| 201 |
.eael-advance-tabs.eael-tabs-vertical {
|
| 202 |
-
|
| 203 |
-
-ms-flex-wrap: wrap;
|
| 204 |
-
flex-wrap: wrap;
|
| 205 |
}
|
| 206 |
|
| 207 |
.eael-advance-tabs.eael-tabs-vertical div.eael-tabs-nav {
|
| 208 |
-
|
| 209 |
-
-webkit-flex: 1 100%;
|
| 210 |
-
-ms-flex: 1 100%;
|
| 211 |
-
flex: 1 100%;
|
| 212 |
}
|
| 213 |
|
| 214 |
.eael-advance-tabs.eael-tabs-vertical ul {
|
| 215 |
-
|
| 216 |
-
-webkit-flex: 1 100%;
|
| 217 |
-
-ms-flex: 1 100%;
|
| 218 |
-
flex: 1 100%;
|
| 219 |
}
|
| 220 |
|
| 221 |
.eael-advance-tabs.eael-tabs-vertical ul li {
|
| 222 |
-
|
| 223 |
-
-webkit-flex: 1 100%;
|
| 224 |
-
-ms-flex: 1 100%;
|
| 225 |
-
flex: 1 100%;
|
| 226 |
}
|
| 227 |
|
| 228 |
div.eael-advance-tabs.eael-tabs-vertical div.eael-tabs-nav > ul li::after {
|
| 10 |
padding: 0px;
|
| 11 |
margin: 0px;
|
| 12 |
list-style-type: none;
|
|
|
|
|
|
|
|
|
|
| 13 |
display: flex;
|
| 14 |
+
justify-content: flex-start;
|
| 15 |
+
align-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
z-index: 1;
|
| 17 |
}
|
| 18 |
|
| 19 |
.eael-advance-tabs .eael-tabs-nav > ul li {
|
| 20 |
position: relative;
|
| 21 |
padding: 1em 1.5em;
|
| 22 |
+
flex: 1 1 auto;
|
|
|
|
|
|
|
|
|
|
| 23 |
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
| 24 |
display: flex;
|
| 25 |
+
justify-content: center;
|
| 26 |
+
align-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
text-align: center;
|
| 28 |
+
background-color: #f1f1f1;
|
| 29 |
}
|
| 30 |
|
| 31 |
.eael-advance-tabs .eael-tabs-nav > ul li:after {
|
| 45 |
display: none;
|
| 46 |
}
|
| 47 |
|
| 48 |
+
.eael-advance-tabs .eael-tabs-nav > ul li:hover,
|
| 49 |
+
.eael-advance-tabs .eael-tabs-nav > ul li.active,
|
| 50 |
+
.eael-advance-tabs .eael-tabs-nav > ul li.active-default {
|
| 51 |
+
background-color: #444;
|
| 52 |
+
}
|
| 53 |
+
|
| 54 |
.eael-advance-tabs.active-caret-on .eael-tabs-nav > ul li.active:after,
|
| 55 |
.eael-advance-tabs.active-caret-on .eael-tabs-nav > ul li.active-default:after {
|
| 56 |
display: none;
|
| 62 |
}
|
| 63 |
|
| 64 |
.eael-tabs-content {
|
|
|
|
|
|
|
|
|
|
| 65 |
display: flex;
|
| 66 |
+
flex: 1 1 auto;
|
|
|
|
|
|
|
|
|
|
| 67 |
}
|
| 68 |
|
| 69 |
.eael-advance-tabs .eael-tabs-content > div {
|
| 88 |
}
|
| 89 |
|
| 90 |
.eael-tab-top-icon li {
|
|
|
|
|
|
|
|
|
|
| 91 |
display: flex;
|
| 92 |
+
flex-wrap: wrap;
|
|
|
|
|
|
|
| 93 |
text-align: center;
|
| 94 |
}
|
| 95 |
|
| 96 |
.eael-tab-top-icon li a {
|
|
|
|
|
|
|
|
|
|
| 97 |
display: flex;
|
| 98 |
+
flex-wrap: wrap;
|
|
|
|
|
|
|
| 99 |
text-align: center;
|
| 100 |
}
|
| 101 |
|
| 102 |
.eael-tab-top-icon li .fa,
|
| 103 |
.eael-tab-top-icon li .eael-tab-title {
|
| 104 |
+
flex: 1 1 100%;
|
|
|
|
|
|
|
|
|
|
| 105 |
line-height: 1;
|
| 106 |
}
|
| 107 |
|
| 111 |
|
| 112 |
/*--- Vertical Tabs ---*/
|
| 113 |
.eael-advance-tabs.eael-tabs-vertical {
|
|
|
|
|
|
|
|
|
|
| 114 |
display: flex;
|
| 115 |
}
|
| 116 |
|
| 117 |
.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav {
|
| 118 |
+
flex: 0 0 auto;
|
|
|
|
|
|
|
|
|
|
| 119 |
}
|
| 120 |
|
| 121 |
.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav > ul {
|
| 122 |
+
flex-flow: column wrap;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 123 |
}
|
| 124 |
|
| 125 |
.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav > ul > li {
|
| 126 |
width: 100%;
|
| 127 |
+
justify-content: start;
|
|
|
|
|
|
|
|
|
|
| 128 |
}
|
| 129 |
|
| 130 |
.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav > ul li::after {
|
| 140 |
|
| 141 |
@media only screen and (max-width: 767px) {
|
| 142 |
.eael-advance-tabs .eael-tabs-nav > ul {
|
| 143 |
+
flex-wrap: wrap;
|
|
|
|
|
|
|
| 144 |
}
|
| 145 |
|
| 146 |
.eael-advance-tabs .eael-tabs-nav > ul li {
|
| 147 |
+
flex: 1 100%;
|
|
|
|
|
|
|
|
|
|
| 148 |
}
|
| 149 |
|
| 150 |
.eael-advance-tabs.eael-tabs-vertical {
|
| 151 |
+
flex-wrap: wrap;
|
|
|
|
|
|
|
| 152 |
}
|
| 153 |
|
| 154 |
.eael-advance-tabs.eael-tabs-vertical div.eael-tabs-nav {
|
| 155 |
+
flex: 1 100%;
|
|
|
|
|
|
|
|
|
|
| 156 |
}
|
| 157 |
|
| 158 |
.eael-advance-tabs.eael-tabs-vertical ul {
|
| 159 |
+
flex: 1 100%;
|
|
|
|
|
|
|
|
|
|
| 160 |
}
|
| 161 |
|
| 162 |
.eael-advance-tabs.eael-tabs-vertical ul li {
|
| 163 |
+
flex: 1 100%;
|
|
|
|
|
|
|
|
|
|
| 164 |
}
|
| 165 |
|
| 166 |
div.eael-advance-tabs.eael-tabs-vertical div.eael-tabs-nav > ul li::after {
|
assets/front-end/css/adv-tabs/index.min.css
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
.eael-advance-tabs{display:block}.eael-advance-tabs .eael-tabs-nav>ul{position:relative;padding:0;margin:0;list-style-type:none;display
|
| 1 |
+
.eael-advance-tabs{display:block}.eael-advance-tabs .eael-tabs-nav>ul{position:relative;padding:0;margin:0;list-style-type:none;display:flex;justify-content:flex-start;align-items:center;z-index:1}.eael-advance-tabs .eael-tabs-nav>ul li{position:relative;padding:1em 1.5em;flex:1 1 auto;cursor:pointer;display:flex;justify-content:center;align-items:center;text-align:center}.eael-advance-tabs .eael-tabs-nav>ul li:after{content:"";position:absolute;bottom:-10px;left:0;right:0;margin:0 auto;z-index:1;width:0;height:0;border-left:10px solid transparent;border-right:10px solid transparent;border-top:10px solid #444;border-bottom:0;display:none}.eael-advance-tabs.active-caret-on .eael-tabs-nav>ul li.active-default:after,.eael-advance-tabs.active-caret-on .eael-tabs-nav>ul li.active:after{display:none}.eael-advance-tabs .eael-tabs-nav>ul li.active-default:after,.eael-advance-tabs .eael-tabs-nav>ul li.active:after{display:block}.eael-tabs-content{display:flex;flex:1 1 auto}.eael-advance-tabs .eael-tabs-content>div{display:none;opacity:0}.eael-advance-tabs .eael-tabs-content>div.active,.eael-advance-tabs .eael-tabs-content>div.active-default{display:block;width:100%;padding:1em;opacity:1;-webkit-animation:fadeIn linear .3s;animation:fadeIn linear .3s}.eael-tab-inline-icon li a .fa{margin-right:10px;line-height:1}.eael-tab-top-icon li{display:flex;flex-wrap:wrap;text-align:center}.eael-tab-top-icon li a{display:flex;flex-wrap:wrap;text-align:center}.eael-tab-top-icon li .eael-tab-title,.eael-tab-top-icon li .fa{flex:1 1 100%;line-height:1}.eael-tab-top-icon li a .eael-tab-title{margin-top:10px}.eael-advance-tabs.eael-tabs-vertical{display:flex}.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav{flex:0 0 auto}.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav>ul{flex-flow:column wrap}.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav>ul>li{width:100%;justify-content:start}.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav>ul li::after{bottom:auto!important;right:-10px;top:calc(50% - 10px);left:auto!important;border-left:10px solid #444;border-right:0;border-top:10px solid transparent;border-bottom:10px solid transparent}@media only screen and (max-width:767px){.eael-advance-tabs .eael-tabs-nav>ul{flex-wrap:wrap}.eael-advance-tabs .eael-tabs-nav>ul li{flex:1 100%}.eael-advance-tabs.eael-tabs-vertical{flex-wrap:wrap}.eael-advance-tabs.eael-tabs-vertical div.eael-tabs-nav{flex:1 100%}.eael-advance-tabs.eael-tabs-vertical ul{flex:1 100%}.eael-advance-tabs.eael-tabs-vertical ul li{flex:1 100%}div.eael-advance-tabs.eael-tabs-vertical div.eael-tabs-nav>ul li::after{border-left-color:transparent!important;bottom:-20px!important;left:0!important;right:0!important;top:auto!important;border-left:10px solid transparent;border-right:10px solid transparent;border-top-color:#444!important}}
|
assets/front-end/css/call-to-action/index.css
CHANGED
|
@@ -79,70 +79,42 @@
|
|
| 79 |
/*--- Cta Flex ---*/
|
| 80 |
.eael-call-to-action.cta-flex,
|
| 81 |
.eael-call-to-action.cta-icon-flex {
|
| 82 |
-
display: -webkit-box;
|
| 83 |
-
display: -webkit-flex;
|
| 84 |
-
display: -ms-flexbox;
|
| 85 |
display: flex;
|
| 86 |
-
-
|
| 87 |
-
-
|
| 88 |
-
-ms-flex-pack: justify;
|
| 89 |
-
justify-content: space-between;
|
| 90 |
-
-webkit-box-align: start;
|
| 91 |
-
-webkit-align-items: flex-start;
|
| 92 |
-
-ms-flex-align: start;
|
| 93 |
-
align-items: flex-start;
|
| 94 |
}
|
| 95 |
|
| 96 |
/*--- Cta Icon Flex ---*/
|
| 97 |
.eael-call-to-action.cta-icon-flex .icon {
|
| 98 |
-
-
|
| 99 |
-
-webkit-flex-grow: 1;
|
| 100 |
-
-ms-flex-positive: 1;
|
| 101 |
-
flex-grow: 1;
|
| 102 |
font-size: 80px;
|
| 103 |
text-align: left;
|
| 104 |
line-height: 130px;
|
| 105 |
}
|
| 106 |
|
| 107 |
.eael-call-to-action.cta-icon-flex .action {
|
| 108 |
-
-
|
| 109 |
-
-webkit-flex-grow: 1;
|
| 110 |
-
-ms-flex-positive: 1;
|
| 111 |
-
flex-grow: 1;
|
| 112 |
text-align: right;
|
| 113 |
padding-top: 22px;
|
| 114 |
-
|
| 115 |
-
-ms-flex-preferred-size: 22%;
|
| 116 |
-
flex-basis: 22%;
|
| 117 |
}
|
| 118 |
|
| 119 |
.eael-call-to-action.cta-icon-flex .content {
|
| 120 |
-
-
|
| 121 |
-
-webkit-flex-grow: 1;
|
| 122 |
-
-ms-flex-positive: 1;
|
| 123 |
-
flex-grow: 1;
|
| 124 |
padding: 0px 30px;
|
| 125 |
}
|
| 126 |
|
| 127 |
/*--- Cta Flex ---*/
|
| 128 |
.eael-call-to-action.cta-flex .content {
|
| 129 |
padding: 0px 15px;
|
| 130 |
-
-
|
| 131 |
-
-webkit-flex-grow: 1;
|
| 132 |
-
-ms-flex-positive: 1;
|
| 133 |
-
flex-grow: 1;
|
| 134 |
}
|
| 135 |
|
| 136 |
.eael-call-to-action.cta-flex .action {
|
| 137 |
-
-
|
| 138 |
-
-webkit-flex-grow: 1;
|
| 139 |
-
-ms-flex-positive: 1;
|
| 140 |
-
flex-grow: 1;
|
| 141 |
text-align: right;
|
| 142 |
padding-top: 25px;
|
| 143 |
-
|
| 144 |
-
-ms-flex-preferred-size: 23%;
|
| 145 |
-
flex-basis: 23%;
|
| 146 |
}
|
| 147 |
|
| 148 |
/*--- Cta Button ---*/
|
|
@@ -154,10 +126,7 @@
|
|
| 154 |
font-size: 16px;
|
| 155 |
text-decoration: none;
|
| 156 |
color: #4d4d4d;
|
| 157 |
-
-webkit-transition: .5s;
|
| 158 |
-
-o-transition: .5s;
|
| 159 |
transition: .5s;
|
| 160 |
-
-webkit-box-shadow: 0px 0px 3px -1px rgba(0, 0, 0, 0.2);
|
| 161 |
-ms-box-shadow: 0px 0px 3px -1px rgba(0, 0, 0, 0.2);
|
| 162 |
box-shadow: 0px 0px 3px -1px rgba(0, 0, 0, 0.2);
|
| 163 |
margin-right: 10px;
|
|
@@ -178,7 +147,6 @@
|
|
| 178 |
.eael-call-to-action .cta-button:hover {
|
| 179 |
color: #fff;
|
| 180 |
background: #3F51B5;
|
| 181 |
-
-webkit-box-shadow: 0px 1px 12px 1px rgba(0, 0, 0, 0.1);
|
| 182 |
-ms-box-shadow: 0px 1px 12px 1px rgba(0, 0, 0, 0.1);
|
| 183 |
box-shadow: 0px 1px 12px 1px rgba(0, 0, 0, 0.1);
|
| 184 |
}
|
|
@@ -196,15 +164,11 @@
|
|
| 196 |
-webkit-transform: translateY(-100%);
|
| 197 |
-ms-transform: translateY(-100%);
|
| 198 |
z-index: -1;
|
| 199 |
-
-webkit-transition: .5s;
|
| 200 |
-
-o-transition: .5s;
|
| 201 |
transition: .5s;
|
| 202 |
color: #fff;
|
| 203 |
}
|
| 204 |
|
| 205 |
.eael-call-to-action .cta-button.effect-1:hover::after {
|
| 206 |
-
-webkit-transform: translateY(0);
|
| 207 |
-
-ms-transform: translateY(0);
|
| 208 |
transform: translateY(0);
|
| 209 |
}
|
| 210 |
|
|
@@ -218,28 +182,20 @@
|
|
| 218 |
top: 0px;
|
| 219 |
left: 0px;
|
| 220 |
z-index: -1;
|
| 221 |
-
-webkit-transition: .5s;
|
| 222 |
-
-o-transition: .5s;
|
| 223 |
transition: .5s;
|
| 224 |
color: #fff;
|
| 225 |
-
|
| 226 |
-
-ms-transform: translateX(-100%);
|
| 227 |
-
transform: translateX(-100%);
|
| 228 |
}
|
| 229 |
|
| 230 |
.eael-call-to-action .cta-button.effect-2:hover::after {
|
| 231 |
-
|
| 232 |
-
-ms-transform: translateX(0);
|
| 233 |
-
transform: translateX(0);
|
| 234 |
}
|
| 235 |
|
| 236 |
/*--- Media Queries ---*/
|
| 237 |
@media only screen and (max-width: 768px) {
|
| 238 |
.eael-call-to-action.cta-flex,
|
| 239 |
.eael-call-to-action.cta-icon-flex {
|
| 240 |
-
|
| 241 |
-
-ms-flex-wrap: wrap;
|
| 242 |
-
flex-wrap: wrap;
|
| 243 |
}
|
| 244 |
|
| 245 |
.eael-call-to-action .title {
|
|
@@ -249,10 +205,7 @@
|
|
| 249 |
}
|
| 250 |
|
| 251 |
.eael-call-to-action.cta-icon-flex .icon {
|
| 252 |
-
-
|
| 253 |
-
-webkit-flex-grow: 1;
|
| 254 |
-
-ms-flex-positive: 1;
|
| 255 |
-
flex-grow: 1;
|
| 256 |
font-size: 48px;
|
| 257 |
line-height: 90px;
|
| 258 |
text-align: center;
|
|
@@ -260,10 +213,7 @@
|
|
| 260 |
|
| 261 |
.eael-call-to-action.cta-flex .content,
|
| 262 |
.eael-call-to-action.cta-icon-flex .content {
|
| 263 |
-
-
|
| 264 |
-
-webkit-flex-grow: 1;
|
| 265 |
-
-ms-flex-positive: 1;
|
| 266 |
-
flex-grow: 1;
|
| 267 |
text-align: center;
|
| 268 |
padding: 0px;
|
| 269 |
}
|
| 79 |
/*--- Cta Flex ---*/
|
| 80 |
.eael-call-to-action.cta-flex,
|
| 81 |
.eael-call-to-action.cta-icon-flex {
|
|
|
|
|
|
|
|
|
|
| 82 |
display: flex;
|
| 83 |
+
justify-content: space-between;
|
| 84 |
+
align-items: flex-start;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 85 |
}
|
| 86 |
|
| 87 |
/*--- Cta Icon Flex ---*/
|
| 88 |
.eael-call-to-action.cta-icon-flex .icon {
|
| 89 |
+
flex-grow: 1;
|
|
|
|
|
|
|
|
|
|
| 90 |
font-size: 80px;
|
| 91 |
text-align: left;
|
| 92 |
line-height: 130px;
|
| 93 |
}
|
| 94 |
|
| 95 |
.eael-call-to-action.cta-icon-flex .action {
|
| 96 |
+
flex-grow: 1;
|
|
|
|
|
|
|
|
|
|
| 97 |
text-align: right;
|
| 98 |
padding-top: 22px;
|
| 99 |
+
flex-basis: 22%;
|
|
|
|
|
|
|
| 100 |
}
|
| 101 |
|
| 102 |
.eael-call-to-action.cta-icon-flex .content {
|
| 103 |
+
flex-grow: 1;
|
|
|
|
|
|
|
|
|
|
| 104 |
padding: 0px 30px;
|
| 105 |
}
|
| 106 |
|
| 107 |
/*--- Cta Flex ---*/
|
| 108 |
.eael-call-to-action.cta-flex .content {
|
| 109 |
padding: 0px 15px;
|
| 110 |
+
flex-grow: 1;
|
|
|
|
|
|
|
|
|
|
| 111 |
}
|
| 112 |
|
| 113 |
.eael-call-to-action.cta-flex .action {
|
| 114 |
+
flex-grow: 1;
|
|
|
|
|
|
|
|
|
|
| 115 |
text-align: right;
|
| 116 |
padding-top: 25px;
|
| 117 |
+
flex-basis: 23%;
|
|
|
|
|
|
|
| 118 |
}
|
| 119 |
|
| 120 |
/*--- Cta Button ---*/
|
| 126 |
font-size: 16px;
|
| 127 |
text-decoration: none;
|
| 128 |
color: #4d4d4d;
|
|
|
|
|
|
|
| 129 |
transition: .5s;
|
|
|
|
| 130 |
-ms-box-shadow: 0px 0px 3px -1px rgba(0, 0, 0, 0.2);
|
| 131 |
box-shadow: 0px 0px 3px -1px rgba(0, 0, 0, 0.2);
|
| 132 |
margin-right: 10px;
|
| 147 |
.eael-call-to-action .cta-button:hover {
|
| 148 |
color: #fff;
|
| 149 |
background: #3F51B5;
|
|
|
|
| 150 |
-ms-box-shadow: 0px 1px 12px 1px rgba(0, 0, 0, 0.1);
|
| 151 |
box-shadow: 0px 1px 12px 1px rgba(0, 0, 0, 0.1);
|
| 152 |
}
|
| 164 |
-webkit-transform: translateY(-100%);
|
| 165 |
-ms-transform: translateY(-100%);
|
| 166 |
z-index: -1;
|
|
|
|
|
|
|
| 167 |
transition: .5s;
|
| 168 |
color: #fff;
|
| 169 |
}
|
| 170 |
|
| 171 |
.eael-call-to-action .cta-button.effect-1:hover::after {
|
|
|
|
|
|
|
| 172 |
transform: translateY(0);
|
| 173 |
}
|
| 174 |
|
| 182 |
top: 0px;
|
| 183 |
left: 0px;
|
| 184 |
z-index: -1;
|
|
|
|
|
|
|
| 185 |
transition: .5s;
|
| 186 |
color: #fff;
|
| 187 |
+
transform: translateX(-100%);
|
|
|
|
|
|
|
| 188 |
}
|
| 189 |
|
| 190 |
.eael-call-to-action .cta-button.effect-2:hover::after {
|
| 191 |
+
transform: translateX(0);
|
|
|
|
|
|
|
| 192 |
}
|
| 193 |
|
| 194 |
/*--- Media Queries ---*/
|
| 195 |
@media only screen and (max-width: 768px) {
|
| 196 |
.eael-call-to-action.cta-flex,
|
| 197 |
.eael-call-to-action.cta-icon-flex {
|
| 198 |
+
flex-wrap: wrap;
|
|
|
|
|
|
|
| 199 |
}
|
| 200 |
|
| 201 |
.eael-call-to-action .title {
|
| 205 |
}
|
| 206 |
|
| 207 |
.eael-call-to-action.cta-icon-flex .icon {
|
| 208 |
+
flex-grow: 1;
|
|
|
|
|
|
|
|
|
|
| 209 |
font-size: 48px;
|
| 210 |
line-height: 90px;
|
| 211 |
text-align: center;
|
| 213 |
|
| 214 |
.eael-call-to-action.cta-flex .content,
|
| 215 |
.eael-call-to-action.cta-icon-flex .content {
|
| 216 |
+
flex-grow: 1;
|
|
|
|
|
|
|
|
|
|
| 217 |
text-align: center;
|
| 218 |
padding: 0px;
|
| 219 |
}
|
assets/front-end/css/call-to-action/index.min.css
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
.eael-call-to-action{width:100%;height:auto;display:block;padding:30px;font-size:16px;color:#4d4d4d;font-weight:400;line-height:27px;margin:0 auto}.eael-call-to-action p{margin-bottom:10px}.eael-call-to-action .title{font-size:36px;font-weight:600;line-height:36px;margin-bottom:10px;text-transform:capitalize;font-style:normal}.eael-call-to-action.cta-center{text-align:center}.eael-call-to-action.cta-right{text-align:right}.eael-call-to-action.cta-left{text-align:left}.eael-call-to-action.bg-lite{background:#f4f4f4}.eael-call-to-action.bg-img{background-image:url(../img/bg.jpg);background-repeat:no-repeat;background-position:center;background-size:cover;position:relative;z-index:0;color:rgba(255,255,255,.7)}.eael-call-to-action.bg-img .icon{color:#fff}.eael-call-to-action.bg-img:after{content:"";position:absolute;width:100%;height:100%;top:0;left:0;z-index:-1;background:rgba(0,0,0,.8)}.eael-call-to-action.bg-img.bg-fixed{background-attachment:fixed;background-position:center center}.eael-call-to-action.bg-img .title{color:rgba(255,255,255,.9)}.eael-call-to-action.cta-flex,.eael-call-to-action.cta-icon-flex{display
|
| 1 |
+
.eael-call-to-action{width:100%;height:auto;display:block;padding:30px;font-size:16px;color:#4d4d4d;font-weight:400;line-height:27px;margin:0 auto}.eael-call-to-action p{margin-bottom:10px}.eael-call-to-action .title{font-size:36px;font-weight:600;line-height:36px;margin-bottom:10px;text-transform:capitalize;font-style:normal}.eael-call-to-action.cta-center{text-align:center}.eael-call-to-action.cta-right{text-align:right}.eael-call-to-action.cta-left{text-align:left}.eael-call-to-action.bg-lite{background:#f4f4f4}.eael-call-to-action.bg-img{background-image:url(../img/bg.jpg);background-repeat:no-repeat;background-position:center;background-size:cover;position:relative;z-index:0;color:rgba(255,255,255,.7)}.eael-call-to-action.bg-img .icon{color:#fff}.eael-call-to-action.bg-img:after{content:"";position:absolute;width:100%;height:100%;top:0;left:0;z-index:-1;background:rgba(0,0,0,.8)}.eael-call-to-action.bg-img.bg-fixed{background-attachment:fixed;background-position:center center}.eael-call-to-action.bg-img .title{color:rgba(255,255,255,.9)}.eael-call-to-action.cta-flex,.eael-call-to-action.cta-icon-flex{display:flex;justify-content:space-between;align-items:flex-start}.eael-call-to-action.cta-icon-flex .icon{flex-grow:1;font-size:80px;text-align:left;line-height:130px}.eael-call-to-action.cta-icon-flex .action{flex-grow:1;text-align:right;padding-top:22px;flex-basis:22%}.eael-call-to-action.cta-icon-flex .content{flex-grow:1;padding:0 30px}.eael-call-to-action.cta-flex .content{padding:0 15px;flex-grow:1}.eael-call-to-action.cta-flex .action{flex-grow:1;text-align:right;padding-top:25px;flex-basis:23%}.eael-call-to-action .cta-button{position:relative;display:inline-block;padding:12px 30px;background:#f9f9f9;font-size:16px;text-decoration:none;color:#4d4d4d;transition:.5s;-ms-box-shadow:0 0 3px -1px rgba(0,0,0,.2);box-shadow:0 0 3px -1px rgba(0,0,0,.2);margin-right:10px;margin-top:10px;z-index:0;overflow:hidden}.eael-call-to-action .cta-button:last-child{margin-right:0}.eael-call-to-action .cta-button:focus{outline:0}.eael-call-to-action .cta-button:hover{color:#fff;background:#3f51b5;-ms-box-shadow:0 1px 12px 1px rgba(0,0,0,.1);box-shadow:0 1px 12px 1px rgba(0,0,0,.1)}.eael-call-to-action .cta-button.effect-1:after{content:"";position:absolute;width:100%;height:100%;background:#3f51b5;top:0;left:0;transform:translateY(-100%);-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);z-index:-1;transition:.5s;color:#fff}.eael-call-to-action .cta-button.effect-1:hover::after{transform:translateY(0)}.eael-call-to-action .cta-button.effect-2:after{content:"";position:absolute;width:100%;height:100%;background:#3f51b5;top:0;left:0;z-index:-1;transition:.5s;color:#fff;transform:translateX(-100%)}.eael-call-to-action .cta-button.effect-2:hover::after{transform:translateX(0)}@media only screen and (max-width:768px){.eael-call-to-action.cta-flex,.eael-call-to-action.cta-icon-flex{flex-wrap:wrap}.eael-call-to-action .title{font-size:28px;line-height:36px;margin-top:0}.eael-call-to-action.cta-icon-flex .icon{flex-grow:1;font-size:48px;line-height:90px;text-align:center}.eael-call-to-action.cta-flex .content,.eael-call-to-action.cta-icon-flex .content{flex-grow:1;text-align:center;padding:0}.eael-call-to-action.cta-flex .action,.eael-call-to-action.cta-icon-flex .action{text-align:center;padding-top:0}.eael-call-to-action .cta-button{padding:12px 25px}}@media only screen and (max-width:360px){.eael-call-to-action{font-size:14px;line-height:26px}.eael-call-to-action .cta-button{padding:4px 20px;font-size:12px}.eael-call-to-action .title{font-size:20px;line-height:30px}}
|
assets/front-end/css/components/load-more.css
CHANGED
|
@@ -1,43 +1,27 @@
|
|
| 1 |
@-webkit-keyframes "loaderSpin" {
|
| 2 |
0% {
|
| 3 |
-
|
| 4 |
-
transform: rotate(0deg);
|
| 5 |
}
|
| 6 |
100% {
|
| 7 |
-
|
| 8 |
-
transform: rotate(360deg);
|
| 9 |
}
|
| 10 |
}
|
| 11 |
@keyframes "loaderSpin" {
|
| 12 |
0% {
|
| 13 |
-
|
| 14 |
-
transform: rotate(0deg);
|
| 15 |
}
|
| 16 |
100% {
|
| 17 |
-
|
| 18 |
-
transform: rotate(360deg);
|
| 19 |
}
|
| 20 |
}
|
| 21 |
.eael-load-more-button-wrap {
|
| 22 |
-
display: -webkit-box;
|
| 23 |
-
display: -webkit-flex;
|
| 24 |
-
display: -ms-flexbox;
|
| 25 |
display: flex;
|
| 26 |
}
|
| 27 |
|
| 28 |
.eael-load-more-button {
|
| 29 |
-
display: -webkit-box;
|
| 30 |
-
display: -webkit-flex;
|
| 31 |
-
display: -ms-flexbox;
|
| 32 |
display: flex;
|
| 33 |
-
-
|
| 34 |
-
-
|
| 35 |
-
-ms-flex-align: center;
|
| 36 |
-
align-items: center;
|
| 37 |
-
-webkit-box-pack: center;
|
| 38 |
-
-webkit-justify-content: center;
|
| 39 |
-
-ms-flex-pack: center;
|
| 40 |
-
justify-content: center;
|
| 41 |
padding: 1em 2em;
|
| 42 |
border: 0px solid;
|
| 43 |
font-size: 16px;
|
|
@@ -47,8 +31,6 @@
|
|
| 47 |
left: -100%;
|
| 48 |
top: auto;
|
| 49 |
margin-right: 5px;
|
| 50 |
-
-webkit-transition: all .2s;
|
| 51 |
-
-o-transition: all .2s;
|
| 52 |
transition: all .2s;
|
| 53 |
}
|
| 54 |
.eael-load-more-button > span {
|
|
@@ -73,8 +55,7 @@
|
|
| 73 |
border-right: 4px solid rgba(255, 255, 255, 0.2);
|
| 74 |
border-bottom: 4px solid rgba(255, 255, 255, 0.2);
|
| 75 |
border-left: 4px solid #ffffff;
|
| 76 |
-
|
| 77 |
-
transform: translateZ(0);
|
| 78 |
-webkit-animation: loaderSpin 1.1s infinite linear;
|
| 79 |
animation: loaderSpin 1.1s infinite linear;
|
| 80 |
}
|
| 1 |
@-webkit-keyframes "loaderSpin" {
|
| 2 |
0% {
|
| 3 |
+
transform: rotate(0deg);
|
|
|
|
| 4 |
}
|
| 5 |
100% {
|
| 6 |
+
transform: rotate(360deg);
|
|
|
|
| 7 |
}
|
| 8 |
}
|
| 9 |
@keyframes "loaderSpin" {
|
| 10 |
0% {
|
| 11 |
+
transform: rotate(0deg);
|
|
|
|
| 12 |
}
|
| 13 |
100% {
|
| 14 |
+
transform: rotate(360deg);
|
|
|
|
| 15 |
}
|
| 16 |
}
|
| 17 |
.eael-load-more-button-wrap {
|
|
|
|
|
|
|
|
|
|
| 18 |
display: flex;
|
| 19 |
}
|
| 20 |
|
| 21 |
.eael-load-more-button {
|
|
|
|
|
|
|
|
|
|
| 22 |
display: flex;
|
| 23 |
+
align-items: center;
|
| 24 |
+
justify-content: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
padding: 1em 2em;
|
| 26 |
border: 0px solid;
|
| 27 |
font-size: 16px;
|
| 31 |
left: -100%;
|
| 32 |
top: auto;
|
| 33 |
margin-right: 5px;
|
|
|
|
|
|
|
| 34 |
transition: all .2s;
|
| 35 |
}
|
| 36 |
.eael-load-more-button > span {
|
| 55 |
border-right: 4px solid rgba(255, 255, 255, 0.2);
|
| 56 |
border-bottom: 4px solid rgba(255, 255, 255, 0.2);
|
| 57 |
border-left: 4px solid #ffffff;
|
| 58 |
+
transform: translateZ(0);
|
|
|
|
| 59 |
-webkit-animation: loaderSpin 1.1s infinite linear;
|
| 60 |
animation: loaderSpin 1.1s infinite linear;
|
| 61 |
}
|
assets/front-end/css/components/load-more.min.css
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
@-webkit-keyframes loaderSpin{0%{
|
| 1 |
+
@-webkit-keyframes loaderSpin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes loaderSpin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.eael-load-more-button-wrap{display:flex}.eael-load-more-button{display:flex;align-items:center;justify-content:center;padding:1em 2em;border:0 solid;font-size:16px;overflow:hidden}.eael-load-more-button .button__loader{left:-100%;top:auto;margin-right:5px;transition:all .2s}.eael-load-more-button>span{margin-left:-20px}.eael-load-more-button.button--loading>span{margin-left:0}.eael-load-more-button.button--loading .button__loader{left:0}.eael-btn-loader{border-radius:50%;width:20px;height:20px;font-size:10px;position:relative;text-indent:-9999em;border-top:4px solid rgba(255,255,255,.2);border-right:4px solid rgba(255,255,255,.2);border-bottom:4px solid rgba(255,255,255,.2);border-left:4px solid #fff;transform:translateZ(0);-webkit-animation:loaderSpin 1.1s infinite linear;animation:loaderSpin 1.1s infinite linear}.eael-btn-loader:after{border-radius:50%;width:20px;height:20px}
|
assets/front-end/css/contact-form-7/index.css
CHANGED
|
@@ -37,12 +37,7 @@
|
|
| 37 |
.eael-contact-form-7 input[type="tel"],
|
| 38 |
.eael-contact-form-7 input[type="color"],
|
| 39 |
.eael-contact-form-7 .uneditable-input {
|
| 40 |
-
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
| 41 |
-
-webkit-transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
|
| 42 |
-
transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
|
| 43 |
-
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
|
| 44 |
transition: border linear 0.2s, box-shadow linear 0.2s;
|
| 45 |
-
transition: border linear 0.2s, box-shadow linear 0.2s, -webkit-box-shadow linear 0.2s;
|
| 46 |
}
|
| 47 |
|
| 48 |
.eael-contact-form-7 .wpcf7-form::before,
|
| 37 |
.eael-contact-form-7 input[type="tel"],
|
| 38 |
.eael-contact-form-7 input[type="color"],
|
| 39 |
.eael-contact-form-7 .uneditable-input {
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
transition: border linear 0.2s, box-shadow linear 0.2s;
|
|
|
|
| 41 |
}
|
| 42 |
|
| 43 |
.eael-contact-form-7 .wpcf7-form::before,
|
assets/front-end/css/contact-form-7/index.min.css
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
.eael-contact-form-7.eael-contact-form-btn-align-center input.wpcf7-submit,.eael-contact-form.eael-contact-form-align-center{margin-left:auto!important;margin-right:auto!important;display:block;float:none}.eael-contact-form-7.eael-contact-form-btn-align-left input.wpcf7-submit,.eael-contact-form.eael-contact-form-align-left{float:left;width:auto}.eael-contact-form-7.eael-contact-form-btn-align-right input.wpcf7-submit,.eael-contact-form.eael-contact-form-align-right{float:right;width:auto}.eael-contact-form-7 .uneditable-input,.eael-contact-form-7 input[type=color],.eael-contact-form-7 input[type=date],.eael-contact-form-7 input[type=datetime-local],.eael-contact-form-7 input[type=datetime],.eael-contact-form-7 input[type=email],.eael-contact-form-7 input[type=month],.eael-contact-form-7 input[type=number],.eael-contact-form-7 input[type=password],.eael-contact-form-7 input[type=search],.eael-contact-form-7 input[type=tel],.eael-contact-form-7 input[type=text],.eael-contact-form-7 input[type=time],.eael-contact-form-7 input[type=url],.eael-contact-form-7 input[type=week],.eael-contact-form-7 textarea{
|
| 1 |
+
.eael-contact-form-7.eael-contact-form-btn-align-center input.wpcf7-submit,.eael-contact-form.eael-contact-form-align-center{margin-left:auto!important;margin-right:auto!important;display:block;float:none}.eael-contact-form-7.eael-contact-form-btn-align-left input.wpcf7-submit,.eael-contact-form.eael-contact-form-align-left{float:left;width:auto}.eael-contact-form-7.eael-contact-form-btn-align-right input.wpcf7-submit,.eael-contact-form.eael-contact-form-align-right{float:right;width:auto}.eael-contact-form-7 .uneditable-input,.eael-contact-form-7 input[type=color],.eael-contact-form-7 input[type=date],.eael-contact-form-7 input[type=datetime-local],.eael-contact-form-7 input[type=datetime],.eael-contact-form-7 input[type=email],.eael-contact-form-7 input[type=month],.eael-contact-form-7 input[type=number],.eael-contact-form-7 input[type=password],.eael-contact-form-7 input[type=search],.eael-contact-form-7 input[type=tel],.eael-contact-form-7 input[type=text],.eael-contact-form-7 input[type=time],.eael-contact-form-7 input[type=url],.eael-contact-form-7 input[type=week],.eael-contact-form-7 textarea{transition:border linear .2s,box-shadow linear .2s}.eael-contact-form-7 .wpcf7-form::after,.eael-contact-form-7 .wpcf7-form::before{content:" ";clear:both;display:table}.eael-contact-form-7 .wpcf7-form:after{clear:both;content:"";font-size:0;height:0;display:block;visibility:hidden}.eael-contact-form-7 .wpcf7-form .wpcf7-form-control-wrap,.eael-contact-form-7 .wpcf7-form label{display:block}.eael-contact-form-7 .wpcf7-form p{margin-bottom:0}.eael-contact-form-7.labels-hide .wpcf7-form label{display:none}.eael-contact-form-7-title{margin-bottom:10px}.eael-contact-form-7-description{margin-bottom:20px}.eael-contact-form-7-button-full-width .wpcf7-form-control.wpcf7-submit{width:100%}.eael-contact-form-7-wrapper .eael-contact-form-align-center form{margin:0 auto}
|
assets/front-end/css/content-ticker/index.css
CHANGED
|
@@ -1,38 +1,19 @@
|
|
| 1 |
-
/*----------------------------*/
|
| 2 |
-
/* 29. Content Ticker
|
| 3 |
-
/*----------------------------*/
|
| 4 |
.eael-ticker-wrap {
|
| 5 |
overflow: hidden;
|
| 6 |
-
display: -webkit-box;
|
| 7 |
-
display: -webkit-flex;
|
| 8 |
-
display: -ms-flexbox;
|
| 9 |
display: flex;
|
| 10 |
-
-
|
| 11 |
-
-
|
| 12 |
-
-webkit-flex-flow: row nowrap;
|
| 13 |
-
-ms-flex-flow: row nowrap;
|
| 14 |
-
flex-flow: row nowrap;
|
| 15 |
-
-webkit-box-align: center;
|
| 16 |
-
-webkit-align-items: center;
|
| 17 |
-
-ms-flex-align: center;
|
| 18 |
-
align-items: center;
|
| 19 |
width: 100%;
|
| 20 |
}
|
| 21 |
|
| 22 |
.eael-ticker-wrap .ticker-badge {
|
| 23 |
-
|
| 24 |
-
-webkit-flex: 0 0 auto;
|
| 25 |
-
-ms-flex: 0 0 auto;
|
| 26 |
-
flex: 0 0 auto;
|
| 27 |
padding: 8px 12px;
|
| 28 |
}
|
| 29 |
|
| 30 |
.eael-ticker-wrap .eael-ticker {
|
| 31 |
overflow: hidden;
|
| 32 |
-
|
| 33 |
-
-webkit-flex: 1 1 auto;
|
| 34 |
-
-ms-flex: 1 1 auto;
|
| 35 |
-
flex: 1 1 auto;
|
| 36 |
}
|
| 37 |
|
| 38 |
.eael-ticker-wrap .eael-ticker .ticker-content {
|
|
@@ -65,11 +46,7 @@
|
|
| 65 |
|
| 66 |
@media only screen and (max-width: 767px) {
|
| 67 |
.eael-ticker-wrap {
|
| 68 |
-
-
|
| 69 |
-
-webkit-box-direction: normal;
|
| 70 |
-
-webkit-flex-flow: row wrap;
|
| 71 |
-
-ms-flex-flow: row wrap;
|
| 72 |
-
flex-flow: row wrap;
|
| 73 |
}
|
| 74 |
|
| 75 |
.content-ticker-pagination {
|
|
|
|
|
|
|
|
|
|
| 1 |
.eael-ticker-wrap {
|
| 2 |
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
| 3 |
display: flex;
|
| 4 |
+
flex-flow: row nowrap;
|
| 5 |
+
align-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
width: 100%;
|
| 7 |
}
|
| 8 |
|
| 9 |
.eael-ticker-wrap .ticker-badge {
|
| 10 |
+
flex: 0 0 auto;
|
|
|
|
|
|
|
|
|
|
| 11 |
padding: 8px 12px;
|
| 12 |
}
|
| 13 |
|
| 14 |
.eael-ticker-wrap .eael-ticker {
|
| 15 |
overflow: hidden;
|
| 16 |
+
flex: 1 1 auto;
|
|
|
|
|
|
|
|
|
|
| 17 |
}
|
| 18 |
|
| 19 |
.eael-ticker-wrap .eael-ticker .ticker-content {
|
| 46 |
|
| 47 |
@media only screen and (max-width: 767px) {
|
| 48 |
.eael-ticker-wrap {
|
| 49 |
+
flex-flow: row wrap;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 50 |
}
|
| 51 |
|
| 52 |
.content-ticker-pagination {
|
assets/front-end/css/content-ticker/index.min.css
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
.eael-ticker-wrap{overflow:hidden;display
|
| 1 |
+
.eael-ticker-wrap{overflow:hidden;display:flex;flex-flow:row nowrap;align-items:center;width:100%}.eael-ticker-wrap .ticker-badge{flex:0 0 auto;padding:8px 12px}.eael-ticker-wrap .eael-ticker{overflow:hidden;flex:1 1 auto}.eael-ticker-wrap .eael-ticker .ticker-content{padding:8px 12px;line-height:1.8}.eael-ticker-wrap .eael-ticker .ticker-content p{margin:0}.eael-ticker-wrap .swiper-button-prev{left:auto!important;right:25px}.eael-ticker-wrap div.swiper-slide,.eael-ticker-wrap div.swiper-slide.swiper-slide-next,.eael-ticker-wrap div.swiper-slide.swiper-slide-prev{opacity:0!important}.eael-ticker-wrap div.swiper-slide.swiper-slide-active{opacity:1!important}.eael-ticker-wrap .eael-content-ticker.swiper-container .swiper-slide{text-align:left}@media only screen and (max-width:767px){.eael-ticker-wrap{flex-flow:row wrap}.content-ticker-pagination{display:none}}
|
assets/front-end/css/creative-btn/index.css
CHANGED
|
@@ -6,17 +6,11 @@
|
|
| 6 |
}
|
| 7 |
|
| 8 |
.eael-creative-button-wrapper {
|
| 9 |
-
display: -webkit-box;
|
| 10 |
-
display: -webkit-flex;
|
| 11 |
-
display: -ms-flexbox;
|
| 12 |
display: flex;
|
| 13 |
}
|
| 14 |
|
| 15 |
.eael-creative-button {
|
| 16 |
-
|
| 17 |
-
-webkit-flex: 0 0 auto;
|
| 18 |
-
-ms-flex: 0 0 auto;
|
| 19 |
-
flex: 0 0 auto;
|
| 20 |
min-width: 150px;
|
| 21 |
text-align: center;
|
| 22 |
vertical-align: middle;
|
|
@@ -51,12 +45,8 @@
|
|
| 51 |
.eael-creative-button--winona {
|
| 52 |
overflow: hidden;
|
| 53 |
padding: 0 !important;
|
| 54 |
-
-webkit-transition: border-color 0.3s, background-color 0.3s;
|
| 55 |
-
-o-transition: border-color 0.3s, background-color 0.3s;
|
| 56 |
transition: border-color 0.3s, background-color 0.3s;
|
| 57 |
-
|
| 58 |
-
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 59 |
-
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 60 |
}
|
| 61 |
|
| 62 |
.eael-creative-button--winona::after {
|
|
@@ -67,7 +57,6 @@
|
|
| 67 |
top: 0;
|
| 68 |
left: 0;
|
| 69 |
opacity: 0;
|
| 70 |
-
-webkit-transform: translate3d(0, 25%, 0);
|
| 71 |
transform: translate3d(0, 25%, 0);
|
| 72 |
}
|
| 73 |
|
|
@@ -78,33 +67,22 @@
|
|
| 78 |
.eael-creative-button--winona::after,
|
| 79 |
.eael-creative-button--winona > span {
|
| 80 |
padding: 1em 2em;
|
| 81 |
-
-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
|
| 82 |
-
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
|
| 83 |
-
transition: opacity 0.3s, -webkit-transform 0.3s;
|
| 84 |
-
-o-transition: transform 0.3s, opacity 0.3s;
|
| 85 |
transition: transform 0.3s, opacity 0.3s;
|
| 86 |
-
transition:
|
| 87 |
-
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 88 |
-
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 89 |
-
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 90 |
}
|
| 91 |
|
| 92 |
.eael-creative-button--winona:hover::after {
|
| 93 |
opacity: 1;
|
| 94 |
-
-webkit-transform: translate3d(0, 0, 0);
|
| 95 |
transform: translate3d(0, 0, 0);
|
| 96 |
}
|
| 97 |
|
| 98 |
.eael-creative-button--winona:hover > span {
|
| 99 |
opacity: 0;
|
| 100 |
-
-webkit-transform: translate3d(0, -25%, 0);
|
| 101 |
transform: translate3d(0, -25%, 0);
|
| 102 |
}
|
| 103 |
|
| 104 |
/*--- Ujarak ---*/
|
| 105 |
.eael-creative-button--ujarak {
|
| 106 |
-
-webkit-transition: border-color 0.4s, color 0.4s;
|
| 107 |
-
-o-transition: border-color 0.4s, color 0.4s;
|
| 108 |
transition: border-color 0.4s, color 0.4s;
|
| 109 |
}
|
| 110 |
|
|
@@ -117,41 +95,26 @@
|
|
| 117 |
height: 100%;
|
| 118 |
z-index: -1;
|
| 119 |
opacity: 0;
|
| 120 |
-
-webkit-transform: scale3d(0.7, 1, 1);
|
| 121 |
transform: scale3d(0.7, 1, 1);
|
| 122 |
-
-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
|
| 123 |
-
-webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
|
| 124 |
-
transition: opacity 0.4s, -webkit-transform 0.4s;
|
| 125 |
-
-o-transition: transform 0.4s, opacity 0.4s;
|
| 126 |
transition: transform 0.4s, opacity 0.4s;
|
| 127 |
-
transition:
|
| 128 |
-
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 129 |
-
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 130 |
-
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 131 |
}
|
| 132 |
|
| 133 |
.eael-creative-button--ujarak,
|
| 134 |
.eael-creative-button--ujarak::before {
|
| 135 |
-
|
| 136 |
-
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 137 |
-
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 138 |
}
|
| 139 |
|
| 140 |
.eael-creative-button--ujarak:hover::before {
|
| 141 |
opacity: 1;
|
| 142 |
-
-webkit-transform: translate3d(0, 0, 0);
|
| 143 |
transform: translate3d(0, 0, 0);
|
| 144 |
}
|
| 145 |
|
| 146 |
/*--- Wayra ---*/
|
| 147 |
.eael-creative-button--wayra {
|
| 148 |
overflow: hidden;
|
| 149 |
-
-webkit-transition: border-color 0.3s, color 0.3s;
|
| 150 |
-
-o-transition: border-color 0.3s, color 0.3s;
|
| 151 |
transition: border-color 0.3s, color 0.3s;
|
| 152 |
-
|
| 153 |
-
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 154 |
-
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 155 |
}
|
| 156 |
|
| 157 |
.eael-creative-button--wayra::before {
|
|
@@ -162,26 +125,15 @@
|
|
| 162 |
width: 150%;
|
| 163 |
height: 100%;
|
| 164 |
z-index: -1;
|
| 165 |
-
-webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
|
| 166 |
transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
|
| 167 |
-
|
| 168 |
-
-ms-transform-origin: 0% 100%;
|
| 169 |
-
transform-origin: 0% 100%;
|
| 170 |
-
-webkit-transition: -webkit-transform 0.3s, opacity 0.3s, background-color 0.3s;
|
| 171 |
-
-webkit-transition: opacity 0.3s, background-color 0.3s, -webkit-transform 0.3s;
|
| 172 |
-
transition: opacity 0.3s, background-color 0.3s, -webkit-transform 0.3s;
|
| 173 |
-
-o-transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
|
| 174 |
transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
|
| 175 |
-
transition: transform 0.3s, opacity 0.3s, background-color 0.3s, -webkit-transform 0.3s;
|
| 176 |
}
|
| 177 |
|
| 178 |
.eael-creative-button--wayra:hover::before {
|
| 179 |
opacity: 1;
|
| 180 |
-
-webkit-transform: rotate3d(0, 0, 1, 0deg);
|
| 181 |
transform: rotate3d(0, 0, 1, 0deg);
|
| 182 |
-
|
| 183 |
-
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 184 |
-
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 185 |
}
|
| 186 |
|
| 187 |
/*--- Tamaya ---*/
|
|
@@ -197,14 +149,8 @@
|
|
| 197 |
height: 50%;
|
| 198 |
left: 0;
|
| 199 |
overflow: hidden;
|
| 200 |
-
-webkit-transition: -webkit-transform 0.3s;
|
| 201 |
-
transition: -webkit-transform 0.3s;
|
| 202 |
-
-o-transition: transform 0.3s;
|
| 203 |
transition: transform 0.3s;
|
| 204 |
-
transition:
|
| 205 |
-
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 206 |
-
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 207 |
-
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 208 |
}
|
| 209 |
|
| 210 |
.eael-creative-button--tamaya::before {
|
|
@@ -223,33 +169,22 @@
|
|
| 223 |
|
| 224 |
.eael-creative-button--tamaya > span {
|
| 225 |
display: block;
|
| 226 |
-
-webkit-transform: scale3d(0.2, 0.2, 1);
|
| 227 |
transform: scale3d(0.2, 0.2, 1);
|
| 228 |
opacity: 0;
|
| 229 |
-
-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
|
| 230 |
-
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
|
| 231 |
-
transition: opacity 0.3s, -webkit-transform 0.3s;
|
| 232 |
-
-o-transition: transform 0.3s, opacity 0.3s;
|
| 233 |
transition: transform 0.3s, opacity 0.3s;
|
| 234 |
-
transition:
|
| 235 |
-
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 236 |
-
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 237 |
-
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 238 |
}
|
| 239 |
|
| 240 |
.eael-creative-button--tamaya:hover::before {
|
| 241 |
-
-webkit-transform: translate3d(0, -100%, 0);
|
| 242 |
transform: translate3d(0, -100%, 0);
|
| 243 |
}
|
| 244 |
|
| 245 |
.eael-creative-button--tamaya:hover::after {
|
| 246 |
-
-webkit-transform: translate3d(0, 100%, 0);
|
| 247 |
transform: translate3d(0, 100%, 0);
|
| 248 |
}
|
| 249 |
|
| 250 |
.eael-creative-button--tamaya:hover > span {
|
| 251 |
opacity: 1;
|
| 252 |
-
-webkit-transform: scale3d(1, 1, 1);
|
| 253 |
transform: scale3d(1, 1, 1);
|
| 254 |
}
|
| 255 |
|
|
@@ -266,7 +201,6 @@
|
|
| 266 |
left: 0;
|
| 267 |
width: 100%;
|
| 268 |
height: 100%;
|
| 269 |
-
-webkit-transform: translate3d(-100%, 0, 0);
|
| 270 |
transform: translate3d(-100%, 0, 0);
|
| 271 |
}
|
| 272 |
|
|
@@ -277,22 +211,14 @@
|
|
| 277 |
.eael-creative-button--rayen::before,
|
| 278 |
.eael-creative-button--rayen > span {
|
| 279 |
padding: 1em 2em;
|
| 280 |
-
-webkit-transition: -webkit-transform 0.3s;
|
| 281 |
-
transition: -webkit-transform 0.3s;
|
| 282 |
-
-o-transition: transform 0.3s;
|
| 283 |
transition: transform 0.3s;
|
| 284 |
-
transition:
|
| 285 |
-
-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
|
| 286 |
-
-o-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
|
| 287 |
-
transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
|
| 288 |
}
|
| 289 |
|
| 290 |
.eael-creative-button--rayen:hover::before {
|
| 291 |
-
-webkit-transform: translate3d(0, 0, 0);
|
| 292 |
transform: translate3d(0, 0, 0);
|
| 293 |
}
|
| 294 |
|
| 295 |
.eael-creative-button--rayen:hover > span {
|
| 296 |
-
-webkit-transform: translate3d(0, 100%, 0);
|
| 297 |
transform: translate3d(0, 100%, 0);
|
| 298 |
}
|
| 6 |
}
|
| 7 |
|
| 8 |
.eael-creative-button-wrapper {
|
|
|
|
|
|
|
|
|
|
| 9 |
display: flex;
|
| 10 |
}
|
| 11 |
|
| 12 |
.eael-creative-button {
|
| 13 |
+
flex: 0 0 auto;
|
|
|
|
|
|
|
|
|
|
| 14 |
min-width: 150px;
|
| 15 |
text-align: center;
|
| 16 |
vertical-align: middle;
|
| 45 |
.eael-creative-button--winona {
|
| 46 |
overflow: hidden;
|
| 47 |
padding: 0 !important;
|
|
|
|
|
|
|
| 48 |
transition: border-color 0.3s, background-color 0.3s;
|
| 49 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
|
|
|
|
|
|
| 50 |
}
|
| 51 |
|
| 52 |
.eael-creative-button--winona::after {
|
| 57 |
top: 0;
|
| 58 |
left: 0;
|
| 59 |
opacity: 0;
|
|
|
|
| 60 |
transform: translate3d(0, 25%, 0);
|
| 61 |
}
|
| 62 |
|
| 67 |
.eael-creative-button--winona::after,
|
| 68 |
.eael-creative-button--winona > span {
|
| 69 |
padding: 1em 2em;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
transition: transform 0.3s, opacity 0.3s;
|
| 71 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
|
|
|
|
|
|
|
|
|
| 72 |
}
|
| 73 |
|
| 74 |
.eael-creative-button--winona:hover::after {
|
| 75 |
opacity: 1;
|
|
|
|
| 76 |
transform: translate3d(0, 0, 0);
|
| 77 |
}
|
| 78 |
|
| 79 |
.eael-creative-button--winona:hover > span {
|
| 80 |
opacity: 0;
|
|
|
|
| 81 |
transform: translate3d(0, -25%, 0);
|
| 82 |
}
|
| 83 |
|
| 84 |
/*--- Ujarak ---*/
|
| 85 |
.eael-creative-button--ujarak {
|
|
|
|
|
|
|
| 86 |
transition: border-color 0.4s, color 0.4s;
|
| 87 |
}
|
| 88 |
|
| 95 |
height: 100%;
|
| 96 |
z-index: -1;
|
| 97 |
opacity: 0;
|
|
|
|
| 98 |
transform: scale3d(0.7, 1, 1);
|
|
|
|
|
|
|
|
|
|
|
|
|
| 99 |
transition: transform 0.4s, opacity 0.4s;
|
| 100 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
|
|
|
|
|
|
|
|
|
| 101 |
}
|
| 102 |
|
| 103 |
.eael-creative-button--ujarak,
|
| 104 |
.eael-creative-button--ujarak::before {
|
| 105 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
|
|
|
|
|
|
| 106 |
}
|
| 107 |
|
| 108 |
.eael-creative-button--ujarak:hover::before {
|
| 109 |
opacity: 1;
|
|
|
|
| 110 |
transform: translate3d(0, 0, 0);
|
| 111 |
}
|
| 112 |
|
| 113 |
/*--- Wayra ---*/
|
| 114 |
.eael-creative-button--wayra {
|
| 115 |
overflow: hidden;
|
|
|
|
|
|
|
| 116 |
transition: border-color 0.3s, color 0.3s;
|
| 117 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
|
|
|
|
|
|
| 118 |
}
|
| 119 |
|
| 120 |
.eael-creative-button--wayra::before {
|
| 125 |
width: 150%;
|
| 126 |
height: 100%;
|
| 127 |
z-index: -1;
|
|
|
|
| 128 |
transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
|
| 129 |
+
transform-origin: 0% 100%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 130 |
transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
|
|
|
|
| 131 |
}
|
| 132 |
|
| 133 |
.eael-creative-button--wayra:hover::before {
|
| 134 |
opacity: 1;
|
|
|
|
| 135 |
transform: rotate3d(0, 0, 1, 0deg);
|
| 136 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
|
|
|
|
|
|
| 137 |
}
|
| 138 |
|
| 139 |
/*--- Tamaya ---*/
|
| 149 |
height: 50%;
|
| 150 |
left: 0;
|
| 151 |
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
| 152 |
transition: transform 0.3s;
|
| 153 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
|
|
|
|
|
|
|
|
|
| 154 |
}
|
| 155 |
|
| 156 |
.eael-creative-button--tamaya::before {
|
| 169 |
|
| 170 |
.eael-creative-button--tamaya > span {
|
| 171 |
display: block;
|
|
|
|
| 172 |
transform: scale3d(0.2, 0.2, 1);
|
| 173 |
opacity: 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 174 |
transition: transform 0.3s, opacity 0.3s;
|
| 175 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
|
|
|
|
|
|
|
|
|
| 176 |
}
|
| 177 |
|
| 178 |
.eael-creative-button--tamaya:hover::before {
|
|
|
|
| 179 |
transform: translate3d(0, -100%, 0);
|
| 180 |
}
|
| 181 |
|
| 182 |
.eael-creative-button--tamaya:hover::after {
|
|
|
|
| 183 |
transform: translate3d(0, 100%, 0);
|
| 184 |
}
|
| 185 |
|
| 186 |
.eael-creative-button--tamaya:hover > span {
|
| 187 |
opacity: 1;
|
|
|
|
| 188 |
transform: scale3d(1, 1, 1);
|
| 189 |
}
|
| 190 |
|
| 201 |
left: 0;
|
| 202 |
width: 100%;
|
| 203 |
height: 100%;
|
|
|
|
| 204 |
transform: translate3d(-100%, 0, 0);
|
| 205 |
}
|
| 206 |
|
| 211 |
.eael-creative-button--rayen::before,
|
| 212 |
.eael-creative-button--rayen > span {
|
| 213 |
padding: 1em 2em;
|
|
|
|
|
|
|
|
|
|
| 214 |
transition: transform 0.3s;
|
| 215 |
+
transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
|
|
|
|
|
|
|
|
|
|
| 216 |
}
|
| 217 |
|
| 218 |
.eael-creative-button--rayen:hover::before {
|
|
|
|
| 219 |
transform: translate3d(0, 0, 0);
|
| 220 |
}
|
| 221 |
|
| 222 |
.eael-creative-button--rayen:hover > span {
|
|
|
|
| 223 |
transform: translate3d(0, 100%, 0);
|
| 224 |
}
|
assets/front-end/css/creative-btn/index.min.css
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
.eael-creative-button-align-center{text-align:center}.eael-creative-button-wrapper{display
|
| 1 |
+
.eael-creative-button-align-center{text-align:center}.eael-creative-button-wrapper{display:flex}.eael-creative-button{flex:0 0 auto;min-width:150px;text-align:center;vertical-align:middle;position:relative;z-index:1;border-radius:2px;padding:20px 30px;font-size:16px;line-height:1;-webkit-backface-visibility:hidden;backface-visibility:hidden;-moz-osx-font-smoothing:grayscale}.eael-creative-button-align-center .eael-creative-button{float:none;display:inline-block}.eael-creative-button:focus{outline:0}.eael-creative-button>span{vertical-align:middle}.eael-creative-button--winona{overflow:hidden;padding:0!important;transition:border-color .3s,background-color .3s;transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--winona::after{content:attr(data-text);position:absolute;width:100%;height:100%;top:0;left:0;opacity:0;transform:translate3d(0,25%,0)}.eael-creative-button--winona>span{display:block}.eael-creative-button--winona::after,.eael-creative-button--winona>span{padding:1em 2em;transition:transform .3s,opacity .3s;transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--winona:hover::after{opacity:1;transform:translate3d(0,0,0)}.eael-creative-button--winona:hover>span{opacity:0;transform:translate3d(0,-25%,0)}.eael-creative-button--ujarak{transition:border-color .4s,color .4s}.eael-creative-button--ujarak::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1;opacity:0;transform:scale3d(.7,1,1);transition:transform .4s,opacity .4s;transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--ujarak,.eael-creative-button--ujarak::before{transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--ujarak:hover::before{opacity:1;transform:translate3d(0,0,0)}.eael-creative-button--wayra{overflow:hidden;transition:border-color .3s,color .3s;transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--wayra::before{content:'';position:absolute;top:0;left:0;width:150%;height:100%;z-index:-1;transform:rotate3d(0,0,1,-45deg) translate3d(0,-3em,0);transform-origin:0 100%;transition:transform .3s,opacity .3s,background-color .3s}.eael-creative-button--wayra:hover::before{opacity:1;transform:rotate3d(0,0,1,0deg);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--tamaya{overflow:hidden}.eael-creative-button--tamaya::after,.eael-creative-button--tamaya::before{content:attr(data-text);position:absolute;width:100%;height:50%;left:0;overflow:hidden;transition:transform .3s;transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--tamaya::before{top:0;padding:20px 30px}.eael-creative-button--tamaya::after{bottom:0;line-height:0}.eael-creative-button--tamaya:hover::after{bottom:-1px}.eael-creative-button--tamaya>span{display:block;transform:scale3d(.2,.2,1);opacity:0;transition:transform .3s,opacity .3s;transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--tamaya:hover::before{transform:translate3d(0,-100%,0)}.eael-creative-button--tamaya:hover::after{transform:translate3d(0,100%,0)}.eael-creative-button--tamaya:hover>span{opacity:1;transform:scale3d(1,1,1)}.eael-creative-button--rayen{overflow:hidden;padding:0!important}.eael-creative-button--rayen::before{content:attr(data-text);position:absolute;top:0;left:0;width:100%;height:100%;transform:translate3d(-100%,0,0)}.eael-creative-button--rayen>span{display:block}.eael-creative-button--rayen::before,.eael-creative-button--rayen>span{padding:1em 2em;transition:transform .3s;transition-timing-function:cubic-bezier(.75,0,.125,1)}.eael-creative-button--rayen:hover::before{transform:translate3d(0,0,0)}.eael-creative-button--rayen:hover>span{transform:translate3d(0,100%,0)}
|
assets/front-end/css/data-table/index.css
CHANGED
|
@@ -12,35 +12,18 @@ table.eael-data-table thead .sorting:after, table.eael-data-table thead .sorting
|
|
| 12 |
font-family: "FontAwesome";
|
| 13 |
color: #fff;
|
| 14 |
z-index: 1;
|
| 15 |
-
|
| 16 |
-
-ms-transform: translateY(-50%);
|
| 17 |
-
transform: translateY(-50%);
|
| 18 |
}
|
| 19 |
|
| 20 |
.eael-data-table-wrap .eael-data-tables_wrapper {
|
| 21 |
-
display: -webkit-box;
|
| 22 |
-
display: -webkit-flex;
|
| 23 |
-
display: -ms-flexbox;
|
| 24 |
display: flex;
|
| 25 |
-
-
|
| 26 |
-
-
|
| 27 |
-
-webkit-flex-flow: row wrap;
|
| 28 |
-
-ms-flex-flow: row wrap;
|
| 29 |
-
flex-flow: row wrap;
|
| 30 |
-
-webkit-box-pack: start;
|
| 31 |
-
-webkit-justify-content: flex-start;
|
| 32 |
-
-ms-flex-pack: start;
|
| 33 |
-
justify-content: flex-start;
|
| 34 |
width: 100%;
|
| 35 |
}
|
| 36 |
.eael-data-table-wrap .eael-data-tables_filter {
|
| 37 |
-
-
|
| 38 |
-
|
| 39 |
-
-ms-flex-positive: 1;
|
| 40 |
-
flex-grow: 1;
|
| 41 |
-
-webkit-flex-basis: 50%;
|
| 42 |
-
-ms-flex-preferred-size: 50%;
|
| 43 |
-
flex-basis: 50%;
|
| 44 |
text-align: right;
|
| 45 |
}
|
| 46 |
.eael-data-table-wrap .eael-data-tables_filter label {
|
|
@@ -54,13 +37,8 @@ table.eael-data-table thead .sorting:after, table.eael-data-table thead .sorting
|
|
| 54 |
margin-left: 10px;
|
| 55 |
}
|
| 56 |
.eael-data-table-wrap .eael-data-tables_length {
|
| 57 |
-
-
|
| 58 |
-
|
| 59 |
-
-ms-flex-positive: 1;
|
| 60 |
-
flex-grow: 1;
|
| 61 |
-
-webkit-flex-basis: 50%;
|
| 62 |
-
-ms-flex-preferred-size: 50%;
|
| 63 |
-
flex-basis: 50%;
|
| 64 |
}
|
| 65 |
.eael-data-table-wrap .eael-data-tables_length select {
|
| 66 |
width: auto;
|
|
@@ -75,23 +53,13 @@ table.eael-data-table thead .sorting:after, table.eael-data-table thead .sorting
|
|
| 75 |
font-weight: 700;
|
| 76 |
}
|
| 77 |
.eael-data-table-wrap .eael-data-tables_info {
|
| 78 |
-
-
|
| 79 |
-
|
| 80 |
-
-ms-flex-positive: 1;
|
| 81 |
-
flex-grow: 1;
|
| 82 |
-
-webkit-flex-basis: 50%;
|
| 83 |
-
-ms-flex-preferred-size: 50%;
|
| 84 |
-
flex-basis: 50%;
|
| 85 |
font-weight: 700;
|
| 86 |
}
|
| 87 |
.eael-data-table-wrap .eael-data-tables_paginate {
|
| 88 |
-
-
|
| 89 |
-
|
| 90 |
-
-ms-flex-positive: 1;
|
| 91 |
-
flex-grow: 1;
|
| 92 |
-
-webkit-flex-basis: 50%;
|
| 93 |
-
-ms-flex-preferred-size: 50%;
|
| 94 |
-
flex-basis: 50%;
|
| 95 |
text-align: right;
|
| 96 |
}
|
| 97 |
.eael-data-table-wrap .eael-data-tables_paginate .paginate_button {
|
|
@@ -99,8 +67,6 @@ table.eael-data-table thead .sorting:after, table.eael-data-table thead .sorting
|
|
| 99 |
background: #f2f2f2;
|
| 100 |
margin-right: 2px;
|
| 101 |
cursor: pointer;
|
| 102 |
-
-webkit-transition: all .3s;
|
| 103 |
-
-o-transition: all .3s;
|
| 104 |
transition: all .3s;
|
| 105 |
}
|
| 106 |
.eael-data-table-wrap .eael-data-tables_paginate .paginate_button:hover {
|
|
@@ -152,8 +118,6 @@ table.eael-data-table thead .sorting:after, table.eael-data-table thead .sorting
|
|
| 152 |
border-color: #000;
|
| 153 |
}
|
| 154 |
.eael-data-table tbody tr.even {
|
| 155 |
-
-webkit-transition: background 0.4s ease-in-out;
|
| 156 |
-
-o-transition: background 0.4s ease-in-out;
|
| 157 |
transition: background 0.4s ease-in-out;
|
| 158 |
}
|
| 159 |
.eael-data-table tbody tr.even:hover {
|
|
@@ -164,8 +128,6 @@ table.eael-data-table thead .sorting:after, table.eael-data-table thead .sorting
|
|
| 164 |
}
|
| 165 |
.eael-data-table tbody tr.odd {
|
| 166 |
background: rgba(242, 242, 242, 0.5);
|
| 167 |
-
-webkit-transition: background 0.2s ease-in-out;
|
| 168 |
-
-o-transition: background 0.2s ease-in-out;
|
| 169 |
transition: background 0.2s ease-in-out;
|
| 170 |
}
|
| 171 |
.eael-data-table tbody tr.odd:hover {
|
|
@@ -205,16 +167,9 @@ table.eael-data-table thead .sorting:after, table.eael-data-table thead .sorting
|
|
| 205 |
padding: 0 .6em;
|
| 206 |
margin-right: 10px;
|
| 207 |
text-align: center;
|
| 208 |
-
-
|
| 209 |
-
|
| 210 |
-
|
| 211 |
-
flex-grow: 0;
|
| 212 |
-
-webkit-flex-shrink: 0;
|
| 213 |
-
-ms-flex-negative: 0;
|
| 214 |
-
flex-shrink: 0;
|
| 215 |
-
-webkit-flex-basis: 100px;
|
| 216 |
-
-ms-flex-preferred-size: 100px;
|
| 217 |
-
flex-basis: 100px;
|
| 218 |
}
|
| 219 |
.th-mobile-screen .eael-data-table-th-img {
|
| 220 |
margin: 0 auto 15px auto;
|
|
@@ -226,26 +181,17 @@ table.eael-data-table thead .sorting:after, table.eael-data-table thead .sorting
|
|
| 226 |
}
|
| 227 |
|
| 228 |
.td-content-wrapper {
|
| 229 |
-
display: -webkit-box;
|
| 230 |
-
display: -webkit-flex;
|
| 231 |
-
display: -ms-flexbox;
|
| 232 |
display: flex;
|
| 233 |
width: 100%;
|
| 234 |
}
|
| 235 |
|
| 236 |
.td-content {
|
| 237 |
width: 100%;
|
| 238 |
-
-
|
| 239 |
-
-webkit-justify-content: center;
|
| 240 |
-
-ms-flex-pack: center;
|
| 241 |
-
justify-content: center;
|
| 242 |
}
|
| 243 |
.td-content > p {
|
| 244 |
width: 100%;
|
| 245 |
-
-
|
| 246 |
-
-webkit-justify-content: center;
|
| 247 |
-
-ms-flex-pack: center;
|
| 248 |
-
justify-content: center;
|
| 249 |
}
|
| 250 |
|
| 251 |
.custom-responsive-option-enable .eael-data-table thead {
|
|
@@ -256,24 +202,12 @@ table.eael-data-table thead .sorting:after, table.eael-data-table thead .sorting
|
|
| 256 |
clear: left;
|
| 257 |
width: 100%;
|
| 258 |
text-align: left;
|
| 259 |
-
display: -webkit-box;
|
| 260 |
-
display: -webkit-flex;
|
| 261 |
-
display: -ms-flexbox;
|
| 262 |
display: flex;
|
| 263 |
-
-
|
| 264 |
-
-webkit-align-items: center;
|
| 265 |
-
-ms-flex-align: center;
|
| 266 |
-
align-items: center;
|
| 267 |
}
|
| 268 |
|
| 269 |
.eael-data-table .td-content {
|
| 270 |
-
-
|
| 271 |
-
-webkit-align-items: center;
|
| 272 |
-
-ms-flex-align: center;
|
| 273 |
-
align-items: center;
|
| 274 |
-
display: -webkit-box;
|
| 275 |
-
display: -webkit-flex;
|
| 276 |
-
display: -ms-flexbox;
|
| 277 |
display: flex;
|
| 278 |
}
|
| 279 |
}
|
| 12 |
font-family: "FontAwesome";
|
| 13 |
color: #fff;
|
| 14 |
z-index: 1;
|
| 15 |
+
transform: translateY(-50%);
|
|
|
|
|
|
|
| 16 |
}
|
| 17 |
|
| 18 |
.eael-data-table-wrap .eael-data-tables_wrapper {
|
|
|
|
|
|
|
|
|
|
| 19 |
display: flex;
|
| 20 |
+
flex-flow: row wrap;
|
| 21 |
+
justify-content: flex-start;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
width: 100%;
|
| 23 |
}
|
| 24 |
.eael-data-table-wrap .eael-data-tables_filter {
|
| 25 |
+
flex-grow: 1;
|
| 26 |
+
flex-basis: 50%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
text-align: right;
|
| 28 |
}
|
| 29 |
.eael-data-table-wrap .eael-data-tables_filter label {
|
| 37 |
margin-left: 10px;
|
| 38 |
}
|
| 39 |
.eael-data-table-wrap .eael-data-tables_length {
|
| 40 |
+
flex-grow: 1;
|
| 41 |
+
flex-basis: 50%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
}
|
| 43 |
.eael-data-table-wrap .eael-data-tables_length select {
|
| 44 |
width: auto;
|
| 53 |
font-weight: 700;
|
| 54 |
}
|
| 55 |
.eael-data-table-wrap .eael-data-tables_info {
|
| 56 |
+
flex-grow: 1;
|
| 57 |
+
flex-basis: 50%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
font-weight: 700;
|
| 59 |
}
|
| 60 |
.eael-data-table-wrap .eael-data-tables_paginate {
|
| 61 |
+
flex-grow: 1;
|
| 62 |
+
flex-basis: 50%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
text-align: right;
|
| 64 |
}
|
| 65 |
.eael-data-table-wrap .eael-data-tables_paginate .paginate_button {
|
| 67 |
background: #f2f2f2;
|
| 68 |
margin-right: 2px;
|
| 69 |
cursor: pointer;
|
|
|
|
|
|
|
| 70 |
transition: all .3s;
|
| 71 |
}
|
| 72 |
.eael-data-table-wrap .eael-data-tables_paginate .paginate_button:hover {
|
| 118 |
border-color: #000;
|
| 119 |
}
|
| 120 |
.eael-data-table tbody tr.even {
|
|
|
|
|
|
|
| 121 |
transition: background 0.4s ease-in-out;
|
| 122 |
}
|
| 123 |
.eael-data-table tbody tr.even:hover {
|
| 128 |
}
|
| 129 |
.eael-data-table tbody tr.odd {
|
| 130 |
background: rgba(242, 242, 242, 0.5);
|
|
|
|
|
|
|
| 131 |
transition: background 0.2s ease-in-out;
|
| 132 |
}
|
| 133 |
.eael-data-table tbody tr.odd:hover {
|
| 167 |
padding: 0 .6em;
|
| 168 |
margin-right: 10px;
|
| 169 |
text-align: center;
|
| 170 |
+
flex-grow: 0;
|
| 171 |
+
flex-shrink: 0;
|
| 172 |
+
flex-basis: 100px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 173 |
}
|
| 174 |
.th-mobile-screen .eael-data-table-th-img {
|
| 175 |
margin: 0 auto 15px auto;
|
| 181 |
}
|
| 182 |
|
| 183 |
.td-content-wrapper {
|
|
|
|
|
|
|
|
|
|
| 184 |
display: flex;
|
| 185 |
width: 100%;
|
| 186 |
}
|
| 187 |
|
| 188 |
.td-content {
|
| 189 |
width: 100%;
|
| 190 |
+
justify-content: center;
|
|
|
|
|
|
|
|
|
|
| 191 |
}
|
| 192 |
.td-content > p {
|
| 193 |
width: 100%;
|
| 194 |
+
justify-content: center;
|
|
|
|
|
|
|
|
|
|
| 195 |
}
|
| 196 |
|
| 197 |
.custom-responsive-option-enable .eael-data-table thead {
|
| 202 |
clear: left;
|
| 203 |
width: 100%;
|
| 204 |
text-align: left;
|
|
|
|
|
|
|
|
|
|
| 205 |
display: flex;
|
| 206 |
+
align-items: center;
|
|
|
|
|
|
|
|
|
|
| 207 |
}
|
| 208 |
|
| 209 |
.eael-data-table .td-content {
|
| 210 |
+
align-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 211 |
display: flex;
|
| 212 |
}
|
| 213 |
}
|
assets/front-end/css/data-table/index.min.css
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
table.eael-data-table thead .sorting,table.eael-data-table thead .sorting_asc,table.eael-data-table thead .sorting_desc{position:relative;z-index:0;outline:0;cursor:pointer}table.eael-data-table thead .sorting:after,table.eael-data-table thead .sorting_asc:after,table.eael-data-table thead .sorting_desc:after{position:absolute;top:50%;right:10px;font-family:FontAwesome;color:#fff;z-index:1
|
| 1 |
+
table.eael-data-table thead .sorting,table.eael-data-table thead .sorting_asc,table.eael-data-table thead .sorting_desc{position:relative;z-index:0;outline:0;cursor:pointer}table.eael-data-table thead .sorting:after,table.eael-data-table thead .sorting_asc:after,table.eael-data-table thead .sorting_desc:after{position:absolute;top:50%;right:10px;font-family:FontAwesome;color:#fff;z-index:1;transform:translateY(-50%)}.eael-data-table-wrap .eael-data-tables_wrapper{display:flex;flex-flow:row wrap;justify-content:flex-start;width:100%}.eael-data-table-wrap .eael-data-tables_filter{flex-grow:1;flex-basis:50%;text-align:right}.eael-data-table-wrap .eael-data-tables_filter label{font-weight:700}.eael-data-table-wrap .eael-data-tables_filter label input[type=search]{height:40px;border:1px solid rgba(0,0,0,.09);outline:0;padding:10px;margin-left:10px}.eael-data-table-wrap .eael-data-tables_length{flex-grow:1;flex-basis:50%}.eael-data-table-wrap .eael-data-tables_length select{width:auto;max-width:120px;height:40px;border:1px solid rgba(0,0,0,.09);outline:0;margin-left:10px;margin-right:10px}.eael-data-table-wrap .eael-data-tables_length label{font-weight:700}.eael-data-table-wrap .eael-data-tables_info{flex-grow:1;flex-basis:50%;font-weight:700}.eael-data-table-wrap .eael-data-tables_paginate{flex-grow:1;flex-basis:50%;text-align:right}.eael-data-table-wrap .eael-data-tables_paginate .paginate_button{padding:10px 15px;background:#f2f2f2;margin-right:2px;cursor:pointer;transition:all .3s}.eael-data-table-wrap .eael-data-tables_paginate .paginate_button:hover{color:#fff;background:#4a4893}.eael-data-table-wrap .eael-data-tables_paginate .paginate_button.current{color:#fff;background:#4a4893}.eael-data-table-wrap .eael-data-tables_paginate .paginate_button.disabled{cursor:no-drop;background:#f2f2f2;opacity:.5;color:#888}.data-header-icon{margin-right:10px}.eael-data-table{width:100%;height:auto;margin:0;border-collapse:collapse;border:none}.eael-data-table tr{border-style:none}.eael-data-table thead tr{text-align:left}.eael-data-table thead tr th{padding:20px 15px;background:#4a4893;font-size:16px;font-weight:600;font-family:Montserrat,sans-serif;line-height:1;color:#fff;border-color:#000;border-width:2px;border-style:none;background-clip:padding-box}.eael-data-table thead tr th:hover{border-color:#000}.eael-data-table tbody tr.even{transition:background .4s ease-in-out}.eael-data-table tbody tr.even:hover{background:rgba(242,242,242,.7)}.eael-data-table tbody tr.even:last-child{border-bottom:1px solid rgba(0,0,0,.09)}.eael-data-table tbody tr.odd{background:rgba(242,242,242,.5);transition:background .2s ease-in-out}.eael-data-table tbody tr.odd:hover{background:rgba(242,242,242,.7)}.eael-data-table tbody tr.odd:last-child{border-bottom:1px solid rgba(0,0,0,.09)}.eael-data-table tbody tr td{padding:20px 15px;font-size:14px;font-family:Montserrat,sans-serif;line-height:1;border-width:2px;border-style:none;background-clip:padding-box}.eael-data-table-th-img{display:inline-block;margin:0 15px 0 0;line-height:1}.th-mobile-screen{display:none}@media (max-width:39.9375em){.eael-data-table-wrap{overflow-x:scroll!important;padding-bottom:5px}.th-mobile-screen{display:inline-block;padding:0 .6em;margin-right:10px;text-align:center;flex-grow:0;flex-shrink:0;flex-basis:100px}.th-mobile-screen .eael-data-table-th-img{margin:0 auto 15px auto;display:block}.th-mobile-screen .data-header-icon{margin:0 auto 15px auto;display:block}.td-content-wrapper{display:flex;width:100%}.td-content{width:100%;justify-content:center}.td-content>p{width:100%;justify-content:center}.custom-responsive-option-enable .eael-data-table thead{display:none}.custom-responsive-option-enable .eael-data-table tbody tr td{float:none;clear:left;width:100%;text-align:left;display:flex;align-items:center}.eael-data-table .td-content{align-items:center;display:flex}}table.eael-data-table thead .sorting:after{content:"\f0dc"}table.eael-data-table thead .headerSortDown:after{content:"\f0dd"}table.eael-data-table thead .headerSortUp:after{content:"\f0de"}table.eael-data-table thead .sorting_disabled.sorting:after{display:none}table.eael-data-table .sorting.sorting-none:after{display:none}table.eael-data-table .sorting_desc.sorting-none:after{display:none}table.eael-data-table .sorting_asc.sorting-none:after{display:none}.eael-table-align-left table.eael-data-table{float:left}.eael-table-align-center table.eael-data-table{margin:0 auto}.eael-table-align-right table.eael-data-table{float:right}.eael-hide-elements .eael-data-tables_info{display:none}.eael-dt-th-align-left .eael-data-table thead tr th{text-align:left}.eael-dt-td-align-left .eael-data-table tbody tr td{text-align:left}.eael-dt-th-align-right .eael-data-table thead tr th{text-align:right;padding-right:30px}.eael-dt-td-align-right .eael-data-table tbody tr td{text-align:right;padding-right:30px}.eael-dt-th-align-center .eael-data-table thead tr th{text-align:center}.eael-dt-td-align-center .eael-data-table tbody tr td{text-align:center}
|
assets/front-end/css/eael.css
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
|
|
| 1 |
/*------------------------------*/
|
| 2 |
/* 31. Advance Accordion
|
| 3 |
/*------------------------------*/
|
| 4 |
.eael-adv-accordion {
|
| 5 |
width: auto;
|
| 6 |
height: auto;
|
| 7 |
-
-webkit-transition: all 0.3s ease-in-out;
|
| 8 |
-
-o-transition: all 0.3s ease-in-out;
|
| 9 |
transition: all 0.3s ease-in-out;
|
| 10 |
}
|
| 11 |
|
|
@@ -15,41 +14,22 @@
|
|
| 15 |
font-size: 1rem;
|
| 16 |
font-weight: 600;
|
| 17 |
line-height: 1;
|
| 18 |
-
-webkit-transition: all 0.3s ease-in-out;
|
| 19 |
-
-o-transition: all 0.3s ease-in-out;
|
| 20 |
transition: all 0.3s ease-in-out;
|
| 21 |
-
display: -webkit-box;
|
| 22 |
-
display: -webkit-flex;
|
| 23 |
-
display: -ms-flexbox;
|
| 24 |
display: flex;
|
| 25 |
-
-
|
| 26 |
-
-
|
| 27 |
-
-ms-flex-pack: justify;
|
| 28 |
-
justify-content: space-between;
|
| 29 |
-
-webkit-box-align: center;
|
| 30 |
-
-webkit-align-items: center;
|
| 31 |
-
-ms-flex-align: center;
|
| 32 |
-
align-items: center;
|
| 33 |
cursor: pointer;
|
| 34 |
}
|
| 35 |
|
| 36 |
.eael-adv-accordion .eael-accordion-list .eael-accordion-header .fa-toggle {
|
| 37 |
-
|
| 38 |
-
-ms-transform: rotate(0deg);
|
| 39 |
-
transform: rotate(0deg);
|
| 40 |
z-index: 10;
|
| 41 |
-
-webkit-transition: all 0.3s ease-in-out;
|
| 42 |
-
-o-transition: all 0.3s ease-in-out;
|
| 43 |
transition: all 0.3s ease-in-out;
|
| 44 |
}
|
| 45 |
|
| 46 |
.eael-adv-accordion .eael-accordion-list .eael-accordion-header.active .fa-toggle {
|
| 47 |
-
|
| 48 |
-
-ms-transform: rotate(90deg);
|
| 49 |
-
transform: rotate(90deg);
|
| 50 |
z-index: 10;
|
| 51 |
-
-webkit-transition: all 0.3s ease-in-out;
|
| 52 |
-
-o-transition: all 0.3s ease-in-out;
|
| 53 |
transition: all 0.3s ease-in-out;
|
| 54 |
}
|
| 55 |
|
|
@@ -62,8 +42,7 @@
|
|
| 62 |
display: none;
|
| 63 |
border: 1px solid #eee;
|
| 64 |
padding: 15px;
|
| 65 |
-
|
| 66 |
-
box-sizing: border-box;
|
| 67 |
font-size: 1rem;
|
| 68 |
line-height: 1.7;
|
| 69 |
}
|
|
@@ -78,50 +57,38 @@
|
|
| 78 |
|
| 79 |
@-webkit-keyframes rotate-90 {
|
| 80 |
0% {
|
| 81 |
-
|
| 82 |
-
transform: rotateY(0deg);
|
| 83 |
}
|
| 84 |
100% {
|
| 85 |
-
|
| 86 |
-
transform: rotateY(-180deg);
|
| 87 |
}
|
| 88 |
}
|
| 89 |
|
| 90 |
@keyframes rotate-90 {
|
| 91 |
0% {
|
| 92 |
-
|
| 93 |
-
transform: rotateY(0deg);
|
| 94 |
}
|
| 95 |
100% {
|
| 96 |
-
|
| 97 |
-
transform: rotateY(-180deg);
|
| 98 |
}
|
| 99 |
}
|
| 100 |
@-webkit-keyframes fadeIn {
|
| 101 |
0% {
|
| 102 |
opacity: 1;
|
| 103 |
-
-webkit-transition: all 0.3s ease-in-out;
|
| 104 |
-
-o-transition: all 0.3s ease-in-out;
|
| 105 |
transition: all 0.3s ease-in-out;
|
| 106 |
}
|
| 107 |
100% {
|
| 108 |
opacity: 1;
|
| 109 |
-
-webkit-transition: all 0.3s ease-in-out;
|
| 110 |
-
-o-transition: all 0.3s ease-in-out;
|
| 111 |
transition: all 0.3s ease-in-out;
|
| 112 |
}
|
| 113 |
}
|
| 114 |
@keyframes fadeIn {
|
| 115 |
0% {
|
| 116 |
opacity: 1;
|
| 117 |
-
-webkit-transition: all 0.3s ease-in-out;
|
| 118 |
-
-o-transition: all 0.3s ease-in-out;
|
| 119 |
transition: all 0.3s ease-in-out;
|
| 120 |
}
|
| 121 |
100% {
|
| 122 |
opacity: 1;
|
| 123 |
-
-webkit-transition: all 0.3s ease-in-out;
|
| 124 |
-
-o-transition: all 0.3s ease-in-out;
|
| 125 |
transition: all 0.3s ease-in-out;
|
| 126 |
}
|
| 127 |
}
|
|
@@ -138,41 +105,20 @@
|
|
| 138 |
padding: 0px;
|
| 139 |
margin: 0px;
|
| 140 |
list-style-type: none;
|
| 141 |
-
display: -webkit-box;
|
| 142 |
-
display: -webkit-flex;
|
| 143 |
-
display: -ms-flexbox;
|
| 144 |
display: flex;
|
| 145 |
-
-
|
| 146 |
-
-
|
| 147 |
-
-ms-flex-pack: start;
|
| 148 |
-
justify-content: flex-start;
|
| 149 |
-
-webkit-box-align: center;
|
| 150 |
-
-webkit-align-items: center;
|
| 151 |
-
-ms-flex-align: center;
|
| 152 |
-
align-items: center;
|
| 153 |
z-index: 1;
|
| 154 |
}
|
| 155 |
|
| 156 |
.eael-advance-tabs .eael-tabs-nav > ul li {
|
| 157 |
position: relative;
|
| 158 |
padding: 1em 1.5em;
|
| 159 |
-
|
| 160 |
-
-webkit-flex: 1 1 auto;
|
| 161 |
-
-ms-flex: 1 1 auto;
|
| 162 |
-
flex: 1 1 auto;
|
| 163 |
cursor: pointer;
|
| 164 |
-
display: -webkit-box;
|
| 165 |
-
display: -webkit-flex;
|
| 166 |
-
display: -ms-flexbox;
|
| 167 |
display: flex;
|
| 168 |
-
-
|
| 169 |
-
-
|
| 170 |
-
-ms-flex-pack: center;
|
| 171 |
-
justify-content: center;
|
| 172 |
-
-webkit-box-align: center;
|
| 173 |
-
-webkit-align-items: center;
|
| 174 |
-
-ms-flex-align: center;
|
| 175 |
-
align-items: center;
|
| 176 |
text-align: center;
|
| 177 |
}
|
| 178 |
|
|
@@ -204,14 +150,8 @@
|
|
| 204 |
}
|
| 205 |
|
| 206 |
.eael-tabs-content {
|
| 207 |
-
display: -webkit-box;
|
| 208 |
-
display: -webkit-flex;
|
| 209 |
-
display: -ms-flexbox;
|
| 210 |
display: flex;
|
| 211 |
-
|
| 212 |
-
-webkit-flex: 1 1 auto;
|
| 213 |
-
-ms-flex: 1 1 auto;
|
| 214 |
-
flex: 1 1 auto;
|
| 215 |
}
|
| 216 |
|
| 217 |
.eael-advance-tabs .eael-tabs-content > div {
|
|
@@ -236,33 +176,20 @@
|
|
| 236 |
}
|
| 237 |
|
| 238 |
.eael-tab-top-icon li {
|
| 239 |
-
display: -webkit-box;
|
| 240 |
-
display: -webkit-flex;
|
| 241 |
-
display: -ms-flexbox;
|
| 242 |
display: flex;
|
| 243 |
-
|
| 244 |
-
-ms-flex-wrap: wrap;
|
| 245 |
-
flex-wrap: wrap;
|
| 246 |
text-align: center;
|
| 247 |
}
|
| 248 |
|
| 249 |
.eael-tab-top-icon li a {
|
| 250 |
-
display: -webkit-box;
|
| 251 |
-
display: -webkit-flex;
|
| 252 |
-
display: -ms-flexbox;
|
| 253 |
display: flex;
|
| 254 |
-
|
| 255 |
-
-ms-flex-wrap: wrap;
|
| 256 |
-
flex-wrap: wrap;
|
| 257 |
text-align: center;
|
| 258 |
}
|
| 259 |
|
| 260 |
.eael-tab-top-icon li .fa,
|
| 261 |
.eael-tab-top-icon li .eael-tab-title {
|
| 262 |
-
|
| 263 |
-
-webkit-flex: 1 1 100%;
|
| 264 |
-
-ms-flex: 1 1 100%;
|
| 265 |
-
flex: 1 1 100%;
|
| 266 |
line-height: 1;
|
| 267 |
}
|
| 268 |
|
|
@@ -272,33 +199,20 @@
|
|
| 272 |
|
| 273 |
/*--- Vertical Tabs ---*/
|
| 274 |
.eael-advance-tabs.eael-tabs-vertical {
|
| 275 |
-
display: -webkit-box;
|
| 276 |
-
display: -webkit-flex;
|
| 277 |
-
display: -ms-flexbox;
|
| 278 |
display: flex;
|
| 279 |
}
|
| 280 |
|
| 281 |
.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav {
|
| 282 |
-
|
| 283 |
-
-webkit-flex: 0 0 auto;
|
| 284 |
-
-ms-flex: 0 0 auto;
|
| 285 |
-
flex: 0 0 auto;
|
| 286 |
}
|
| 287 |
|
| 288 |
.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav > ul {
|
| 289 |
-
-
|
| 290 |
-
-webkit-box-direction: normal;
|
| 291 |
-
-webkit-flex-flow: column wrap;
|
| 292 |
-
-ms-flex-flow: column wrap;
|
| 293 |
-
flex-flow: column wrap;
|
| 294 |
}
|
| 295 |
|
| 296 |
.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav > ul > li {
|
| 297 |
width: 100%;
|
| 298 |
-
-
|
| 299 |
-
-webkit-justify-content: start;
|
| 300 |
-
-ms-flex-pack: start;
|
| 301 |
-
justify-content: start;
|
| 302 |
}
|
| 303 |
|
| 304 |
.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav > ul li::after {
|
|
@@ -314,43 +228,27 @@
|
|
| 314 |
|
| 315 |
@media only screen and (max-width: 767px) {
|
| 316 |
.eael-advance-tabs .eael-tabs-nav > ul {
|
| 317 |
-
|
| 318 |
-
-ms-flex-wrap: wrap;
|
| 319 |
-
flex-wrap: wrap;
|
| 320 |
}
|
| 321 |
|
| 322 |
.eael-advance-tabs .eael-tabs-nav > ul li {
|
| 323 |
-
|
| 324 |
-
-webkit-flex: 1 100%;
|
| 325 |
-
-ms-flex: 1 100%;
|
| 326 |
-
flex: 1 100%;
|
| 327 |
}
|
| 328 |
|
| 329 |
.eael-advance-tabs.eael-tabs-vertical {
|
| 330 |
-
|
| 331 |
-
-ms-flex-wrap: wrap;
|
| 332 |
-
flex-wrap: wrap;
|
| 333 |
}
|
| 334 |
|
| 335 |
.eael-advance-tabs.eael-tabs-vertical div.eael-tabs-nav {
|
| 336 |
-
|
| 337 |
-
-webkit-flex: 1 100%;
|
| 338 |
-
-ms-flex: 1 100%;
|
| 339 |
-
flex: 1 100%;
|
| 340 |
}
|
| 341 |
|
| 342 |
.eael-advance-tabs.eael-tabs-vertical ul {
|
| 343 |
-
|
| 344 |
-
-webkit-flex: 1 100%;
|
| 345 |
-
-ms-flex: 1 100%;
|
| 346 |
-
flex: 1 100%;
|
| 347 |
}
|
| 348 |
|
| 349 |
.eael-advance-tabs.eael-tabs-vertical ul li {
|
| 350 |
-
|
| 351 |
-
-webkit-flex: 1 100%;
|
| 352 |
-
-ms-flex: 1 100%;
|
| 353 |
-
flex: 1 100%;
|
| 354 |
}
|
| 355 |
|
| 356 |
div.eael-advance-tabs.eael-tabs-vertical div.eael-tabs-nav > ul li::after {
|
|
@@ -467,8 +365,7 @@
|
|
| 467 |
background-image: url("../img/bg.jpg");
|
| 468 |
background-repeat: no-repeat;
|
| 469 |
background-position: center;
|
| 470 |
-
|
| 471 |
-
background-size: cover;
|
| 472 |
position: relative;
|
| 473 |
z-index: 0;
|
| 474 |
color: rgba(255, 255, 255, 0.7);
|
|
@@ -501,70 +398,42 @@
|
|
| 501 |
/*--- Cta Flex ---*/
|
| 502 |
.eael-call-to-action.cta-flex,
|
| 503 |
.eael-call-to-action.cta-icon-flex {
|
| 504 |
-
display: -webkit-box;
|
| 505 |
-
display: -webkit-flex;
|
| 506 |
-
display: -ms-flexbox;
|
| 507 |
display: flex;
|
| 508 |
-
-
|
| 509 |
-
-
|
| 510 |
-
-ms-flex-pack: justify;
|
| 511 |
-
justify-content: space-between;
|
| 512 |
-
-webkit-box-align: start;
|
| 513 |
-
-webkit-align-items: flex-start;
|
| 514 |
-
-ms-flex-align: start;
|
| 515 |
-
align-items: flex-start;
|
| 516 |
}
|
| 517 |
|
| 518 |
/*--- Cta Icon Flex ---*/
|
| 519 |
.eael-call-to-action.cta-icon-flex .icon {
|
| 520 |
-
-
|
| 521 |
-
-webkit-flex-grow: 1;
|
| 522 |
-
-ms-flex-positive: 1;
|
| 523 |
-
flex-grow: 1;
|
| 524 |
font-size: 80px;
|
| 525 |
text-align: left;
|
| 526 |
line-height: 130px;
|
| 527 |
}
|
| 528 |
|
| 529 |
.eael-call-to-action.cta-icon-flex .action {
|
| 530 |
-
-
|
| 531 |
-
-webkit-flex-grow: 1;
|
| 532 |
-
-ms-flex-positive: 1;
|
| 533 |
-
flex-grow: 1;
|
| 534 |
text-align: right;
|
| 535 |
padding-top: 22px;
|
| 536 |
-
|
| 537 |
-
-ms-flex-preferred-size: 22%;
|
| 538 |
-
flex-basis: 22%;
|
| 539 |
}
|
| 540 |
|
| 541 |
.eael-call-to-action.cta-icon-flex .content {
|
| 542 |
-
-
|
| 543 |
-
-webkit-flex-grow: 1;
|
| 544 |
-
-ms-flex-positive: 1;
|
| 545 |
-
flex-grow: 1;
|
| 546 |
padding: 0px 30px;
|
| 547 |
}
|
| 548 |
|
| 549 |
/*--- Cta Flex ---*/
|
| 550 |
.eael-call-to-action.cta-flex .content {
|
| 551 |
padding: 0px 15px;
|
| 552 |
-
-
|
| 553 |
-
-webkit-flex-grow: 1;
|
| 554 |
-
-ms-flex-positive: 1;
|
| 555 |
-
flex-grow: 1;
|
| 556 |
}
|
| 557 |
|
| 558 |
.eael-call-to-action.cta-flex .action {
|
| 559 |
-
-
|
| 560 |
-
-webkit-flex-grow: 1;
|
| 561 |
-
-ms-flex-positive: 1;
|
| 562 |
-
flex-grow: 1;
|
| 563 |
text-align: right;
|
| 564 |
padding-top: 25px;
|
| 565 |
-
|
| 566 |
-
-ms-flex-preferred-size: 23%;
|
| 567 |
-
flex-basis: 23%;
|
| 568 |
}
|
| 569 |
|
| 570 |
/*--- Cta Button ---*/
|
|
@@ -576,10 +445,7 @@
|
|
| 576 |
font-size: 16px;
|
| 577 |
text-decoration: none;
|
| 578 |
color: #4d4d4d;
|
| 579 |
-
-webkit-transition: .5s;
|
| 580 |
-
-o-transition: .5s;
|
| 581 |
transition: .5s;
|
| 582 |
-
-webkit-box-shadow: 0px 0px 3px -1px rgba(0, 0, 0, 0.2);
|
| 583 |
-ms-box-shadow: 0px 0px 3px -1px rgba(0, 0, 0, 0.2);
|
| 584 |
box-shadow: 0px 0px 3px -1px rgba(0, 0, 0, 0.2);
|
| 585 |
margin-right: 10px;
|
|
@@ -600,7 +466,6 @@
|
|
| 600 |
.eael-call-to-action .cta-button:hover {
|
| 601 |
color: #fff;
|
| 602 |
background: #3F51B5;
|
| 603 |
-
-webkit-box-shadow: 0px 1px 12px 1px rgba(0, 0, 0, 0.1);
|
| 604 |
-ms-box-shadow: 0px 1px 12px 1px rgba(0, 0, 0, 0.1);
|
| 605 |
box-shadow: 0px 1px 12px 1px rgba(0, 0, 0, 0.1);
|
| 606 |
}
|
|
@@ -618,15 +483,11 @@
|
|
| 618 |
-webkit-transform: translateY(-100%);
|
| 619 |
-ms-transform: translateY(-100%);
|
| 620 |
z-index: -1;
|
| 621 |
-
-webkit-transition: .5s;
|
| 622 |
-
-o-transition: .5s;
|
| 623 |
transition: .5s;
|
| 624 |
color: #fff;
|
| 625 |
}
|
| 626 |
|
| 627 |
.eael-call-to-action .cta-button.effect-1:hover::after {
|
| 628 |
-
-webkit-transform: translateY(0);
|
| 629 |
-
-ms-transform: translateY(0);
|
| 630 |
transform: translateY(0);
|
| 631 |
}
|
| 632 |
|
|
@@ -640,28 +501,20 @@
|
|
| 640 |
top: 0px;
|
| 641 |
left: 0px;
|
| 642 |
z-index: -1;
|
| 643 |
-
-webkit-transition: .5s;
|
| 644 |
-
-o-transition: .5s;
|
| 645 |
transition: .5s;
|
| 646 |
color: #fff;
|
| 647 |
-
|
| 648 |
-
-ms-transform: translateX(-100%);
|
| 649 |
-
transform: translateX(-100%);
|
| 650 |
}
|
| 651 |
|
| 652 |
.eael-call-to-action .cta-button.effect-2:hover::after {
|
| 653 |
-
|
| 654 |
-
-ms-transform: translateX(0);
|
| 655 |
-
transform: translateX(0);
|
| 656 |
}
|
| 657 |
|
| 658 |
/*--- Media Queries ---*/
|
| 659 |
@media only screen and (max-width: 768px) {
|
| 660 |
.eael-call-to-action.cta-flex,
|
| 661 |
.eael-call-to-action.cta-icon-flex {
|
| 662 |
-
|
| 663 |
-
-ms-flex-wrap: wrap;
|
| 664 |
-
flex-wrap: wrap;
|
| 665 |
}
|
| 666 |
|
| 667 |
.eael-call-to-action .title {
|
|
@@ -671,10 +524,7 @@
|
|
| 671 |
}
|
| 672 |
|
| 673 |
.eael-call-to-action.cta-icon-flex .icon {
|
| 674 |
-
-
|
| 675 |
-
-webkit-flex-grow: 1;
|
| 676 |
-
-ms-flex-positive: 1;
|
| 677 |
-
flex-grow: 1;
|
| 678 |
font-size: 48px;
|
| 679 |
line-height: 90px;
|
| 680 |
text-align: center;
|
|
@@ -682,10 +532,7 @@
|
|
| 682 |
|
| 683 |
.eael-call-to-action.cta-flex .content,
|
| 684 |
.eael-call-to-action.cta-icon-flex .content {
|
| 685 |
-
-
|
| 686 |
-
-webkit-flex-grow: 1;
|
| 687 |
-
-ms-flex-positive: 1;
|
| 688 |
-
flex-grow: 1;
|
| 689 |
text-align: center;
|
| 690 |
padding: 0px;
|
| 691 |
}
|
|
@@ -719,44 +566,28 @@
|
|
| 719 |
|
| 720 |
@-webkit-keyframes "loaderSpin" {
|
| 721 |
0% {
|
| 722 |
-
|
| 723 |
-
transform: rotate(0deg);
|
| 724 |
}
|
| 725 |
100% {
|
| 726 |
-
|
| 727 |
-
transform: rotate(360deg);
|
| 728 |
}
|
| 729 |
}
|
| 730 |
@keyframes "loaderSpin" {
|
| 731 |
0% {
|
| 732 |
-
|
| 733 |
-
transform: rotate(0deg);
|
| 734 |
}
|
| 735 |
100% {
|
| 736 |
-
|
| 737 |
-
transform: rotate(360deg);
|
| 738 |
}
|
| 739 |
}
|
| 740 |
.eael-load-more-button-wrap {
|
| 741 |
-
display: -webkit-box;
|
| 742 |
-
display: -webkit-flex;
|
| 743 |
-
display: -ms-flexbox;
|
| 744 |
display: flex;
|
| 745 |
}
|
| 746 |
|
| 747 |
.eael-load-more-button {
|
| 748 |
-
display: -webkit-box;
|
| 749 |
-
display: -webkit-flex;
|
| 750 |
-
display: -ms-flexbox;
|
| 751 |
display: flex;
|
| 752 |
-
-
|
| 753 |
-
-
|
| 754 |
-
-ms-flex-align: center;
|
| 755 |
-
align-items: center;
|
| 756 |
-
-webkit-box-pack: center;
|
| 757 |
-
-webkit-justify-content: center;
|
| 758 |
-
-ms-flex-pack: center;
|
| 759 |
-
justify-content: center;
|
| 760 |
padding: 1em 2em;
|
| 761 |
border: 0px solid;
|
| 762 |
font-size: 16px;
|
|
@@ -766,8 +597,6 @@
|
|
| 766 |
left: -100%;
|
| 767 |
top: auto;
|
| 768 |
margin-right: 5px;
|
| 769 |
-
-webkit-transition: all .2s;
|
| 770 |
-
-o-transition: all .2s;
|
| 771 |
transition: all .2s;
|
| 772 |
}
|
| 773 |
.eael-load-more-button > span {
|
|
@@ -782,8 +611,7 @@
|
|
| 782 |
}
|
| 783 |
|
| 784 |
.eael-btn-loader {
|
| 785 |
-
|
| 786 |
-
border-radius: 50%;
|
| 787 |
width: 20px;
|
| 788 |
height: 20px;
|
| 789 |
font-size: 10px;
|
|
@@ -793,14 +621,12 @@
|
|
| 793 |
border-right: 4px solid rgba(255, 255, 255, 0.2);
|
| 794 |
border-bottom: 4px solid rgba(255, 255, 255, 0.2);
|
| 795 |
border-left: 4px solid #ffffff;
|
| 796 |
-
|
| 797 |
-
transform: translateZ(0);
|
| 798 |
-webkit-animation: loaderSpin 1.1s infinite linear;
|
| 799 |
animation: loaderSpin 1.1s infinite linear;
|
| 800 |
}
|
| 801 |
.eael-btn-loader:after {
|
| 802 |
-
|
| 803 |
-
border-radius: 50%;
|
| 804 |
width: 20px;
|
| 805 |
height: 20px;
|
| 806 |
}
|
|
@@ -844,12 +670,7 @@
|
|
| 844 |
.eael-contact-form-7 input[type="tel"],
|
| 845 |
.eael-contact-form-7 input[type="color"],
|
| 846 |
.eael-contact-form-7 .uneditable-input {
|
| 847 |
-
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
| 848 |
-
-webkit-transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
|
| 849 |
-
transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
|
| 850 |
-
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
|
| 851 |
transition: border linear 0.2s, box-shadow linear 0.2s;
|
| 852 |
-
transition: border linear 0.2s, box-shadow linear 0.2s, -webkit-box-shadow linear 0.2s;
|
| 853 |
}
|
| 854 |
|
| 855 |
.eael-contact-form-7 .wpcf7-form::before,
|
|
@@ -897,41 +718,22 @@
|
|
| 897 |
margin: 0 auto;
|
| 898 |
}
|
| 899 |
|
| 900 |
-
/*----------------------------*/
|
| 901 |
-
/* 29. Content Ticker
|
| 902 |
-
/*----------------------------*/
|
| 903 |
.eael-ticker-wrap {
|
| 904 |
overflow: hidden;
|
| 905 |
-
display: -webkit-box;
|
| 906 |
-
display: -webkit-flex;
|
| 907 |
-
display: -ms-flexbox;
|
| 908 |
display: flex;
|
| 909 |
-
-
|
| 910 |
-
-
|
| 911 |
-
-webkit-flex-flow: row nowrap;
|
| 912 |
-
-ms-flex-flow: row nowrap;
|
| 913 |
-
flex-flow: row nowrap;
|
| 914 |
-
-webkit-box-align: center;
|
| 915 |
-
-webkit-align-items: center;
|
| 916 |
-
-ms-flex-align: center;
|
| 917 |
-
align-items: center;
|
| 918 |
width: 100%;
|
| 919 |
}
|
| 920 |
|
| 921 |
.eael-ticker-wrap .ticker-badge {
|
| 922 |
-
|
| 923 |
-
-webkit-flex: 0 0 auto;
|
| 924 |
-
-ms-flex: 0 0 auto;
|
| 925 |
-
flex: 0 0 auto;
|
| 926 |
padding: 8px 12px;
|
| 927 |
}
|
| 928 |
|
| 929 |
.eael-ticker-wrap .eael-ticker {
|
| 930 |
overflow: hidden;
|
| 931 |
-
|
| 932 |
-
-webkit-flex: 1 1 auto;
|
| 933 |
-
-ms-flex: 1 1 auto;
|
| 934 |
-
flex: 1 1 auto;
|
| 935 |
}
|
| 936 |
|
| 937 |
.eael-ticker-wrap .eael-ticker .ticker-content {
|
|
@@ -964,11 +766,7 @@
|
|
| 964 |
|
| 965 |
@media only screen and (max-width: 767px) {
|
| 966 |
.eael-ticker-wrap {
|
| 967 |
-
-
|
| 968 |
-
-webkit-box-direction: normal;
|
| 969 |
-
-webkit-flex-flow: row wrap;
|
| 970 |
-
-ms-flex-flow: row wrap;
|
| 971 |
-
flex-flow: row wrap;
|
| 972 |
}
|
| 973 |
|
| 974 |
.content-ticker-pagination {
|
|
@@ -1043,24 +841,17 @@
|
|
| 1043 |
}
|
| 1044 |
|
| 1045 |
.eael-creative-button-wrapper {
|
| 1046 |
-
display: -webkit-box;
|
| 1047 |
-
display: -webkit-flex;
|
| 1048 |
-
display: -ms-flexbox;
|
| 1049 |
display: flex;
|
| 1050 |
}
|
| 1051 |
|
| 1052 |
.eael-creative-button {
|
| 1053 |
-
|
| 1054 |
-
-webkit-flex: 0 0 auto;
|
| 1055 |
-
-ms-flex: 0 0 auto;
|
| 1056 |
-
flex: 0 0 auto;
|
| 1057 |
min-width: 150px;
|
| 1058 |
text-align: center;
|
| 1059 |
vertical-align: middle;
|
| 1060 |
position: relative;
|
| 1061 |
z-index: 1;
|
| 1062 |
-
|
| 1063 |
-
border-radius: 2px;
|
| 1064 |
padding: 20px 30px;
|
| 1065 |
font-size: 16px;
|
| 1066 |
line-height: 1;
|
|
@@ -1089,12 +880,8 @@
|
|
| 1089 |
.eael-creative-button--winona {
|
| 1090 |
overflow: hidden;
|
| 1091 |
padding: 0 !important;
|
| 1092 |
-
-webkit-transition: border-color 0.3s, background-color 0.3s;
|
| 1093 |
-
-o-transition: border-color 0.3s, background-color 0.3s;
|
| 1094 |
transition: border-color 0.3s, background-color 0.3s;
|
| 1095 |
-
|
| 1096 |
-
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 1097 |
-
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 1098 |
}
|
| 1099 |
|
| 1100 |
.eael-creative-button--winona::after {
|
|
@@ -1105,7 +892,6 @@
|
|
| 1105 |
top: 0;
|
| 1106 |
left: 0;
|
| 1107 |
opacity: 0;
|
| 1108 |
-
-webkit-transform: translate3d(0, 25%, 0);
|
| 1109 |
transform: translate3d(0, 25%, 0);
|
| 1110 |
}
|
| 1111 |
|
|
@@ -1116,33 +902,22 @@
|
|
| 1116 |
.eael-creative-button--winona::after,
|
| 1117 |
.eael-creative-button--winona > span {
|
| 1118 |
padding: 1em 2em;
|
| 1119 |
-
-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
|
| 1120 |
-
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
|
| 1121 |
-
transition: opacity 0.3s, -webkit-transform 0.3s;
|
| 1122 |
-
-o-transition: transform 0.3s, opacity 0.3s;
|
| 1123 |
transition: transform 0.3s, opacity 0.3s;
|
| 1124 |
-
transition:
|
| 1125 |
-
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 1126 |
-
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 1127 |
-
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 1128 |
}
|
| 1129 |
|
| 1130 |
.eael-creative-button--winona:hover::after {
|
| 1131 |
opacity: 1;
|
| 1132 |
-
-webkit-transform: translate3d(0, 0, 0);
|
| 1133 |
transform: translate3d(0, 0, 0);
|
| 1134 |
}
|
| 1135 |
|
| 1136 |
.eael-creative-button--winona:hover > span {
|
| 1137 |
opacity: 0;
|
| 1138 |
-
-webkit-transform: translate3d(0, -25%, 0);
|
| 1139 |
transform: translate3d(0, -25%, 0);
|
| 1140 |
}
|
| 1141 |
|
| 1142 |
/*--- Ujarak ---*/
|
| 1143 |
.eael-creative-button--ujarak {
|
| 1144 |
-
-webkit-transition: border-color 0.4s, color 0.4s;
|
| 1145 |
-
-o-transition: border-color 0.4s, color 0.4s;
|
| 1146 |
transition: border-color 0.4s, color 0.4s;
|
| 1147 |
}
|
| 1148 |
|
|
@@ -1155,41 +930,26 @@
|
|
| 1155 |
height: 100%;
|
| 1156 |
z-index: -1;
|
| 1157 |
opacity: 0;
|
| 1158 |
-
-webkit-transform: scale3d(0.7, 1, 1);
|
| 1159 |
transform: scale3d(0.7, 1, 1);
|
| 1160 |
-
-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
|
| 1161 |
-
-webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
|
| 1162 |
-
transition: opacity 0.4s, -webkit-transform 0.4s;
|
| 1163 |
-
-o-transition: transform 0.4s, opacity 0.4s;
|
| 1164 |
transition: transform 0.4s, opacity 0.4s;
|
| 1165 |
-
transition:
|
| 1166 |
-
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 1167 |
-
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 1168 |
-
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 1169 |
}
|
| 1170 |
|
| 1171 |
.eael-creative-button--ujarak,
|
| 1172 |
.eael-creative-button--ujarak::before {
|
| 1173 |
-
|
| 1174 |
-
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 1175 |
-
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 1176 |
}
|
| 1177 |
|
| 1178 |
.eael-creative-button--ujarak:hover::before {
|
| 1179 |
opacity: 1;
|
| 1180 |
-
-webkit-transform: translate3d(0, 0, 0);
|
| 1181 |
transform: translate3d(0, 0, 0);
|
| 1182 |
}
|
| 1183 |
|
| 1184 |
/*--- Wayra ---*/
|
| 1185 |
.eael-creative-button--wayra {
|
| 1186 |
overflow: hidden;
|
| 1187 |
-
-webkit-transition: border-color 0.3s, color 0.3s;
|
| 1188 |
-
-o-transition: border-color 0.3s, color 0.3s;
|
| 1189 |
transition: border-color 0.3s, color 0.3s;
|
| 1190 |
-
|
| 1191 |
-
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 1192 |
-
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 1193 |
}
|
| 1194 |
|
| 1195 |
.eael-creative-button--wayra::before {
|
|
@@ -1200,26 +960,15 @@
|
|
| 1200 |
width: 150%;
|
| 1201 |
height: 100%;
|
| 1202 |
z-index: -1;
|
| 1203 |
-
-webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
|
| 1204 |
transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
|
| 1205 |
-
|
| 1206 |
-
-ms-transform-origin: 0% 100%;
|
| 1207 |
-
transform-origin: 0% 100%;
|
| 1208 |
-
-webkit-transition: -webkit-transform 0.3s, opacity 0.3s, background-color 0.3s;
|
| 1209 |
-
-webkit-transition: opacity 0.3s, background-color 0.3s, -webkit-transform 0.3s;
|
| 1210 |
-
transition: opacity 0.3s, background-color 0.3s, -webkit-transform 0.3s;
|
| 1211 |
-
-o-transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
|
| 1212 |
transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
|
| 1213 |
-
transition: transform 0.3s, opacity 0.3s, background-color 0.3s, -webkit-transform 0.3s;
|
| 1214 |
}
|
| 1215 |
|
| 1216 |
.eael-creative-button--wayra:hover::before {
|
| 1217 |
opacity: 1;
|
| 1218 |
-
-webkit-transform: rotate3d(0, 0, 1, 0deg);
|
| 1219 |
transform: rotate3d(0, 0, 1, 0deg);
|
| 1220 |
-
|
| 1221 |
-
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 1222 |
-
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 1223 |
}
|
| 1224 |
|
| 1225 |
/*--- Tamaya ---*/
|
|
@@ -1235,14 +984,8 @@
|
|
| 1235 |
height: 50%;
|
| 1236 |
left: 0;
|
| 1237 |
overflow: hidden;
|
| 1238 |
-
-webkit-transition: -webkit-transform 0.3s;
|
| 1239 |
-
transition: -webkit-transform 0.3s;
|
| 1240 |
-
-o-transition: transform 0.3s;
|
| 1241 |
transition: transform 0.3s;
|
| 1242 |
-
transition:
|
| 1243 |
-
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 1244 |
-
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 1245 |
-
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 1246 |
}
|
| 1247 |
|
| 1248 |
.eael-creative-button--tamaya::before {
|
|
@@ -1261,33 +1004,22 @@
|
|
| 1261 |
|
| 1262 |
.eael-creative-button--tamaya > span {
|
| 1263 |
display: block;
|
| 1264 |
-
-webkit-transform: scale3d(0.2, 0.2, 1);
|
| 1265 |
transform: scale3d(0.2, 0.2, 1);
|
| 1266 |
opacity: 0;
|
| 1267 |
-
-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
|
| 1268 |
-
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
|
| 1269 |
-
transition: opacity 0.3s, -webkit-transform 0.3s;
|
| 1270 |
-
-o-transition: transform 0.3s, opacity 0.3s;
|
| 1271 |
transition: transform 0.3s, opacity 0.3s;
|
| 1272 |
-
transition:
|
| 1273 |
-
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 1274 |
-
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 1275 |
-
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 1276 |
}
|
| 1277 |
|
| 1278 |
.eael-creative-button--tamaya:hover::before {
|
| 1279 |
-
-webkit-transform: translate3d(0, -100%, 0);
|
| 1280 |
transform: translate3d(0, -100%, 0);
|
| 1281 |
}
|
| 1282 |
|
| 1283 |
.eael-creative-button--tamaya:hover::after {
|
| 1284 |
-
-webkit-transform: translate3d(0, 100%, 0);
|
| 1285 |
transform: translate3d(0, 100%, 0);
|
| 1286 |
}
|
| 1287 |
|
| 1288 |
.eael-creative-button--tamaya:hover > span {
|
| 1289 |
opacity: 1;
|
| 1290 |
-
-webkit-transform: scale3d(1, 1, 1);
|
| 1291 |
transform: scale3d(1, 1, 1);
|
| 1292 |
}
|
| 1293 |
|
|
@@ -1304,7 +1036,6 @@
|
|
| 1304 |
left: 0;
|
| 1305 |
width: 100%;
|
| 1306 |
height: 100%;
|
| 1307 |
-
-webkit-transform: translate3d(-100%, 0, 0);
|
| 1308 |
transform: translate3d(-100%, 0, 0);
|
| 1309 |
}
|
| 1310 |
|
|
@@ -1315,23 +1046,15 @@
|
|
| 1315 |
.eael-creative-button--rayen::before,
|
| 1316 |
.eael-creative-button--rayen > span {
|
| 1317 |
padding: 1em 2em;
|
| 1318 |
-
-webkit-transition: -webkit-transform 0.3s;
|
| 1319 |
-
transition: -webkit-transform 0.3s;
|
| 1320 |
-
-o-transition: transform 0.3s;
|
| 1321 |
transition: transform 0.3s;
|
| 1322 |
-
transition:
|
| 1323 |
-
-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
|
| 1324 |
-
-o-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
|
| 1325 |
-
transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
|
| 1326 |
}
|
| 1327 |
|
| 1328 |
.eael-creative-button--rayen:hover::before {
|
| 1329 |
-
-webkit-transform: translate3d(0, 0, 0);
|
| 1330 |
transform: translate3d(0, 0, 0);
|
| 1331 |
}
|
| 1332 |
|
| 1333 |
.eael-creative-button--rayen:hover > span {
|
| 1334 |
-
-webkit-transform: translate3d(0, 100%, 0);
|
| 1335 |
transform: translate3d(0, 100%, 0);
|
| 1336 |
}
|
| 1337 |
|
|
@@ -1349,35 +1072,18 @@ table.eael-data-table thead .sorting:after, table.eael-data-table thead .sorting
|
|
| 1349 |
font-family: "FontAwesome";
|
| 1350 |
color: #fff;
|
| 1351 |
z-index: 1;
|
| 1352 |
-
|
| 1353 |
-
-ms-transform: translateY(-50%);
|
| 1354 |
-
transform: translateY(-50%);
|
| 1355 |
}
|
| 1356 |
|
| 1357 |
.eael-data-table-wrap .eael-data-tables_wrapper {
|
| 1358 |
-
display: -webkit-box;
|
| 1359 |
-
display: -webkit-flex;
|
| 1360 |
-
display: -ms-flexbox;
|
| 1361 |
display: flex;
|
| 1362 |
-
-
|
| 1363 |
-
-
|
| 1364 |
-
-webkit-flex-flow: row wrap;
|
| 1365 |
-
-ms-flex-flow: row wrap;
|
| 1366 |
-
flex-flow: row wrap;
|
| 1367 |
-
-webkit-box-pack: start;
|
| 1368 |
-
-webkit-justify-content: flex-start;
|
| 1369 |
-
-ms-flex-pack: start;
|
| 1370 |
-
justify-content: flex-start;
|
| 1371 |
width: 100%;
|
| 1372 |
}
|
| 1373 |
.eael-data-table-wrap .eael-data-tables_filter {
|
| 1374 |
-
-
|
| 1375 |
-
|
| 1376 |
-
-ms-flex-positive: 1;
|
| 1377 |
-
flex-grow: 1;
|
| 1378 |
-
-webkit-flex-basis: 50%;
|
| 1379 |
-
-ms-flex-preferred-size: 50%;
|
| 1380 |
-
flex-basis: 50%;
|
| 1381 |
text-align: right;
|
| 1382 |
}
|
| 1383 |
.eael-data-table-wrap .eael-data-tables_filter label {
|
|
@@ -1391,13 +1097,8 @@ table.eael-data-table thead .sorting:after, table.eael-data-table thead .sorting
|
|
| 1391 |
margin-left: 10px;
|
| 1392 |
}
|
| 1393 |
.eael-data-table-wrap .eael-data-tables_length {
|
| 1394 |
-
-
|
| 1395 |
-
|
| 1396 |
-
-ms-flex-positive: 1;
|
| 1397 |
-
flex-grow: 1;
|
| 1398 |
-
-webkit-flex-basis: 50%;
|
| 1399 |
-
-ms-flex-preferred-size: 50%;
|
| 1400 |
-
flex-basis: 50%;
|
| 1401 |
}
|
| 1402 |
.eael-data-table-wrap .eael-data-tables_length select {
|
| 1403 |
width: auto;
|
|
@@ -1412,23 +1113,13 @@ table.eael-data-table thead .sorting:after, table.eael-data-table thead .sorting
|
|
| 1412 |
font-weight: 700;
|
| 1413 |
}
|
| 1414 |
.eael-data-table-wrap .eael-data-tables_info {
|
| 1415 |
-
-
|
| 1416 |
-
|
| 1417 |
-
-ms-flex-positive: 1;
|
| 1418 |
-
flex-grow: 1;
|
| 1419 |
-
-webkit-flex-basis: 50%;
|
| 1420 |
-
-ms-flex-preferred-size: 50%;
|
| 1421 |
-
flex-basis: 50%;
|
| 1422 |
font-weight: 700;
|
| 1423 |
}
|
| 1424 |
.eael-data-table-wrap .eael-data-tables_paginate {
|
| 1425 |
-
-
|
| 1426 |
-
|
| 1427 |
-
-ms-flex-positive: 1;
|
| 1428 |
-
flex-grow: 1;
|
| 1429 |
-
-webkit-flex-basis: 50%;
|
| 1430 |
-
-ms-flex-preferred-size: 50%;
|
| 1431 |
-
flex-basis: 50%;
|
| 1432 |
text-align: right;
|
| 1433 |
}
|
| 1434 |
.eael-data-table-wrap .eael-data-tables_paginate .paginate_button {
|
|
@@ -1436,8 +1127,6 @@ table.eael-data-table thead .sorting:after, table.eael-data-table thead .sorting
|
|
| 1436 |
background: #f2f2f2;
|
| 1437 |
margin-right: 2px;
|
| 1438 |
cursor: pointer;
|
| 1439 |
-
-webkit-transition: all .3s;
|
| 1440 |
-
-o-transition: all .3s;
|
| 1441 |
transition: all .3s;
|
| 1442 |
}
|
| 1443 |
.eael-data-table-wrap .eael-data-tables_paginate .paginate_button:hover {
|
|
@@ -1489,8 +1178,6 @@ table.eael-data-table thead .sorting:after, table.eael-data-table thead .sorting
|
|
| 1489 |
border-color: #000;
|
| 1490 |
}
|
| 1491 |
.eael-data-table tbody tr.even {
|
| 1492 |
-
-webkit-transition: background 0.4s ease-in-out;
|
| 1493 |
-
-o-transition: background 0.4s ease-in-out;
|
| 1494 |
transition: background 0.4s ease-in-out;
|
| 1495 |
}
|
| 1496 |
.eael-data-table tbody tr.even:hover {
|
|
@@ -1501,8 +1188,6 @@ table.eael-data-table thead .sorting:after, table.eael-data-table thead .sorting
|
|
| 1501 |
}
|
| 1502 |
.eael-data-table tbody tr.odd {
|
| 1503 |
background: rgba(242, 242, 242, 0.5);
|
| 1504 |
-
-webkit-transition: background 0.2s ease-in-out;
|
| 1505 |
-
-o-transition: background 0.2s ease-in-out;
|
| 1506 |
transition: background 0.2s ease-in-out;
|
| 1507 |
}
|
| 1508 |
.eael-data-table tbody tr.odd:hover {
|
|
@@ -1542,16 +1227,9 @@ table.eael-data-table thead .sorting:after, table.eael-data-table thead .sorting
|
|
| 1542 |
padding: 0 .6em;
|
| 1543 |
margin-right: 10px;
|
| 1544 |
text-align: center;
|
| 1545 |
-
-
|
| 1546 |
-
|
| 1547 |
-
|
| 1548 |
-
flex-grow: 0;
|
| 1549 |
-
-webkit-flex-shrink: 0;
|
| 1550 |
-
-ms-flex-negative: 0;
|
| 1551 |
-
flex-shrink: 0;
|
| 1552 |
-
-webkit-flex-basis: 100px;
|
| 1553 |
-
-ms-flex-preferred-size: 100px;
|
| 1554 |
-
flex-basis: 100px;
|
| 1555 |
}
|
| 1556 |
.th-mobile-screen .eael-data-table-th-img {
|
| 1557 |
margin: 0 auto 15px auto;
|
|
@@ -1563,26 +1241,17 @@ table.eael-data-table thead .sorting:after, table.eael-data-table thead .sorting
|
|
| 1563 |
}
|
| 1564 |
|
| 1565 |
.td-content-wrapper {
|
| 1566 |
-
display: -webkit-box;
|
| 1567 |
-
display: -webkit-flex;
|
| 1568 |
-
display: -ms-flexbox;
|
| 1569 |
display: flex;
|
| 1570 |
width: 100%;
|
| 1571 |
}
|
| 1572 |
|
| 1573 |
.td-content {
|
| 1574 |
width: 100%;
|
| 1575 |
-
-
|
| 1576 |
-
-webkit-justify-content: center;
|
| 1577 |
-
-ms-flex-pack: center;
|
| 1578 |
-
justify-content: center;
|
| 1579 |
}
|
| 1580 |
.td-content > p {
|
| 1581 |
width: 100%;
|
| 1582 |
-
-
|
| 1583 |
-
-webkit-justify-content: center;
|
| 1584 |
-
-ms-flex-pack: center;
|
| 1585 |
-
justify-content: center;
|
| 1586 |
}
|
| 1587 |
|
| 1588 |
.custom-responsive-option-enable .eael-data-table thead {
|
|
@@ -1593,24 +1262,12 @@ table.eael-data-table thead .sorting:after, table.eael-data-table thead .sorting
|
|
| 1593 |
clear: left;
|
| 1594 |
width: 100%;
|
| 1595 |
text-align: left;
|
| 1596 |
-
display: -webkit-box;
|
| 1597 |
-
display: -webkit-flex;
|
| 1598 |
-
display: -ms-flexbox;
|
| 1599 |
display: flex;
|
| 1600 |
-
-
|
| 1601 |
-
-webkit-align-items: center;
|
| 1602 |
-
-ms-flex-align: center;
|
| 1603 |
-
align-items: center;
|
| 1604 |
}
|
| 1605 |
|
| 1606 |
.eael-data-table .td-content {
|
| 1607 |
-
-
|
| 1608 |
-
-webkit-align-items: center;
|
| 1609 |
-
-ms-flex-align: center;
|
| 1610 |
-
align-items: center;
|
| 1611 |
-
display: -webkit-box;
|
| 1612 |
-
display: -webkit-flex;
|
| 1613 |
-
display: -ms-flexbox;
|
| 1614 |
display: flex;
|
| 1615 |
}
|
| 1616 |
}
|
|
@@ -1761,14 +1418,14 @@ table.eael-data-table .sorting_asc.sorting-none:after {
|
|
| 1761 |
color: #f54;
|
| 1762 |
}
|
| 1763 |
|
| 1764 |
-
/*--------------------------*/
|
| 1765 |
-
/* 03. Fancy Text Style
|
| 1766 |
-
/*--------------------------*/
|
| 1767 |
.eael-fancy-text-container p {
|
| 1768 |
margin: 0;
|
| 1769 |
}
|
| 1770 |
|
| 1771 |
-
.eael-fancy-text-strings
|
|
|
|
|
|
|
|
|
|
| 1772 |
.eael-fancy-text-prefix,
|
| 1773 |
.eael-fancy-text-suffix {
|
| 1774 |
display: inline-block;
|
|
@@ -1806,7 +1463,6 @@ table.eael-data-table .sorting_asc.sorting-none:after {
|
|
| 1806 |
opacity: 1;
|
| 1807 |
}
|
| 1808 |
}
|
| 1809 |
-
/*--- Style 2 ---*/
|
| 1810 |
.eael-fancy-text-container.style-2 {
|
| 1811 |
font-size: 24px;
|
| 1812 |
}
|
|
@@ -1874,52 +1530,34 @@ table.eael-data-table .sorting_asc.sorting-none:after {
|
|
| 1874 |
}
|
| 1875 |
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box {
|
| 1876 |
z-index: 2;
|
| 1877 |
-
-webkit-transition: all 0.5s;
|
| 1878 |
-
-o-transition: all 0.5s;
|
| 1879 |
transition: all 0.5s;
|
| 1880 |
}
|
| 1881 |
@media (prefers-reduced-motion: reduce) {
|
| 1882 |
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box {
|
| 1883 |
-
-webkit-transition: none;
|
| 1884 |
-
-o-transition: none;
|
| 1885 |
transition: none;
|
| 1886 |
}
|
| 1887 |
}
|
| 1888 |
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon-inner {
|
| 1889 |
background-color: #37368e;
|
| 1890 |
-
-webkit-transition: all 0.5s;
|
| 1891 |
-
-o-transition: all 0.5s;
|
| 1892 |
transition: all 0.5s;
|
| 1893 |
-
display: -webkit-inline-box;
|
| 1894 |
-
display: -webkit-inline-flex;
|
| 1895 |
-
display: -ms-inline-flexbox;
|
| 1896 |
display: inline-flex;
|
| 1897 |
}
|
| 1898 |
@media (prefers-reduced-motion: reduce) {
|
| 1899 |
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon-inner {
|
| 1900 |
-
-webkit-transition: none;
|
| 1901 |
-
-o-transition: none;
|
| 1902 |
transition: none;
|
| 1903 |
}
|
| 1904 |
}
|
| 1905 |
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon {
|
| 1906 |
padding: 0.5em;
|
| 1907 |
-
-webkit-transition: all 0.5s;
|
| 1908 |
-
-o-transition: all 0.5s;
|
| 1909 |
transition: all 0.5s;
|
| 1910 |
font-size: 30px;
|
| 1911 |
line-height: 1;
|
| 1912 |
color: #37368e;
|
| 1913 |
text-align: center;
|
| 1914 |
-
display: -webkit-inline-box;
|
| 1915 |
-
display: -webkit-inline-flex;
|
| 1916 |
-
display: -ms-inline-flexbox;
|
| 1917 |
display: inline-flex;
|
| 1918 |
}
|
| 1919 |
@media (prefers-reduced-motion: reduce) {
|
| 1920 |
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon {
|
| 1921 |
-
-webkit-transition: none;
|
| 1922 |
-
-o-transition: none;
|
| 1923 |
transition: none;
|
| 1924 |
}
|
| 1925 |
}
|
|
@@ -1932,8 +1570,6 @@ table.eael-data-table .sorting_asc.sorting-none:after {
|
|
| 1932 |
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon i:before {
|
| 1933 |
position: absolute;
|
| 1934 |
left: 50%;
|
| 1935 |
-
-webkit-transform: translateX(-50%);
|
| 1936 |
-
-ms-transform: translateX(-50%);
|
| 1937 |
transform: translateX(-50%);
|
| 1938 |
}
|
| 1939 |
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-img {
|
|
@@ -1961,27 +1597,19 @@ table.eael-data-table .sorting_asc.sorting-none:after {
|
|
| 1961 |
background-color: #fff;
|
| 1962 |
}
|
| 1963 |
.elementor-widget-eael-feature-list .eael-feature-list-items.circle .eael-feature-list-icon-box .eael-feature-list-icon-inner {
|
| 1964 |
-
|
| 1965 |
-
border-radius: 50%;
|
| 1966 |
}
|
| 1967 |
.elementor-widget-eael-feature-list .eael-feature-list-items.circle .eael-feature-list-icon-box .eael-feature-list-icon-inner .eael-feature-list-icon {
|
| 1968 |
-
|
| 1969 |
-
border-radius: 50%;
|
| 1970 |
}
|
| 1971 |
.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-icon-box .eael-feature-list-icon-inner {
|
| 1972 |
-
|
| 1973 |
-
-ms-transform: rotate(45deg);
|
| 1974 |
-
transform: rotate(45deg);
|
| 1975 |
margin: 15px;
|
| 1976 |
}
|
| 1977 |
.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-icon-box .eael-feature-list-icon i {
|
| 1978 |
-
-ms-transform: rotate(-45deg);
|
| 1979 |
-
-webkit-transform: rotate(-45deg);
|
| 1980 |
transform: rotate(-45deg);
|
| 1981 |
}
|
| 1982 |
.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-icon-box .eael-feature-list-icon img {
|
| 1983 |
-
-ms-transform: rotate(-45deg);
|
| 1984 |
-
-webkit-transform: rotate(-45deg);
|
| 1985 |
transform: rotate(-45deg);
|
| 1986 |
}
|
| 1987 |
.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-content-box .eael-feature-list-title {
|
|
@@ -2056,49 +1684,27 @@ table.eael-data-table .sorting_asc.sorting-none:after {
|
|
| 2056 |
margin-bottom: 0 !important;
|
| 2057 |
}
|
| 2058 |
.elementor-widget-eael-feature-list.-icon-position-left .eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-item {
|
| 2059 |
-
display: -webkit-box;
|
| 2060 |
-
display: -webkit-flex;
|
| 2061 |
-
display: -ms-flexbox;
|
| 2062 |
display: flex;
|
| 2063 |
}
|
| 2064 |
.elementor-widget-eael-feature-list.-icon-position-left .eael-feature-list-item {
|
| 2065 |
text-align: left;
|
| 2066 |
-
-webkit-box-orient: horizontal;
|
| 2067 |
-
-webkit-box-direction: normal;
|
| 2068 |
-
-webkit-flex-direction: row;
|
| 2069 |
-
-ms-flex-direction: row;
|
| 2070 |
flex-direction: row;
|
| 2071 |
}
|
| 2072 |
.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-item {
|
| 2073 |
text-align: right;
|
| 2074 |
-
-webkit-box-orient: horizontal;
|
| 2075 |
-
-webkit-box-direction: reverse;
|
| 2076 |
-
-webkit-flex-direction: row-reverse;
|
| 2077 |
-
-ms-flex-direction: row-reverse;
|
| 2078 |
flex-direction: row-reverse;
|
| 2079 |
}
|
| 2080 |
}
|
| 2081 |
@media (max-width: 1024px) {
|
| 2082 |
.elementor-widget-eael-feature-list.-tablet-icon-position-left .eael-feature-list-item, .elementor-widget-eael-feature-list.-tablet-icon-position-right .eael-feature-list-item {
|
| 2083 |
-
display: -webkit-box;
|
| 2084 |
-
display: -webkit-flex;
|
| 2085 |
-
display: -ms-flexbox;
|
| 2086 |
display: flex;
|
| 2087 |
}
|
| 2088 |
.elementor-widget-eael-feature-list.-tablet-icon-position-left .eael-feature-list-item {
|
| 2089 |
text-align: left;
|
| 2090 |
-
-webkit-box-orient: horizontal;
|
| 2091 |
-
-webkit-box-direction: normal;
|
| 2092 |
-
-webkit-flex-direction: row;
|
| 2093 |
-
-ms-flex-direction: row;
|
| 2094 |
flex-direction: row;
|
| 2095 |
}
|
| 2096 |
.elementor-widget-eael-feature-list.-tablet-icon-position-right .eael-feature-list-item {
|
| 2097 |
text-align: right;
|
| 2098 |
-
-webkit-box-orient: horizontal;
|
| 2099 |
-
-webkit-box-direction: reverse;
|
| 2100 |
-
-webkit-flex-direction: row-reverse;
|
| 2101 |
-
-ms-flex-direction: row-reverse;
|
| 2102 |
flex-direction: row-reverse;
|
| 2103 |
}
|
| 2104 |
}
|
|
@@ -2214,25 +1820,14 @@ table.eael-data-table .sorting_asc.sorting-none:after {
|
|
| 2214 |
text-align: left;
|
| 2215 |
}
|
| 2216 |
.elementor-widget-eael-feature-list.-mobile-icon-position-left .eael-feature-list-item, .elementor-widget-eael-feature-list.-mobile-icon-position-right .eael-feature-list-item {
|
| 2217 |
-
display: -webkit-box;
|
| 2218 |
-
display: -webkit-flex;
|
| 2219 |
-
display: -ms-flexbox;
|
| 2220 |
display: flex;
|
| 2221 |
}
|
| 2222 |
.elementor-widget-eael-feature-list.-mobile-icon-position-left .eael-feature-list-item {
|
| 2223 |
text-align: left;
|
| 2224 |
-
-webkit-box-orient: horizontal;
|
| 2225 |
-
-webkit-box-direction: normal;
|
| 2226 |
-
-webkit-flex-direction: row;
|
| 2227 |
-
-ms-flex-direction: row;
|
| 2228 |
flex-direction: row;
|
| 2229 |
}
|
| 2230 |
.elementor-widget-eael-feature-list.-mobile-icon-position-right .eael-feature-list-item {
|
| 2231 |
text-align: right;
|
| 2232 |
-
-webkit-box-orient: horizontal;
|
| 2233 |
-
-webkit-box-direction: reverse;
|
| 2234 |
-
-webkit-flex-direction: row-reverse;
|
| 2235 |
-
-ms-flex-direction: row-reverse;
|
| 2236 |
flex-direction: row-reverse;
|
| 2237 |
}
|
| 2238 |
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-content-box {
|
|
@@ -2431,26 +2026,11 @@ table.eael-data-table .sorting_asc.sorting-none:after {
|
|
| 2431 |
}
|
| 2432 |
|
| 2433 |
.eael-filter-gallery-control {
|
| 2434 |
-
display: -webkit-box;
|
| 2435 |
-
display: -webkit-flex;
|
| 2436 |
-
display: -ms-flexbox;
|
| 2437 |
display: flex;
|
| 2438 |
-
-
|
| 2439 |
-
-
|
| 2440 |
-
-
|
| 2441 |
-
|
| 2442 |
-
flex-flow: 1 1 auto;
|
| 2443 |
-
-webkit-box-align: center;
|
| 2444 |
-
-webkit-align-items: center;
|
| 2445 |
-
-ms-flex-align: center;
|
| 2446 |
-
align-items: center;
|
| 2447 |
-
-webkit-box-pack: center;
|
| 2448 |
-
-webkit-justify-content: center;
|
| 2449 |
-
-ms-flex-pack: center;
|
| 2450 |
-
justify-content: center;
|
| 2451 |
-
-webkit-flex-flow: row wrap;
|
| 2452 |
-
-ms-flex-flow: row wrap;
|
| 2453 |
-
flex-flow: row wrap;
|
| 2454 |
padding: 0px;
|
| 2455 |
margin: 0px;
|
| 2456 |
}
|
|
@@ -2489,33 +2069,16 @@ table.eael-data-table .sorting_asc.sorting-none:after {
|
|
| 2489 |
|
| 2490 |
.eael-filter-gallery-container .item .caption {
|
| 2491 |
position: absolute;
|
| 2492 |
-
display: -webkit-box;
|
| 2493 |
-
display: -webkit-flex;
|
| 2494 |
-
display: -ms-flexbox;
|
| 2495 |
display: flex;
|
| 2496 |
-
-
|
| 2497 |
-
-
|
| 2498 |
-
-
|
| 2499 |
-
-ms-flex-flow: 1 1 100%;
|
| 2500 |
-
flex-flow: 1 1 100%;
|
| 2501 |
-
-webkit-box-align: center;
|
| 2502 |
-
-webkit-align-items: center;
|
| 2503 |
-
-ms-flex-align: center;
|
| 2504 |
-
align-items: center;
|
| 2505 |
-
-webkit-box-pack: center;
|
| 2506 |
-
-webkit-justify-content: center;
|
| 2507 |
-
-ms-flex-pack: center;
|
| 2508 |
-
justify-content: center;
|
| 2509 |
z-index: 1;
|
| 2510 |
top: 0px;
|
| 2511 |
left: 0px;
|
| 2512 |
right: 0px;
|
| 2513 |
bottom: 0px;
|
| 2514 |
-
-webkit-transition: -webkit-transform .4s;
|
| 2515 |
-
transition: -webkit-transform .4s;
|
| 2516 |
-
-o-transition: transform .4s;
|
| 2517 |
transition: transform .4s;
|
| 2518 |
-
transition: transform .4s, -webkit-transform .4s;
|
| 2519 |
}
|
| 2520 |
|
| 2521 |
.eael-filter-gallery-container.eael-cards .item .caption {
|
|
@@ -2524,33 +2087,16 @@ table.eael-data-table .sorting_asc.sorting-none:after {
|
|
| 2524 |
|
| 2525 |
.eael-filter-gallery-container.eael-cards .item .item-img .caption {
|
| 2526 |
position: absolute;
|
| 2527 |
-
display: -webkit-box;
|
| 2528 |
-
display: -webkit-flex;
|
| 2529 |
-
display: -ms-flexbox;
|
| 2530 |
display: flex;
|
| 2531 |
-
-
|
| 2532 |
-
-
|
| 2533 |
-
-
|
| 2534 |
-
-ms-flex-flow: 1 1 100%;
|
| 2535 |
-
flex-flow: 1 1 100%;
|
| 2536 |
-
-webkit-box-align: center;
|
| 2537 |
-
-webkit-align-items: center;
|
| 2538 |
-
-ms-flex-align: center;
|
| 2539 |
-
align-items: center;
|
| 2540 |
-
-webkit-box-pack: center;
|
| 2541 |
-
-webkit-justify-content: center;
|
| 2542 |
-
-ms-flex-pack: center;
|
| 2543 |
-
justify-content: center;
|
| 2544 |
z-index: 10;
|
| 2545 |
top: 0px;
|
| 2546 |
left: 0px;
|
| 2547 |
right: 0px;
|
| 2548 |
bottom: 0px;
|
| 2549 |
-
-webkit-transition: -webkit-transform .4s;
|
| 2550 |
-
transition: -webkit-transform .4s;
|
| 2551 |
-
-o-transition: transform .4s;
|
| 2552 |
transition: transform .4s;
|
| 2553 |
-
transition: transform .4s, -webkit-transform .4s;
|
| 2554 |
}
|
| 2555 |
|
| 2556 |
.gallery-item-caption-over {
|
|
@@ -2565,72 +2111,52 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 2565 |
/*--- Caption Animation ---*/
|
| 2566 |
.eael-filter-gallery-container .item .caption.eael-zoom-in,
|
| 2567 |
.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-zoom-in {
|
| 2568 |
-
|
| 2569 |
-
-ms-transform: scale(0);
|
| 2570 |
-
transform: scale(0);
|
| 2571 |
}
|
| 2572 |
|
| 2573 |
.eael-filter-gallery-container .item:hover .caption.eael-zoom-in,
|
| 2574 |
.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-zoom-in {
|
| 2575 |
-
|
| 2576 |
-
-ms-transform: scale(1);
|
| 2577 |
-
transform: scale(1);
|
| 2578 |
}
|
| 2579 |
|
| 2580 |
.eael-filter-gallery-container .item .caption.eael-slide-left,
|
| 2581 |
.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-left {
|
| 2582 |
-
|
| 2583 |
-
-ms-transform: translateX(-100%);
|
| 2584 |
-
transform: translateX(-100%);
|
| 2585 |
}
|
| 2586 |
|
| 2587 |
.eael-filter-gallery-container .item:hover .caption.eael-slide-left,
|
| 2588 |
.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-left {
|
| 2589 |
-
|
| 2590 |
-
-ms-transform: translateX(0%);
|
| 2591 |
-
transform: translateX(0%);
|
| 2592 |
}
|
| 2593 |
|
| 2594 |
.eael-filter-gallery-container .item .caption.eael-slide-right,
|
| 2595 |
.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-right {
|
| 2596 |
-
|
| 2597 |
-
-ms-transform: translateX(100%);
|
| 2598 |
-
transform: translateX(100%);
|
| 2599 |
}
|
| 2600 |
|
| 2601 |
.eael-filter-gallery-container .item:hover .caption.eael-slide-right,
|
| 2602 |
.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-right {
|
| 2603 |
-
|
| 2604 |
-
-ms-transform: translateX(0%);
|
| 2605 |
-
transform: translateX(0%);
|
| 2606 |
}
|
| 2607 |
|
| 2608 |
.eael-filter-gallery-container .item .caption.eael-slide-top,
|
| 2609 |
.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-top {
|
| 2610 |
-
|
| 2611 |
-
-ms-transform: translateY(-100%);
|
| 2612 |
-
transform: translateY(-100%);
|
| 2613 |
}
|
| 2614 |
|
| 2615 |
.eael-filter-gallery-container .item:hover .caption.eael-slide-top,
|
| 2616 |
.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-top {
|
| 2617 |
-
|
| 2618 |
-
-ms-transform: translateY(0%);
|
| 2619 |
-
transform: translateY(0%);
|
| 2620 |
}
|
| 2621 |
|
| 2622 |
.eael-filter-gallery-container .item .caption.eael-slide-bottom,
|
| 2623 |
.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-bottom {
|
| 2624 |
-
|
| 2625 |
-
-ms-transform: translateY(100%);
|
| 2626 |
-
transform: translateY(100%);
|
| 2627 |
}
|
| 2628 |
|
| 2629 |
.eael-filter-gallery-container .item:hover .caption.eael-slide-bottom,
|
| 2630 |
.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-bottom {
|
| 2631 |
-
|
| 2632 |
-
-ms-transform: translateY(0%);
|
| 2633 |
-
transform: translateY(0%);
|
| 2634 |
}
|
| 2635 |
|
| 2636 |
.eael-filter-gallery-container .item .caption a {
|
|
@@ -2639,41 +2165,30 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 2639 |
height: 50px;
|
| 2640 |
text-align: center;
|
| 2641 |
line-height: 50px;
|
| 2642 |
-
|
| 2643 |
-
border-radius: 50%;
|
| 2644 |
margin: 0 5px;
|
| 2645 |
font-size: 20px;
|
| 2646 |
cursor: pointer;
|
| 2647 |
-
-webkit-transition: .3s;
|
| 2648 |
-
-o-transition: .3s;
|
| 2649 |
transition: .3s;
|
| 2650 |
}
|
| 2651 |
|
| 2652 |
.eael-filter-gallery-container .item .caption a:nth-child(1),
|
| 2653 |
.eael-container .item .caption a:nth-child(2) {
|
| 2654 |
-
-webkit-transition: .6s;
|
| 2655 |
-
-o-transition: .6s;
|
| 2656 |
transition: .6s;
|
| 2657 |
opacity: 0;
|
| 2658 |
}
|
| 2659 |
|
| 2660 |
.eael-filter-gallery-container .item .caption a:nth-child(1) {
|
| 2661 |
-
|
| 2662 |
-
-ms-transform: translateY(-100%);
|
| 2663 |
-
transform: translateY(-100%);
|
| 2664 |
}
|
| 2665 |
|
| 2666 |
.eael-filter-gallery-container .item .caption a:nth-child(2) {
|
| 2667 |
-
|
| 2668 |
-
-ms-transform: translateY(100%);
|
| 2669 |
-
transform: translateY(100%);
|
| 2670 |
}
|
| 2671 |
|
| 2672 |
.eael-filter-gallery-container .item .caption:hover a:nth-child(1),
|
| 2673 |
.eael-filter-gallery-container .item .caption:hover a:nth-child(2) {
|
| 2674 |
-
|
| 2675 |
-
-ms-transform: translateY(0%);
|
| 2676 |
-
transform: translateY(0%);
|
| 2677 |
opacity: 1;
|
| 2678 |
}
|
| 2679 |
|
|
@@ -2690,8 +2205,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 2690 |
position: relative;
|
| 2691 |
background-repeat: no-repeat;
|
| 2692 |
background-position: center;
|
| 2693 |
-
|
| 2694 |
-
background-size: cover;
|
| 2695 |
height: 220px;
|
| 2696 |
z-index: 0;
|
| 2697 |
overflow: hidden;
|
|
@@ -2706,8 +2220,6 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 2706 |
font-size: 20px;
|
| 2707 |
line-height: 1;
|
| 2708 |
margin-bottom: 0px;
|
| 2709 |
-
-webkit-transition: .3s;
|
| 2710 |
-
-o-transition: .3s;
|
| 2711 |
transition: .3s;
|
| 2712 |
}
|
| 2713 |
|
|
@@ -2782,7 +2294,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 2782 |
width: 20%;
|
| 2783 |
}
|
| 2784 |
|
| 2785 |
-
.gallery-grid-item {
|
| 2786 |
margin-left: calc(20px/2);
|
| 2787 |
margin-right: calc(20px/2);
|
| 2788 |
margin-bottom: 20px;
|
|
@@ -2811,7 +2323,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 2811 |
z-index: 10;
|
| 2812 |
}
|
| 2813 |
|
| 2814 |
-
.eael-filterable-gallery-item-wrap .gallery-grid-item .gallery-item-thumbnail-wrap > img {
|
| 2815 |
height: 100%;
|
| 2816 |
width: 100%;
|
| 2817 |
-o-object-fit: cover;
|
|
@@ -2860,8 +2372,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 2860 |
|
| 2861 |
.gallery-item-caption-wrap.caption-style-card {
|
| 2862 |
padding: 10px;
|
| 2863 |
-
|
| 2864 |
-
box-sizing: border-box;
|
| 2865 |
font-family: inherit;
|
| 2866 |
}
|
| 2867 |
|
|
@@ -2881,20 +2392,12 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 2881 |
.gallery-item-caption-wrap.caption-style-hoverer {
|
| 2882 |
visibility: hidden;
|
| 2883 |
opacity: 0;
|
| 2884 |
-
-webkit-transition: 0.6s all ease;
|
| 2885 |
-
-o-transition: 0.6s all ease;
|
| 2886 |
transition: 0.6s all ease;
|
| 2887 |
-
display: -webkit-box;
|
| 2888 |
-
display: -webkit-flex;
|
| 2889 |
-
display: -ms-flexbox;
|
| 2890 |
display: flex;
|
| 2891 |
-
-
|
| 2892 |
-
-webkit-align-items: center;
|
| 2893 |
-
-ms-flex-align: center;
|
| 2894 |
-
align-items: center;
|
| 2895 |
}
|
| 2896 |
|
| 2897 |
-
.gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer {
|
| 2898 |
opacity: 1;
|
| 2899 |
visibility: visible;
|
| 2900 |
}
|
|
@@ -2906,11 +2409,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 2906 |
}
|
| 2907 |
|
| 2908 |
.gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up h5 {
|
| 2909 |
-
|
| 2910 |
-
-ms-transform: translateY(20px);
|
| 2911 |
-
transform: translateY(20px);
|
| 2912 |
-
-webkit-transition: 0.6s all ease;
|
| 2913 |
-
-o-transition: 0.6s all ease;
|
| 2914 |
transition: 0.6s all ease;
|
| 2915 |
}
|
| 2916 |
|
|
@@ -2919,60 +2418,41 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 2919 |
}
|
| 2920 |
|
| 2921 |
.gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up p {
|
| 2922 |
-
|
| 2923 |
-
-ms-transform: translateY(40px);
|
| 2924 |
-
transform: translateY(40px);
|
| 2925 |
-
-webkit-transition: 0.6s all ease;
|
| 2926 |
-
-o-transition: 0.6s all ease;
|
| 2927 |
transition: 0.6s all ease;
|
| 2928 |
}
|
| 2929 |
|
| 2930 |
.gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up .gallery-item-buttons {
|
| 2931 |
-
|
| 2932 |
-
-ms-transform: translateY(40px);
|
| 2933 |
-
transform: translateY(40px);
|
| 2934 |
-
-webkit-transition: 0.6s all ease;
|
| 2935 |
-
-o-transition: 0.6s all ease;
|
| 2936 |
transition: 0.6s all ease;
|
| 2937 |
}
|
| 2938 |
|
| 2939 |
.gallery-item-caption-wrap .gallery-item-buttons > a {
|
| 2940 |
padding: 5px 15px;
|
| 2941 |
display: inline-block;
|
| 2942 |
-
|
| 2943 |
-
border-radius: 50%;
|
| 2944 |
outline: none;
|
| 2945 |
text-decoration: none;
|
| 2946 |
}
|
| 2947 |
|
| 2948 |
.gallery-item-caption-wrap.caption-style-hoverer.eael-zoom-in {
|
| 2949 |
-
|
| 2950 |
-
-ms-transform: scale(0.8);
|
| 2951 |
-
transform: scale(0.8);
|
| 2952 |
-
-webkit-transition: 0.6s all ease;
|
| 2953 |
-
-o-transition: 0.6s all ease;
|
| 2954 |
transition: 0.6s all ease;
|
| 2955 |
}
|
| 2956 |
|
| 2957 |
-
.gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up h5,
|
| 2958 |
-
.gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up .gallery-item-buttons,
|
| 2959 |
-
.gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up p {
|
| 2960 |
-
|
| 2961 |
-
-ms-transform: translate(0);
|
| 2962 |
-
transform: translate(0);
|
| 2963 |
}
|
| 2964 |
|
| 2965 |
-
.gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-zoom-in {
|
| 2966 |
-
|
| 2967 |
-
-ms-transform: scale(1);
|
| 2968 |
-
transform: scale(1);
|
| 2969 |
visibility: visible;
|
| 2970 |
opacity: 1;
|
| 2971 |
}
|
| 2972 |
|
| 2973 |
.gallery-item-caption-wrap.caption-style-hoverer.eael-none {
|
| 2974 |
-
-webkit-transition: none;
|
| 2975 |
-
-o-transition: none;
|
| 2976 |
transition: none;
|
| 2977 |
}
|
| 2978 |
|
|
@@ -2994,41 +2474,26 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 2994 |
width: 62px;
|
| 2995 |
position: relative;
|
| 2996 |
z-index: 1;
|
| 2997 |
-
-webkit-transition: 300ms;
|
| 2998 |
-
-o-transition: 300ms;
|
| 2999 |
transition: 300ms;
|
| 3000 |
}
|
| 3001 |
|
| 3002 |
.video-popup {
|
| 3003 |
-
display: -webkit-box;
|
| 3004 |
-
display: -webkit-flex;
|
| 3005 |
-
display: -ms-flexbox;
|
| 3006 |
display: flex;
|
| 3007 |
-
-
|
| 3008 |
-
-
|
| 3009 |
-
-ms-flex-align: center;
|
| 3010 |
-
align-items: center;
|
| 3011 |
-
-webkit-box-pack: center;
|
| 3012 |
-
-webkit-justify-content: center;
|
| 3013 |
-
-ms-flex-pack: center;
|
| 3014 |
-
justify-content: center;
|
| 3015 |
}
|
| 3016 |
|
| 3017 |
.video-popup:hover > img {
|
| 3018 |
-
|
| 3019 |
-
-ms-transform: scale(1.1);
|
| 3020 |
-
transform: scale(1.1);
|
| 3021 |
}
|
| 3022 |
|
| 3023 |
.video-popup-bg {
|
| 3024 |
visibility: hidden;
|
| 3025 |
opacity: 0;
|
| 3026 |
-
-webkit-transition: 350ms;
|
| 3027 |
-
-o-transition: 350ms;
|
| 3028 |
transition: 350ms;
|
| 3029 |
}
|
| 3030 |
|
| 3031 |
-
.gallery-grid-item:hover .video-popup-bg {
|
| 3032 |
visibility: visible;
|
| 3033 |
opacity: 1;
|
| 3034 |
}
|
|
@@ -3039,25 +2504,14 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 3039 |
top: 0;
|
| 3040 |
height: 100%;
|
| 3041 |
width: 100%;
|
| 3042 |
-
display: -webkit-box;
|
| 3043 |
-
display: -webkit-flex;
|
| 3044 |
-
display: -ms-flexbox;
|
| 3045 |
display: flex;
|
| 3046 |
-
-
|
| 3047 |
-
-
|
| 3048 |
-
-ms-flex-align: center;
|
| 3049 |
-
align-items: center;
|
| 3050 |
-
-webkit-box-pack: center;
|
| 3051 |
-
-webkit-justify-content: center;
|
| 3052 |
-
-ms-flex-pack: center;
|
| 3053 |
-
justify-content: center;
|
| 3054 |
}
|
| 3055 |
|
| 3056 |
.gallery-item-caption-wrap.card-hover-bg {
|
| 3057 |
visibility: hidden;
|
| 3058 |
opacity: 0;
|
| 3059 |
-
-webkit-transition: 800ms;
|
| 3060 |
-
-o-transition: 800ms;
|
| 3061 |
transition: 800ms;
|
| 3062 |
}
|
| 3063 |
|
|
@@ -3067,18 +2521,9 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 3067 |
}
|
| 3068 |
|
| 3069 |
.gallery-item-caption-wrap .gallery-item-buttons > a > i {
|
| 3070 |
-
display: -webkit-box;
|
| 3071 |
-
display: -webkit-flex;
|
| 3072 |
-
display: -ms-flexbox;
|
| 3073 |
display: flex;
|
| 3074 |
-
-
|
| 3075 |
-
-
|
| 3076 |
-
-ms-flex-align: center;
|
| 3077 |
-
align-items: center;
|
| 3078 |
-
-webkit-box-pack: center;
|
| 3079 |
-
-webkit-justify-content: center;
|
| 3080 |
-
-ms-flex-pack: center;
|
| 3081 |
-
justify-content: center;
|
| 3082 |
height: 100%;
|
| 3083 |
}
|
| 3084 |
|
|
@@ -3398,8 +2843,6 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 3398 |
|
| 3399 |
.eael-elements-flip-box-container .flipbox-button {
|
| 3400 |
display: inline-block;
|
| 3401 |
-
-webkit-transition: all 400ms;
|
| 3402 |
-
-o-transition: all 400ms;
|
| 3403 |
transition: all 400ms;
|
| 3404 |
}
|
| 3405 |
|
|
@@ -3430,8 +2873,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 3430 |
}
|
| 3431 |
|
| 3432 |
.eael_flip_box_icon_border_round {
|
| 3433 |
-
|
| 3434 |
-
border-radius: 100px;
|
| 3435 |
}
|
| 3436 |
|
| 3437 |
.eael_eleements_flip_front_icon_style_background,
|
|
@@ -3461,13 +2903,8 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 3461 |
color: #ffffff;
|
| 3462 |
border-color: #000000;
|
| 3463 |
-webkit-display: flex;
|
| 3464 |
-
display: -webkit-box;
|
| 3465 |
-
display: -ms-flexbox;
|
| 3466 |
display: flex;
|
| 3467 |
-
|
| 3468 |
-
-webkit-box-align: center;
|
| 3469 |
-
-ms-flex-align: center;
|
| 3470 |
-
align-items: center;
|
| 3471 |
}
|
| 3472 |
|
| 3473 |
.eael-elements-flip-box-content,
|
|
@@ -3490,14 +2927,8 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 3490 |
height: 100%;
|
| 3491 |
background: #444444;
|
| 3492 |
color: #ffffff;
|
| 3493 |
-
display: -webkit-box;
|
| 3494 |
-
display: -webkit-flex;
|
| 3495 |
-
display: -ms-flexbox;
|
| 3496 |
display: flex;
|
| 3497 |
-
|
| 3498 |
-
-webkit-box-align: center;
|
| 3499 |
-
-ms-flex-align: center;
|
| 3500 |
-
align-items: center;
|
| 3501 |
border-color: #000000;
|
| 3502 |
}
|
| 3503 |
|
|
@@ -3531,30 +2962,20 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 3531 |
|
| 3532 |
/*--- CSS3 Transitions ---*/
|
| 3533 |
.eael-elements-flip-box-container {
|
| 3534 |
-
|
| 3535 |
-
perspective: 1000px;
|
| 3536 |
}
|
| 3537 |
|
| 3538 |
.eael-elements-flip-box-front-container,
|
| 3539 |
.eael-elements-flip-box-rear-container {
|
| 3540 |
-
|
| 3541 |
-
-o-transition-duration: 500ms;
|
| 3542 |
-
transition-duration: 500ms;
|
| 3543 |
-
-webkit-transition-property: all;
|
| 3544 |
-
-o-transition-property: all;
|
| 3545 |
transition-property: all;
|
| 3546 |
-
|
| 3547 |
-
-o-transition-timing-function: ease;
|
| 3548 |
-
transition-timing-function: ease;
|
| 3549 |
}
|
| 3550 |
|
| 3551 |
.eael-elements-flip-box-flip-card {
|
| 3552 |
width: 100%;
|
| 3553 |
height: 100%;
|
| 3554 |
-
|
| 3555 |
-
transform-style: preserve-3d;
|
| 3556 |
-
-webkit-transition: all 500ms ease;
|
| 3557 |
-
-o-transition: all 500ms ease;
|
| 3558 |
transition: all 500ms ease;
|
| 3559 |
}
|
| 3560 |
|
|
@@ -3562,35 +2983,29 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 3562 |
.eael-elements-flip-box-front-container {
|
| 3563 |
-webkit-backface-visibility: hidden;
|
| 3564 |
backface-visibility: hidden;
|
| 3565 |
-
|
| 3566 |
-
|
| 3567 |
-
-webkit-transform: rotateY(0deg);
|
| 3568 |
-
transform: rotateY(0deg);
|
| 3569 |
}
|
| 3570 |
|
| 3571 |
/*--- Flip ---*/
|
| 3572 |
.eael-animate-flip.eael-animate-up.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card,
|
| 3573 |
.eael-animate-flip.eael-animate-up .eael-elements-flip-box-rear-container {
|
| 3574 |
-
|
| 3575 |
-
transform: rotateX(180deg);
|
| 3576 |
}
|
| 3577 |
|
| 3578 |
.eael-animate-flip.eael-animate-down.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card,
|
| 3579 |
.eael-animate-flip.eael-animate-down .eael-elements-flip-box-rear-container {
|
| 3580 |
-
|
| 3581 |
-
transform: rotateX(-180deg);
|
| 3582 |
}
|
| 3583 |
|
| 3584 |
.eael-animate-flip.eael-animate-left.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card,
|
| 3585 |
.eael-animate-flip.eael-animate-left .eael-elements-flip-box-rear-container {
|
| 3586 |
-
|
| 3587 |
-
transform: rotateY(-180deg);
|
| 3588 |
}
|
| 3589 |
|
| 3590 |
.eael-animate-flip.eael-animate-right.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card,
|
| 3591 |
.eael-animate-flip.eael-animate-right .eael-elements-flip-box-rear-container {
|
| 3592 |
-
|
| 3593 |
-
transform: rotateY(180deg);
|
| 3594 |
}
|
| 3595 |
|
| 3596 |
/*--- Slide ---*/
|
|
@@ -3668,25 +3083,19 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 3668 |
/*--- Zoom In ---*/
|
| 3669 |
.eael-animate-zoom-in .eael-elements-flip-box-rear-container {
|
| 3670 |
opacity: 0;
|
| 3671 |
-
|
| 3672 |
-
-ms-transform: scale(0.75);
|
| 3673 |
-
transform: scale(0.75);
|
| 3674 |
z-index: 3;
|
| 3675 |
}
|
| 3676 |
|
| 3677 |
.eael-animate-zoom-in.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container {
|
| 3678 |
opacity: 1;
|
| 3679 |
-
|
| 3680 |
-
-ms-transform: scale(1);
|
| 3681 |
-
transform: scale(1);
|
| 3682 |
}
|
| 3683 |
|
| 3684 |
/*--- Zoom Out ---*/
|
| 3685 |
.eael-animate-zoom-out.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container {
|
| 3686 |
opacity: 0;
|
| 3687 |
-
|
| 3688 |
-
-ms-transform: scale(0.75);
|
| 3689 |
-
transform: scale(0.75);
|
| 3690 |
}
|
| 3691 |
|
| 3692 |
.eael-animate-fade.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container {
|
|
@@ -3708,8 +3117,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 3708 |
|
| 3709 |
.eael-flipbox-img-circle .eael-elements-flip-box-icon-image img,
|
| 3710 |
.eael-flipbox-img-circle .flipbox-back-image-icon img {
|
| 3711 |
-
|
| 3712 |
-
border-radius: 50%;
|
| 3713 |
overflow: hidden;
|
| 3714 |
}
|
| 3715 |
|
|
@@ -3767,9 +3175,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 3767 |
line-height: 1;
|
| 3768 |
margin: 0;
|
| 3769 |
text-align: center;
|
| 3770 |
-
|
| 3771 |
-
-ms-transform: translateY(-50%);
|
| 3772 |
-
transform: translateY(-50%);
|
| 3773 |
width: auto;
|
| 3774 |
}
|
| 3775 |
|
|
@@ -3803,7 +3209,6 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 3803 |
}
|
| 3804 |
|
| 3805 |
.swiper-container-3d .swiper-slide {
|
| 3806 |
-
-o-transition-property: all;
|
| 3807 |
transition-property: all;
|
| 3808 |
-webkit-transition-property: all;
|
| 3809 |
}
|
|
@@ -3835,8 +3240,6 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 3835 |
margin: 0;
|
| 3836 |
padding: 10px 20px;
|
| 3837 |
width: auto;
|
| 3838 |
-
-webkit-transition: all 0.25s linear 0s;
|
| 3839 |
-
-o-transition: all 0.25s linear 0s;
|
| 3840 |
transition: all 0.25s linear 0s;
|
| 3841 |
}
|
| 3842 |
|
|
@@ -3891,19 +3294,20 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 3891 |
.eael-custom-radio-checkbox input[type=checkbox]:checked:before,
|
| 3892 |
.eael-custom-radio-checkbox input[type=radio]:checked:before {
|
| 3893 |
background: #999;
|
| 3894 |
-
-webkit-transition: all 0.25s linear 0s;
|
| 3895 |
-
-o-transition: all 0.25s linear 0s;
|
| 3896 |
transition: all 0.25s linear 0s;
|
| 3897 |
}
|
| 3898 |
|
| 3899 |
.eael-custom-radio-checkbox input[type=radio] {
|
| 3900 |
-
|
| 3901 |
-
border-radius: 50%;
|
| 3902 |
}
|
| 3903 |
|
| 3904 |
.eael-custom-radio-checkbox input[type=radio]:before {
|
| 3905 |
-
|
| 3906 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3907 |
}
|
| 3908 |
|
| 3909 |
/*----------------------*/
|
|
@@ -3967,61 +3371,36 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 3967 |
/* 34. Image accordion
|
| 3968 |
/*------------------------------*/
|
| 3969 |
.eael-img-accordion {
|
| 3970 |
-
display: -webkit-box;
|
| 3971 |
-
display: -webkit-flex;
|
| 3972 |
-
display: -ms-flexbox;
|
| 3973 |
display: flex;
|
| 3974 |
height: 50vh;
|
| 3975 |
}
|
| 3976 |
|
| 3977 |
.eael-img-accordion a {
|
| 3978 |
position: relative;
|
| 3979 |
-
|
| 3980 |
-
-webkit-flex: 1;
|
| 3981 |
-
-ms-flex: 1;
|
| 3982 |
-
flex: 1;
|
| 3983 |
text-align: center;
|
| 3984 |
text-decoration: none;
|
| 3985 |
color: #fff;
|
| 3986 |
-
|
| 3987 |
-
background-size: cover;
|
| 3988 |
background-position: center;
|
| 3989 |
background-repeat: no-repeat;
|
| 3990 |
-
-webkit-transition: -webkit-box-flex .4s, -webkit-flex .4s;
|
| 3991 |
-
transition: -webkit-box-flex .4s, -webkit-flex .4s;
|
| 3992 |
-
-o-transition: flex .4s;
|
| 3993 |
transition: flex .4s;
|
| 3994 |
-
transition: flex .4s, -webkit-box-flex .4s, -webkit-flex .4s, -ms-flex .4s;
|
| 3995 |
}
|
| 3996 |
|
| 3997 |
.eael-grow-accordion {
|
| 3998 |
-
|
| 3999 |
-
-webkit-flex: 3;
|
| 4000 |
-
-ms-flex: 3;
|
| 4001 |
-
flex: 3;
|
| 4002 |
}
|
| 4003 |
|
| 4004 |
.eael-img-accordion .overlay {
|
| 4005 |
-
display: -webkit-box;
|
| 4006 |
-
display: -webkit-flex;
|
| 4007 |
-
display: -ms-flexbox;
|
| 4008 |
display: flex;
|
| 4009 |
-
-
|
| 4010 |
-
-
|
| 4011 |
-
-ms-flex-align: center;
|
| 4012 |
-
align-items: center;
|
| 4013 |
-
-webkit-box-pack: center;
|
| 4014 |
-
-webkit-justify-content: center;
|
| 4015 |
-
-ms-flex-pack: center;
|
| 4016 |
-
justify-content: center;
|
| 4017 |
padding: 0 10px;
|
| 4018 |
position: absolute;
|
| 4019 |
top: 0;
|
| 4020 |
right: 0;
|
| 4021 |
bottom: 0;
|
| 4022 |
left: 0;
|
| 4023 |
-
-webkit-transition: background-color .4s;
|
| 4024 |
-
-o-transition: background-color .4s;
|
| 4025 |
transition: background-color .4s;
|
| 4026 |
}
|
| 4027 |
|
|
@@ -4039,55 +3418,39 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 4039 |
left: 0px;
|
| 4040 |
bottom: 0px;
|
| 4041 |
right: 0px;
|
| 4042 |
-
-webkit-transition: all 0.3s ease-in-out;
|
| 4043 |
-
-o-transition: all 0.3s ease-in-out;
|
| 4044 |
transition: all 0.3s ease-in-out;
|
| 4045 |
}
|
| 4046 |
|
| 4047 |
.eael-img-accordion .overlay-inner * {
|
| 4048 |
visibility: hidden;
|
| 4049 |
opacity: 0;
|
| 4050 |
-
|
| 4051 |
-
transform-style: preserve-3d;
|
| 4052 |
}
|
| 4053 |
|
| 4054 |
.eael-img-accordion .overlay h2 {
|
| 4055 |
color: #fff;
|
| 4056 |
-
|
| 4057 |
-
transform: translate3d(0, -60px, 0);
|
| 4058 |
}
|
| 4059 |
|
| 4060 |
.eael-img-accordion .overlay p {
|
| 4061 |
color: #fff;
|
| 4062 |
-
|
| 4063 |
-
transform: translate3d(0, 60px, 0);
|
| 4064 |
}
|
| 4065 |
|
| 4066 |
.eael-img-accordion .overlay-inner-show * {
|
| 4067 |
opacity: 1;
|
| 4068 |
visibility: visible;
|
| 4069 |
-
|
| 4070 |
-
-ms-transform: none !important;
|
| 4071 |
-
transform: none !important;
|
| 4072 |
-
-webkit-transition: all .3s .3s;
|
| 4073 |
-
-o-transition: all .3s .3s;
|
| 4074 |
transition: all .3s .3s;
|
| 4075 |
}
|
| 4076 |
|
| 4077 |
@media screen and (max-width: 800px) {
|
| 4078 |
.eael-img-accordion {
|
| 4079 |
-
-
|
| 4080 |
-
-webkit-box-direction: normal;
|
| 4081 |
-
-webkit-flex-direction: column;
|
| 4082 |
-
-ms-flex-direction: column;
|
| 4083 |
-
flex-direction: column;
|
| 4084 |
}
|
| 4085 |
|
| 4086 |
.eael-img-accordion a:hover {
|
| 4087 |
-
|
| 4088 |
-
-webkit-flex: 1;
|
| 4089 |
-
-ms-flex: 1;
|
| 4090 |
-
flex: 1;
|
| 4091 |
}
|
| 4092 |
|
| 4093 |
.eael-img-accordion a:hover .overlay {
|
|
@@ -4107,14 +3470,10 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 4107 |
display: block;
|
| 4108 |
width: 100%;
|
| 4109 |
height: auto;
|
| 4110 |
-
-webkit-transition: .3s;
|
| 4111 |
-
-o-transition: .3s;
|
| 4112 |
transition: .3s;
|
| 4113 |
}
|
| 4114 |
|
| 4115 |
.eael-infobox .infobox-icon .infobox-icon-wrap i {
|
| 4116 |
-
-webkit-transition: .3s;
|
| 4117 |
-
-o-transition: .3s;
|
| 4118 |
transition: .3s;
|
| 4119 |
}
|
| 4120 |
|
|
@@ -4147,51 +3506,35 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 4147 |
}
|
| 4148 |
|
| 4149 |
.eael-infobox-icon-hover-bg-shape-square:hover .infobox-icon .infobox-icon-wrap {
|
| 4150 |
-
|
| 4151 |
-
border-radius: 0;
|
| 4152 |
}
|
| 4153 |
|
| 4154 |
.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap,
|
| 4155 |
.eael-infobox-icon-hover-bg-shape-radius:hover .infobox-icon .infobox-icon-wrap {
|
| 4156 |
-
|
| 4157 |
-
border-radius: 15px;
|
| 4158 |
}
|
| 4159 |
|
| 4160 |
.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap {
|
| 4161 |
-
display: -webkit-box;
|
| 4162 |
-
display: -webkit-flex;
|
| 4163 |
-
display: -ms-flexbox;
|
| 4164 |
display: flex;
|
| 4165 |
-
-
|
| 4166 |
-
-
|
| 4167 |
-
-ms-flex-align: center;
|
| 4168 |
-
align-items: center;
|
| 4169 |
-
-webkit-box-pack: center;
|
| 4170 |
-
-webkit-justify-content: center;
|
| 4171 |
-
-ms-flex-pack: center;
|
| 4172 |
-
justify-content: center;
|
| 4173 |
}
|
| 4174 |
|
| 4175 |
.eael-infobox-icon-bg-shape-circle .infobox-icon .infobox-icon-wrap,
|
| 4176 |
.eael-infobox-icon-hover-bg-shape-circle:hover .infobox-icon .infobox-icon-wrap {
|
| 4177 |
-
|
| 4178 |
-
border-radius: 50%;
|
| 4179 |
}
|
| 4180 |
|
| 4181 |
.eael-infobox-icon-bg-shape-square .infobox-icon .infobox-icon-wrap i,
|
| 4182 |
.eael-infobox-icon-bg-shape-circle .infobox-icon .infobox-icon-wrap i {
|
| 4183 |
margin-top: 50%;
|
| 4184 |
-
|
| 4185 |
-
-ms-transform: translateY(-50%);
|
| 4186 |
-
transform: translateY(-50%);
|
| 4187 |
}
|
| 4188 |
|
| 4189 |
/*--- Infobox Button ---*/
|
| 4190 |
.eael-infobox .infobox-button a.eael-infobox-button {
|
| 4191 |
display: inline-block;
|
| 4192 |
padding: 5px 10px;
|
| 4193 |
-
-webkit-transition: all 300ms ease-in-out 0s;
|
| 4194 |
-
-o-transition: all 300ms ease-in-out 0s;
|
| 4195 |
transition: all 300ms ease-in-out 0s;
|
| 4196 |
}
|
| 4197 |
|
|
@@ -4199,66 +3542,36 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 4199 |
.eael-infobox-content-align-left.eael-infobox-icon-bg-shape-square .infobox-icon,
|
| 4200 |
.eael-infobox-content-align-left.eael-infobox-icon-bg-shape-radius .infobox-icon,
|
| 4201 |
.eael-infobox-content-align-left.eael-infobox-icon-bg-shape-circle .infobox-icon {
|
| 4202 |
-
display: -webkit-box;
|
| 4203 |
-
display: -webkit-flex;
|
| 4204 |
-
display: -ms-flexbox;
|
| 4205 |
display: flex;
|
| 4206 |
-
-
|
| 4207 |
-
-webkit-justify-content: flex-start;
|
| 4208 |
-
-ms-flex-pack: start;
|
| 4209 |
-
justify-content: flex-start;
|
| 4210 |
}
|
| 4211 |
|
| 4212 |
.eael-infobox-content-align-center.eael-infobox-icon-bg-shape-square .infobox-icon,
|
| 4213 |
.eael-infobox-content-align-center.eael-infobox-icon-bg-shape-radius .infobox-icon,
|
| 4214 |
.eael-infobox-content-align-center.eael-infobox-icon-bg-shape-circle .infobox-icon {
|
| 4215 |
-
display: -webkit-box;
|
| 4216 |
-
display: -webkit-flex;
|
| 4217 |
-
display: -ms-flexbox;
|
| 4218 |
display: flex;
|
| 4219 |
-
-
|
| 4220 |
-
-webkit-justify-content: center;
|
| 4221 |
-
-ms-flex-pack: center;
|
| 4222 |
-
justify-content: center;
|
| 4223 |
}
|
| 4224 |
|
| 4225 |
.eael-infobox-content-align-right.eael-infobox-icon-bg-shape-square .infobox-icon,
|
| 4226 |
.eael-infobox-content-align-right.eael-infobox-icon-bg-shape-radius .infobox-icon,
|
| 4227 |
.eael-infobox-content-align-right.eael-infobox-icon-bg-shape-circle .infobox-icon {
|
| 4228 |
-
display: -webkit-box;
|
| 4229 |
-
display: -webkit-flex;
|
| 4230 |
-
display: -ms-flexbox;
|
| 4231 |
display: flex;
|
| 4232 |
-
-
|
| 4233 |
-
-webkit-justify-content: flex-end;
|
| 4234 |
-
-ms-flex-pack: end;
|
| 4235 |
-
justify-content: flex-end;
|
| 4236 |
}
|
| 4237 |
|
| 4238 |
/*--- Image/Icon On Left ---*/
|
| 4239 |
.eael-infobox.icon-on-left {
|
| 4240 |
position: relative;
|
| 4241 |
z-index: 0;
|
| 4242 |
-
display: -webkit-box;
|
| 4243 |
-
display: -webkit-flex;
|
| 4244 |
-
display: -ms-flexbox;
|
| 4245 |
display: flex;
|
| 4246 |
}
|
| 4247 |
|
| 4248 |
.eael-infobox.icon-on-right .infobox-icon-wrap,
|
| 4249 |
.eael-infobox.icon-on-left .infobox-icon-wrap {
|
| 4250 |
-
-
|
| 4251 |
-
-webkit-justify-content: center;
|
| 4252 |
-
-ms-flex-pack: center;
|
| 4253 |
-
justify-content: center;
|
| 4254 |
-
display: -webkit-box !important;
|
| 4255 |
-
display: -webkit-flex !important;
|
| 4256 |
-
display: -ms-flexbox !important;
|
| 4257 |
display: flex !important;
|
| 4258 |
-
-
|
| 4259 |
-
-webkit-align-items: center;
|
| 4260 |
-
-ms-flex-align: center;
|
| 4261 |
-
align-items: center;
|
| 4262 |
}
|
| 4263 |
|
| 4264 |
.eael-infobox.icon-on-left .infobox-icon .infobox-icon-wrap {
|
|
@@ -4275,17 +3588,12 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 4275 |
|
| 4276 |
.eael-infobox.icon-on-left .infobox-icon .infobox-icon-wrap i {
|
| 4277 |
margin-top: 0px;
|
| 4278 |
-
|
| 4279 |
-
-ms-transform: translateY(0%);
|
| 4280 |
-
transform: translateY(0%);
|
| 4281 |
}
|
| 4282 |
|
| 4283 |
.eael-infobox.icon-on-left .infobox-content {
|
| 4284 |
padding-left: 15px;
|
| 4285 |
-
|
| 4286 |
-
-webkit-flex: 1 1 auto;
|
| 4287 |
-
-ms-flex: 1 1 auto;
|
| 4288 |
-
flex: 1 1 auto;
|
| 4289 |
}
|
| 4290 |
|
| 4291 |
.eael-infobox.icon-on-left .infobox-content .title {
|
|
@@ -4297,15 +3605,8 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 4297 |
.eael-infobox.icon-on-right {
|
| 4298 |
position: relative;
|
| 4299 |
z-index: 0;
|
| 4300 |
-
display: -webkit-box;
|
| 4301 |
-
display: -webkit-flex;
|
| 4302 |
-
display: -ms-flexbox;
|
| 4303 |
display: flex;
|
| 4304 |
-
-
|
| 4305 |
-
-webkit-box-direction: reverse;
|
| 4306 |
-
-webkit-flex-direction: row-reverse;
|
| 4307 |
-
-ms-flex-direction: row-reverse;
|
| 4308 |
-
flex-direction: row-reverse;
|
| 4309 |
}
|
| 4310 |
|
| 4311 |
.eael-infobox.icon-on-right .infobox-icon .infobox-icon-wrap {
|
|
@@ -4319,20 +3620,14 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 4319 |
|
| 4320 |
.eael-infobox.icon-on-right .infobox-icon .infobox-icon-wrap i {
|
| 4321 |
margin-top: 0px;
|
| 4322 |
-
|
| 4323 |
-
-ms-transform: translateY(0%);
|
| 4324 |
-
transform: translateY(0%);
|
| 4325 |
}
|
| 4326 |
|
| 4327 |
.eael-infobox.icon-on-right .infobox-content {
|
| 4328 |
padding-right: 15px;
|
| 4329 |
text-align: right;
|
| 4330 |
-
|
| 4331 |
-
-
|
| 4332 |
-
-ms-flex: 1 1 auto;
|
| 4333 |
-
flex: 1 1 auto;
|
| 4334 |
-
-webkit-box-sizing: border-box;
|
| 4335 |
-
box-sizing: border-box;
|
| 4336 |
}
|
| 4337 |
|
| 4338 |
.eael-infobox.icon-on-right .infobox-content .title {
|
|
@@ -4342,26 +3637,21 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 4342 |
|
| 4343 |
/*--- Imgae Circle On Top ---*/
|
| 4344 |
.eael-infobox .infobox-icon img {
|
| 4345 |
-
-webkit-transition: all 300ms ease-in-out 0s;
|
| 4346 |
-
-o-transition: all 300ms ease-in-out 0s;
|
| 4347 |
transition: all 300ms ease-in-out 0s;
|
| 4348 |
}
|
| 4349 |
|
| 4350 |
.eael-infobox-hover-img-shape-square:hover .eael-infobox .infobox-icon img {
|
| 4351 |
-
|
| 4352 |
-
border-radius: 0;
|
| 4353 |
}
|
| 4354 |
|
| 4355 |
.eael-infobox-shape-circle .eael-infobox .infobox-icon img,
|
| 4356 |
.eael-infobox-hover-img-shape-circle:hover .eael-infobox .infobox-icon img {
|
| 4357 |
-
|
| 4358 |
-
border-radius: 50%;
|
| 4359 |
}
|
| 4360 |
|
| 4361 |
.eael-infobox-shape-radius .eael-infobox .infobox-icon img,
|
| 4362 |
.eael-infobox-hover-img-shape-radius:hover .eael-infobox .infobox-icon img {
|
| 4363 |
-
|
| 4364 |
-
border-radius: 15px;
|
| 4365 |
}
|
| 4366 |
|
| 4367 |
/* ------------------------ */
|
|
@@ -4400,8 +3690,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 4400 |
left: 0;
|
| 4401 |
top: 0;
|
| 4402 |
padding: 0 8px;
|
| 4403 |
-
|
| 4404 |
-
box-sizing: border-box;
|
| 4405 |
}
|
| 4406 |
|
| 4407 |
.mfp-container:before {
|
|
@@ -4436,13 +3725,11 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 4436 |
|
| 4437 |
.mfp-zoom-out-cur,
|
| 4438 |
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
|
| 4439 |
-
cursor: -webkit-zoom-out;
|
| 4440 |
cursor: zoom-out;
|
| 4441 |
}
|
| 4442 |
|
| 4443 |
.mfp-zoom {
|
| 4444 |
cursor: pointer;
|
| 4445 |
-
cursor: -webkit-zoom-in;
|
| 4446 |
cursor: zoom-in;
|
| 4447 |
}
|
| 4448 |
|
|
@@ -4507,10 +3794,8 @@ button.mfp-arrow {
|
|
| 4507 |
outline: none;
|
| 4508 |
padding: 0;
|
| 4509 |
z-index: 1046;
|
| 4510 |
-
|
| 4511 |
-
|
| 4512 |
-
-ms-touch-action: manipulation;
|
| 4513 |
-
touch-action: manipulation;
|
| 4514 |
}
|
| 4515 |
|
| 4516 |
button::-moz-focus-inner {
|
|
@@ -4670,8 +3955,7 @@ button::-moz-focus-inner {
|
|
| 4670 |
left: 0;
|
| 4671 |
width: 100%;
|
| 4672 |
height: 100%;
|
| 4673 |
-
|
| 4674 |
-
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
|
| 4675 |
background: #000;
|
| 4676 |
}
|
| 4677 |
|
|
@@ -4682,8 +3966,7 @@ img.mfp-img {
|
|
| 4682 |
height: auto;
|
| 4683 |
display: block;
|
| 4684 |
line-height: 0;
|
| 4685 |
-
|
| 4686 |
-
box-sizing: border-box;
|
| 4687 |
padding: 40px 0 40px;
|
| 4688 |
margin: 0 auto;
|
| 4689 |
}
|
|
@@ -4704,8 +3987,7 @@ img.mfp-img {
|
|
| 4704 |
width: auto;
|
| 4705 |
height: auto;
|
| 4706 |
z-index: -1;
|
| 4707 |
-
|
| 4708 |
-
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
|
| 4709 |
background: #444;
|
| 4710 |
}
|
| 4711 |
|
|
@@ -4787,8 +4069,7 @@ button.mfp-close:hover {
|
|
| 4787 |
top: auto;
|
| 4788 |
padding: 3px 5px;
|
| 4789 |
position: fixed;
|
| 4790 |
-
|
| 4791 |
-
box-sizing: border-box;
|
| 4792 |
}
|
| 4793 |
|
| 4794 |
.mfp-img-mobile .mfp-bottom-bar:empty {
|
|
@@ -4814,21 +4095,15 @@ button.mfp-close:hover {
|
|
| 4814 |
}
|
| 4815 |
@media all and (max-width: 900px) {
|
| 4816 |
.mfp-arrow {
|
| 4817 |
-
|
| 4818 |
-
-ms-transform: scale(0.75);
|
| 4819 |
-
transform: scale(0.75);
|
| 4820 |
}
|
| 4821 |
|
| 4822 |
.mfp-arrow-left {
|
| 4823 |
-
|
| 4824 |
-
-ms-transform-origin: 0;
|
| 4825 |
-
transform-origin: 0;
|
| 4826 |
}
|
| 4827 |
|
| 4828 |
.mfp-arrow-right {
|
| 4829 |
-
|
| 4830 |
-
-ms-transform-origin: 100%;
|
| 4831 |
-
transform-origin: 100%;
|
| 4832 |
}
|
| 4833 |
|
| 4834 |
.mfp-container {
|
|
@@ -4901,8 +4176,7 @@ button.mfp-close:hover {
|
|
| 4901 |
|
| 4902 |
.eael-ninja-form .submit-container input[type=button] {
|
| 4903 |
border: 0;
|
| 4904 |
-
|
| 4905 |
-
border-radius: 0;
|
| 4906 |
}
|
| 4907 |
|
| 4908 |
.eael-ninja-form-button-full-width .submit-container input[type=button] {
|
|
@@ -4945,11 +4219,7 @@ button.mfp-close:hover {
|
|
| 4945 |
width: 100%;
|
| 4946 |
height: 100%;
|
| 4947 |
z-index: 2;
|
| 4948 |
-
-webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
|
| 4949 |
-
transition: opacity 0.2s ease-in-out, -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
|
| 4950 |
-
-o-transition: opacity 0.2s ease-in-out, transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
|
| 4951 |
transition: opacity 0.2s ease-in-out, transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
|
| 4952 |
-
transition: opacity 0.2s ease-in-out, transform 0.25s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
|
| 4953 |
}
|
| 4954 |
|
| 4955 |
.eael-entry-overlay > a {
|
|
@@ -4981,8 +4251,7 @@ button.mfp-close:hover {
|
|
| 4981 |
}
|
| 4982 |
|
| 4983 |
.eael-entry-footer .eael-author-avatar .avatar {
|
| 4984 |
-
|
| 4985 |
-
border-radius: 50%;
|
| 4986 |
}
|
| 4987 |
|
| 4988 |
.eael-post-grid .eael-entry-footer .eael-entry-meta {
|
|
@@ -4991,23 +4260,12 @@ button.mfp-close:hover {
|
|
| 4991 |
}
|
| 4992 |
|
| 4993 |
.eael-grid-post .eael-entry-meta {
|
| 4994 |
-
display: -webkit-box;
|
| 4995 |
-
display: -webkit-flex;
|
| 4996 |
-
display: -ms-flexbox;
|
| 4997 |
display: flex;
|
| 4998 |
-
-
|
| 4999 |
-
-webkit-box-direction: normal;
|
| 5000 |
-
-webkit-flex-direction: row;
|
| 5001 |
-
-ms-flex-direction: row;
|
| 5002 |
-
flex-direction: row;
|
| 5003 |
}
|
| 5004 |
|
| 5005 |
.eael-grid-post .eael-entry-footer .eael-entry-meta {
|
| 5006 |
-
-
|
| 5007 |
-
-webkit-box-direction: normal;
|
| 5008 |
-
-webkit-flex-direction: column;
|
| 5009 |
-
-ms-flex-direction: column;
|
| 5010 |
-
flex-direction: column;
|
| 5011 |
}
|
| 5012 |
|
| 5013 |
.eael-entry-meta > div {
|
|
@@ -5049,18 +4307,9 @@ button.mfp-close:hover {
|
|
| 5049 |
}
|
| 5050 |
|
| 5051 |
.eael-entry-overlay {
|
| 5052 |
-
display: -webkit-box;
|
| 5053 |
-
display: -webkit-flex;
|
| 5054 |
-
display: -ms-flexbox;
|
| 5055 |
display: flex;
|
| 5056 |
-
-
|
| 5057 |
-
-
|
| 5058 |
-
-ms-flex-align: center;
|
| 5059 |
-
align-items: center;
|
| 5060 |
-
-webkit-box-pack: center;
|
| 5061 |
-
-webkit-justify-content: center;
|
| 5062 |
-
-ms-flex-pack: center;
|
| 5063 |
-
justify-content: center;
|
| 5064 |
}
|
| 5065 |
|
| 5066 |
.eael-entry-overlay > i {
|
|
@@ -5071,8 +4320,6 @@ button.mfp-close:hover {
|
|
| 5071 |
.eael-entry-overlay.fade-in {
|
| 5072 |
visibility: hidden;
|
| 5073 |
opacity: 0;
|
| 5074 |
-
-webkit-transition: 300ms;
|
| 5075 |
-
-o-transition: 300ms;
|
| 5076 |
transition: 300ms;
|
| 5077 |
}
|
| 5078 |
|
|
@@ -5082,48 +4329,34 @@ button.mfp-close:hover {
|
|
| 5082 |
}
|
| 5083 |
|
| 5084 |
.eael-entry-medianone:hover .eael-entry-overlay.fade-in > i {
|
| 5085 |
-
|
| 5086 |
-
-ms-transform: translate(0);
|
| 5087 |
-
transform: translate(0);
|
| 5088 |
opacity: 1;
|
| 5089 |
}
|
| 5090 |
|
| 5091 |
/*--- zoom in --- */
|
| 5092 |
.eael-entry-overlay.zoom-in {
|
| 5093 |
-
|
| 5094 |
-
-ms-transform: scale(0.9);
|
| 5095 |
-
transform: scale(0.9);
|
| 5096 |
visibility: hidden;
|
| 5097 |
opacity: 0;
|
| 5098 |
-
-webkit-transition: 300ms;
|
| 5099 |
-
-o-transition: 300ms;
|
| 5100 |
transition: 300ms;
|
| 5101 |
}
|
| 5102 |
|
| 5103 |
.eael-entry-medianone:hover .eael-entry-overlay.zoom-in {
|
| 5104 |
visibility: visible;
|
| 5105 |
opacity: 1;
|
| 5106 |
-
|
| 5107 |
-
-ms-transform: scale(1);
|
| 5108 |
-
transform: scale(1);
|
| 5109 |
}
|
| 5110 |
|
| 5111 |
/*--- slide up ---*/
|
| 5112 |
.eael-entry-overlay.slide-up {
|
| 5113 |
-
|
| 5114 |
-
-ms-transform: translateY(100%);
|
| 5115 |
-
transform: translateY(100%);
|
| 5116 |
visibility: hidden;
|
| 5117 |
opacity: 0;
|
| 5118 |
-
-webkit-transition: 300ms;
|
| 5119 |
-
-o-transition: 300ms;
|
| 5120 |
transition: 300ms;
|
| 5121 |
}
|
| 5122 |
|
| 5123 |
.eael-entry-medianone:hover .eael-entry-overlay.slide-up {
|
| 5124 |
-
|
| 5125 |
-
-ms-transform: translateY(0);
|
| 5126 |
-
transform: translateY(0);
|
| 5127 |
visibility: visible;
|
| 5128 |
opacity: 1;
|
| 5129 |
}
|
|
@@ -5146,81 +4379,53 @@ button.mfp-close:hover {
|
|
| 5146 |
}
|
| 5147 |
|
| 5148 |
.eael-entry-media.grid-hover-style-zoom-in .eael-entry-overlay {
|
| 5149 |
-
|
| 5150 |
-
-ms-transform: scale(0.4);
|
| 5151 |
-
transform: scale(0.4);
|
| 5152 |
opacity: 0;
|
| 5153 |
}
|
| 5154 |
|
| 5155 |
.eael-entry-media.grid-hover-style-zoom-in:hover .eael-entry-overlay {
|
| 5156 |
-
|
| 5157 |
-
-ms-transform: scale(1);
|
| 5158 |
-
transform: scale(1);
|
| 5159 |
opacity: 1;
|
| 5160 |
}
|
| 5161 |
|
| 5162 |
.eael-entry-media.grid-hover-style-animate-down .eael-entry-overlay {
|
| 5163 |
-
|
| 5164 |
-
-ms-transform: translateY(-100%);
|
| 5165 |
-
transform: translateY(-100%);
|
| 5166 |
}
|
| 5167 |
|
| 5168 |
.eael-entry-media.grid-hover-style-animate-down .eael-entry-overlay > i {
|
| 5169 |
-
|
| 5170 |
-
|
| 5171 |
-
|
| 5172 |
-
-webkit-transition-delay: 100ms;
|
| 5173 |
-
-o-transition-delay: 100ms;
|
| 5174 |
-
transition-delay: 100ms;
|
| 5175 |
-
-webkit-transition-duration: 300ms;
|
| 5176 |
-
-o-transition-duration: 300ms;
|
| 5177 |
-
transition-duration: 300ms;
|
| 5178 |
}
|
| 5179 |
|
| 5180 |
.eael-entry-media.grid-hover-style-animate-down:hover .eael-entry-overlay {
|
| 5181 |
-
|
| 5182 |
-
-ms-transform: translate(0);
|
| 5183 |
-
transform: translate(0);
|
| 5184 |
}
|
| 5185 |
|
| 5186 |
.eael-entry-media.grid-hover-style-animate-down:hover .eael-entry-overlay > i {
|
| 5187 |
-
|
| 5188 |
-
-ms-transform: translateY(0);
|
| 5189 |
-
transform: translateY(0);
|
| 5190 |
}
|
| 5191 |
|
| 5192 |
.eael-entry-media.grid-hover-style-animate-up .eael-entry-overlay {
|
| 5193 |
-
|
| 5194 |
-
-ms-transform: translateY(100%);
|
| 5195 |
-
transform: translateY(100%);
|
| 5196 |
visibility: hidden;
|
| 5197 |
opacity: 0;
|
| 5198 |
}
|
| 5199 |
|
| 5200 |
.eael-entry-media.grid-hover-style-animate-up .eael-entry-overlay > i {
|
| 5201 |
-
|
| 5202 |
-
|
| 5203 |
-
|
| 5204 |
-
-webkit-transition-delay: 100ms;
|
| 5205 |
-
-o-transition-delay: 100ms;
|
| 5206 |
-
transition-delay: 100ms;
|
| 5207 |
-
-webkit-transition-duration: 300ms;
|
| 5208 |
-
-o-transition-duration: 300ms;
|
| 5209 |
-
transition-duration: 300ms;
|
| 5210 |
}
|
| 5211 |
|
| 5212 |
.eael-entry-media.grid-hover-style-animate-up:hover .eael-entry-overlay {
|
| 5213 |
-
|
| 5214 |
-
-ms-transform: translate(0);
|
| 5215 |
-
transform: translate(0);
|
| 5216 |
visibility: visible;
|
| 5217 |
opacity: 1;
|
| 5218 |
}
|
| 5219 |
|
| 5220 |
.eael-entry-media.grid-hover-style-animate-up:hover .eael-entry-overlay > i {
|
| 5221 |
-
|
| 5222 |
-
-ms-transform: translateY(0);
|
| 5223 |
-
transform: translateY(0);
|
| 5224 |
}
|
| 5225 |
|
| 5226 |
/*--- Post Grid Column Styles ---*/
|
|
@@ -5291,9 +4496,6 @@ button.mfp-close:hover {
|
|
| 5291 |
|
| 5292 |
.eael-entry-footer {
|
| 5293 |
overflow: hidden;
|
| 5294 |
-
display: -webkit-box;
|
| 5295 |
-
display: -webkit-flex;
|
| 5296 |
-
display: -ms-flexbox;
|
| 5297 |
display: flex;
|
| 5298 |
}
|
| 5299 |
|
|
@@ -5340,10 +4542,8 @@ button.mfp-close:hover {
|
|
| 5340 |
.eael-timeline-bullet {
|
| 5341 |
background-color: #9fa9af;
|
| 5342 |
border: 5px solid #fff;
|
| 5343 |
-
|
| 5344 |
-
|
| 5345 |
-
-webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.1);
|
| 5346 |
-
box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.1);
|
| 5347 |
content: "";
|
| 5348 |
height: 20px;
|
| 5349 |
position: absolute;
|
|
@@ -5357,8 +4557,7 @@ button.mfp-close:hover {
|
|
| 5357 |
.eael-timeline-post:nth-child(2n) .eael-timeline-bullet {
|
| 5358 |
background-color: #9fa9af;
|
| 5359 |
border: 5px solid #fff;
|
| 5360 |
-
|
| 5361 |
-
border-radius: 50%;
|
| 5362 |
bottom: 36px;
|
| 5363 |
content: "";
|
| 5364 |
height: 20px;
|
|
@@ -5370,12 +4569,9 @@ button.mfp-close:hover {
|
|
| 5370 |
}
|
| 5371 |
|
| 5372 |
.eael-timeline-post-inner {
|
| 5373 |
-
background: -webkit-linear-gradient(45deg, #3f3f46 0%, #05abe0 100%) repeat scroll 0 0 transparent;
|
| 5374 |
-
background: -o-linear-gradient(45deg, #3f3f46 0%, #05abe0 100%) repeat scroll 0 0 transparent;
|
| 5375 |
background: linear-gradient(45deg, #3f3f46 0%, #05abe0 100%) repeat scroll 0 0 transparent;
|
| 5376 |
border: 8px solid #e5eaed;
|
| 5377 |
-
|
| 5378 |
-
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
|
| 5379 |
float: right;
|
| 5380 |
margin: 30px 40px 30px auto;
|
| 5381 |
position: relative;
|
|
@@ -5423,8 +4619,7 @@ button.mfp-close:hover {
|
|
| 5423 |
}
|
| 5424 |
|
| 5425 |
.eael-timeline-post-image {
|
| 5426 |
-
|
| 5427 |
-
background-size: cover;
|
| 5428 |
background-position: center center;
|
| 5429 |
background-repeat: no-repeat;
|
| 5430 |
display: block;
|
|
@@ -5432,8 +4627,6 @@ button.mfp-close:hover {
|
|
| 5432 |
overflow: hidden;
|
| 5433 |
position: relative;
|
| 5434 |
opacity: .6;
|
| 5435 |
-
-webkit-transition: all .3s;
|
| 5436 |
-
-o-transition: all .3s;
|
| 5437 |
transition: all .3s;
|
| 5438 |
}
|
| 5439 |
|
|
@@ -5459,8 +4652,6 @@ button.mfp-close:hover {
|
|
| 5459 |
position: absolute;
|
| 5460 |
top: 0;
|
| 5461 |
left: 0;
|
| 5462 |
-
-webkit-transition: all .3s;
|
| 5463 |
-
-o-transition: all .3s;
|
| 5464 |
transition: all .3s;
|
| 5465 |
}
|
| 5466 |
|
|
@@ -5484,8 +4675,7 @@ button.mfp-close:hover {
|
|
| 5484 |
background-color: rgba(0, 0, 0, 0.7);
|
| 5485 |
color: #fff;
|
| 5486 |
font-size: 10px;
|
| 5487 |
-
|
| 5488 |
-
border-radius: 20px;
|
| 5489 |
position: absolute;
|
| 5490 |
right: -97px;
|
| 5491 |
width: 100px;
|
|
@@ -5494,15 +4684,12 @@ button.mfp-close:hover {
|
|
| 5494 |
text-align: center;
|
| 5495 |
top: 50px;
|
| 5496 |
z-index: 99;
|
| 5497 |
-
-webkit-transition: all .5s;
|
| 5498 |
-
-o-transition: all .5s;
|
| 5499 |
transition: all .5s;
|
| 5500 |
}
|
| 5501 |
|
| 5502 |
.eael-timeline-post:nth-child(2n) time {
|
| 5503 |
background-color: rgba(0, 0, 0, 0.7);
|
| 5504 |
-
|
| 5505 |
-
border-radius: 20px;
|
| 5506 |
color: #fff;
|
| 5507 |
font-size: 10px;
|
| 5508 |
height: 30px;
|
|
@@ -5544,9 +4731,6 @@ button.mfp-close:hover {
|
|
| 5544 |
}
|
| 5545 |
|
| 5546 |
.eael-load-more-button-wrap {
|
| 5547 |
-
display: -webkit-box;
|
| 5548 |
-
display: -webkit-flex;
|
| 5549 |
-
display: -ms-flexbox;
|
| 5550 |
display: flex;
|
| 5551 |
}
|
| 5552 |
|
|
@@ -5619,8 +4803,7 @@ button.mfp-close:hover {
|
|
| 5619 |
.eael-timeline-post time,
|
| 5620 |
.eael-timeline-post:nth-child(2n) time {
|
| 5621 |
background-color: #fff;
|
| 5622 |
-
|
| 5623 |
-
border-radius: 0;
|
| 5624 |
color: #444;
|
| 5625 |
font-size: 12px;
|
| 5626 |
text-transform: uppercase;
|
|
@@ -5669,17 +4852,9 @@ button.mfp-close:hover {
|
|
| 5669 |
/* -------------------------------- */
|
| 5670 |
.eael-pricing {
|
| 5671 |
-webkit-display: flex;
|
| 5672 |
-
display: -webkit-box;
|
| 5673 |
-
display: -ms-flexbox;
|
| 5674 |
display: flex;
|
| 5675 |
-
|
| 5676 |
-
-
|
| 5677 |
-
-ms-flex-pack: center;
|
| 5678 |
-
justify-content: center;
|
| 5679 |
-
-webkit-align-items: center;
|
| 5680 |
-
-webkit-box-align: center;
|
| 5681 |
-
-ms-flex-align: center;
|
| 5682 |
-
align-items: center;
|
| 5683 |
}
|
| 5684 |
|
| 5685 |
.eael-pricing .eael-pricing-item {
|
|
@@ -5697,10 +4872,7 @@ button.mfp-close:hover {
|
|
| 5697 |
color: #fff;
|
| 5698 |
text-transform: uppercase;
|
| 5699 |
text-decoration: none;
|
| 5700 |
-
-webkit-transition: .3s;
|
| 5701 |
-
-o-transition: .3s;
|
| 5702 |
transition: .3s;
|
| 5703 |
-
-webkit-border-radius: 4px;
|
| 5704 |
border-radius: 4px;
|
| 5705 |
}
|
| 5706 |
|
|
@@ -5738,15 +4910,11 @@ button.mfp-close:hover {
|
|
| 5738 |
.eael-pricing.style-1 .eael-pricing-item {
|
| 5739 |
border: 1px solid rgba(9, 9, 9, 0.1);
|
| 5740 |
padding: 30px;
|
| 5741 |
-
-webkit-border-radius: 5px;
|
| 5742 |
border-radius: 5px;
|
| 5743 |
-
-webkit-transition: .5s;
|
| 5744 |
-
-o-transition: .5s;
|
| 5745 |
transition: .5s;
|
| 5746 |
}
|
| 5747 |
|
| 5748 |
.eael-pricing.style-1 .eael-pricing-item:hover {
|
| 5749 |
-
-webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
|
| 5750 |
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
|
| 5751 |
}
|
| 5752 |
|
|
@@ -5764,7 +4932,6 @@ button.mfp-close:hover {
|
|
| 5764 |
left: 0px;
|
| 5765 |
right: 0px;
|
| 5766 |
z-index: 1;
|
| 5767 |
-
-webkit-border-radius: 5px 5px 0px 0px;
|
| 5768 |
border-radius: 5px 5px 0px 0px;
|
| 5769 |
}
|
| 5770 |
|
|
@@ -5909,14 +5076,12 @@ button.mfp-close:hover {
|
|
| 5909 |
|
| 5910 |
.eael-pricing.style-2 .eael-pricing-item {
|
| 5911 |
padding: 30px 0px;
|
| 5912 |
-
|
| 5913 |
-
border-radius: 5px;
|
| 5914 |
margin: 0px;
|
| 5915 |
border: 1px solid rgba(9, 9, 9, 0.1);
|
| 5916 |
}
|
| 5917 |
|
| 5918 |
.eael-pricing.style-2 .eael-pricing-item.featured {
|
| 5919 |
-
-webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
|
| 5920 |
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
|
| 5921 |
}
|
| 5922 |
|
|
@@ -5930,7 +5095,6 @@ button.mfp-close:hover {
|
|
| 5930 |
left: 0px;
|
| 5931 |
right: 0px;
|
| 5932 |
z-index: 1;
|
| 5933 |
-
-webkit-border-radius: 5px 5px 0px 0px;
|
| 5934 |
border-radius: 5px 5px 0px 0px;
|
| 5935 |
}
|
| 5936 |
|
|
@@ -5983,12 +5147,9 @@ button.mfp-close:hover {
|
|
| 5983 |
width: 80px;
|
| 5984 |
height: 80px;
|
| 5985 |
background: #00c853;
|
| 5986 |
-
|
| 5987 |
-
border-radius: 50%;
|
| 5988 |
margin-bottom: 30px;
|
| 5989 |
text-align: center;
|
| 5990 |
-
-webkit-transition: .5s;
|
| 5991 |
-
-o-transition: .5s;
|
| 5992 |
transition: .5s;
|
| 5993 |
overflow: hidden;
|
| 5994 |
}
|
|
@@ -5997,8 +5158,6 @@ button.mfp-close:hover {
|
|
| 5997 |
font-size: 30px;
|
| 5998 |
color: #fff;
|
| 5999 |
line-height: 80px;
|
| 6000 |
-
-webkit-transition: .5s;
|
| 6001 |
-
-o-transition: .5s;
|
| 6002 |
transition: .5s;
|
| 6003 |
}
|
| 6004 |
|
|
@@ -6185,22 +5344,16 @@ button.mfp-close:hover {
|
|
| 6185 |
}
|
| 6186 |
|
| 6187 |
.eael-pricing-content-align-left .eael-pricing.style-3 .eael-pricing-item .header:after {
|
| 6188 |
-
|
| 6189 |
-
-ms-transform: translateX(-80%);
|
| 6190 |
-
transform: translateX(-80%);
|
| 6191 |
}
|
| 6192 |
|
| 6193 |
.eael-pricing-content-align-right .eael-pricing.style-3 .eael-pricing-item .header:after {
|
| 6194 |
-
|
| 6195 |
-
-ms-transform: translateX(80%);
|
| 6196 |
-
transform: translateX(80%);
|
| 6197 |
}
|
| 6198 |
|
| 6199 |
.eael-pricing-content-align-left .eael-pricing.style-3 .eael-pricing-item:hover .header:after,
|
| 6200 |
.eael-pricing-content-align-right .eael-pricing.style-3 .eael-pricing-item:hover .header:after {
|
| 6201 |
-
|
| 6202 |
-
-ms-transform: translateX(0%);
|
| 6203 |
-
transform: translateX(0%);
|
| 6204 |
}
|
| 6205 |
|
| 6206 |
.eael-pricing-content-align-left .eael-pricing.style-1 .eael-pricing-item .header:after,
|
|
@@ -6249,17 +5402,9 @@ button.mfp-close:hover {
|
|
| 6249 |
.only-in-pro {
|
| 6250 |
width: 100%;
|
| 6251 |
-webkit-display: flex;
|
| 6252 |
-
display: -webkit-box;
|
| 6253 |
-
display: -ms-flexbox;
|
| 6254 |
display: flex;
|
| 6255 |
-
|
| 6256 |
-
-
|
| 6257 |
-
-ms-flex-align: center;
|
| 6258 |
-
align-items: center;
|
| 6259 |
-
-webkit-justify-content: center;
|
| 6260 |
-
-webkit-box-pack: center;
|
| 6261 |
-
-ms-flex-pack: center;
|
| 6262 |
-
justify-content: center;
|
| 6263 |
padding: 15px;
|
| 6264 |
min-width: 200px;
|
| 6265 |
background: #EF5350;
|
|
@@ -6298,6 +5443,12 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 6298 |
bottom: auto;
|
| 6299 |
}
|
| 6300 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6301 |
/*--------------------------*/
|
| 6302 |
/* 09. Product Styles
|
| 6303 |
/*--------------------------*/
|
|
@@ -6405,11 +5556,9 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 6405 |
overflow: hidden;
|
| 6406 |
text-align: center;
|
| 6407 |
padding: 0;
|
| 6408 |
-
|
| 6409 |
-
border-radius: 0;
|
| 6410 |
background-color: #fff;
|
| 6411 |
-
|
| 6412 |
-
box-shadow: none;
|
| 6413 |
}
|
| 6414 |
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a,
|
| 6415 |
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a,
|
|
@@ -6420,8 +5569,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 6420 |
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a:hover,
|
| 6421 |
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a:hover {
|
| 6422 |
outline: none;
|
| 6423 |
-
|
| 6424 |
-
box-shadow: none;
|
| 6425 |
}
|
| 6426 |
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product img, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product img,
|
| 6427 |
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product img,
|
|
@@ -6453,11 +5601,9 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 6453 |
text-transform: uppercase;
|
| 6454 |
color: #fff;
|
| 6455 |
background-color: #ff2a13;
|
| 6456 |
-
|
| 6457 |
-
border-radius: 0;
|
| 6458 |
border: none;
|
| 6459 |
-
|
| 6460 |
-
box-shadow: none;
|
| 6461 |
position: absolute;
|
| 6462 |
height: 100px;
|
| 6463 |
width: 200px;
|
|
@@ -6467,9 +5613,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 6467 |
right: auto;
|
| 6468 |
margin: 0;
|
| 6469 |
padding: 0;
|
| 6470 |
-
|
| 6471 |
-
-ms-transform: rotate(-45deg);
|
| 6472 |
-
transform: rotate(-45deg);
|
| 6473 |
}
|
| 6474 |
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price,
|
| 6475 |
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price,
|
|
@@ -6511,8 +5655,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 6511 |
background-color: #333;
|
| 6512 |
padding: 0;
|
| 6513 |
margin: 15px;
|
| 6514 |
-
|
| 6515 |
-
border-radius: 0;
|
| 6516 |
}
|
| 6517 |
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button:focus,
|
| 6518 |
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus,
|
|
@@ -6544,8 +5687,6 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 6544 |
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,
|
| 6545 |
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart {
|
| 6546 |
visibility: hidden;
|
| 6547 |
-
-webkit-transition: none;
|
| 6548 |
-
-o-transition: none;
|
| 6549 |
transition: none;
|
| 6550 |
}
|
| 6551 |
.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover,
|
|
@@ -6565,11 +5706,9 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 6565 |
overflow: hidden;
|
| 6566 |
text-align: center;
|
| 6567 |
padding: 0 0 15px 0;
|
| 6568 |
-
|
| 6569 |
-
border-radius: 0;
|
| 6570 |
background-color: #fff;
|
| 6571 |
-
|
| 6572 |
-
box-shadow: none;
|
| 6573 |
}
|
| 6574 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product a,
|
| 6575 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product a {
|
|
@@ -6578,8 +5717,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 6578 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product a:hover,
|
| 6579 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product a:hover {
|
| 6580 |
outline: none;
|
| 6581 |
-
|
| 6582 |
-
box-shadow: none;
|
| 6583 |
}
|
| 6584 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product img,
|
| 6585 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product img {
|
|
@@ -6602,9 +5740,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 6602 |
left: 0;
|
| 6603 |
right: 0;
|
| 6604 |
text-align: center;
|
| 6605 |
-
|
| 6606 |
-
-ms-transform: translateY(-50%);
|
| 6607 |
-
transform: translateY(-50%);
|
| 6608 |
}
|
| 6609 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link,
|
| 6610 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,
|
|
@@ -6621,20 +5757,13 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 6621 |
width: 38px;
|
| 6622 |
height: 38px;
|
| 6623 |
border-style: none;
|
| 6624 |
-
|
| 6625 |
-
border-radius: 50%;
|
| 6626 |
vertical-align: middle;
|
| 6627 |
padding: 0;
|
| 6628 |
margin: 0 5px;
|
| 6629 |
-
|
| 6630 |
-
-ms-transform: translateY(20px);
|
| 6631 |
-
transform: translateY(20px);
|
| 6632 |
opacity: 0;
|
| 6633 |
-
-webkit-transition: opacity 300ms, -webkit-transform 200ms;
|
| 6634 |
-
transition: opacity 300ms, -webkit-transform 200ms;
|
| 6635 |
-
-o-transition: transform 200ms, opacity 300ms;
|
| 6636 |
transition: transform 200ms, opacity 300ms;
|
| 6637 |
-
transition: transform 200ms, opacity 300ms, -webkit-transform 200ms;
|
| 6638 |
}
|
| 6639 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link:focus,
|
| 6640 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:focus,
|
|
@@ -6721,11 +5850,9 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 6721 |
text-transform: uppercase;
|
| 6722 |
color: #fff;
|
| 6723 |
background-color: #ff2a13;
|
| 6724 |
-
|
| 6725 |
-
border-radius: 0;
|
| 6726 |
border: none;
|
| 6727 |
-
|
| 6728 |
-
box-shadow: none;
|
| 6729 |
position: absolute;
|
| 6730 |
height: 100px;
|
| 6731 |
width: 200px;
|
|
@@ -6735,9 +5862,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 6735 |
right: auto;
|
| 6736 |
margin: 0;
|
| 6737 |
padding: 0;
|
| 6738 |
-
|
| 6739 |
-
-ms-transform: rotate(-45deg);
|
| 6740 |
-
transform: rotate(-45deg);
|
| 6741 |
}
|
| 6742 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price,
|
| 6743 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price {
|
|
@@ -6767,49 +5892,39 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 6767 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay a,
|
| 6768 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .add_to_cart_button {
|
| 6769 |
opacity: 1;
|
| 6770 |
-
|
| 6771 |
-
-ms-transform: translateY(0);
|
| 6772 |
-
transform: translateY(0);
|
| 6773 |
}
|
| 6774 |
|
| 6775 |
@-webkit-keyframes animateStripe {
|
| 6776 |
0% {
|
| 6777 |
-
|
| 6778 |
-
transform: translate(0, 0);
|
| 6779 |
}
|
| 6780 |
100% {
|
| 6781 |
-
|
| 6782 |
-
transform: translate(35px, 0);
|
| 6783 |
}
|
| 6784 |
}
|
| 6785 |
@keyframes animateStripe {
|
| 6786 |
0% {
|
| 6787 |
-
|
| 6788 |
-
transform: translate(0, 0);
|
| 6789 |
}
|
| 6790 |
100% {
|
| 6791 |
-
|
| 6792 |
-
transform: translate(35px, 0);
|
| 6793 |
}
|
| 6794 |
}
|
| 6795 |
@-webkit-keyframes animateStripeRTL {
|
| 6796 |
0% {
|
| 6797 |
-
|
| 6798 |
-
transform: translate(0, 0);
|
| 6799 |
}
|
| 6800 |
100% {
|
| 6801 |
-
|
| 6802 |
-
transform: translate(-35px, 0);
|
| 6803 |
}
|
| 6804 |
}
|
| 6805 |
@keyframes animateStripeRTL {
|
| 6806 |
0% {
|
| 6807 |
-
|
| 6808 |
-
transform: translate(0, 0);
|
| 6809 |
}
|
| 6810 |
100% {
|
| 6811 |
-
|
| 6812 |
-
transform: translate(-35px, 0);
|
| 6813 |
}
|
| 6814 |
}
|
| 6815 |
.eael-progressbar {
|
|
@@ -6845,11 +5960,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 6845 |
width: 0;
|
| 6846 |
height: 12px;
|
| 6847 |
background-color: #000000;
|
| 6848 |
-
|
| 6849 |
-
-ms-transform: translateY(-50%);
|
| 6850 |
-
transform: translateY(-50%);
|
| 6851 |
-
-webkit-transition: width 1500ms linear;
|
| 6852 |
-
-o-transition: width 1500ms linear;
|
| 6853 |
transition: width 1500ms linear;
|
| 6854 |
overflow: hidden;
|
| 6855 |
}
|
|
@@ -6872,8 +5983,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 6872 |
width: 220px;
|
| 6873 |
height: 220px;
|
| 6874 |
padding: 10px;
|
| 6875 |
-
|
| 6876 |
-
border-radius: 50%;
|
| 6877 |
}
|
| 6878 |
|
| 6879 |
.eael-progressbar-circle-pie {
|
|
@@ -6892,8 +6002,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 6892 |
border-width: 12px;
|
| 6893 |
border-style: solid;
|
| 6894 |
border-color: #eeeeee;
|
| 6895 |
-
|
| 6896 |
-
border-radius: 50%;
|
| 6897 |
}
|
| 6898 |
|
| 6899 |
.eael-progressbar-circle-half {
|
|
@@ -6905,22 +6014,17 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 6905 |
border-width: 12px;
|
| 6906 |
border-style: solid;
|
| 6907 |
border-color: #000000;
|
| 6908 |
-
|
| 6909 |
-
border-radius: 50%;
|
| 6910 |
-webkit-clip-path: inset(0 50% 0 0);
|
| 6911 |
clip-path: inset(0 50% 0 0);
|
| 6912 |
}
|
| 6913 |
|
| 6914 |
.eael-progressbar-circle-half-left {
|
| 6915 |
-
|
| 6916 |
-
-ms-transform: rotate(0deg);
|
| 6917 |
-
transform: rotate(0deg);
|
| 6918 |
}
|
| 6919 |
|
| 6920 |
.eael-progressbar-circle-half-right {
|
| 6921 |
-
|
| 6922 |
-
-ms-transform: rotate(180deg);
|
| 6923 |
-
transform: rotate(180deg);
|
| 6924 |
visibility: hidden;
|
| 6925 |
}
|
| 6926 |
|
|
@@ -6928,9 +6032,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 6928 |
position: absolute;
|
| 6929 |
top: 50%;
|
| 6930 |
width: 100%;
|
| 6931 |
-
|
| 6932 |
-
-ms-transform: translateY(-50%);
|
| 6933 |
-
transform: translateY(-50%);
|
| 6934 |
text-align: center;
|
| 6935 |
}
|
| 6936 |
|
|
@@ -6947,21 +6049,13 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 6947 |
.eael-progressbar-half-circle .eael-progressbar-circle-half {
|
| 6948 |
-webkit-clip-path: inset(50% 0 0 0);
|
| 6949 |
clip-path: inset(50% 0 0 0);
|
| 6950 |
-
|
| 6951 |
-
-ms-transform: rotate(0deg);
|
| 6952 |
-
transform: rotate(0deg);
|
| 6953 |
-
-webkit-transition: -webkit-transform 1500ms linear;
|
| 6954 |
-
transition: -webkit-transform 1500ms linear;
|
| 6955 |
-
-o-transition: transform 1500ms linear;
|
| 6956 |
transition: transform 1500ms linear;
|
| 6957 |
-
transition: transform 1500ms linear, -webkit-transform 1500ms linear;
|
| 6958 |
}
|
| 6959 |
.eael-progressbar-half-circle .eael-progressbar-circle-inner-content {
|
| 6960 |
top: initial;
|
| 6961 |
bottom: 0;
|
| 6962 |
-
|
| 6963 |
-
-ms-transform: translateY(0);
|
| 6964 |
-
transform: translateY(0);
|
| 6965 |
}
|
| 6966 |
.eael-progressbar-half-circle .eael-progressbar-title {
|
| 6967 |
font-size: 16px;
|
|
@@ -6990,11 +6084,8 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 6990 |
left: -35px;
|
| 6991 |
width: calc(100% + 70px);
|
| 6992 |
height: 100%;
|
| 6993 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
| 6994 |
-
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
| 6995 |
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
| 6996 |
-
|
| 6997 |
-
background-size: 35px 35px;
|
| 6998 |
}
|
| 6999 |
|
| 7000 |
.eael-progressbar-line-animate .eael-progressbar-line-fill:after {
|
|
@@ -7030,6 +6121,35 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 7030 |
margin: 0 0 0 auto;
|
| 7031 |
}
|
| 7032 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7033 |
/*----------------------------*/
|
| 7034 |
/* 07. Team Members Styles
|
| 7035 |
/*----------------------------*/
|
|
@@ -7039,8 +6159,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 7039 |
}
|
| 7040 |
|
| 7041 |
.team-avatar-rounded figure img {
|
| 7042 |
-
|
| 7043 |
-
border-radius: 50%;
|
| 7044 |
height: auto;
|
| 7045 |
}
|
| 7046 |
|
|
@@ -7130,13 +6249,10 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 7130 |
padding-top: 15%;
|
| 7131 |
opacity: 0;
|
| 7132 |
overflow: hidden;
|
| 7133 |
-
|
| 7134 |
-
text-overflow: ellipsis;
|
| 7135 |
position: absolute;
|
| 7136 |
right: 10px;
|
| 7137 |
top: 10px;
|
| 7138 |
-
-webkit-transition: all 0.615s cubic-bezier(0.19, 1, 0.22, 1) 0s;
|
| 7139 |
-
-o-transition: all 0.615s cubic-bezier(0.19, 1, 0.22, 1) 0s;
|
| 7140 |
transition: all 0.615s cubic-bezier(0.19, 1, 0.22, 1) 0s;
|
| 7141 |
}
|
| 7142 |
|
|
@@ -7146,8 +6262,6 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 7146 |
|
| 7147 |
.eael-team-member-social-link > a {
|
| 7148 |
display: inline-block;
|
| 7149 |
-
-webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s;
|
| 7150 |
-
-o-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s;
|
| 7151 |
transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s;
|
| 7152 |
}
|
| 7153 |
|
|
@@ -7217,8 +6331,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 7217 |
}
|
| 7218 |
|
| 7219 |
.testimonial-avatar-rounded figure img {
|
| 7220 |
-
|
| 7221 |
-
border-radius: 50%;
|
| 7222 |
height: auto;
|
| 7223 |
}
|
| 7224 |
|
|
@@ -7548,8 +6661,6 @@ span.eael-testimonial-quote {
|
|
| 7548 |
color: #333;
|
| 7549 |
line-height: 1;
|
| 7550 |
cursor: pointer;
|
| 7551 |
-
-webkit-transition: all 0.3s ease-in-out;
|
| 7552 |
-
-o-transition: all 0.3s ease-in-out;
|
| 7553 |
transition: all 0.3s ease-in-out;
|
| 7554 |
}
|
| 7555 |
|
|
@@ -7560,8 +6671,7 @@ span.eael-testimonial-quote {
|
|
| 7560 |
background-color: black;
|
| 7561 |
color: #fff;
|
| 7562 |
text-align: center;
|
| 7563 |
-
|
| 7564 |
-
border-radius: 4px;
|
| 7565 |
padding: 10px;
|
| 7566 |
position: absolute;
|
| 7567 |
z-index: 1;
|
|
@@ -7584,9 +6694,7 @@ span.eael-testimonial-quote {
|
|
| 7584 |
.eael-tooltip .eael-tooltip-text.eael-tooltip-left {
|
| 7585 |
top: 50%;
|
| 7586 |
right: 100%;
|
| 7587 |
-
|
| 7588 |
-
-ms-transform: translateY(-50%);
|
| 7589 |
-
transform: translateY(-50%);
|
| 7590 |
margin-right: 10px;
|
| 7591 |
}
|
| 7592 |
|
|
@@ -7605,11 +6713,7 @@ span.eael-testimonial-quote {
|
|
| 7605 |
.eael-tooltip .eael-tooltip-text.eael-tooltip-right {
|
| 7606 |
top: 50%;
|
| 7607 |
left: 100%;
|
| 7608 |
-
|
| 7609 |
-
-ms-transform: translateY(-50%);
|
| 7610 |
-
transform: translateY(-50%);
|
| 7611 |
-
-webkit-transition: all 0.3s ease-in-out;
|
| 7612 |
-
-o-transition: all 0.3s ease-in-out;
|
| 7613 |
transition: all 0.3s ease-in-out;
|
| 7614 |
margin-left: 10px;
|
| 7615 |
}
|
|
@@ -7667,54 +6771,27 @@ span.eael-testimonial-quote {
|
|
| 7667 |
|
| 7668 |
/*--- Alignments ---*/
|
| 7669 |
.eael-tooltip-align-left {
|
| 7670 |
-
display: -webkit-box;
|
| 7671 |
-
display: -webkit-flex;
|
| 7672 |
-
display: -ms-flexbox;
|
| 7673 |
display: flex;
|
| 7674 |
width: 100%;
|
| 7675 |
-
-
|
| 7676 |
-
-webkit-justify-content: flex-start;
|
| 7677 |
-
-ms-flex-pack: start;
|
| 7678 |
-
justify-content: flex-start;
|
| 7679 |
}
|
| 7680 |
|
| 7681 |
.eael-tooltip-align-right {
|
| 7682 |
-
display: -webkit-box;
|
| 7683 |
-
display: -webkit-flex;
|
| 7684 |
-
display: -ms-flexbox;
|
| 7685 |
display: flex;
|
| 7686 |
width: 100%;
|
| 7687 |
-
-
|
| 7688 |
-
-webkit-justify-content: flex-end;
|
| 7689 |
-
-ms-flex-pack: end;
|
| 7690 |
-
justify-content: flex-end;
|
| 7691 |
}
|
| 7692 |
|
| 7693 |
.eael-tooltip-align-center {
|
| 7694 |
-
display: -webkit-box;
|
| 7695 |
-
display: -webkit-flex;
|
| 7696 |
-
display: -ms-flexbox;
|
| 7697 |
display: flex;
|
| 7698 |
width: 100%;
|
| 7699 |
-
-
|
| 7700 |
-
-webkit-justify-content: center;
|
| 7701 |
-
-ms-flex-pack: center;
|
| 7702 |
-
justify-content: center;
|
| 7703 |
}
|
| 7704 |
|
| 7705 |
.eael-tooltip-align-justify .eael-tooltip {
|
| 7706 |
-
display: -webkit-box;
|
| 7707 |
-
display: -webkit-flex;
|
| 7708 |
-
display: -ms-flexbox;
|
| 7709 |
display: flex;
|
| 7710 |
-
-
|
| 7711 |
-
-
|
| 7712 |
-
-ms-flex-pack: center;
|
| 7713 |
-
justify-content: center;
|
| 7714 |
-
-webkit-box-align: center;
|
| 7715 |
-
-webkit-align-items: center;
|
| 7716 |
-
-ms-flex-align: center;
|
| 7717 |
-
align-items: center;
|
| 7718 |
}
|
| 7719 |
|
| 7720 |
/*--- Tooltip Keyframes ---*/
|
|
@@ -7799,323 +6876,91 @@ span.eael-testimonial-quote {
|
|
| 7799 |
}
|
| 7800 |
}
|
| 7801 |
|
| 7802 |
-
|
| 7803 |
-
/* 24. Social Feeds
|
| 7804 |
-
/* ------------------------ */
|
| 7805 |
-
.swiper-container-wrap .swiper-slide .eael-social-feed-element img {
|
| 7806 |
-
width: 100%;
|
| 7807 |
-
}
|
| 7808 |
-
|
| 7809 |
-
/*--- Twitter Feed Styles ---*/
|
| 7810 |
-
.eael-social-feed-element.hidden {
|
| 7811 |
-
background-color: red !important;
|
| 7812 |
-
}
|
| 7813 |
-
|
| 7814 |
-
.eael-twitter-feed-wrapper::before,
|
| 7815 |
-
.eael-twitter-feed-wrapper::after,
|
| 7816 |
-
.eael-twitter-feed-container::before,
|
| 7817 |
-
.eael-twitter-feed-container::after {
|
| 7818 |
content: "";
|
| 7819 |
clear: both;
|
| 7820 |
}
|
| 7821 |
|
| 7822 |
-
.eael-
|
| 7823 |
float: left;
|
| 7824 |
-
margin-right: 10px;
|
| 7825 |
}
|
| 7826 |
-
|
| 7827 |
-
.eael-
|
| 7828 |
-
|
|
|
|
| 7829 |
}
|
| 7830 |
-
|
| 7831 |
-
.eael-
|
| 7832 |
-
|
| 7833 |
-
|
| 7834 |
-
border: 0;
|
| 7835 |
-
vertical-align: middle;
|
| 7836 |
-
-ms-interpolation-mode: bicubic;
|
| 7837 |
}
|
| 7838 |
-
|
| 7839 |
-
.eael-
|
| 7840 |
-
|
| 7841 |
-
|
| 7842 |
}
|
| 7843 |
|
| 7844 |
-
|
| 7845 |
-
|
|
|
|
|
|
|
|
|
|
| 7846 |
color: #0088cc;
|
| 7847 |
text-decoration: none;
|
| 7848 |
}
|
| 7849 |
-
|
| 7850 |
-
.eael-social-feed-element a:focus {
|
| 7851 |
-
outline: thin dotted #333;
|
| 7852 |
-
outline: 5px auto -webkit-focus-ring-color;
|
| 7853 |
-
outline-offset: -2px;
|
| 7854 |
-
}
|
| 7855 |
-
|
| 7856 |
-
.eael-social-feed-element a:hover,
|
| 7857 |
-
.eael-social-feed-element a:active {
|
| 7858 |
outline: 0;
|
| 7859 |
color: #005580;
|
| 7860 |
-
text-decoration: underline;
|
| 7861 |
-
}
|
| 7862 |
-
|
| 7863 |
-
/*--- Text styles ---*/
|
| 7864 |
-
.eael-social-feed-element small {
|
| 7865 |
-
font-size: 85%;
|
| 7866 |
}
|
| 7867 |
-
|
| 7868 |
-
|
| 7869 |
-
font-weight: bold;
|
| 7870 |
-
}
|
| 7871 |
-
|
| 7872 |
-
.eael-social-feed-element em {
|
| 7873 |
-
font-style: italic;
|
| 7874 |
}
|
| 7875 |
-
|
| 7876 |
-
|
| 7877 |
-
margin:
|
| 7878 |
}
|
| 7879 |
-
|
| 7880 |
-
|
| 7881 |
-
|
| 7882 |
-
|
| 7883 |
}
|
| 7884 |
-
|
| 7885 |
-
|
| 7886 |
-
|
| 7887 |
-
|
| 7888 |
-
|
| 7889 |
-
text-overflow: ellipsis;
|
| 7890 |
-
-webkit-line-clamp: 5;
|
| 7891 |
-
-webkit-box-orient: vertical;
|
| 7892 |
}
|
| 7893 |
-
|
| 7894 |
-
|
| 7895 |
-
.eael-social-feed-element,
|
| 7896 |
-
.eael-social-feed-element .media-body {
|
| 7897 |
-
overflow: hidden;
|
| 7898 |
-
zoom: 1;
|
| 7899 |
-
overflow: visible;
|
| 7900 |
}
|
| 7901 |
-
|
| 7902 |
-
|
| 7903 |
-
padding: 10px;
|
| 7904 |
-
background: none;
|
| 7905 |
}
|
| 7906 |
-
|
| 7907 |
-
|
| 7908 |
-
margin-top: -3px;
|
| 7909 |
margin-right: 5px;
|
| 7910 |
-
width: 16px;
|
| 7911 |
-
}
|
| 7912 |
-
|
| 7913 |
-
.eael-social-feed-element .media-body div {
|
| 7914 |
-
color: #666;
|
| 7915 |
-
line-height: 20px;
|
| 7916 |
-
clear: both;
|
| 7917 |
-
}
|
| 7918 |
-
|
| 7919 |
-
.eael-social-feed-element:first-child {
|
| 7920 |
-
margin-top: 0;
|
| 7921 |
-
}
|
| 7922 |
-
|
| 7923 |
-
.eael-social-feed-element .media-object {
|
| 7924 |
-
display: block;
|
| 7925 |
-
width: 48px;
|
| 7926 |
-
-webkit-border-radius: 50%;
|
| 7927 |
-
border-radius: 50%;
|
| 7928 |
-
}
|
| 7929 |
-
|
| 7930 |
-
.eael-social-feed-element .media-heading {
|
| 7931 |
-
margin: 0 0 5px;
|
| 7932 |
-
}
|
| 7933 |
-
|
| 7934 |
-
.eael-social-feed-element .media-list {
|
| 7935 |
-
margin-left: 0;
|
| 7936 |
-
list-style: none;
|
| 7937 |
-
}
|
| 7938 |
-
|
| 7939 |
-
.eael-social-feed-element .muted {
|
| 7940 |
-
color: #999;
|
| 7941 |
-
}
|
| 7942 |
-
|
| 7943 |
-
.eael-social-feed-element a.muted:hover,
|
| 7944 |
-
.eael-social-feed-element a.muted:focus {
|
| 7945 |
-
color: #808080;
|
| 7946 |
-
}
|
| 7947 |
-
|
| 7948 |
-
.eael-social-feed-element {
|
| 7949 |
-
-webkit-transition: 0.25s;
|
| 7950 |
-
-o-transition: 0.25s;
|
| 7951 |
-
transition: 0.25s;
|
| 7952 |
-
-webkit-backface-visibility: hidden;
|
| 7953 |
-
backface-visibility: hidden;
|
| 7954 |
-
margin: -1px;
|
| 7955 |
-
margin-top: 25px;
|
| 7956 |
-
color: #333;
|
| 7957 |
-
text-align: left;
|
| 7958 |
-
font-size: 14px;
|
| 7959 |
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
| 7960 |
-
line-height: 16px;
|
| 7961 |
}
|
| 7962 |
-
|
| 7963 |
-
.eael-social-feed-element .eael-content {
|
| 7964 |
-
padding: 20px 15px 15px;
|
| 7965 |
-
-webkit-transition: .4s;
|
| 7966 |
-
-o-transition: .4s;
|
| 7967 |
-
transition: .4s;
|
| 7968 |
-
background: #fff;
|
| 7969 |
-
}
|
| 7970 |
-
|
| 7971 |
-
.eael-social-feed-element .social-network-icon {
|
| 7972 |
-
opacity: 0.7;
|
| 7973 |
-
}
|
| 7974 |
-
|
| 7975 |
-
.eael-social-feed-element .author-title {
|
| 7976 |
color: #444;
|
| 7977 |
line-height: 1.5em;
|
| 7978 |
-
font-weight:
|
| 7979 |
-
}
|
| 7980 |
-
|
| 7981 |
-
/*--- Icon Color ---*/
|
| 7982 |
-
.media-body .fa-twitter {
|
| 7983 |
-
color: #1da1f2;
|
| 7984 |
-
margin-right: 8px;
|
| 7985 |
-
}
|
| 7986 |
-
|
| 7987 |
-
.media-body .fa-facebook {
|
| 7988 |
-
color: #3b5998;
|
| 7989 |
-
margin-right: 8px;
|
| 7990 |
-
}
|
| 7991 |
-
|
| 7992 |
-
/*--- Read More Link ---*/
|
| 7993 |
-
.text-wrapper p .read-more-link {
|
| 7994 |
-
margin-top: 9px;
|
| 7995 |
-
display: block;
|
| 7996 |
-
}
|
| 7997 |
-
|
| 7998 |
-
/*--- Loading Loader ---*/
|
| 7999 |
-
.eael-social-feed-wrapper {
|
| 8000 |
-
width: 100%;
|
| 8001 |
-
height: auto;
|
| 8002 |
-
position: relative;
|
| 8003 |
-
z-index: 0;
|
| 8004 |
-
}
|
| 8005 |
-
|
| 8006 |
-
.eael-loading-feed {
|
| 8007 |
-
display: none;
|
| 8008 |
-
position: absolute;
|
| 8009 |
-
width: 100%;
|
| 8010 |
-
height: 100%;
|
| 8011 |
-
top: 0px;
|
| 8012 |
-
left: 0px;
|
| 8013 |
-
bottom: 0px;
|
| 8014 |
-
right: 0px;
|
| 8015 |
-
}
|
| 8016 |
-
|
| 8017 |
-
.eael-loading-feed.show-loading {
|
| 8018 |
-
display: block;
|
| 8019 |
-
text-align: center;
|
| 8020 |
-
z-index: 10;
|
| 8021 |
-
display: -webkit-box;
|
| 8022 |
-
display: -webkit-flex;
|
| 8023 |
-
display: -ms-flexbox;
|
| 8024 |
-
display: flex;
|
| 8025 |
-
-webkit-box-align: center;
|
| 8026 |
-
-webkit-align-items: center;
|
| 8027 |
-
-ms-flex-align: center;
|
| 8028 |
-
align-items: center;
|
| 8029 |
-
-webkit-box-pack: center;
|
| 8030 |
-
-webkit-justify-content: center;
|
| 8031 |
-
-ms-flex-pack: center;
|
| 8032 |
-
justify-content: center;
|
| 8033 |
-
-webkit-transition: .5s;
|
| 8034 |
-
-o-transition: .5s;
|
| 8035 |
-
transition: .5s;
|
| 8036 |
-
}
|
| 8037 |
-
|
| 8038 |
-
.eael-loading-feed .loader {
|
| 8039 |
-
border: 3px solid #f3f3f3;
|
| 8040 |
-
-webkit-border-radius: 50%;
|
| 8041 |
-
border-radius: 50%;
|
| 8042 |
-
border-top: 3px solid #3498db;
|
| 8043 |
-
width: 30px;
|
| 8044 |
-
height: 30px;
|
| 8045 |
-
-webkit-animation: spin 2s linear infinite;
|
| 8046 |
-
/* Safari */
|
| 8047 |
-
animation: spin 2s linear infinite;
|
| 8048 |
-
margin: 0 auto;
|
| 8049 |
-
}
|
| 8050 |
-
|
| 8051 |
-
/*--- Safari ---*/
|
| 8052 |
-
@-webkit-keyframes spin {
|
| 8053 |
-
0% {
|
| 8054 |
-
-webkit-transform: rotate(0deg);
|
| 8055 |
-
}
|
| 8056 |
-
100% {
|
| 8057 |
-
-webkit-transform: rotate(360deg);
|
| 8058 |
-
}
|
| 8059 |
-
}
|
| 8060 |
-
@keyframes spin {
|
| 8061 |
-
0% {
|
| 8062 |
-
-webkit-transform: rotate(0deg);
|
| 8063 |
-
transform: rotate(0deg);
|
| 8064 |
-
}
|
| 8065 |
-
100% {
|
| 8066 |
-
-webkit-transform: rotate(360deg);
|
| 8067 |
-
transform: rotate(360deg);
|
| 8068 |
-
}
|
| 8069 |
-
}
|
| 8070 |
-
/*--- List View ---*/
|
| 8071 |
-
.eael-social-feed-container.list-view .eael-social-feed-element {
|
| 8072 |
-
margin: 15px;
|
| 8073 |
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
| 8074 |
-
background: none;
|
| 8075 |
-
}
|
| 8076 |
-
|
| 8077 |
-
/*--- Carousel View ---*/
|
| 8078 |
-
.eael-social-feed-container.carousel-view {
|
| 8079 |
-
width: 100%;
|
| 8080 |
-
height: auto;
|
| 8081 |
-
}
|
| 8082 |
-
|
| 8083 |
-
/*--- Masonry View ---*/
|
| 8084 |
-
.eael-twitter-feed-container.masonry-view .eael-social-feed-element {
|
| 8085 |
-
width: 33.33%;
|
| 8086 |
-
margin-top: 0px;
|
| 8087 |
-
float: left;
|
| 8088 |
-
}
|
| 8089 |
-
|
| 8090 |
-
.eael-social-feed-element .eael-content {
|
| 8091 |
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
| 8092 |
-
}
|
| 8093 |
-
|
| 8094 |
-
/*--- Editor Related Style ---*/
|
| 8095 |
-
.eael-social-feed-avatar-circle .eael-social-feed-element .media-object {
|
| 8096 |
-
-webkit-border-radius: 50%;
|
| 8097 |
-
border-radius: 50%;
|
| 8098 |
-
}
|
| 8099 |
-
|
| 8100 |
-
.eael-social-feed-avatar-square .eael-social-feed-element .media-object {
|
| 8101 |
-
-webkit-border-radius: 0%;
|
| 8102 |
-
border-radius: 0%;
|
| 8103 |
}
|
| 8104 |
-
|
| 8105 |
-
|
| 8106 |
-
|
|
|
|
|
|
|
| 8107 |
}
|
| 8108 |
-
|
| 8109 |
-
|
| 8110 |
-
@media only screen and (min-width: 768px) and (max-width: 992px) {
|
| 8111 |
-
.eael-twitter-feed-container.masonry-view .eael-social-feed-element {
|
| 8112 |
-
width: 50% !important;
|
| 8113 |
-
}
|
| 8114 |
}
|
| 8115 |
-
|
| 8116 |
-
|
| 8117 |
-
|
| 8118 |
-
|
|
|
|
|
|
|
|
|
|
| 8119 |
}
|
| 8120 |
|
| 8121 |
/*----------------------*/
|
|
@@ -8374,6 +7219,7 @@ span.eael-testimonial-quote {
|
|
| 8374 |
-ms-flex-align: center;
|
| 8375 |
align-items: center;
|
| 8376 |
text-align: center;
|
|
|
|
| 8377 |
}
|
| 8378 |
|
| 8379 |
.eael-advance-tabs .eael-tabs-nav > ul li:after {
|
|
@@ -8565,60 +7411,6 @@ span.eael-testimonial-quote {
|
|
| 8565 |
}
|
| 8566 |
}
|
| 8567 |
|
| 8568 |
-
/* ----------------------------------------- */
|
| 8569 |
-
/* 22. Caldera Contact Form Styler
|
| 8570 |
-
/* ----------------------------------------- */
|
| 8571 |
-
.eael-caldera-form-align-left,
|
| 8572 |
-
.eael-caldera-form-btn-align-left {
|
| 8573 |
-
text-align: left;
|
| 8574 |
-
}
|
| 8575 |
-
|
| 8576 |
-
.eael-caldera-form-align-right,
|
| 8577 |
-
.eael-caldera-form-btn-align-right {
|
| 8578 |
-
text-align: right;
|
| 8579 |
-
}
|
| 8580 |
-
|
| 8581 |
-
.eael-caldera-form-align-center,
|
| 8582 |
-
.eael-caldera-form-btn-align-center {
|
| 8583 |
-
text-align: center;
|
| 8584 |
-
}
|
| 8585 |
-
|
| 8586 |
-
.eael-caldera-form .control-label {
|
| 8587 |
-
display: none;
|
| 8588 |
-
}
|
| 8589 |
-
|
| 8590 |
-
.eael-caldera-form-labels-yes .control-label {
|
| 8591 |
-
display: block;
|
| 8592 |
-
}
|
| 8593 |
-
|
| 8594 |
-
.eael-caldera-form-button-center .form-group input[type=button],
|
| 8595 |
-
.eael-caldera-form-button-center .form-group input[type=submit] {
|
| 8596 |
-
display: block;
|
| 8597 |
-
margin: 0 auto;
|
| 8598 |
-
}
|
| 8599 |
-
|
| 8600 |
-
.eael-caldera-form-button-right .form-group input[type=button],
|
| 8601 |
-
.eael-caldera-form-button-right .form-group input[type=submit] {
|
| 8602 |
-
float: right;
|
| 8603 |
-
}
|
| 8604 |
-
|
| 8605 |
-
.eael-caldera-form .intl-tel-input {
|
| 8606 |
-
display: inherit;
|
| 8607 |
-
}
|
| 8608 |
-
|
| 8609 |
-
.eael-custom-radio-checkbox .caldera-grid input[type=checkbox],
|
| 8610 |
-
.eael-custom-radio-checkbox .caldera-grid input[type=radio] {
|
| 8611 |
-
border-style: solid;
|
| 8612 |
-
border-width: 0;
|
| 8613 |
-
padding: 3px;
|
| 8614 |
-
-webkit-appearance: none;
|
| 8615 |
-
}
|
| 8616 |
-
|
| 8617 |
-
.eael-caldera-form-button-full-width .form-group input[type=submit],
|
| 8618 |
-
.eael-caldera-form-button-full-width .form-group input[type=button] {
|
| 8619 |
-
width: 100%;
|
| 8620 |
-
}
|
| 8621 |
-
|
| 8622 |
/*--------------------------*/
|
| 8623 |
/* 19. Call To Action
|
| 8624 |
/*-------------------------*/
|
|
@@ -8667,8 +7459,7 @@ span.eael-testimonial-quote {
|
|
| 8667 |
background-image: url("../img/bg.jpg");
|
| 8668 |
background-repeat: no-repeat;
|
| 8669 |
background-position: center;
|
| 8670 |
-
|
| 8671 |
-
background-size: cover;
|
| 8672 |
position: relative;
|
| 8673 |
z-index: 0;
|
| 8674 |
color: rgba(255, 255, 255, 0.7);
|
|
@@ -8917,6 +7708,60 @@ span.eael-testimonial-quote {
|
|
| 8917 |
}
|
| 8918 |
}
|
| 8919 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8920 |
@-webkit-keyframes "loaderSpin" {
|
| 8921 |
0% {
|
| 8922 |
-webkit-transform: rotate(0deg);
|
|
@@ -8982,8 +7827,7 @@ span.eael-testimonial-quote {
|
|
| 8982 |
}
|
| 8983 |
|
| 8984 |
.eael-btn-loader {
|
| 8985 |
-
|
| 8986 |
-
border-radius: 50%;
|
| 8987 |
width: 20px;
|
| 8988 |
height: 20px;
|
| 8989 |
font-size: 10px;
|
|
@@ -8999,8 +7843,7 @@ span.eael-testimonial-quote {
|
|
| 8999 |
animation: loaderSpin 1.1s infinite linear;
|
| 9000 |
}
|
| 9001 |
.eael-btn-loader:after {
|
| 9002 |
-
|
| 9003 |
-
border-radius: 50%;
|
| 9004 |
width: 20px;
|
| 9005 |
height: 20px;
|
| 9006 |
}
|
|
@@ -9097,9 +7940,6 @@ span.eael-testimonial-quote {
|
|
| 9097 |
margin: 0 auto;
|
| 9098 |
}
|
| 9099 |
|
| 9100 |
-
/*----------------------------*/
|
| 9101 |
-
/* 29. Content Ticker
|
| 9102 |
-
/*----------------------------*/
|
| 9103 |
.eael-ticker-wrap {
|
| 9104 |
overflow: hidden;
|
| 9105 |
display: -webkit-box;
|
|
@@ -9259,8 +8099,7 @@ span.eael-testimonial-quote {
|
|
| 9259 |
vertical-align: middle;
|
| 9260 |
position: relative;
|
| 9261 |
z-index: 1;
|
| 9262 |
-
|
| 9263 |
-
border-radius: 2px;
|
| 9264 |
padding: 20px 30px;
|
| 9265 |
font-size: 16px;
|
| 9266 |
line-height: 1;
|
|
@@ -9535,6 +8374,52 @@ span.eael-testimonial-quote {
|
|
| 9535 |
transform: translate3d(0, 100%, 0);
|
| 9536 |
}
|
| 9537 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9538 |
table.eael-data-table thead .sorting, table.eael-data-table thead .sorting_desc, table.eael-data-table thead .sorting_asc {
|
| 9539 |
position: relative;
|
| 9540 |
z-index: 0;
|
|
@@ -9878,52 +8763,6 @@ table.eael-data-table .sorting_asc.sorting-none:after {
|
|
| 9878 |
text-align: center;
|
| 9879 |
}
|
| 9880 |
|
| 9881 |
-
/* -------------------------------- */
|
| 9882 |
-
/* 20. Dual Color Heading
|
| 9883 |
-
/* -------------------------------- */
|
| 9884 |
-
.eael-dual-header {
|
| 9885 |
-
display: block;
|
| 9886 |
-
margin-bottom: 50px;
|
| 9887 |
-
}
|
| 9888 |
-
|
| 9889 |
-
.eael-dual-header .title,
|
| 9890 |
-
.eael-dual-header .title span {
|
| 9891 |
-
font-size: 36px;
|
| 9892 |
-
font-weight: 700;
|
| 9893 |
-
text-transform: uppercase;
|
| 9894 |
-
line-height: 48px;
|
| 9895 |
-
margin: 10px 0px;
|
| 9896 |
-
}
|
| 9897 |
-
|
| 9898 |
-
.eael-dual-header .subtext {
|
| 9899 |
-
font-size: 16px;
|
| 9900 |
-
display: block;
|
| 9901 |
-
}
|
| 9902 |
-
|
| 9903 |
-
.eael-dual-header i {
|
| 9904 |
-
display: block;
|
| 9905 |
-
padding: 0px;
|
| 9906 |
-
margin: 20px 0px 10px 0px;
|
| 9907 |
-
font-size: 36px;
|
| 9908 |
-
}
|
| 9909 |
-
|
| 9910 |
-
.eael-dual-header .title span.lead {
|
| 9911 |
-
color: #1abc9c;
|
| 9912 |
-
}
|
| 9913 |
-
|
| 9914 |
-
/*--- Builder Related Css ---*/
|
| 9915 |
-
.eael-dual-header-content-align-center {
|
| 9916 |
-
text-align: center;
|
| 9917 |
-
}
|
| 9918 |
-
|
| 9919 |
-
.eael-dual-header-content-align-left {
|
| 9920 |
-
text-align: left;
|
| 9921 |
-
}
|
| 9922 |
-
|
| 9923 |
-
.eael-dual-header-content-align-right {
|
| 9924 |
-
text-align: right;
|
| 9925 |
-
}
|
| 9926 |
-
|
| 9927 |
.elementor-panel .pro-feature, .elementor-panel .pro-feature a {
|
| 9928 |
color: #a4afb7;
|
| 9929 |
text-transform: uppercase;
|
|
@@ -9961,62 +8800,6 @@ table.eael-data-table .sorting_asc.sorting-none:after {
|
|
| 9961 |
color: #f54;
|
| 9962 |
}
|
| 9963 |
|
| 9964 |
-
/*--------------------------*/
|
| 9965 |
-
/* 03. Fancy Text Style
|
| 9966 |
-
/*--------------------------*/
|
| 9967 |
-
.eael-fancy-text-container p {
|
| 9968 |
-
margin: 0;
|
| 9969 |
-
}
|
| 9970 |
-
|
| 9971 |
-
.eael-fancy-text-strings,
|
| 9972 |
-
.eael-fancy-text-prefix,
|
| 9973 |
-
.eael-fancy-text-suffix {
|
| 9974 |
-
display: inline-block;
|
| 9975 |
-
}
|
| 9976 |
-
|
| 9977 |
-
.morphext > .animated {
|
| 9978 |
-
display: inline-block;
|
| 9979 |
-
}
|
| 9980 |
-
|
| 9981 |
-
.typed-cursor {
|
| 9982 |
-
opacity: 1;
|
| 9983 |
-
-webkit-animation: blink_cursor 0.7s infinite;
|
| 9984 |
-
animation: blink_cursor 0.7s infinite;
|
| 9985 |
-
}
|
| 9986 |
-
|
| 9987 |
-
@keyframes blink_cursor {
|
| 9988 |
-
0% {
|
| 9989 |
-
opacity: 1;
|
| 9990 |
-
}
|
| 9991 |
-
50% {
|
| 9992 |
-
opacity: 0;
|
| 9993 |
-
}
|
| 9994 |
-
100% {
|
| 9995 |
-
opacity: 1;
|
| 9996 |
-
}
|
| 9997 |
-
}
|
| 9998 |
-
@-webkit-keyframes blink_cursor {
|
| 9999 |
-
0% {
|
| 10000 |
-
opacity: 1;
|
| 10001 |
-
}
|
| 10002 |
-
50% {
|
| 10003 |
-
opacity: 0;
|
| 10004 |
-
}
|
| 10005 |
-
100% {
|
| 10006 |
-
opacity: 1;
|
| 10007 |
-
}
|
| 10008 |
-
}
|
| 10009 |
-
/*--- Style 2 ---*/
|
| 10010 |
-
.eael-fancy-text-container.style-2 {
|
| 10011 |
-
font-size: 24px;
|
| 10012 |
-
}
|
| 10013 |
-
|
| 10014 |
-
.eael-fancy-text-container.style-2 .eael-fancy-text-strings {
|
| 10015 |
-
background: #ff5544;
|
| 10016 |
-
color: #fff;
|
| 10017 |
-
padding: 10px 25px;
|
| 10018 |
-
}
|
| 10019 |
-
|
| 10020 |
/*----------------------------*/
|
| 10021 |
/* 35. Feature List
|
| 10022 |
/*----------------------------*/
|
|
@@ -10161,12 +8944,8015 @@ table.eael-data-table .sorting_asc.sorting-none:after {
|
|
| 10161 |
background-color: #fff;
|
| 10162 |
}
|
| 10163 |
.elementor-widget-eael-feature-list .eael-feature-list-items.circle .eael-feature-list-icon-box .eael-feature-list-icon-inner {
|
| 10164 |
-
|
| 10165 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10166 |
}
|
| 10167 |
.elementor-widget-eael-feature-list .eael-feature-list-items.circle .eael-feature-list-icon-box .eael-feature-list-icon-inner .eael-feature-list-icon {
|
| 10168 |
-
|
| 10169 |
-
border-radius: 50%;
|
| 10170 |
}
|
| 10171 |
.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-icon-box .eael-feature-list-icon-inner {
|
| 10172 |
-webkit-transform: rotate(45deg);
|
|
@@ -10839,8 +17625,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 10839 |
height: 50px;
|
| 10840 |
text-align: center;
|
| 10841 |
line-height: 50px;
|
| 10842 |
-
|
| 10843 |
-
border-radius: 50%;
|
| 10844 |
margin: 0 5px;
|
| 10845 |
font-size: 20px;
|
| 10846 |
cursor: pointer;
|
|
@@ -10890,8 +17675,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 10890 |
position: relative;
|
| 10891 |
background-repeat: no-repeat;
|
| 10892 |
background-position: center;
|
| 10893 |
-
|
| 10894 |
-
background-size: cover;
|
| 10895 |
height: 220px;
|
| 10896 |
z-index: 0;
|
| 10897 |
overflow: hidden;
|
|
@@ -10982,7 +17766,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 10982 |
width: 20%;
|
| 10983 |
}
|
| 10984 |
|
| 10985 |
-
.gallery-grid-item {
|
| 10986 |
margin-left: calc(20px/2);
|
| 10987 |
margin-right: calc(20px/2);
|
| 10988 |
margin-bottom: 20px;
|
|
@@ -11011,7 +17795,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 11011 |
z-index: 10;
|
| 11012 |
}
|
| 11013 |
|
| 11014 |
-
.eael-filterable-gallery-item-wrap .gallery-grid-item .gallery-item-thumbnail-wrap > img {
|
| 11015 |
height: 100%;
|
| 11016 |
width: 100%;
|
| 11017 |
-o-object-fit: cover;
|
|
@@ -11094,7 +17878,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 11094 |
align-items: center;
|
| 11095 |
}
|
| 11096 |
|
| 11097 |
-
.gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer {
|
| 11098 |
opacity: 1;
|
| 11099 |
visibility: visible;
|
| 11100 |
}
|
|
@@ -11139,8 +17923,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 11139 |
.gallery-item-caption-wrap .gallery-item-buttons > a {
|
| 11140 |
padding: 5px 15px;
|
| 11141 |
display: inline-block;
|
| 11142 |
-
|
| 11143 |
-
border-radius: 50%;
|
| 11144 |
outline: none;
|
| 11145 |
text-decoration: none;
|
| 11146 |
}
|
|
@@ -11154,15 +17937,15 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 11154 |
transition: 0.6s all ease;
|
| 11155 |
}
|
| 11156 |
|
| 11157 |
-
.gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up h5,
|
| 11158 |
-
.gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up .gallery-item-buttons,
|
| 11159 |
-
.gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up p {
|
| 11160 |
-webkit-transform: translate(0);
|
| 11161 |
-ms-transform: translate(0);
|
| 11162 |
transform: translate(0);
|
| 11163 |
}
|
| 11164 |
|
| 11165 |
-
.gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-zoom-in {
|
| 11166 |
-webkit-transform: scale(1);
|
| 11167 |
-ms-transform: scale(1);
|
| 11168 |
transform: scale(1);
|
|
@@ -11228,7 +18011,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 11228 |
transition: 350ms;
|
| 11229 |
}
|
| 11230 |
|
| 11231 |
-
.gallery-grid-item:hover .video-popup-bg {
|
| 11232 |
visibility: visible;
|
| 11233 |
opacity: 1;
|
| 11234 |
}
|
|
@@ -11630,8 +18413,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 11630 |
}
|
| 11631 |
|
| 11632 |
.eael_flip_box_icon_border_round {
|
| 11633 |
-
|
| 11634 |
-
border-radius: 100px;
|
| 11635 |
}
|
| 11636 |
|
| 11637 |
.eael_eleements_flip_front_icon_style_background,
|
|
@@ -11908,8 +18690,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 11908 |
|
| 11909 |
.eael-flipbox-img-circle .eael-elements-flip-box-icon-image img,
|
| 11910 |
.eael-flipbox-img-circle .flipbox-back-image-icon img {
|
| 11911 |
-
|
| 11912 |
-
border-radius: 50%;
|
| 11913 |
overflow: hidden;
|
| 11914 |
}
|
| 11915 |
|
|
@@ -12097,13 +18878,16 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 12097 |
}
|
| 12098 |
|
| 12099 |
.eael-custom-radio-checkbox input[type=radio] {
|
| 12100 |
-
|
| 12101 |
-
border-radius: 50%;
|
| 12102 |
}
|
| 12103 |
|
| 12104 |
.eael-custom-radio-checkbox input[type=radio]:before {
|
| 12105 |
-
|
| 12106 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12107 |
}
|
| 12108 |
|
| 12109 |
/*----------------------*/
|
|
@@ -12183,8 +18967,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 12183 |
text-align: center;
|
| 12184 |
text-decoration: none;
|
| 12185 |
color: #fff;
|
| 12186 |
-
|
| 12187 |
-
background-size: cover;
|
| 12188 |
background-position: center;
|
| 12189 |
background-repeat: no-repeat;
|
| 12190 |
-webkit-transition: -webkit-box-flex .4s, -webkit-flex .4s;
|
|
@@ -12347,14 +19130,12 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 12347 |
}
|
| 12348 |
|
| 12349 |
.eael-infobox-icon-hover-bg-shape-square:hover .infobox-icon .infobox-icon-wrap {
|
| 12350 |
-
|
| 12351 |
-
border-radius: 0;
|
| 12352 |
}
|
| 12353 |
|
| 12354 |
.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap,
|
| 12355 |
.eael-infobox-icon-hover-bg-shape-radius:hover .infobox-icon .infobox-icon-wrap {
|
| 12356 |
-
|
| 12357 |
-
border-radius: 15px;
|
| 12358 |
}
|
| 12359 |
|
| 12360 |
.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap {
|
|
@@ -12374,8 +19155,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 12374 |
|
| 12375 |
.eael-infobox-icon-bg-shape-circle .infobox-icon .infobox-icon-wrap,
|
| 12376 |
.eael-infobox-icon-hover-bg-shape-circle:hover .infobox-icon .infobox-icon-wrap {
|
| 12377 |
-
|
| 12378 |
-
border-radius: 50%;
|
| 12379 |
}
|
| 12380 |
|
| 12381 |
.eael-infobox-icon-bg-shape-square .infobox-icon .infobox-icon-wrap i,
|
|
@@ -12548,20 +19328,17 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 12548 |
}
|
| 12549 |
|
| 12550 |
.eael-infobox-hover-img-shape-square:hover .eael-infobox .infobox-icon img {
|
| 12551 |
-
|
| 12552 |
-
border-radius: 0;
|
| 12553 |
}
|
| 12554 |
|
| 12555 |
.eael-infobox-shape-circle .eael-infobox .infobox-icon img,
|
| 12556 |
.eael-infobox-hover-img-shape-circle:hover .eael-infobox .infobox-icon img {
|
| 12557 |
-
|
| 12558 |
-
border-radius: 50%;
|
| 12559 |
}
|
| 12560 |
|
| 12561 |
.eael-infobox-shape-radius .eael-infobox .infobox-icon img,
|
| 12562 |
.eael-infobox-hover-img-shape-radius:hover .eael-infobox .infobox-icon img {
|
| 12563 |
-
|
| 12564 |
-
border-radius: 15px;
|
| 12565 |
}
|
| 12566 |
|
| 12567 |
/* ------------------------ */
|
|
@@ -13101,8 +19878,7 @@ button.mfp-close:hover {
|
|
| 13101 |
|
| 13102 |
.eael-ninja-form .submit-container input[type=button] {
|
| 13103 |
border: 0;
|
| 13104 |
-
|
| 13105 |
-
border-radius: 0;
|
| 13106 |
}
|
| 13107 |
|
| 13108 |
.eael-ninja-form-button-full-width .submit-container input[type=button] {
|
|
@@ -13181,8 +19957,7 @@ button.mfp-close:hover {
|
|
| 13181 |
}
|
| 13182 |
|
| 13183 |
.eael-entry-footer .eael-author-avatar .avatar {
|
| 13184 |
-
|
| 13185 |
-
border-radius: 50%;
|
| 13186 |
}
|
| 13187 |
|
| 13188 |
.eael-post-grid .eael-entry-footer .eael-entry-meta {
|
|
@@ -13540,8 +20315,7 @@ button.mfp-close:hover {
|
|
| 13540 |
.eael-timeline-bullet {
|
| 13541 |
background-color: #9fa9af;
|
| 13542 |
border: 5px solid #fff;
|
| 13543 |
-
|
| 13544 |
-
border-radius: 50%;
|
| 13545 |
-webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.1);
|
| 13546 |
box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.1);
|
| 13547 |
content: "";
|
|
@@ -13557,8 +20331,7 @@ button.mfp-close:hover {
|
|
| 13557 |
.eael-timeline-post:nth-child(2n) .eael-timeline-bullet {
|
| 13558 |
background-color: #9fa9af;
|
| 13559 |
border: 5px solid #fff;
|
| 13560 |
-
|
| 13561 |
-
border-radius: 50%;
|
| 13562 |
bottom: 36px;
|
| 13563 |
content: "";
|
| 13564 |
height: 20px;
|
|
@@ -13570,7 +20343,6 @@ button.mfp-close:hover {
|
|
| 13570 |
}
|
| 13571 |
|
| 13572 |
.eael-timeline-post-inner {
|
| 13573 |
-
background: -webkit-linear-gradient(45deg, #3f3f46 0%, #05abe0 100%) repeat scroll 0 0 transparent;
|
| 13574 |
background: -o-linear-gradient(45deg, #3f3f46 0%, #05abe0 100%) repeat scroll 0 0 transparent;
|
| 13575 |
background: linear-gradient(45deg, #3f3f46 0%, #05abe0 100%) repeat scroll 0 0 transparent;
|
| 13576 |
border: 8px solid #e5eaed;
|
|
@@ -13623,8 +20395,7 @@ button.mfp-close:hover {
|
|
| 13623 |
}
|
| 13624 |
|
| 13625 |
.eael-timeline-post-image {
|
| 13626 |
-
|
| 13627 |
-
background-size: cover;
|
| 13628 |
background-position: center center;
|
| 13629 |
background-repeat: no-repeat;
|
| 13630 |
display: block;
|
|
@@ -13684,8 +20455,7 @@ button.mfp-close:hover {
|
|
| 13684 |
background-color: rgba(0, 0, 0, 0.7);
|
| 13685 |
color: #fff;
|
| 13686 |
font-size: 10px;
|
| 13687 |
-
|
| 13688 |
-
border-radius: 20px;
|
| 13689 |
position: absolute;
|
| 13690 |
right: -97px;
|
| 13691 |
width: 100px;
|
|
@@ -13701,8 +20471,7 @@ button.mfp-close:hover {
|
|
| 13701 |
|
| 13702 |
.eael-timeline-post:nth-child(2n) time {
|
| 13703 |
background-color: rgba(0, 0, 0, 0.7);
|
| 13704 |
-
|
| 13705 |
-
border-radius: 20px;
|
| 13706 |
color: #fff;
|
| 13707 |
font-size: 10px;
|
| 13708 |
height: 30px;
|
|
@@ -13819,8 +20588,7 @@ button.mfp-close:hover {
|
|
| 13819 |
.eael-timeline-post time,
|
| 13820 |
.eael-timeline-post:nth-child(2n) time {
|
| 13821 |
background-color: #fff;
|
| 13822 |
-
|
| 13823 |
-
border-radius: 0;
|
| 13824 |
color: #444;
|
| 13825 |
font-size: 12px;
|
| 13826 |
text-transform: uppercase;
|
|
@@ -13900,7 +20668,6 @@ button.mfp-close:hover {
|
|
| 13900 |
-webkit-transition: .3s;
|
| 13901 |
-o-transition: .3s;
|
| 13902 |
transition: .3s;
|
| 13903 |
-
-webkit-border-radius: 4px;
|
| 13904 |
border-radius: 4px;
|
| 13905 |
}
|
| 13906 |
|
|
@@ -13938,7 +20705,6 @@ button.mfp-close:hover {
|
|
| 13938 |
.eael-pricing.style-1 .eael-pricing-item {
|
| 13939 |
border: 1px solid rgba(9, 9, 9, 0.1);
|
| 13940 |
padding: 30px;
|
| 13941 |
-
-webkit-border-radius: 5px;
|
| 13942 |
border-radius: 5px;
|
| 13943 |
-webkit-transition: .5s;
|
| 13944 |
-o-transition: .5s;
|
|
@@ -13964,7 +20730,6 @@ button.mfp-close:hover {
|
|
| 13964 |
left: 0px;
|
| 13965 |
right: 0px;
|
| 13966 |
z-index: 1;
|
| 13967 |
-
-webkit-border-radius: 5px 5px 0px 0px;
|
| 13968 |
border-radius: 5px 5px 0px 0px;
|
| 13969 |
}
|
| 13970 |
|
|
@@ -14109,8 +20874,7 @@ button.mfp-close:hover {
|
|
| 14109 |
|
| 14110 |
.eael-pricing.style-2 .eael-pricing-item {
|
| 14111 |
padding: 30px 0px;
|
| 14112 |
-
|
| 14113 |
-
border-radius: 5px;
|
| 14114 |
margin: 0px;
|
| 14115 |
border: 1px solid rgba(9, 9, 9, 0.1);
|
| 14116 |
}
|
|
@@ -14130,7 +20894,6 @@ button.mfp-close:hover {
|
|
| 14130 |
left: 0px;
|
| 14131 |
right: 0px;
|
| 14132 |
z-index: 1;
|
| 14133 |
-
-webkit-border-radius: 5px 5px 0px 0px;
|
| 14134 |
border-radius: 5px 5px 0px 0px;
|
| 14135 |
}
|
| 14136 |
|
|
@@ -14183,8 +20946,7 @@ button.mfp-close:hover {
|
|
| 14183 |
width: 80px;
|
| 14184 |
height: 80px;
|
| 14185 |
background: #00c853;
|
| 14186 |
-
|
| 14187 |
-
border-radius: 50%;
|
| 14188 |
margin-bottom: 30px;
|
| 14189 |
text-align: center;
|
| 14190 |
-webkit-transition: .5s;
|
|
@@ -14611,8 +21373,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 14611 |
overflow: hidden;
|
| 14612 |
text-align: center;
|
| 14613 |
padding: 0;
|
| 14614 |
-
|
| 14615 |
-
border-radius: 0;
|
| 14616 |
background-color: #fff;
|
| 14617 |
-webkit-box-shadow: none;
|
| 14618 |
box-shadow: none;
|
|
@@ -14659,8 +21420,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 14659 |
text-transform: uppercase;
|
| 14660 |
color: #fff;
|
| 14661 |
background-color: #ff2a13;
|
| 14662 |
-
|
| 14663 |
-
border-radius: 0;
|
| 14664 |
border: none;
|
| 14665 |
-webkit-box-shadow: none;
|
| 14666 |
box-shadow: none;
|
|
@@ -14717,8 +21477,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 14717 |
background-color: #333;
|
| 14718 |
padding: 0;
|
| 14719 |
margin: 15px;
|
| 14720 |
-
|
| 14721 |
-
border-radius: 0;
|
| 14722 |
}
|
| 14723 |
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button:focus,
|
| 14724 |
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus,
|
|
@@ -14771,8 +21530,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 14771 |
overflow: hidden;
|
| 14772 |
text-align: center;
|
| 14773 |
padding: 0 0 15px 0;
|
| 14774 |
-
|
| 14775 |
-
border-radius: 0;
|
| 14776 |
background-color: #fff;
|
| 14777 |
-webkit-box-shadow: none;
|
| 14778 |
box-shadow: none;
|
|
@@ -14827,8 +21585,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 14827 |
width: 38px;
|
| 14828 |
height: 38px;
|
| 14829 |
border-style: none;
|
| 14830 |
-
|
| 14831 |
-
border-radius: 50%;
|
| 14832 |
vertical-align: middle;
|
| 14833 |
padding: 0;
|
| 14834 |
margin: 0 5px;
|
|
@@ -14927,8 +21684,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 14927 |
text-transform: uppercase;
|
| 14928 |
color: #fff;
|
| 14929 |
background-color: #ff2a13;
|
| 14930 |
-
|
| 14931 |
-
border-radius: 0;
|
| 14932 |
border: none;
|
| 14933 |
-webkit-box-shadow: none;
|
| 14934 |
box-shadow: none;
|
|
@@ -15078,8 +21834,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 15078 |
width: 220px;
|
| 15079 |
height: 220px;
|
| 15080 |
padding: 10px;
|
| 15081 |
-
|
| 15082 |
-
border-radius: 50%;
|
| 15083 |
}
|
| 15084 |
|
| 15085 |
.eael-progressbar-circle-pie {
|
|
@@ -15098,8 +21853,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 15098 |
border-width: 12px;
|
| 15099 |
border-style: solid;
|
| 15100 |
border-color: #eeeeee;
|
| 15101 |
-
|
| 15102 |
-
border-radius: 50%;
|
| 15103 |
}
|
| 15104 |
|
| 15105 |
.eael-progressbar-circle-half {
|
|
@@ -15111,8 +21865,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 15111 |
border-width: 12px;
|
| 15112 |
border-style: solid;
|
| 15113 |
border-color: #000000;
|
| 15114 |
-
|
| 15115 |
-
border-radius: 50%;
|
| 15116 |
-webkit-clip-path: inset(0 50% 0 0);
|
| 15117 |
clip-path: inset(0 50% 0 0);
|
| 15118 |
}
|
|
@@ -15196,11 +21949,9 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 15196 |
left: -35px;
|
| 15197 |
width: calc(100% + 70px);
|
| 15198 |
height: 100%;
|
| 15199 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
| 15200 |
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
| 15201 |
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
| 15202 |
-
|
| 15203 |
-
background-size: 35px 35px;
|
| 15204 |
}
|
| 15205 |
|
| 15206 |
.eael-progressbar-line-animate .eael-progressbar-line-fill:after {
|
|
@@ -15236,6 +21987,27 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 15236 |
margin: 0 0 0 auto;
|
| 15237 |
}
|
| 15238 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15239 |
/*----------------------------*/
|
| 15240 |
/* 07. Team Members Styles
|
| 15241 |
/*----------------------------*/
|
|
@@ -15245,8 +22017,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 15245 |
}
|
| 15246 |
|
| 15247 |
.team-avatar-rounded figure img {
|
| 15248 |
-
|
| 15249 |
-
border-radius: 50%;
|
| 15250 |
height: auto;
|
| 15251 |
}
|
| 15252 |
|
|
@@ -15423,8 +22194,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 15423 |
}
|
| 15424 |
|
| 15425 |
.testimonial-avatar-rounded figure img {
|
| 15426 |
-
|
| 15427 |
-
border-radius: 50%;
|
| 15428 |
height: auto;
|
| 15429 |
}
|
| 15430 |
|
|
@@ -15766,8 +22536,7 @@ span.eael-testimonial-quote {
|
|
| 15766 |
background-color: black;
|
| 15767 |
color: #fff;
|
| 15768 |
text-align: center;
|
| 15769 |
-
|
| 15770 |
-
border-radius: 4px;
|
| 15771 |
padding: 10px;
|
| 15772 |
position: absolute;
|
| 15773 |
z-index: 1;
|
|
@@ -16005,323 +22774,92 @@ span.eael-testimonial-quote {
|
|
| 16005 |
}
|
| 16006 |
}
|
| 16007 |
|
| 16008 |
-
|
| 16009 |
-
/* 24. Social Feeds
|
| 16010 |
-
/* ------------------------ */
|
| 16011 |
-
.swiper-container-wrap .swiper-slide .eael-social-feed-element img {
|
| 16012 |
-
width: 100%;
|
| 16013 |
-
}
|
| 16014 |
-
|
| 16015 |
-
/*--- Twitter Feed Styles ---*/
|
| 16016 |
-
.eael-social-feed-element.hidden {
|
| 16017 |
-
background-color: red !important;
|
| 16018 |
-
}
|
| 16019 |
-
|
| 16020 |
-
.eael-twitter-feed-wrapper::before,
|
| 16021 |
-
.eael-twitter-feed-wrapper::after,
|
| 16022 |
-
.eael-twitter-feed-container::before,
|
| 16023 |
-
.eael-twitter-feed-container::after {
|
| 16024 |
content: "";
|
| 16025 |
clear: both;
|
| 16026 |
}
|
| 16027 |
|
| 16028 |
-
.eael-
|
| 16029 |
float: left;
|
| 16030 |
-
margin-right: 10px;
|
| 16031 |
}
|
| 16032 |
-
|
| 16033 |
-
.eael-
|
| 16034 |
-
|
|
|
|
| 16035 |
}
|
| 16036 |
-
|
| 16037 |
-
.eael-
|
| 16038 |
-
|
| 16039 |
-
|
| 16040 |
-
border: 0;
|
| 16041 |
-
vertical-align: middle;
|
| 16042 |
-
-ms-interpolation-mode: bicubic;
|
| 16043 |
}
|
| 16044 |
-
|
| 16045 |
-
.eael-
|
| 16046 |
-
|
| 16047 |
-
|
| 16048 |
}
|
| 16049 |
|
| 16050 |
-
|
| 16051 |
-
|
|
|
|
|
|
|
|
|
|
| 16052 |
color: #0088cc;
|
| 16053 |
text-decoration: none;
|
| 16054 |
}
|
| 16055 |
-
|
| 16056 |
-
.eael-social-feed-element a:focus {
|
| 16057 |
-
outline: thin dotted #333;
|
| 16058 |
-
outline: 5px auto -webkit-focus-ring-color;
|
| 16059 |
-
outline-offset: -2px;
|
| 16060 |
-
}
|
| 16061 |
-
|
| 16062 |
-
.eael-social-feed-element a:hover,
|
| 16063 |
-
.eael-social-feed-element a:active {
|
| 16064 |
outline: 0;
|
| 16065 |
color: #005580;
|
| 16066 |
-
text-decoration: underline;
|
| 16067 |
-
}
|
| 16068 |
-
|
| 16069 |
-
/*--- Text styles ---*/
|
| 16070 |
-
.eael-social-feed-element small {
|
| 16071 |
-
font-size: 85%;
|
| 16072 |
-
}
|
| 16073 |
-
|
| 16074 |
-
.eael-social-feed-element strong {
|
| 16075 |
-
font-weight: bold;
|
| 16076 |
}
|
| 16077 |
-
|
| 16078 |
-
|
| 16079 |
-
font-style: italic;
|
| 16080 |
}
|
| 16081 |
-
|
| 16082 |
-
|
| 16083 |
-
margin:
|
| 16084 |
}
|
| 16085 |
-
|
| 16086 |
-
|
| 16087 |
-
|
| 16088 |
-
|
| 16089 |
}
|
| 16090 |
-
|
| 16091 |
-
|
| 16092 |
-
|
| 16093 |
-
|
| 16094 |
-
|
| 16095 |
-
text-overflow: ellipsis;
|
| 16096 |
-
-webkit-line-clamp: 5;
|
| 16097 |
-
-webkit-box-orient: vertical;
|
| 16098 |
}
|
| 16099 |
-
|
| 16100 |
-
|
| 16101 |
-
.eael-social-feed-element,
|
| 16102 |
-
.eael-social-feed-element .media-body {
|
| 16103 |
-
overflow: hidden;
|
| 16104 |
-
zoom: 1;
|
| 16105 |
-
overflow: visible;
|
| 16106 |
}
|
| 16107 |
-
|
| 16108 |
-
|
| 16109 |
-
padding: 10px;
|
| 16110 |
-
background: none;
|
| 16111 |
}
|
| 16112 |
-
|
| 16113 |
-
|
| 16114 |
-
margin-top: -3px;
|
| 16115 |
margin-right: 5px;
|
| 16116 |
-
width: 16px;
|
| 16117 |
-
}
|
| 16118 |
-
|
| 16119 |
-
.eael-social-feed-element .media-body div {
|
| 16120 |
-
color: #666;
|
| 16121 |
-
line-height: 20px;
|
| 16122 |
-
clear: both;
|
| 16123 |
-
}
|
| 16124 |
-
|
| 16125 |
-
.eael-social-feed-element:first-child {
|
| 16126 |
-
margin-top: 0;
|
| 16127 |
-
}
|
| 16128 |
-
|
| 16129 |
-
.eael-social-feed-element .media-object {
|
| 16130 |
-
display: block;
|
| 16131 |
-
width: 48px;
|
| 16132 |
-
-webkit-border-radius: 50%;
|
| 16133 |
-
border-radius: 50%;
|
| 16134 |
-
}
|
| 16135 |
-
|
| 16136 |
-
.eael-social-feed-element .media-heading {
|
| 16137 |
-
margin: 0 0 5px;
|
| 16138 |
-
}
|
| 16139 |
-
|
| 16140 |
-
.eael-social-feed-element .media-list {
|
| 16141 |
-
margin-left: 0;
|
| 16142 |
-
list-style: none;
|
| 16143 |
-
}
|
| 16144 |
-
|
| 16145 |
-
.eael-social-feed-element .muted {
|
| 16146 |
-
color: #999;
|
| 16147 |
-
}
|
| 16148 |
-
|
| 16149 |
-
.eael-social-feed-element a.muted:hover,
|
| 16150 |
-
.eael-social-feed-element a.muted:focus {
|
| 16151 |
-
color: #808080;
|
| 16152 |
-
}
|
| 16153 |
-
|
| 16154 |
-
.eael-social-feed-element {
|
| 16155 |
-
-webkit-transition: 0.25s;
|
| 16156 |
-
-o-transition: 0.25s;
|
| 16157 |
-
transition: 0.25s;
|
| 16158 |
-
-webkit-backface-visibility: hidden;
|
| 16159 |
-
backface-visibility: hidden;
|
| 16160 |
-
margin: -1px;
|
| 16161 |
-
margin-top: 25px;
|
| 16162 |
-
color: #333;
|
| 16163 |
-
text-align: left;
|
| 16164 |
-
font-size: 14px;
|
| 16165 |
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
| 16166 |
-
line-height: 16px;
|
| 16167 |
-
}
|
| 16168 |
-
|
| 16169 |
-
.eael-social-feed-element .eael-content {
|
| 16170 |
-
padding: 20px 15px 15px;
|
| 16171 |
-
-webkit-transition: .4s;
|
| 16172 |
-
-o-transition: .4s;
|
| 16173 |
-
transition: .4s;
|
| 16174 |
-
background: #fff;
|
| 16175 |
-
}
|
| 16176 |
-
|
| 16177 |
-
.eael-social-feed-element .social-network-icon {
|
| 16178 |
-
opacity: 0.7;
|
| 16179 |
}
|
| 16180 |
-
|
| 16181 |
-
.eael-social-feed-element .author-title {
|
| 16182 |
color: #444;
|
| 16183 |
line-height: 1.5em;
|
| 16184 |
-
font-weight:
|
| 16185 |
-
}
|
| 16186 |
-
|
| 16187 |
-
/*--- Icon Color ---*/
|
| 16188 |
-
.media-body .fa-twitter {
|
| 16189 |
-
color: #1da1f2;
|
| 16190 |
-
margin-right: 8px;
|
| 16191 |
-
}
|
| 16192 |
-
|
| 16193 |
-
.media-body .fa-facebook {
|
| 16194 |
-
color: #3b5998;
|
| 16195 |
-
margin-right: 8px;
|
| 16196 |
-
}
|
| 16197 |
-
|
| 16198 |
-
/*--- Read More Link ---*/
|
| 16199 |
-
.text-wrapper p .read-more-link {
|
| 16200 |
-
margin-top: 9px;
|
| 16201 |
-
display: block;
|
| 16202 |
-
}
|
| 16203 |
-
|
| 16204 |
-
/*--- Loading Loader ---*/
|
| 16205 |
-
.eael-social-feed-wrapper {
|
| 16206 |
-
width: 100%;
|
| 16207 |
-
height: auto;
|
| 16208 |
-
position: relative;
|
| 16209 |
-
z-index: 0;
|
| 16210 |
-
}
|
| 16211 |
-
|
| 16212 |
-
.eael-loading-feed {
|
| 16213 |
-
display: none;
|
| 16214 |
-
position: absolute;
|
| 16215 |
-
width: 100%;
|
| 16216 |
-
height: 100%;
|
| 16217 |
-
top: 0px;
|
| 16218 |
-
left: 0px;
|
| 16219 |
-
bottom: 0px;
|
| 16220 |
-
right: 0px;
|
| 16221 |
-
}
|
| 16222 |
-
|
| 16223 |
-
.eael-loading-feed.show-loading {
|
| 16224 |
-
display: block;
|
| 16225 |
-
text-align: center;
|
| 16226 |
-
z-index: 10;
|
| 16227 |
-
display: -webkit-box;
|
| 16228 |
-
display: -webkit-flex;
|
| 16229 |
-
display: -ms-flexbox;
|
| 16230 |
-
display: flex;
|
| 16231 |
-
-webkit-box-align: center;
|
| 16232 |
-
-webkit-align-items: center;
|
| 16233 |
-
-ms-flex-align: center;
|
| 16234 |
-
align-items: center;
|
| 16235 |
-
-webkit-box-pack: center;
|
| 16236 |
-
-webkit-justify-content: center;
|
| 16237 |
-
-ms-flex-pack: center;
|
| 16238 |
-
justify-content: center;
|
| 16239 |
-
-webkit-transition: .5s;
|
| 16240 |
-
-o-transition: .5s;
|
| 16241 |
-
transition: .5s;
|
| 16242 |
-
}
|
| 16243 |
-
|
| 16244 |
-
.eael-loading-feed .loader {
|
| 16245 |
-
border: 3px solid #f3f3f3;
|
| 16246 |
-
-webkit-border-radius: 50%;
|
| 16247 |
-
border-radius: 50%;
|
| 16248 |
-
border-top: 3px solid #3498db;
|
| 16249 |
-
width: 30px;
|
| 16250 |
-
height: 30px;
|
| 16251 |
-
-webkit-animation: spin 2s linear infinite;
|
| 16252 |
-
/* Safari */
|
| 16253 |
-
animation: spin 2s linear infinite;
|
| 16254 |
-
margin: 0 auto;
|
| 16255 |
-
}
|
| 16256 |
-
|
| 16257 |
-
/*--- Safari ---*/
|
| 16258 |
-
@-webkit-keyframes spin {
|
| 16259 |
-
0% {
|
| 16260 |
-
-webkit-transform: rotate(0deg);
|
| 16261 |
-
}
|
| 16262 |
-
100% {
|
| 16263 |
-
-webkit-transform: rotate(360deg);
|
| 16264 |
-
}
|
| 16265 |
-
}
|
| 16266 |
-
@keyframes spin {
|
| 16267 |
-
0% {
|
| 16268 |
-
-webkit-transform: rotate(0deg);
|
| 16269 |
-
transform: rotate(0deg);
|
| 16270 |
-
}
|
| 16271 |
-
100% {
|
| 16272 |
-
-webkit-transform: rotate(360deg);
|
| 16273 |
-
transform: rotate(360deg);
|
| 16274 |
-
}
|
| 16275 |
-
}
|
| 16276 |
-
/*--- List View ---*/
|
| 16277 |
-
.eael-social-feed-container.list-view .eael-social-feed-element {
|
| 16278 |
-
margin: 15px;
|
| 16279 |
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
| 16280 |
-
background: none;
|
| 16281 |
-
}
|
| 16282 |
-
|
| 16283 |
-
/*--- Carousel View ---*/
|
| 16284 |
-
.eael-social-feed-container.carousel-view {
|
| 16285 |
-
width: 100%;
|
| 16286 |
-
height: auto;
|
| 16287 |
-
}
|
| 16288 |
-
|
| 16289 |
-
/*--- Masonry View ---*/
|
| 16290 |
-
.eael-twitter-feed-container.masonry-view .eael-social-feed-element {
|
| 16291 |
-
width: 33.33%;
|
| 16292 |
-
margin-top: 0px;
|
| 16293 |
-
float: left;
|
| 16294 |
-
}
|
| 16295 |
-
|
| 16296 |
-
.eael-social-feed-element .eael-content {
|
| 16297 |
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
| 16298 |
-
}
|
| 16299 |
-
|
| 16300 |
-
/*--- Editor Related Style ---*/
|
| 16301 |
-
.eael-social-feed-avatar-circle .eael-social-feed-element .media-object {
|
| 16302 |
-
-webkit-border-radius: 50%;
|
| 16303 |
-
border-radius: 50%;
|
| 16304 |
-
}
|
| 16305 |
-
|
| 16306 |
-
.eael-social-feed-avatar-square .eael-social-feed-element .media-object {
|
| 16307 |
-
-webkit-border-radius: 0%;
|
| 16308 |
-
border-radius: 0%;
|
| 16309 |
}
|
| 16310 |
-
|
| 16311 |
-
|
| 16312 |
-
|
|
|
|
|
|
|
| 16313 |
}
|
| 16314 |
-
|
| 16315 |
-
|
| 16316 |
-
@media only screen and (min-width: 768px) and (max-width: 992px) {
|
| 16317 |
-
.eael-twitter-feed-container.masonry-view .eael-social-feed-element {
|
| 16318 |
-
width: 50% !important;
|
| 16319 |
-
}
|
| 16320 |
}
|
| 16321 |
-
|
| 16322 |
-
|
| 16323 |
-
|
| 16324 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16325 |
}
|
| 16326 |
|
| 16327 |
/*----------------------*/
|
|
@@ -16580,6 +23118,7 @@ span.eael-testimonial-quote {
|
|
| 16580 |
-ms-flex-align: center;
|
| 16581 |
align-items: center;
|
| 16582 |
text-align: center;
|
|
|
|
| 16583 |
}
|
| 16584 |
|
| 16585 |
.eael-advance-tabs .eael-tabs-nav > ul li:after {
|
|
@@ -16599,6 +23138,11 @@ span.eael-testimonial-quote {
|
|
| 16599 |
display: none;
|
| 16600 |
}
|
| 16601 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16602 |
.eael-advance-tabs.active-caret-on .eael-tabs-nav > ul li.active:after,
|
| 16603 |
.eael-advance-tabs.active-caret-on .eael-tabs-nav > ul li.active-default:after {
|
| 16604 |
display: none;
|
|
@@ -16873,8 +23417,7 @@ span.eael-testimonial-quote {
|
|
| 16873 |
background-image: url("../img/bg.jpg");
|
| 16874 |
background-repeat: no-repeat;
|
| 16875 |
background-position: center;
|
| 16876 |
-
|
| 16877 |
-
background-size: cover;
|
| 16878 |
position: relative;
|
| 16879 |
z-index: 0;
|
| 16880 |
color: rgba(255, 255, 255, 0.7);
|
|
@@ -17188,8 +23731,7 @@ span.eael-testimonial-quote {
|
|
| 17188 |
}
|
| 17189 |
|
| 17190 |
.eael-btn-loader {
|
| 17191 |
-
|
| 17192 |
-
border-radius: 50%;
|
| 17193 |
width: 20px;
|
| 17194 |
height: 20px;
|
| 17195 |
font-size: 10px;
|
|
@@ -17205,8 +23747,7 @@ span.eael-testimonial-quote {
|
|
| 17205 |
animation: loaderSpin 1.1s infinite linear;
|
| 17206 |
}
|
| 17207 |
.eael-btn-loader:after {
|
| 17208 |
-
|
| 17209 |
-
border-radius: 50%;
|
| 17210 |
width: 20px;
|
| 17211 |
height: 20px;
|
| 17212 |
}
|
|
@@ -17303,9 +23844,6 @@ span.eael-testimonial-quote {
|
|
| 17303 |
margin: 0 auto;
|
| 17304 |
}
|
| 17305 |
|
| 17306 |
-
/*----------------------------*/
|
| 17307 |
-
/* 29. Content Ticker
|
| 17308 |
-
/*----------------------------*/
|
| 17309 |
.eael-ticker-wrap {
|
| 17310 |
overflow: hidden;
|
| 17311 |
display: -webkit-box;
|
|
@@ -17465,8 +24003,7 @@ span.eael-testimonial-quote {
|
|
| 17465 |
vertical-align: middle;
|
| 17466 |
position: relative;
|
| 17467 |
z-index: 1;
|
| 17468 |
-
|
| 17469 |
-
border-radius: 2px;
|
| 17470 |
padding: 20px 30px;
|
| 17471 |
font-size: 16px;
|
| 17472 |
line-height: 1;
|
|
@@ -18167,14 +24704,14 @@ table.eael-data-table .sorting_asc.sorting-none:after {
|
|
| 18167 |
color: #f54;
|
| 18168 |
}
|
| 18169 |
|
| 18170 |
-
/*--------------------------*/
|
| 18171 |
-
/* 03. Fancy Text Style
|
| 18172 |
-
/*--------------------------*/
|
| 18173 |
.eael-fancy-text-container p {
|
| 18174 |
margin: 0;
|
| 18175 |
}
|
| 18176 |
|
| 18177 |
-
.eael-fancy-text-strings
|
|
|
|
|
|
|
|
|
|
| 18178 |
.eael-fancy-text-prefix,
|
| 18179 |
.eael-fancy-text-suffix {
|
| 18180 |
display: inline-block;
|
|
@@ -18212,7 +24749,6 @@ table.eael-data-table .sorting_asc.sorting-none:after {
|
|
| 18212 |
opacity: 1;
|
| 18213 |
}
|
| 18214 |
}
|
| 18215 |
-
/*--- Style 2 ---*/
|
| 18216 |
.eael-fancy-text-container.style-2 {
|
| 18217 |
font-size: 24px;
|
| 18218 |
}
|
|
@@ -18367,12 +24903,10 @@ table.eael-data-table .sorting_asc.sorting-none:after {
|
|
| 18367 |
background-color: #fff;
|
| 18368 |
}
|
| 18369 |
.elementor-widget-eael-feature-list .eael-feature-list-items.circle .eael-feature-list-icon-box .eael-feature-list-icon-inner {
|
| 18370 |
-
|
| 18371 |
-
border-radius: 50%;
|
| 18372 |
}
|
| 18373 |
.elementor-widget-eael-feature-list .eael-feature-list-items.circle .eael-feature-list-icon-box .eael-feature-list-icon-inner .eael-feature-list-icon {
|
| 18374 |
-
|
| 18375 |
-
border-radius: 50%;
|
| 18376 |
}
|
| 18377 |
.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-icon-box .eael-feature-list-icon-inner {
|
| 18378 |
-webkit-transform: rotate(45deg);
|
|
@@ -19045,8 +25579,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 19045 |
height: 50px;
|
| 19046 |
text-align: center;
|
| 19047 |
line-height: 50px;
|
| 19048 |
-
|
| 19049 |
-
border-radius: 50%;
|
| 19050 |
margin: 0 5px;
|
| 19051 |
font-size: 20px;
|
| 19052 |
cursor: pointer;
|
|
@@ -19096,8 +25629,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 19096 |
position: relative;
|
| 19097 |
background-repeat: no-repeat;
|
| 19098 |
background-position: center;
|
| 19099 |
-
|
| 19100 |
-
background-size: cover;
|
| 19101 |
height: 220px;
|
| 19102 |
z-index: 0;
|
| 19103 |
overflow: hidden;
|
|
@@ -19345,8 +25877,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 19345 |
.gallery-item-caption-wrap .gallery-item-buttons > a {
|
| 19346 |
padding: 5px 15px;
|
| 19347 |
display: inline-block;
|
| 19348 |
-
|
| 19349 |
-
border-radius: 50%;
|
| 19350 |
outline: none;
|
| 19351 |
text-decoration: none;
|
| 19352 |
}
|
|
@@ -19836,8 +26367,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 19836 |
}
|
| 19837 |
|
| 19838 |
.eael_flip_box_icon_border_round {
|
| 19839 |
-
|
| 19840 |
-
border-radius: 100px;
|
| 19841 |
}
|
| 19842 |
|
| 19843 |
.eael_eleements_flip_front_icon_style_background,
|
|
@@ -20114,8 +26644,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 20114 |
|
| 20115 |
.eael-flipbox-img-circle .eael-elements-flip-box-icon-image img,
|
| 20116 |
.eael-flipbox-img-circle .flipbox-back-image-icon img {
|
| 20117 |
-
|
| 20118 |
-
border-radius: 50%;
|
| 20119 |
overflow: hidden;
|
| 20120 |
}
|
| 20121 |
|
|
@@ -20303,13 +26832,16 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 20303 |
}
|
| 20304 |
|
| 20305 |
.eael-custom-radio-checkbox input[type=radio] {
|
| 20306 |
-
|
| 20307 |
-
border-radius: 50%;
|
| 20308 |
}
|
| 20309 |
|
| 20310 |
.eael-custom-radio-checkbox input[type=radio]:before {
|
| 20311 |
-
|
| 20312 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20313 |
}
|
| 20314 |
|
| 20315 |
/*----------------------*/
|
|
@@ -20389,8 +26921,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 20389 |
text-align: center;
|
| 20390 |
text-decoration: none;
|
| 20391 |
color: #fff;
|
| 20392 |
-
|
| 20393 |
-
background-size: cover;
|
| 20394 |
background-position: center;
|
| 20395 |
background-repeat: no-repeat;
|
| 20396 |
-webkit-transition: -webkit-box-flex .4s, -webkit-flex .4s;
|
|
@@ -20553,14 +27084,12 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 20553 |
}
|
| 20554 |
|
| 20555 |
.eael-infobox-icon-hover-bg-shape-square:hover .infobox-icon .infobox-icon-wrap {
|
| 20556 |
-
|
| 20557 |
-
border-radius: 0;
|
| 20558 |
}
|
| 20559 |
|
| 20560 |
.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap,
|
| 20561 |
.eael-infobox-icon-hover-bg-shape-radius:hover .infobox-icon .infobox-icon-wrap {
|
| 20562 |
-
|
| 20563 |
-
border-radius: 15px;
|
| 20564 |
}
|
| 20565 |
|
| 20566 |
.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap {
|
|
@@ -20580,8 +27109,7 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 20580 |
|
| 20581 |
.eael-infobox-icon-bg-shape-circle .infobox-icon .infobox-icon-wrap,
|
| 20582 |
.eael-infobox-icon-hover-bg-shape-circle:hover .infobox-icon .infobox-icon-wrap {
|
| 20583 |
-
|
| 20584 |
-
border-radius: 50%;
|
| 20585 |
}
|
| 20586 |
|
| 20587 |
.eael-infobox-icon-bg-shape-square .infobox-icon .infobox-icon-wrap i,
|
|
@@ -20754,20 +27282,17 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 20754 |
}
|
| 20755 |
|
| 20756 |
.eael-infobox-hover-img-shape-square:hover .eael-infobox .infobox-icon img {
|
| 20757 |
-
|
| 20758 |
-
border-radius: 0;
|
| 20759 |
}
|
| 20760 |
|
| 20761 |
.eael-infobox-shape-circle .eael-infobox .infobox-icon img,
|
| 20762 |
.eael-infobox-hover-img-shape-circle:hover .eael-infobox .infobox-icon img {
|
| 20763 |
-
|
| 20764 |
-
border-radius: 50%;
|
| 20765 |
}
|
| 20766 |
|
| 20767 |
.eael-infobox-shape-radius .eael-infobox .infobox-icon img,
|
| 20768 |
.eael-infobox-hover-img-shape-radius:hover .eael-infobox .infobox-icon img {
|
| 20769 |
-
|
| 20770 |
-
border-radius: 15px;
|
| 20771 |
}
|
| 20772 |
|
| 20773 |
/* ------------------------ */
|
|
@@ -21307,8 +27832,7 @@ button.mfp-close:hover {
|
|
| 21307 |
|
| 21308 |
.eael-ninja-form .submit-container input[type=button] {
|
| 21309 |
border: 0;
|
| 21310 |
-
|
| 21311 |
-
border-radius: 0;
|
| 21312 |
}
|
| 21313 |
|
| 21314 |
.eael-ninja-form-button-full-width .submit-container input[type=button] {
|
|
@@ -21387,8 +27911,7 @@ button.mfp-close:hover {
|
|
| 21387 |
}
|
| 21388 |
|
| 21389 |
.eael-entry-footer .eael-author-avatar .avatar {
|
| 21390 |
-
|
| 21391 |
-
border-radius: 50%;
|
| 21392 |
}
|
| 21393 |
|
| 21394 |
.eael-post-grid .eael-entry-footer .eael-entry-meta {
|
|
@@ -21746,8 +28269,7 @@ button.mfp-close:hover {
|
|
| 21746 |
.eael-timeline-bullet {
|
| 21747 |
background-color: #9fa9af;
|
| 21748 |
border: 5px solid #fff;
|
| 21749 |
-
|
| 21750 |
-
border-radius: 50%;
|
| 21751 |
-webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.1);
|
| 21752 |
box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.1);
|
| 21753 |
content: "";
|
|
@@ -21763,8 +28285,7 @@ button.mfp-close:hover {
|
|
| 21763 |
.eael-timeline-post:nth-child(2n) .eael-timeline-bullet {
|
| 21764 |
background-color: #9fa9af;
|
| 21765 |
border: 5px solid #fff;
|
| 21766 |
-
|
| 21767 |
-
border-radius: 50%;
|
| 21768 |
bottom: 36px;
|
| 21769 |
content: "";
|
| 21770 |
height: 20px;
|
|
@@ -21776,7 +28297,6 @@ button.mfp-close:hover {
|
|
| 21776 |
}
|
| 21777 |
|
| 21778 |
.eael-timeline-post-inner {
|
| 21779 |
-
background: -webkit-linear-gradient(45deg, #3f3f46 0%, #05abe0 100%) repeat scroll 0 0 transparent;
|
| 21780 |
background: -o-linear-gradient(45deg, #3f3f46 0%, #05abe0 100%) repeat scroll 0 0 transparent;
|
| 21781 |
background: linear-gradient(45deg, #3f3f46 0%, #05abe0 100%) repeat scroll 0 0 transparent;
|
| 21782 |
border: 8px solid #e5eaed;
|
|
@@ -21829,8 +28349,7 @@ button.mfp-close:hover {
|
|
| 21829 |
}
|
| 21830 |
|
| 21831 |
.eael-timeline-post-image {
|
| 21832 |
-
|
| 21833 |
-
background-size: cover;
|
| 21834 |
background-position: center center;
|
| 21835 |
background-repeat: no-repeat;
|
| 21836 |
display: block;
|
|
@@ -21890,8 +28409,7 @@ button.mfp-close:hover {
|
|
| 21890 |
background-color: rgba(0, 0, 0, 0.7);
|
| 21891 |
color: #fff;
|
| 21892 |
font-size: 10px;
|
| 21893 |
-
|
| 21894 |
-
border-radius: 20px;
|
| 21895 |
position: absolute;
|
| 21896 |
right: -97px;
|
| 21897 |
width: 100px;
|
|
@@ -21907,8 +28425,7 @@ button.mfp-close:hover {
|
|
| 21907 |
|
| 21908 |
.eael-timeline-post:nth-child(2n) time {
|
| 21909 |
background-color: rgba(0, 0, 0, 0.7);
|
| 21910 |
-
|
| 21911 |
-
border-radius: 20px;
|
| 21912 |
color: #fff;
|
| 21913 |
font-size: 10px;
|
| 21914 |
height: 30px;
|
|
@@ -22025,8 +28542,7 @@ button.mfp-close:hover {
|
|
| 22025 |
.eael-timeline-post time,
|
| 22026 |
.eael-timeline-post:nth-child(2n) time {
|
| 22027 |
background-color: #fff;
|
| 22028 |
-
|
| 22029 |
-
border-radius: 0;
|
| 22030 |
color: #444;
|
| 22031 |
font-size: 12px;
|
| 22032 |
text-transform: uppercase;
|
|
@@ -22106,7 +28622,6 @@ button.mfp-close:hover {
|
|
| 22106 |
-webkit-transition: .3s;
|
| 22107 |
-o-transition: .3s;
|
| 22108 |
transition: .3s;
|
| 22109 |
-
-webkit-border-radius: 4px;
|
| 22110 |
border-radius: 4px;
|
| 22111 |
}
|
| 22112 |
|
|
@@ -22144,7 +28659,6 @@ button.mfp-close:hover {
|
|
| 22144 |
.eael-pricing.style-1 .eael-pricing-item {
|
| 22145 |
border: 1px solid rgba(9, 9, 9, 0.1);
|
| 22146 |
padding: 30px;
|
| 22147 |
-
-webkit-border-radius: 5px;
|
| 22148 |
border-radius: 5px;
|
| 22149 |
-webkit-transition: .5s;
|
| 22150 |
-o-transition: .5s;
|
|
@@ -22170,7 +28684,6 @@ button.mfp-close:hover {
|
|
| 22170 |
left: 0px;
|
| 22171 |
right: 0px;
|
| 22172 |
z-index: 1;
|
| 22173 |
-
-webkit-border-radius: 5px 5px 0px 0px;
|
| 22174 |
border-radius: 5px 5px 0px 0px;
|
| 22175 |
}
|
| 22176 |
|
|
@@ -22315,8 +28828,7 @@ button.mfp-close:hover {
|
|
| 22315 |
|
| 22316 |
.eael-pricing.style-2 .eael-pricing-item {
|
| 22317 |
padding: 30px 0px;
|
| 22318 |
-
|
| 22319 |
-
border-radius: 5px;
|
| 22320 |
margin: 0px;
|
| 22321 |
border: 1px solid rgba(9, 9, 9, 0.1);
|
| 22322 |
}
|
|
@@ -22336,7 +28848,6 @@ button.mfp-close:hover {
|
|
| 22336 |
left: 0px;
|
| 22337 |
right: 0px;
|
| 22338 |
z-index: 1;
|
| 22339 |
-
-webkit-border-radius: 5px 5px 0px 0px;
|
| 22340 |
border-radius: 5px 5px 0px 0px;
|
| 22341 |
}
|
| 22342 |
|
|
@@ -22389,8 +28900,7 @@ button.mfp-close:hover {
|
|
| 22389 |
width: 80px;
|
| 22390 |
height: 80px;
|
| 22391 |
background: #00c853;
|
| 22392 |
-
|
| 22393 |
-
border-radius: 50%;
|
| 22394 |
margin-bottom: 30px;
|
| 22395 |
text-align: center;
|
| 22396 |
-webkit-transition: .5s;
|
|
@@ -22817,8 +29327,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 22817 |
overflow: hidden;
|
| 22818 |
text-align: center;
|
| 22819 |
padding: 0;
|
| 22820 |
-
|
| 22821 |
-
border-radius: 0;
|
| 22822 |
background-color: #fff;
|
| 22823 |
-webkit-box-shadow: none;
|
| 22824 |
box-shadow: none;
|
|
@@ -22865,8 +29374,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 22865 |
text-transform: uppercase;
|
| 22866 |
color: #fff;
|
| 22867 |
background-color: #ff2a13;
|
| 22868 |
-
|
| 22869 |
-
border-radius: 0;
|
| 22870 |
border: none;
|
| 22871 |
-webkit-box-shadow: none;
|
| 22872 |
box-shadow: none;
|
|
@@ -22923,8 +29431,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 22923 |
background-color: #333;
|
| 22924 |
padding: 0;
|
| 22925 |
margin: 15px;
|
| 22926 |
-
|
| 22927 |
-
border-radius: 0;
|
| 22928 |
}
|
| 22929 |
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button:focus,
|
| 22930 |
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus,
|
|
@@ -22977,8 +29484,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 22977 |
overflow: hidden;
|
| 22978 |
text-align: center;
|
| 22979 |
padding: 0 0 15px 0;
|
| 22980 |
-
|
| 22981 |
-
border-radius: 0;
|
| 22982 |
background-color: #fff;
|
| 22983 |
-webkit-box-shadow: none;
|
| 22984 |
box-shadow: none;
|
|
@@ -23033,8 +29539,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 23033 |
width: 38px;
|
| 23034 |
height: 38px;
|
| 23035 |
border-style: none;
|
| 23036 |
-
|
| 23037 |
-
border-radius: 50%;
|
| 23038 |
vertical-align: middle;
|
| 23039 |
padding: 0;
|
| 23040 |
margin: 0 5px;
|
|
@@ -23133,8 +29638,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 23133 |
text-transform: uppercase;
|
| 23134 |
color: #fff;
|
| 23135 |
background-color: #ff2a13;
|
| 23136 |
-
|
| 23137 |
-
border-radius: 0;
|
| 23138 |
border: none;
|
| 23139 |
-webkit-box-shadow: none;
|
| 23140 |
box-shadow: none;
|
|
@@ -23284,8 +29788,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 23284 |
width: 220px;
|
| 23285 |
height: 220px;
|
| 23286 |
padding: 10px;
|
| 23287 |
-
|
| 23288 |
-
border-radius: 50%;
|
| 23289 |
}
|
| 23290 |
|
| 23291 |
.eael-progressbar-circle-pie {
|
|
@@ -23304,8 +29807,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 23304 |
border-width: 12px;
|
| 23305 |
border-style: solid;
|
| 23306 |
border-color: #eeeeee;
|
| 23307 |
-
|
| 23308 |
-
border-radius: 50%;
|
| 23309 |
}
|
| 23310 |
|
| 23311 |
.eael-progressbar-circle-half {
|
|
@@ -23317,8 +29819,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 23317 |
border-width: 12px;
|
| 23318 |
border-style: solid;
|
| 23319 |
border-color: #000000;
|
| 23320 |
-
|
| 23321 |
-
border-radius: 50%;
|
| 23322 |
-webkit-clip-path: inset(0 50% 0 0);
|
| 23323 |
clip-path: inset(0 50% 0 0);
|
| 23324 |
}
|
|
@@ -23402,11 +29903,9 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 23402 |
left: -35px;
|
| 23403 |
width: calc(100% + 70px);
|
| 23404 |
height: 100%;
|
| 23405 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
| 23406 |
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
| 23407 |
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
| 23408 |
-
|
| 23409 |
-
background-size: 35px 35px;
|
| 23410 |
}
|
| 23411 |
|
| 23412 |
.eael-progressbar-line-animate .eael-progressbar-line-fill:after {
|
|
@@ -23442,6 +29941,27 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 23442 |
margin: 0 0 0 auto;
|
| 23443 |
}
|
| 23444 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23445 |
/*----------------------------*/
|
| 23446 |
/* 07. Team Members Styles
|
| 23447 |
/*----------------------------*/
|
|
@@ -23451,8 +29971,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 23451 |
}
|
| 23452 |
|
| 23453 |
.team-avatar-rounded figure img {
|
| 23454 |
-
|
| 23455 |
-
border-radius: 50%;
|
| 23456 |
height: auto;
|
| 23457 |
}
|
| 23458 |
|
|
@@ -23629,8 +30148,7 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 23629 |
}
|
| 23630 |
|
| 23631 |
.testimonial-avatar-rounded figure img {
|
| 23632 |
-
|
| 23633 |
-
border-radius: 50%;
|
| 23634 |
height: auto;
|
| 23635 |
}
|
| 23636 |
|
|
@@ -23972,8 +30490,7 @@ span.eael-testimonial-quote {
|
|
| 23972 |
background-color: black;
|
| 23973 |
color: #fff;
|
| 23974 |
text-align: center;
|
| 23975 |
-
|
| 23976 |
-
border-radius: 4px;
|
| 23977 |
padding: 10px;
|
| 23978 |
position: absolute;
|
| 23979 |
z-index: 1;
|
|
@@ -24211,323 +30728,92 @@ span.eael-testimonial-quote {
|
|
| 24211 |
}
|
| 24212 |
}
|
| 24213 |
|
| 24214 |
-
|
| 24215 |
-
/* 24. Social Feeds
|
| 24216 |
-
/* ------------------------ */
|
| 24217 |
-
.swiper-container-wrap .swiper-slide .eael-social-feed-element img {
|
| 24218 |
-
width: 100%;
|
| 24219 |
-
}
|
| 24220 |
-
|
| 24221 |
-
/*--- Twitter Feed Styles ---*/
|
| 24222 |
-
.eael-social-feed-element.hidden {
|
| 24223 |
-
background-color: red !important;
|
| 24224 |
-
}
|
| 24225 |
-
|
| 24226 |
-
.eael-twitter-feed-wrapper::before,
|
| 24227 |
-
.eael-twitter-feed-wrapper::after,
|
| 24228 |
-
.eael-twitter-feed-container::before,
|
| 24229 |
-
.eael-twitter-feed-container::after {
|
| 24230 |
content: "";
|
| 24231 |
clear: both;
|
| 24232 |
}
|
| 24233 |
|
| 24234 |
-
.eael-
|
| 24235 |
float: left;
|
| 24236 |
-
margin-right: 10px;
|
| 24237 |
}
|
| 24238 |
-
|
| 24239 |
-
.eael-
|
| 24240 |
-
|
|
|
|
| 24241 |
}
|
| 24242 |
-
|
| 24243 |
-
.eael-
|
| 24244 |
-
|
| 24245 |
-
|
| 24246 |
-
border: 0;
|
| 24247 |
-
vertical-align: middle;
|
| 24248 |
-
-ms-interpolation-mode: bicubic;
|
| 24249 |
}
|
| 24250 |
-
|
| 24251 |
-
.eael-
|
| 24252 |
-
|
| 24253 |
-
|
| 24254 |
}
|
| 24255 |
|
| 24256 |
-
|
| 24257 |
-
|
|
|
|
|
|
|
|
|
|
| 24258 |
color: #0088cc;
|
| 24259 |
text-decoration: none;
|
| 24260 |
}
|
| 24261 |
-
|
| 24262 |
-
.eael-social-feed-element a:focus {
|
| 24263 |
-
outline: thin dotted #333;
|
| 24264 |
-
outline: 5px auto -webkit-focus-ring-color;
|
| 24265 |
-
outline-offset: -2px;
|
| 24266 |
-
}
|
| 24267 |
-
|
| 24268 |
-
.eael-social-feed-element a:hover,
|
| 24269 |
-
.eael-social-feed-element a:active {
|
| 24270 |
outline: 0;
|
| 24271 |
color: #005580;
|
| 24272 |
-
text-decoration: underline;
|
| 24273 |
-
}
|
| 24274 |
-
|
| 24275 |
-
/*--- Text styles ---*/
|
| 24276 |
-
.eael-social-feed-element small {
|
| 24277 |
-
font-size: 85%;
|
| 24278 |
-
}
|
| 24279 |
-
|
| 24280 |
-
.eael-social-feed-element strong {
|
| 24281 |
-
font-weight: bold;
|
| 24282 |
}
|
| 24283 |
-
|
| 24284 |
-
|
| 24285 |
-
font-style: italic;
|
| 24286 |
}
|
| 24287 |
-
|
| 24288 |
-
|
| 24289 |
-
margin:
|
| 24290 |
}
|
| 24291 |
-
|
| 24292 |
-
|
| 24293 |
-
|
| 24294 |
-
|
| 24295 |
}
|
| 24296 |
-
|
| 24297 |
-
|
| 24298 |
-
|
| 24299 |
-
|
| 24300 |
-
|
| 24301 |
-
text-overflow: ellipsis;
|
| 24302 |
-
-webkit-line-clamp: 5;
|
| 24303 |
-
-webkit-box-orient: vertical;
|
| 24304 |
}
|
| 24305 |
-
|
| 24306 |
-
|
| 24307 |
-
.eael-social-feed-element,
|
| 24308 |
-
.eael-social-feed-element .media-body {
|
| 24309 |
-
overflow: hidden;
|
| 24310 |
-
zoom: 1;
|
| 24311 |
-
overflow: visible;
|
| 24312 |
}
|
| 24313 |
-
|
| 24314 |
-
|
| 24315 |
-
padding: 10px;
|
| 24316 |
-
background: none;
|
| 24317 |
}
|
| 24318 |
-
|
| 24319 |
-
|
| 24320 |
-
margin-top: -3px;
|
| 24321 |
margin-right: 5px;
|
| 24322 |
-
width: 16px;
|
| 24323 |
-
}
|
| 24324 |
-
|
| 24325 |
-
.eael-social-feed-element .media-body div {
|
| 24326 |
-
color: #666;
|
| 24327 |
-
line-height: 20px;
|
| 24328 |
-
clear: both;
|
| 24329 |
-
}
|
| 24330 |
-
|
| 24331 |
-
.eael-social-feed-element:first-child {
|
| 24332 |
-
margin-top: 0;
|
| 24333 |
-
}
|
| 24334 |
-
|
| 24335 |
-
.eael-social-feed-element .media-object {
|
| 24336 |
-
display: block;
|
| 24337 |
-
width: 48px;
|
| 24338 |
-
-webkit-border-radius: 50%;
|
| 24339 |
-
border-radius: 50%;
|
| 24340 |
-
}
|
| 24341 |
-
|
| 24342 |
-
.eael-social-feed-element .media-heading {
|
| 24343 |
-
margin: 0 0 5px;
|
| 24344 |
-
}
|
| 24345 |
-
|
| 24346 |
-
.eael-social-feed-element .media-list {
|
| 24347 |
-
margin-left: 0;
|
| 24348 |
-
list-style: none;
|
| 24349 |
-
}
|
| 24350 |
-
|
| 24351 |
-
.eael-social-feed-element .muted {
|
| 24352 |
-
color: #999;
|
| 24353 |
}
|
| 24354 |
-
|
| 24355 |
-
.eael-social-feed-element a.muted:hover,
|
| 24356 |
-
.eael-social-feed-element a.muted:focus {
|
| 24357 |
-
color: #808080;
|
| 24358 |
-
}
|
| 24359 |
-
|
| 24360 |
-
.eael-social-feed-element {
|
| 24361 |
-
-webkit-transition: 0.25s;
|
| 24362 |
-
-o-transition: 0.25s;
|
| 24363 |
-
transition: 0.25s;
|
| 24364 |
-
-webkit-backface-visibility: hidden;
|
| 24365 |
-
backface-visibility: hidden;
|
| 24366 |
-
margin: -1px;
|
| 24367 |
-
margin-top: 25px;
|
| 24368 |
-
color: #333;
|
| 24369 |
-
text-align: left;
|
| 24370 |
-
font-size: 14px;
|
| 24371 |
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
| 24372 |
-
line-height: 16px;
|
| 24373 |
-
}
|
| 24374 |
-
|
| 24375 |
-
.eael-social-feed-element .eael-content {
|
| 24376 |
-
padding: 20px 15px 15px;
|
| 24377 |
-
-webkit-transition: .4s;
|
| 24378 |
-
-o-transition: .4s;
|
| 24379 |
-
transition: .4s;
|
| 24380 |
-
background: #fff;
|
| 24381 |
-
}
|
| 24382 |
-
|
| 24383 |
-
.eael-social-feed-element .social-network-icon {
|
| 24384 |
-
opacity: 0.7;
|
| 24385 |
-
}
|
| 24386 |
-
|
| 24387 |
-
.eael-social-feed-element .author-title {
|
| 24388 |
color: #444;
|
| 24389 |
line-height: 1.5em;
|
| 24390 |
-
font-weight:
|
| 24391 |
-
}
|
| 24392 |
-
|
| 24393 |
-
/*--- Icon Color ---*/
|
| 24394 |
-
.media-body .fa-twitter {
|
| 24395 |
-
color: #1da1f2;
|
| 24396 |
-
margin-right: 8px;
|
| 24397 |
-
}
|
| 24398 |
-
|
| 24399 |
-
.media-body .fa-facebook {
|
| 24400 |
-
color: #3b5998;
|
| 24401 |
-
margin-right: 8px;
|
| 24402 |
-
}
|
| 24403 |
-
|
| 24404 |
-
/*--- Read More Link ---*/
|
| 24405 |
-
.text-wrapper p .read-more-link {
|
| 24406 |
-
margin-top: 9px;
|
| 24407 |
-
display: block;
|
| 24408 |
-
}
|
| 24409 |
-
|
| 24410 |
-
/*--- Loading Loader ---*/
|
| 24411 |
-
.eael-social-feed-wrapper {
|
| 24412 |
-
width: 100%;
|
| 24413 |
-
height: auto;
|
| 24414 |
-
position: relative;
|
| 24415 |
-
z-index: 0;
|
| 24416 |
-
}
|
| 24417 |
-
|
| 24418 |
-
.eael-loading-feed {
|
| 24419 |
-
display: none;
|
| 24420 |
-
position: absolute;
|
| 24421 |
-
width: 100%;
|
| 24422 |
-
height: 100%;
|
| 24423 |
-
top: 0px;
|
| 24424 |
-
left: 0px;
|
| 24425 |
-
bottom: 0px;
|
| 24426 |
-
right: 0px;
|
| 24427 |
-
}
|
| 24428 |
-
|
| 24429 |
-
.eael-loading-feed.show-loading {
|
| 24430 |
-
display: block;
|
| 24431 |
-
text-align: center;
|
| 24432 |
-
z-index: 10;
|
| 24433 |
-
display: -webkit-box;
|
| 24434 |
-
display: -webkit-flex;
|
| 24435 |
-
display: -ms-flexbox;
|
| 24436 |
-
display: flex;
|
| 24437 |
-
-webkit-box-align: center;
|
| 24438 |
-
-webkit-align-items: center;
|
| 24439 |
-
-ms-flex-align: center;
|
| 24440 |
-
align-items: center;
|
| 24441 |
-
-webkit-box-pack: center;
|
| 24442 |
-
-webkit-justify-content: center;
|
| 24443 |
-
-ms-flex-pack: center;
|
| 24444 |
-
justify-content: center;
|
| 24445 |
-
-webkit-transition: .5s;
|
| 24446 |
-
-o-transition: .5s;
|
| 24447 |
-
transition: .5s;
|
| 24448 |
-
}
|
| 24449 |
-
|
| 24450 |
-
.eael-loading-feed .loader {
|
| 24451 |
-
border: 3px solid #f3f3f3;
|
| 24452 |
-
-webkit-border-radius: 50%;
|
| 24453 |
-
border-radius: 50%;
|
| 24454 |
-
border-top: 3px solid #3498db;
|
| 24455 |
-
width: 30px;
|
| 24456 |
-
height: 30px;
|
| 24457 |
-
-webkit-animation: spin 2s linear infinite;
|
| 24458 |
-
/* Safari */
|
| 24459 |
-
animation: spin 2s linear infinite;
|
| 24460 |
-
margin: 0 auto;
|
| 24461 |
-
}
|
| 24462 |
-
|
| 24463 |
-
/*--- Safari ---*/
|
| 24464 |
-
@-webkit-keyframes spin {
|
| 24465 |
-
0% {
|
| 24466 |
-
-webkit-transform: rotate(0deg);
|
| 24467 |
-
}
|
| 24468 |
-
100% {
|
| 24469 |
-
-webkit-transform: rotate(360deg);
|
| 24470 |
-
}
|
| 24471 |
-
}
|
| 24472 |
-
@keyframes spin {
|
| 24473 |
-
0% {
|
| 24474 |
-
-webkit-transform: rotate(0deg);
|
| 24475 |
-
transform: rotate(0deg);
|
| 24476 |
-
}
|
| 24477 |
-
100% {
|
| 24478 |
-
-webkit-transform: rotate(360deg);
|
| 24479 |
-
transform: rotate(360deg);
|
| 24480 |
-
}
|
| 24481 |
-
}
|
| 24482 |
-
/*--- List View ---*/
|
| 24483 |
-
.eael-social-feed-container.list-view .eael-social-feed-element {
|
| 24484 |
-
margin: 15px;
|
| 24485 |
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
| 24486 |
-
background: none;
|
| 24487 |
-
}
|
| 24488 |
-
|
| 24489 |
-
/*--- Carousel View ---*/
|
| 24490 |
-
.eael-social-feed-container.carousel-view {
|
| 24491 |
-
width: 100%;
|
| 24492 |
-
height: auto;
|
| 24493 |
-
}
|
| 24494 |
-
|
| 24495 |
-
/*--- Masonry View ---*/
|
| 24496 |
-
.eael-twitter-feed-container.masonry-view .eael-social-feed-element {
|
| 24497 |
-
width: 33.33%;
|
| 24498 |
-
margin-top: 0px;
|
| 24499 |
-
float: left;
|
| 24500 |
-
}
|
| 24501 |
-
|
| 24502 |
-
.eael-social-feed-element .eael-content {
|
| 24503 |
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
| 24504 |
-
}
|
| 24505 |
-
|
| 24506 |
-
/*--- Editor Related Style ---*/
|
| 24507 |
-
.eael-social-feed-avatar-circle .eael-social-feed-element .media-object {
|
| 24508 |
-
-webkit-border-radius: 50%;
|
| 24509 |
-
border-radius: 50%;
|
| 24510 |
-
}
|
| 24511 |
-
|
| 24512 |
-
.eael-social-feed-avatar-square .eael-social-feed-element .media-object {
|
| 24513 |
-
-webkit-border-radius: 0%;
|
| 24514 |
-
border-radius: 0%;
|
| 24515 |
}
|
| 24516 |
-
|
| 24517 |
-
|
| 24518 |
-
|
|
|
|
|
|
|
| 24519 |
}
|
| 24520 |
-
|
| 24521 |
-
|
| 24522 |
-
@media only screen and (min-width: 768px) and (max-width: 992px) {
|
| 24523 |
-
.eael-twitter-feed-container.masonry-view .eael-social-feed-element {
|
| 24524 |
-
width: 50% !important;
|
| 24525 |
-
}
|
| 24526 |
}
|
| 24527 |
-
|
| 24528 |
-
|
| 24529 |
-
|
| 24530 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24531 |
}
|
| 24532 |
|
| 24533 |
/*----------------------*/
|
|
@@ -24786,6 +31072,7 @@ span.eael-testimonial-quote {
|
|
| 24786 |
-ms-flex-align: center;
|
| 24787 |
align-items: center;
|
| 24788 |
text-align: center;
|
|
|
|
| 24789 |
}
|
| 24790 |
|
| 24791 |
.eael-advance-tabs .eael-tabs-nav > ul li:after {
|
|
@@ -24805,6 +31092,12 @@ span.eael-testimonial-quote {
|
|
| 24805 |
display: none;
|
| 24806 |
}
|
| 24807 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24808 |
.eael-advance-tabs.active-caret-on .eael-tabs-nav > ul li.active:after,
|
| 24809 |
.eael-advance-tabs.active-caret-on .eael-tabs-nav > ul li.active-default:after {
|
| 24810 |
display: none;
|
|
@@ -25506,9 +31799,6 @@ span.eael-testimonial-quote {
|
|
| 25506 |
margin: 0 auto;
|
| 25507 |
}
|
| 25508 |
|
| 25509 |
-
/*----------------------------*/
|
| 25510 |
-
/* 29. Content Ticker
|
| 25511 |
-
/*----------------------------*/
|
| 25512 |
.eael-ticker-wrap {
|
| 25513 |
overflow: hidden;
|
| 25514 |
display: -webkit-box;
|
|
@@ -26369,14 +32659,14 @@ table.eael-data-table .sorting_asc.sorting-none:after {
|
|
| 26369 |
color: #f54;
|
| 26370 |
}
|
| 26371 |
|
| 26372 |
-
/*--------------------------*/
|
| 26373 |
-
/* 03. Fancy Text Style
|
| 26374 |
-
/*--------------------------*/
|
| 26375 |
.eael-fancy-text-container p {
|
| 26376 |
margin: 0;
|
| 26377 |
}
|
| 26378 |
|
| 26379 |
-
.eael-fancy-text-strings
|
|
|
|
|
|
|
|
|
|
| 26380 |
.eael-fancy-text-prefix,
|
| 26381 |
.eael-fancy-text-suffix {
|
| 26382 |
display: inline-block;
|
|
@@ -26414,7 +32704,6 @@ table.eael-data-table .sorting_asc.sorting-none:after {
|
|
| 26414 |
opacity: 1;
|
| 26415 |
}
|
| 26416 |
}
|
| 26417 |
-
/*--- Style 2 ---*/
|
| 26418 |
.eael-fancy-text-container.style-2 {
|
| 26419 |
font-size: 24px;
|
| 26420 |
}
|
|
@@ -31607,6 +37896,27 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 31607 |
margin: 0 0 0 auto;
|
| 31608 |
}
|
| 31609 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31610 |
/*----------------------------*/
|
| 31611 |
/* 07. Team Members Styles
|
| 31612 |
/*----------------------------*/
|
|
@@ -32373,319 +38683,92 @@ span.eael-testimonial-quote {
|
|
| 32373 |
}
|
| 32374 |
}
|
| 32375 |
|
| 32376 |
-
|
| 32377 |
-
/* 24. Social Feeds
|
| 32378 |
-
/* ------------------------ */
|
| 32379 |
-
.swiper-container-wrap .swiper-slide .eael-social-feed-element img {
|
| 32380 |
-
width: 100%;
|
| 32381 |
-
}
|
| 32382 |
-
|
| 32383 |
-
/*--- Twitter Feed Styles ---*/
|
| 32384 |
-
.eael-social-feed-element.hidden {
|
| 32385 |
-
background-color: red !important;
|
| 32386 |
-
}
|
| 32387 |
-
|
| 32388 |
-
.eael-twitter-feed-wrapper::before,
|
| 32389 |
-
.eael-twitter-feed-wrapper::after,
|
| 32390 |
-
.eael-twitter-feed-container::before,
|
| 32391 |
-
.eael-twitter-feed-container::after {
|
| 32392 |
content: "";
|
| 32393 |
clear: both;
|
| 32394 |
}
|
| 32395 |
|
| 32396 |
-
.eael-
|
| 32397 |
float: left;
|
| 32398 |
-
margin-right: 10px;
|
| 32399 |
}
|
| 32400 |
-
|
| 32401 |
-
.eael-
|
| 32402 |
-
|
|
|
|
| 32403 |
}
|
| 32404 |
-
|
| 32405 |
-
.eael-
|
| 32406 |
-
|
| 32407 |
-
|
| 32408 |
-
border: 0;
|
| 32409 |
-
vertical-align: middle;
|
| 32410 |
-
-ms-interpolation-mode: bicubic;
|
| 32411 |
}
|
| 32412 |
-
|
| 32413 |
-
.eael-
|
| 32414 |
-
|
| 32415 |
-
|
| 32416 |
}
|
| 32417 |
|
| 32418 |
-
|
| 32419 |
-
|
|
|
|
|
|
|
|
|
|
| 32420 |
color: #0088cc;
|
| 32421 |
text-decoration: none;
|
| 32422 |
}
|
| 32423 |
-
|
| 32424 |
-
.eael-social-feed-element a:focus {
|
| 32425 |
-
outline: thin dotted #333;
|
| 32426 |
-
outline: 5px auto -webkit-focus-ring-color;
|
| 32427 |
-
outline-offset: -2px;
|
| 32428 |
-
}
|
| 32429 |
-
|
| 32430 |
-
.eael-social-feed-element a:hover,
|
| 32431 |
-
.eael-social-feed-element a:active {
|
| 32432 |
outline: 0;
|
| 32433 |
color: #005580;
|
| 32434 |
-
text-decoration: underline;
|
| 32435 |
-
}
|
| 32436 |
-
|
| 32437 |
-
/*--- Text styles ---*/
|
| 32438 |
-
.eael-social-feed-element small {
|
| 32439 |
-
font-size: 85%;
|
| 32440 |
-
}
|
| 32441 |
-
|
| 32442 |
-
.eael-social-feed-element strong {
|
| 32443 |
-
font-weight: bold;
|
| 32444 |
-
}
|
| 32445 |
-
|
| 32446 |
-
.eael-social-feed-element em {
|
| 32447 |
-
font-style: italic;
|
| 32448 |
-
}
|
| 32449 |
-
|
| 32450 |
-
.eael-social-feed-element p {
|
| 32451 |
-
margin: 0 0 10px;
|
| 32452 |
-
}
|
| 32453 |
-
|
| 32454 |
-
.eael-social-feed-element .media-body > p {
|
| 32455 |
-
margin-bottom: 4px;
|
| 32456 |
-
min-height: 20px;
|
| 32457 |
-
}
|
| 32458 |
-
|
| 32459 |
-
.eael-social-feed-element p.social-feed-text {
|
| 32460 |
-
margin: 0;
|
| 32461 |
-
overflow: hidden;
|
| 32462 |
-
-o-text-overflow: ellipsis;
|
| 32463 |
-
text-overflow: ellipsis;
|
| 32464 |
-
-webkit-line-clamp: 5;
|
| 32465 |
-
-webkit-box-orient: vertical;
|
| 32466 |
-
}
|
| 32467 |
-
|
| 32468 |
-
/*--- Message styles ---*/
|
| 32469 |
-
.eael-social-feed-element,
|
| 32470 |
-
.eael-social-feed-element .media-body {
|
| 32471 |
-
overflow: hidden;
|
| 32472 |
-
zoom: 1;
|
| 32473 |
-
overflow: visible;
|
| 32474 |
-
}
|
| 32475 |
-
|
| 32476 |
-
.eael-social-feed-element {
|
| 32477 |
-
padding: 10px;
|
| 32478 |
-
background: none;
|
| 32479 |
-
}
|
| 32480 |
-
|
| 32481 |
-
.eael-social-feed-element .media-body .social-network-icon {
|
| 32482 |
-
margin-top: -3px;
|
| 32483 |
-
margin-right: 5px;
|
| 32484 |
-
width: 16px;
|
| 32485 |
-
}
|
| 32486 |
-
|
| 32487 |
-
.eael-social-feed-element .media-body div {
|
| 32488 |
-
color: #666;
|
| 32489 |
-
line-height: 20px;
|
| 32490 |
-
clear: both;
|
| 32491 |
-
}
|
| 32492 |
-
|
| 32493 |
-
.eael-social-feed-element:first-child {
|
| 32494 |
-
margin-top: 0;
|
| 32495 |
-
}
|
| 32496 |
-
|
| 32497 |
-
.eael-social-feed-element .media-object {
|
| 32498 |
-
display: block;
|
| 32499 |
-
width: 48px;
|
| 32500 |
-
border-radius: 50%;
|
| 32501 |
-
}
|
| 32502 |
-
|
| 32503 |
-
.eael-social-feed-element .media-heading {
|
| 32504 |
-
margin: 0 0 5px;
|
| 32505 |
-
}
|
| 32506 |
-
|
| 32507 |
-
.eael-social-feed-element .media-list {
|
| 32508 |
-
margin-left: 0;
|
| 32509 |
-
list-style: none;
|
| 32510 |
-
}
|
| 32511 |
-
|
| 32512 |
-
.eael-social-feed-element .muted {
|
| 32513 |
-
color: #999;
|
| 32514 |
-
}
|
| 32515 |
-
|
| 32516 |
-
.eael-social-feed-element a.muted:hover,
|
| 32517 |
-
.eael-social-feed-element a.muted:focus {
|
| 32518 |
-
color: #808080;
|
| 32519 |
-
}
|
| 32520 |
-
|
| 32521 |
-
.eael-social-feed-element {
|
| 32522 |
-
-webkit-transition: 0.25s;
|
| 32523 |
-
-o-transition: 0.25s;
|
| 32524 |
-
transition: 0.25s;
|
| 32525 |
-
-webkit-backface-visibility: hidden;
|
| 32526 |
-
backface-visibility: hidden;
|
| 32527 |
-
margin: -1px;
|
| 32528 |
-
margin-top: 25px;
|
| 32529 |
-
color: #333;
|
| 32530 |
-
text-align: left;
|
| 32531 |
-
font-size: 14px;
|
| 32532 |
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
| 32533 |
-
line-height: 16px;
|
| 32534 |
-
}
|
| 32535 |
-
|
| 32536 |
-
.eael-social-feed-element .eael-content {
|
| 32537 |
-
padding: 20px 15px 15px;
|
| 32538 |
-
-webkit-transition: .4s;
|
| 32539 |
-
-o-transition: .4s;
|
| 32540 |
-
transition: .4s;
|
| 32541 |
-
background: #fff;
|
| 32542 |
-
}
|
| 32543 |
-
|
| 32544 |
-
.eael-social-feed-element .social-network-icon {
|
| 32545 |
-
opacity: 0.7;
|
| 32546 |
-
}
|
| 32547 |
-
|
| 32548 |
-
.eael-social-feed-element .author-title {
|
| 32549 |
-
color: #444;
|
| 32550 |
-
line-height: 1.5em;
|
| 32551 |
-
font-weight: 500;
|
| 32552 |
}
|
| 32553 |
-
|
| 32554 |
-
|
| 32555 |
-
.media-body .fa-twitter {
|
| 32556 |
-
color: #1da1f2;
|
| 32557 |
-
margin-right: 8px;
|
| 32558 |
}
|
| 32559 |
-
|
| 32560 |
-
|
| 32561 |
-
|
| 32562 |
-
margin-right: 8px;
|
| 32563 |
}
|
| 32564 |
-
|
| 32565 |
-
|
| 32566 |
-
|
| 32567 |
-
margin-
|
| 32568 |
-
display: block;
|
| 32569 |
}
|
| 32570 |
-
|
| 32571 |
-
|
| 32572 |
-
.eael-social-feed-wrapper {
|
| 32573 |
-
width: 100%;
|
| 32574 |
height: auto;
|
| 32575 |
-
|
| 32576 |
-
|
| 32577 |
-
}
|
| 32578 |
-
|
| 32579 |
-
.eael-loading-feed {
|
| 32580 |
-
display: none;
|
| 32581 |
-
position: absolute;
|
| 32582 |
-
width: 100%;
|
| 32583 |
-
height: 100%;
|
| 32584 |
-
top: 0px;
|
| 32585 |
-
left: 0px;
|
| 32586 |
-
bottom: 0px;
|
| 32587 |
-
right: 0px;
|
| 32588 |
-
}
|
| 32589 |
-
|
| 32590 |
-
.eael-loading-feed.show-loading {
|
| 32591 |
-
display: block;
|
| 32592 |
-
text-align: center;
|
| 32593 |
-
z-index: 10;
|
| 32594 |
-
display: -webkit-box;
|
| 32595 |
-
display: -webkit-flex;
|
| 32596 |
-
display: -ms-flexbox;
|
| 32597 |
-
display: flex;
|
| 32598 |
-
-webkit-box-align: center;
|
| 32599 |
-
-webkit-align-items: center;
|
| 32600 |
-
-ms-flex-align: center;
|
| 32601 |
-
align-items: center;
|
| 32602 |
-
-webkit-box-pack: center;
|
| 32603 |
-
-webkit-justify-content: center;
|
| 32604 |
-
-ms-flex-pack: center;
|
| 32605 |
-
justify-content: center;
|
| 32606 |
-
-webkit-transition: .5s;
|
| 32607 |
-
-o-transition: .5s;
|
| 32608 |
-
transition: .5s;
|
| 32609 |
}
|
| 32610 |
-
|
| 32611 |
-
.eael-loading-feed .loader {
|
| 32612 |
-
border: 3px solid #f3f3f3;
|
| 32613 |
border-radius: 50%;
|
| 32614 |
-
border-top: 3px solid #3498db;
|
| 32615 |
-
width: 30px;
|
| 32616 |
-
height: 30px;
|
| 32617 |
-
-webkit-animation: spin 2s linear infinite;
|
| 32618 |
-
/* Safari */
|
| 32619 |
-
animation: spin 2s linear infinite;
|
| 32620 |
-
margin: 0 auto;
|
| 32621 |
}
|
| 32622 |
-
|
| 32623 |
-
/*--- Safari ---*/
|
| 32624 |
-
@-webkit-keyframes spin {
|
| 32625 |
-
0% {
|
| 32626 |
-
-webkit-transform: rotate(0deg);
|
| 32627 |
-
}
|
| 32628 |
-
100% {
|
| 32629 |
-
-webkit-transform: rotate(360deg);
|
| 32630 |
-
}
|
| 32631 |
-
}
|
| 32632 |
-
@keyframes spin {
|
| 32633 |
-
0% {
|
| 32634 |
-
-webkit-transform: rotate(0deg);
|
| 32635 |
-
transform: rotate(0deg);
|
| 32636 |
-
}
|
| 32637 |
-
100% {
|
| 32638 |
-
-webkit-transform: rotate(360deg);
|
| 32639 |
-
transform: rotate(360deg);
|
| 32640 |
-
}
|
| 32641 |
-
}
|
| 32642 |
-
/*--- List View ---*/
|
| 32643 |
-
.eael-social-feed-container.list-view .eael-social-feed-element {
|
| 32644 |
-
margin: 15px;
|
| 32645 |
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
| 32646 |
-
background: none;
|
| 32647 |
-
}
|
| 32648 |
-
|
| 32649 |
-
/*--- Carousel View ---*/
|
| 32650 |
-
.eael-social-feed-container.carousel-view {
|
| 32651 |
-
width: 100%;
|
| 32652 |
-
height: auto;
|
| 32653 |
-
}
|
| 32654 |
-
|
| 32655 |
-
/*--- Masonry View ---*/
|
| 32656 |
-
.eael-twitter-feed-container.masonry-view .eael-social-feed-element {
|
| 32657 |
-
width: 33.33%;
|
| 32658 |
-
margin-top: 0px;
|
| 32659 |
float: left;
|
| 32660 |
}
|
| 32661 |
-
|
| 32662 |
-
|
| 32663 |
-
|
| 32664 |
-
}
|
| 32665 |
-
|
| 32666 |
-
/*--- Editor Related Style ---*/
|
| 32667 |
-
.eael-social-feed-avatar-circle .eael-social-feed-element .media-object {
|
| 32668 |
-
border-radius: 50%;
|
| 32669 |
}
|
| 32670 |
-
|
| 32671 |
-
|
| 32672 |
-
|
|
|
|
| 32673 |
}
|
| 32674 |
-
|
| 32675 |
-
|
| 32676 |
-
|
|
|
|
|
|
|
| 32677 |
}
|
| 32678 |
-
|
| 32679 |
-
|
| 32680 |
-
@media only screen and (min-width: 768px) and (max-width: 992px) {
|
| 32681 |
-
.eael-twitter-feed-container.masonry-view .eael-social-feed-element {
|
| 32682 |
-
width: 50% !important;
|
| 32683 |
-
}
|
| 32684 |
}
|
| 32685 |
-
|
| 32686 |
-
|
| 32687 |
-
|
| 32688 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32689 |
}
|
| 32690 |
|
| 32691 |
/*----------------------*/
|
|
@@ -32896,6 +38979,60 @@ span.eael-testimonial-quote {
|
|
| 32896 |
}
|
| 32897 |
}
|
| 32898 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32899 |
/*----------------------------*/
|
| 32900 |
/* 30. Advance Tabs
|
| 32901 |
/*----------------------------*/
|
|
@@ -32944,6 +39081,7 @@ span.eael-testimonial-quote {
|
|
| 32944 |
-ms-flex-align: center;
|
| 32945 |
align-items: center;
|
| 32946 |
text-align: center;
|
|
|
|
| 32947 |
}
|
| 32948 |
|
| 32949 |
.eael-advance-tabs .eael-tabs-nav > ul li:after {
|
|
@@ -32963,6 +39101,18 @@ span.eael-testimonial-quote {
|
|
| 32963 |
display: none;
|
| 32964 |
}
|
| 32965 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32966 |
.eael-advance-tabs.active-caret-on .eael-tabs-nav > ul li.active:after,
|
| 32967 |
.eael-advance-tabs.active-caret-on .eael-tabs-nav > ul li.active-default:after {
|
| 32968 |
display: none;
|
|
@@ -33135,60 +39285,6 @@ span.eael-testimonial-quote {
|
|
| 33135 |
}
|
| 33136 |
}
|
| 33137 |
|
| 33138 |
-
/* ----------------------------------------- */
|
| 33139 |
-
/* 22. Caldera Contact Form Styler
|
| 33140 |
-
/* ----------------------------------------- */
|
| 33141 |
-
.eael-caldera-form-align-left,
|
| 33142 |
-
.eael-caldera-form-btn-align-left {
|
| 33143 |
-
text-align: left;
|
| 33144 |
-
}
|
| 33145 |
-
|
| 33146 |
-
.eael-caldera-form-align-right,
|
| 33147 |
-
.eael-caldera-form-btn-align-right {
|
| 33148 |
-
text-align: right;
|
| 33149 |
-
}
|
| 33150 |
-
|
| 33151 |
-
.eael-caldera-form-align-center,
|
| 33152 |
-
.eael-caldera-form-btn-align-center {
|
| 33153 |
-
text-align: center;
|
| 33154 |
-
}
|
| 33155 |
-
|
| 33156 |
-
.eael-caldera-form .control-label {
|
| 33157 |
-
display: none;
|
| 33158 |
-
}
|
| 33159 |
-
|
| 33160 |
-
.eael-caldera-form-labels-yes .control-label {
|
| 33161 |
-
display: block;
|
| 33162 |
-
}
|
| 33163 |
-
|
| 33164 |
-
.eael-caldera-form-button-center .form-group input[type=button],
|
| 33165 |
-
.eael-caldera-form-button-center .form-group input[type=submit] {
|
| 33166 |
-
display: block;
|
| 33167 |
-
margin: 0 auto;
|
| 33168 |
-
}
|
| 33169 |
-
|
| 33170 |
-
.eael-caldera-form-button-right .form-group input[type=button],
|
| 33171 |
-
.eael-caldera-form-button-right .form-group input[type=submit] {
|
| 33172 |
-
float: right;
|
| 33173 |
-
}
|
| 33174 |
-
|
| 33175 |
-
.eael-caldera-form .intl-tel-input {
|
| 33176 |
-
display: inherit;
|
| 33177 |
-
}
|
| 33178 |
-
|
| 33179 |
-
.eael-custom-radio-checkbox .caldera-grid input[type=checkbox],
|
| 33180 |
-
.eael-custom-radio-checkbox .caldera-grid input[type=radio] {
|
| 33181 |
-
border-style: solid;
|
| 33182 |
-
border-width: 0;
|
| 33183 |
-
padding: 3px;
|
| 33184 |
-
-webkit-appearance: none;
|
| 33185 |
-
}
|
| 33186 |
-
|
| 33187 |
-
.eael-caldera-form-button-full-width .form-group input[type=submit],
|
| 33188 |
-
.eael-caldera-form-button-full-width .form-group input[type=button] {
|
| 33189 |
-
width: 100%;
|
| 33190 |
-
}
|
| 33191 |
-
|
| 33192 |
/*--------------------------*/
|
| 33193 |
/* 19. Call To Action
|
| 33194 |
/*-------------------------*/
|
|
@@ -33664,9 +39760,6 @@ span.eael-testimonial-quote {
|
|
| 33664 |
margin: 0 auto;
|
| 33665 |
}
|
| 33666 |
|
| 33667 |
-
/*----------------------------*/
|
| 33668 |
-
/* 29. Content Ticker
|
| 33669 |
-
/*----------------------------*/
|
| 33670 |
.eael-ticker-wrap {
|
| 33671 |
overflow: hidden;
|
| 33672 |
display: -webkit-box;
|
|
@@ -34527,62 +40620,6 @@ table.eael-data-table .sorting_asc.sorting-none:after {
|
|
| 34527 |
color: #f54;
|
| 34528 |
}
|
| 34529 |
|
| 34530 |
-
/*--------------------------*/
|
| 34531 |
-
/* 03. Fancy Text Style
|
| 34532 |
-
/*--------------------------*/
|
| 34533 |
-
.eael-fancy-text-container p {
|
| 34534 |
-
margin: 0;
|
| 34535 |
-
}
|
| 34536 |
-
|
| 34537 |
-
.eael-fancy-text-strings,
|
| 34538 |
-
.eael-fancy-text-prefix,
|
| 34539 |
-
.eael-fancy-text-suffix {
|
| 34540 |
-
display: inline-block;
|
| 34541 |
-
}
|
| 34542 |
-
|
| 34543 |
-
.morphext > .animated {
|
| 34544 |
-
display: inline-block;
|
| 34545 |
-
}
|
| 34546 |
-
|
| 34547 |
-
.typed-cursor {
|
| 34548 |
-
opacity: 1;
|
| 34549 |
-
-webkit-animation: blink_cursor 0.7s infinite;
|
| 34550 |
-
animation: blink_cursor 0.7s infinite;
|
| 34551 |
-
}
|
| 34552 |
-
|
| 34553 |
-
@keyframes blink_cursor {
|
| 34554 |
-
0% {
|
| 34555 |
-
opacity: 1;
|
| 34556 |
-
}
|
| 34557 |
-
50% {
|
| 34558 |
-
opacity: 0;
|
| 34559 |
-
}
|
| 34560 |
-
100% {
|
| 34561 |
-
opacity: 1;
|
| 34562 |
-
}
|
| 34563 |
-
}
|
| 34564 |
-
@-webkit-keyframes blink_cursor {
|
| 34565 |
-
0% {
|
| 34566 |
-
opacity: 1;
|
| 34567 |
-
}
|
| 34568 |
-
50% {
|
| 34569 |
-
opacity: 0;
|
| 34570 |
-
}
|
| 34571 |
-
100% {
|
| 34572 |
-
opacity: 1;
|
| 34573 |
-
}
|
| 34574 |
-
}
|
| 34575 |
-
/*--- Style 2 ---*/
|
| 34576 |
-
.eael-fancy-text-container.style-2 {
|
| 34577 |
-
font-size: 24px;
|
| 34578 |
-
}
|
| 34579 |
-
|
| 34580 |
-
.eael-fancy-text-container.style-2 .eael-fancy-text-strings {
|
| 34581 |
-
background: #ff5544;
|
| 34582 |
-
color: #fff;
|
| 34583 |
-
padding: 10px 25px;
|
| 34584 |
-
}
|
| 34585 |
-
|
| 34586 |
/*----------------------------*/
|
| 34587 |
/* 35. Feature List
|
| 34588 |
/*----------------------------*/
|
|
@@ -36148,6 +42185,61 @@ a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
|
| 36148 |
}
|
| 36149 |
}
|
| 36150 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36151 |
/*---------------------------*/
|
| 36152 |
/* 18. Flipbox Style
|
| 36153 |
/*---------------------------*/
|
|
@@ -39765,6 +45857,27 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 39765 |
margin: 0 0 0 auto;
|
| 39766 |
}
|
| 39767 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39768 |
/*----------------------------*/
|
| 39769 |
/* 07. Team Members Styles
|
| 39770 |
/*----------------------------*/
|
|
@@ -40531,213 +46644,92 @@ span.eael-testimonial-quote {
|
|
| 40531 |
}
|
| 40532 |
}
|
| 40533 |
|
| 40534 |
-
.eael-twitter-feed
|
| 40535 |
-
content: "";
|
| 40536 |
-
clear: both;
|
| 40537 |
-
}
|
| 40538 |
-
|
| 40539 |
-
.eael-twitter-feed-container::before, .eael-twitter-feed-container::after {
|
| 40540 |
content: "";
|
| 40541 |
clear: both;
|
| 40542 |
}
|
| 40543 |
|
| 40544 |
-
.eael-
|
| 40545 |
-
overflow: hidden;
|
| 40546 |
-
zoom: 1;
|
| 40547 |
-
overflow: visible;
|
| 40548 |
-
padding: 10px;
|
| 40549 |
-
background: none;
|
| 40550 |
-
-webkit-transition: 0.25s;
|
| 40551 |
-
-o-transition: 0.25s;
|
| 40552 |
-
transition: 0.25s;
|
| 40553 |
-
-webkit-backface-visibility: hidden;
|
| 40554 |
-
backface-visibility: hidden;
|
| 40555 |
-
margin: -1px;
|
| 40556 |
-
margin-top: 25px;
|
| 40557 |
-
color: #333;
|
| 40558 |
-
text-align: left;
|
| 40559 |
-
font-size: 14px;
|
| 40560 |
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
| 40561 |
-
line-height: 16px;
|
| 40562 |
-
}
|
| 40563 |
-
.eael-social-feed-element .pull-left {
|
| 40564 |
float: left;
|
| 40565 |
-
margin-right: 10px;
|
| 40566 |
}
|
| 40567 |
-
|
| 40568 |
-
|
|
|
|
|
|
|
| 40569 |
}
|
| 40570 |
-
|
| 40571 |
-
|
| 40572 |
-
|
| 40573 |
-
|
| 40574 |
-
vertical-align: middle;
|
| 40575 |
-
-ms-interpolation-mode: bicubic;
|
| 40576 |
}
|
| 40577 |
-
|
| 40578 |
-
|
| 40579 |
-
|
|
|
|
| 40580 |
}
|
| 40581 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40582 |
color: #0088cc;
|
| 40583 |
text-decoration: none;
|
| 40584 |
}
|
| 40585 |
-
.eael-
|
| 40586 |
-
outline: thin dotted #333;
|
| 40587 |
-
outline: 5px auto -webkit-focus-ring-color;
|
| 40588 |
-
outline-offset: -2px;
|
| 40589 |
-
}
|
| 40590 |
-
.eael-social-feed-element a:hover, .eael-social-feed-element a:active {
|
| 40591 |
outline: 0;
|
| 40592 |
color: #005580;
|
| 40593 |
-
text-decoration: underline;
|
| 40594 |
}
|
| 40595 |
-
.eael-
|
| 40596 |
-
|
| 40597 |
-
}
|
| 40598 |
-
.eael-social-feed-element strong {
|
| 40599 |
-
font-weight: bold;
|
| 40600 |
-
}
|
| 40601 |
-
.eael-social-feed-element em {
|
| 40602 |
-
font-style: italic;
|
| 40603 |
-
}
|
| 40604 |
-
.eael-social-feed-element p {
|
| 40605 |
-
margin: 0 0 10px;
|
| 40606 |
-
}
|
| 40607 |
-
.eael-social-feed-element .media-body > p {
|
| 40608 |
-
margin-bottom: 4px;
|
| 40609 |
-
min-height: 20px;
|
| 40610 |
-
}
|
| 40611 |
-
.eael-social-feed-element p.social-feed-text {
|
| 40612 |
-
margin: 0;
|
| 40613 |
-
overflow: hidden;
|
| 40614 |
-
-o-text-overflow: ellipsis;
|
| 40615 |
-
text-overflow: ellipsis;
|
| 40616 |
-
-webkit-line-clamp: 5;
|
| 40617 |
-
-webkit-box-orient: vertical;
|
| 40618 |
-
}
|
| 40619 |
-
.eael-social-feed-element .media-body {
|
| 40620 |
-
overflow: hidden;
|
| 40621 |
-
zoom: 1;
|
| 40622 |
-
overflow: visible;
|
| 40623 |
}
|
| 40624 |
-
.eael-
|
| 40625 |
-
|
| 40626 |
-
margin-
|
| 40627 |
-
width: 16px;
|
| 40628 |
}
|
| 40629 |
-
.eael-
|
| 40630 |
-
|
| 40631 |
-
|
| 40632 |
-
|
| 40633 |
}
|
| 40634 |
-
.eael-
|
| 40635 |
-
|
|
|
|
|
|
|
|
|
|
| 40636 |
}
|
| 40637 |
-
.eael-
|
| 40638 |
-
display: block;
|
| 40639 |
-
width: 48px;
|
| 40640 |
border-radius: 50%;
|
| 40641 |
}
|
| 40642 |
-
.eael-
|
| 40643 |
-
|
| 40644 |
-
}
|
| 40645 |
-
.eael-social-feed-element .media-list {
|
| 40646 |
-
margin-left: 0;
|
| 40647 |
-
list-style: none;
|
| 40648 |
-
}
|
| 40649 |
-
.eael-social-feed-element .muted {
|
| 40650 |
-
color: #999;
|
| 40651 |
-
}
|
| 40652 |
-
.eael-social-feed-element a.muted:hover, .eael-social-feed-element a.muted:focus {
|
| 40653 |
-
color: #808080;
|
| 40654 |
-
}
|
| 40655 |
-
.eael-social-feed-element .eael-content {
|
| 40656 |
-
padding: 20px 15px 15px;
|
| 40657 |
-
-webkit-transition: 0.4s;
|
| 40658 |
-
-o-transition: 0.4s;
|
| 40659 |
-
transition: 0.4s;
|
| 40660 |
-
background: #fff;
|
| 40661 |
}
|
| 40662 |
-
.eael-
|
| 40663 |
-
|
|
|
|
| 40664 |
}
|
| 40665 |
-
.eael-
|
| 40666 |
color: #444;
|
| 40667 |
line-height: 1.5em;
|
| 40668 |
-
font-weight:
|
| 40669 |
-
}
|
| 40670 |
-
.eael-social-feed-element .read-more-link {
|
| 40671 |
-
margin-top: 9px;
|
| 40672 |
-
display: block;
|
| 40673 |
-
}
|
| 40674 |
-
|
| 40675 |
-
.media-body .fa-twitter {
|
| 40676 |
-
color: #1da1f2;
|
| 40677 |
-
margin-right: 8px;
|
| 40678 |
-
}
|
| 40679 |
-
.media-body .fa-facebook {
|
| 40680 |
-
color: #3b5998;
|
| 40681 |
-
margin-right: 8px;
|
| 40682 |
-
}
|
| 40683 |
-
|
| 40684 |
-
/*--- Loading Loader ---*/
|
| 40685 |
-
.eael-social-feed-wrapper {
|
| 40686 |
-
width: 100%;
|
| 40687 |
-
height: auto;
|
| 40688 |
-
position: relative;
|
| 40689 |
-
z-index: 0;
|
| 40690 |
-
}
|
| 40691 |
-
|
| 40692 |
-
/*--- List View ---*/
|
| 40693 |
-
.eael-social-feed-container.list-view .eael-social-feed-element {
|
| 40694 |
-
margin: 15px;
|
| 40695 |
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
| 40696 |
-
background: none;
|
| 40697 |
-
}
|
| 40698 |
-
.eael-social-feed-container.carousel-view {
|
| 40699 |
-
width: 100%;
|
| 40700 |
-
height: auto;
|
| 40701 |
-
}
|
| 40702 |
-
|
| 40703 |
-
/*--- Masonry View ---*/
|
| 40704 |
-
.eael-twitter-feed-container.masonry-view .eael-social-feed-element {
|
| 40705 |
-
width: 33.33%;
|
| 40706 |
-
margin-top: 0px;
|
| 40707 |
-
float: left;
|
| 40708 |
-
}
|
| 40709 |
-
|
| 40710 |
-
.eael-social-feed-element .eael-content {
|
| 40711 |
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
| 40712 |
-
}
|
| 40713 |
-
|
| 40714 |
-
.eael-social-feed-avatar-circle .eael-social-feed-element .media-object {
|
| 40715 |
-
border-radius: 50%;
|
| 40716 |
-
}
|
| 40717 |
-
|
| 40718 |
-
.eael-social-feed-avatar-square .eael-social-feed-element .media-object {
|
| 40719 |
-
border-radius: 0%;
|
| 40720 |
}
|
| 40721 |
-
|
| 40722 |
-
|
| 40723 |
-
|
| 40724 |
-
|
| 40725 |
-
|
| 40726 |
-
.eael-social-feed-element
|
| 40727 |
-
.social-feed-date {
|
| 40728 |
-
text-align: left !important;
|
| 40729 |
}
|
| 40730 |
-
|
| 40731 |
-
|
| 40732 |
-
@media only screen and (min-width: 768px) and (max-width: 992px) {
|
| 40733 |
-
.eael-twitter-feed-container.masonry-view .eael-social-feed-element {
|
| 40734 |
-
width: 50% !important;
|
| 40735 |
-
}
|
| 40736 |
}
|
| 40737 |
-
|
| 40738 |
-
|
| 40739 |
-
|
| 40740 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40741 |
}
|
| 40742 |
|
| 40743 |
/*----------------------*/
|
|
@@ -40996,6 +46988,7 @@ span.eael-testimonial-quote {
|
|
| 40996 |
-ms-flex-align: center;
|
| 40997 |
align-items: center;
|
| 40998 |
text-align: center;
|
|
|
|
| 40999 |
}
|
| 41000 |
|
| 41001 |
.eael-advance-tabs .eael-tabs-nav > ul li:after {
|
|
@@ -41015,6 +47008,12 @@ span.eael-testimonial-quote {
|
|
| 41015 |
display: none;
|
| 41016 |
}
|
| 41017 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41018 |
.eael-advance-tabs.active-caret-on .eael-tabs-nav > ul li.active:after,
|
| 41019 |
.eael-advance-tabs.active-caret-on .eael-tabs-nav > ul li.active-default:after {
|
| 41020 |
display: none;
|
|
@@ -41716,9 +47715,6 @@ span.eael-testimonial-quote {
|
|
| 41716 |
margin: 0 auto;
|
| 41717 |
}
|
| 41718 |
|
| 41719 |
-
/*----------------------------*/
|
| 41720 |
-
/* 29. Content Ticker
|
| 41721 |
-
/*----------------------------*/
|
| 41722 |
.eael-ticker-wrap {
|
| 41723 |
overflow: hidden;
|
| 41724 |
display: -webkit-box;
|
|
@@ -42579,14 +48575,14 @@ table.eael-data-table .sorting_asc.sorting-none:after {
|
|
| 42579 |
color: #f54;
|
| 42580 |
}
|
| 42581 |
|
| 42582 |
-
/*--------------------------*/
|
| 42583 |
-
/* 03. Fancy Text Style
|
| 42584 |
-
/*--------------------------*/
|
| 42585 |
.eael-fancy-text-container p {
|
| 42586 |
margin: 0;
|
| 42587 |
}
|
| 42588 |
|
| 42589 |
-
.eael-fancy-text-strings
|
|
|
|
|
|
|
|
|
|
| 42590 |
.eael-fancy-text-prefix,
|
| 42591 |
.eael-fancy-text-suffix {
|
| 42592 |
display: inline-block;
|
|
@@ -42624,7 +48620,6 @@ table.eael-data-table .sorting_asc.sorting-none:after {
|
|
| 42624 |
opacity: 1;
|
| 42625 |
}
|
| 42626 |
}
|
| 42627 |
-
/*--- Style 2 ---*/
|
| 42628 |
.eael-fancy-text-container.style-2 {
|
| 42629 |
font-size: 24px;
|
| 42630 |
}
|
|
@@ -47817,6 +53812,27 @@ div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
|
| 47817 |
margin: 0 0 0 auto;
|
| 47818 |
}
|
| 47819 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47820 |
/*----------------------------*/
|
| 47821 |
/* 07. Team Members Styles
|
| 47822 |
/*----------------------------*/
|
| 1 |
+
|
| 2 |
/*------------------------------*/
|
| 3 |
/* 31. Advance Accordion
|
| 4 |
/*------------------------------*/
|
| 5 |
.eael-adv-accordion {
|
| 6 |
width: auto;
|
| 7 |
height: auto;
|
|
|
|
|
|
|
| 8 |
transition: all 0.3s ease-in-out;
|
| 9 |
}
|
| 10 |
|
| 14 |
font-size: 1rem;
|
| 15 |
font-weight: 600;
|
| 16 |
line-height: 1;
|
|
|
|
|
|
|
| 17 |
transition: all 0.3s ease-in-out;
|
|
|
|
|
|
|
|
|
|
| 18 |
display: flex;
|
| 19 |
+
justify-content: space-between;
|
| 20 |
+
align-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
cursor: pointer;
|
| 22 |
}
|
| 23 |
|
| 24 |
.eael-adv-accordion .eael-accordion-list .eael-accordion-header .fa-toggle {
|
| 25 |
+
transform: rotate(0deg);
|
|
|
|
|
|
|
| 26 |
z-index: 10;
|
|
|
|
|
|
|
| 27 |
transition: all 0.3s ease-in-out;
|
| 28 |
}
|
| 29 |
|
| 30 |
.eael-adv-accordion .eael-accordion-list .eael-accordion-header.active .fa-toggle {
|
| 31 |
+
transform: rotate(90deg);
|
|
|
|
|
|
|
| 32 |
z-index: 10;
|
|
|
|
|
|
|
| 33 |
transition: all 0.3s ease-in-out;
|
| 34 |
}
|
| 35 |
|
| 42 |
display: none;
|
| 43 |
border: 1px solid #eee;
|
| 44 |
padding: 15px;
|
| 45 |
+
box-sizing: border-box;
|
|
|
|
| 46 |
font-size: 1rem;
|
| 47 |
line-height: 1.7;
|
| 48 |
}
|
| 57 |
|
| 58 |
@-webkit-keyframes rotate-90 {
|
| 59 |
0% {
|
| 60 |
+
transform: rotateY(0deg);
|
|
|
|
| 61 |
}
|
| 62 |
100% {
|
| 63 |
+
transform: rotateY(-180deg);
|
|
|
|
| 64 |
}
|
| 65 |
}
|
| 66 |
|
| 67 |
@keyframes rotate-90 {
|
| 68 |
0% {
|
| 69 |
+
transform: rotateY(0deg);
|
|
|
|
| 70 |
}
|
| 71 |
100% {
|
| 72 |
+
transform: rotateY(-180deg);
|
|
|
|
| 73 |
}
|
| 74 |
}
|
| 75 |
@-webkit-keyframes fadeIn {
|
| 76 |
0% {
|
| 77 |
opacity: 1;
|
|
|
|
|
|
|
| 78 |
transition: all 0.3s ease-in-out;
|
| 79 |
}
|
| 80 |
100% {
|
| 81 |
opacity: 1;
|
|
|
|
|
|
|
| 82 |
transition: all 0.3s ease-in-out;
|
| 83 |
}
|
| 84 |
}
|
| 85 |
@keyframes fadeIn {
|
| 86 |
0% {
|
| 87 |
opacity: 1;
|
|
|
|
|
|
|
| 88 |
transition: all 0.3s ease-in-out;
|
| 89 |
}
|
| 90 |
100% {
|
| 91 |
opacity: 1;
|
|
|
|
|
|
|
| 92 |
transition: all 0.3s ease-in-out;
|
| 93 |
}
|
| 94 |
}
|
| 105 |
padding: 0px;
|
| 106 |
margin: 0px;
|
| 107 |
list-style-type: none;
|
|
|
|
|
|
|
|
|
|
| 108 |
display: flex;
|
| 109 |
+
justify-content: flex-start;
|
| 110 |
+
align-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 111 |
z-index: 1;
|
| 112 |
}
|
| 113 |
|
| 114 |
.eael-advance-tabs .eael-tabs-nav > ul li {
|
| 115 |
position: relative;
|
| 116 |
padding: 1em 1.5em;
|
| 117 |
+
flex: 1 1 auto;
|
|
|
|
|
|
|
|
|
|
| 118 |
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
| 119 |
display: flex;
|
| 120 |
+
justify-content: center;
|
| 121 |
+
align-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 122 |
text-align: center;
|
| 123 |
}
|
| 124 |
|
| 150 |
}
|
| 151 |
|
| 152 |
.eael-tabs-content {
|
|
|
|
|
|
|
|
|
|
| 153 |
display: flex;
|
| 154 |
+
flex: 1 1 auto;
|
|
|
|
|
|
|
|
|
|
| 155 |
}
|
| 156 |
|
| 157 |
.eael-advance-tabs .eael-tabs-content > div {
|
| 176 |
}
|
| 177 |
|
| 178 |
.eael-tab-top-icon li {
|
|
|
|
|
|
|
|
|
|
| 179 |
display: flex;
|
| 180 |
+
flex-wrap: wrap;
|
|
|
|
|
|
|
| 181 |
text-align: center;
|
| 182 |
}
|
| 183 |
|
| 184 |
.eael-tab-top-icon li a {
|
|
|
|
|
|
|
|
|
|
| 185 |
display: flex;
|
| 186 |
+
flex-wrap: wrap;
|
|
|
|
|
|
|
| 187 |
text-align: center;
|
| 188 |
}
|
| 189 |
|
| 190 |
.eael-tab-top-icon li .fa,
|
| 191 |
.eael-tab-top-icon li .eael-tab-title {
|
| 192 |
+
flex: 1 1 100%;
|
|
|
|
|
|
|
|
|
|
| 193 |
line-height: 1;
|
| 194 |
}
|
| 195 |
|
| 199 |
|
| 200 |
/*--- Vertical Tabs ---*/
|
| 201 |
.eael-advance-tabs.eael-tabs-vertical {
|
|
|
|
|
|
|
|
|
|
| 202 |
display: flex;
|
| 203 |
}
|
| 204 |
|
| 205 |
.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav {
|
| 206 |
+
flex: 0 0 auto;
|
|
|
|
|
|
|
|
|
|
| 207 |
}
|
| 208 |
|
| 209 |
.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav > ul {
|
| 210 |
+
flex-flow: column wrap;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 211 |
}
|
| 212 |
|
| 213 |
.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav > ul > li {
|
| 214 |
width: 100%;
|
| 215 |
+
justify-content: start;
|
|
|
|
|
|
|
|
|
|
| 216 |
}
|
| 217 |
|
| 218 |
.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav > ul li::after {
|
| 228 |
|
| 229 |
@media only screen and (max-width: 767px) {
|
| 230 |
.eael-advance-tabs .eael-tabs-nav > ul {
|
| 231 |
+
flex-wrap: wrap;
|
|
|
|
|
|
|
| 232 |
}
|
| 233 |
|
| 234 |
.eael-advance-tabs .eael-tabs-nav > ul li {
|
| 235 |
+
flex: 1 100%;
|
|
|
|
|
|
|
|
|
|
| 236 |
}
|
| 237 |
|
| 238 |
.eael-advance-tabs.eael-tabs-vertical {
|
| 239 |
+
flex-wrap: wrap;
|
|
|
|
|
|
|
| 240 |
}
|
| 241 |
|
| 242 |
.eael-advance-tabs.eael-tabs-vertical div.eael-tabs-nav {
|
| 243 |
+
flex: 1 100%;
|
|
|
|
|
|
|
|
|
|
| 244 |
}
|
| 245 |
|
| 246 |
.eael-advance-tabs.eael-tabs-vertical ul {
|
| 247 |
+
flex: 1 100%;
|
|
|
|
|
|
|
|
|
|
| 248 |
}
|
| 249 |
|
| 250 |
.eael-advance-tabs.eael-tabs-vertical ul li {
|
| 251 |
+
flex: 1 100%;
|
|
|
|
|
|
|
|
|
|
| 252 |
}
|
| 253 |
|
| 254 |
div.eael-advance-tabs.eael-tabs-vertical div.eael-tabs-nav > ul li::after {
|
| 365 |
background-image: url("../img/bg.jpg");
|
| 366 |
background-repeat: no-repeat;
|
| 367 |
background-position: center;
|
| 368 |
+
background-size: cover;
|
|
|
|
| 369 |
position: relative;
|
| 370 |
z-index: 0;
|
| 371 |
color: rgba(255, 255, 255, 0.7);
|
| 398 |
/*--- Cta Flex ---*/
|
| 399 |
.eael-call-to-action.cta-flex,
|
| 400 |
.eael-call-to-action.cta-icon-flex {
|
|
|
|
|
|
|
|
|
|
| 401 |
display: flex;
|
| 402 |
+
justify-content: space-between;
|
| 403 |
+
align-items: flex-start;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 404 |
}
|
| 405 |
|
| 406 |
/*--- Cta Icon Flex ---*/
|
| 407 |
.eael-call-to-action.cta-icon-flex .icon {
|
| 408 |
+
flex-grow: 1;
|
|
|
|
|
|
|
|
|
|
| 409 |
font-size: 80px;
|
| 410 |
text-align: left;
|
| 411 |
line-height: 130px;
|
| 412 |
}
|
| 413 |
|
| 414 |
.eael-call-to-action.cta-icon-flex .action {
|
| 415 |
+
flex-grow: 1;
|
|
|
|
|
|
|
|
|
|
| 416 |
text-align: right;
|
| 417 |
padding-top: 22px;
|
| 418 |
+
flex-basis: 22%;
|
|
|
|
|
|
|
| 419 |
}
|
| 420 |
|
| 421 |
.eael-call-to-action.cta-icon-flex .content {
|
| 422 |
+
flex-grow: 1;
|
|
|
|
|
|
|
|
|
|
| 423 |
padding: 0px 30px;
|
| 424 |
}
|
| 425 |
|
| 426 |
/*--- Cta Flex ---*/
|
| 427 |
.eael-call-to-action.cta-flex .content {
|
| 428 |
padding: 0px 15px;
|
| 429 |
+
flex-grow: 1;
|
|
|
|
|
|
|
|
|
|
| 430 |
}
|
| 431 |
|
| 432 |
.eael-call-to-action.cta-flex .action {
|
| 433 |
+
flex-grow: 1;
|
|
|
|
|
|
|
|
|
|
| 434 |
text-align: right;
|
| 435 |
padding-top: 25px;
|
| 436 |
+
flex-basis: 23%;
|
|
|
|
|
|
|
| 437 |
}
|
| 438 |
|
| 439 |
/*--- Cta Button ---*/
|
| 445 |
font-size: 16px;
|
| 446 |
text-decoration: none;
|
| 447 |
color: #4d4d4d;
|
|
|
|
|
|
|
| 448 |
transition: .5s;
|
|
|
|
| 449 |
-ms-box-shadow: 0px 0px 3px -1px rgba(0, 0, 0, 0.2);
|
| 450 |
box-shadow: 0px 0px 3px -1px rgba(0, 0, 0, 0.2);
|
| 451 |
margin-right: 10px;
|
| 466 |
.eael-call-to-action .cta-button:hover {
|
| 467 |
color: #fff;
|
| 468 |
background: #3F51B5;
|
|
|
|
| 469 |
-ms-box-shadow: 0px 1px 12px 1px rgba(0, 0, 0, 0.1);
|
| 470 |
box-shadow: 0px 1px 12px 1px rgba(0, 0, 0, 0.1);
|
| 471 |
}
|
| 483 |
-webkit-transform: translateY(-100%);
|
| 484 |
-ms-transform: translateY(-100%);
|
| 485 |
z-index: -1;
|
|
|
|
|
|
|
| 486 |
transition: .5s;
|
| 487 |
color: #fff;
|
| 488 |
}
|
| 489 |
|
| 490 |
.eael-call-to-action .cta-button.effect-1:hover::after {
|
|
|
|
|
|
|
| 491 |
transform: translateY(0);
|
| 492 |
}
|
| 493 |
|
| 501 |
top: 0px;
|
| 502 |
left: 0px;
|
| 503 |
z-index: -1;
|
|
|
|
|
|
|
| 504 |
transition: .5s;
|
| 505 |
color: #fff;
|
| 506 |
+
transform: translateX(-100%);
|
|
|
|
|
|
|
| 507 |
}
|
| 508 |
|
| 509 |
.eael-call-to-action .cta-button.effect-2:hover::after {
|
| 510 |
+
transform: translateX(0);
|
|
|
|
|
|
|
| 511 |
}
|
| 512 |
|
| 513 |
/*--- Media Queries ---*/
|
| 514 |
@media only screen and (max-width: 768px) {
|
| 515 |
.eael-call-to-action.cta-flex,
|
| 516 |
.eael-call-to-action.cta-icon-flex {
|
| 517 |
+
flex-wrap: wrap;
|
|
|
|
|
|
|
| 518 |
}
|
| 519 |
|
| 520 |
.eael-call-to-action .title {
|
| 524 |
}
|
| 525 |
|
| 526 |
.eael-call-to-action.cta-icon-flex .icon {
|
| 527 |
+
flex-grow: 1;
|
|
|
|
|
|
|
|
|
|
| 528 |
font-size: 48px;
|
| 529 |
line-height: 90px;
|
| 530 |
text-align: center;
|
| 532 |
|
| 533 |
.eael-call-to-action.cta-flex .content,
|
| 534 |
.eael-call-to-action.cta-icon-flex .content {
|
| 535 |
+
flex-grow: 1;
|
|
|
|
|
|
|
|
|
|
| 536 |
text-align: center;
|
| 537 |
padding: 0px;
|
| 538 |
}
|
| 566 |
|
| 567 |
@-webkit-keyframes "loaderSpin" {
|
| 568 |
0% {
|
| 569 |
+
transform: rotate(0deg);
|
|
|
|
| 570 |
}
|
| 571 |
100% {
|
| 572 |
+
transform: rotate(360deg);
|
|
|
|
| 573 |
}
|
| 574 |
}
|
| 575 |
@keyframes "loaderSpin" {
|
| 576 |
0% {
|
| 577 |
+
transform: rotate(0deg);
|
|
|
|
| 578 |
}
|
| 579 |
100% {
|
| 580 |
+
transform: rotate(360deg);
|
|
|
|
| 581 |
}
|
| 582 |
}
|
| 583 |
.eael-load-more-button-wrap {
|
|
|
|
|
|
|
|
|
|
| 584 |
display: flex;
|
| 585 |
}
|
| 586 |
|
| 587 |
.eael-load-more-button {
|
|
|
|
|
|
|
|
|
|
| 588 |
display: flex;
|
| 589 |
+
align-items: center;
|
| 590 |
+
justify-content: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 591 |
padding: 1em 2em;
|
| 592 |
border: 0px solid;
|
| 593 |
font-size: 16px;
|
| 597 |
left: -100%;
|
| 598 |
top: auto;
|
| 599 |
margin-right: 5px;
|
|
|
|
|
|
|
| 600 |
transition: all .2s;
|
| 601 |
}
|
| 602 |
.eael-load-more-button > span {
|
| 611 |
}
|
| 612 |
|
| 613 |
.eael-btn-loader {
|
| 614 |
+
border-radius: 50%;
|
|
|
|
| 615 |
width: 20px;
|
| 616 |
height: 20px;
|
| 617 |
font-size: 10px;
|
| 621 |
border-right: 4px solid rgba(255, 255, 255, 0.2);
|
| 622 |
border-bottom: 4px solid rgba(255, 255, 255, 0.2);
|
| 623 |
border-left: 4px solid #ffffff;
|
| 624 |
+
transform: translateZ(0);
|
|
|
|
| 625 |
-webkit-animation: loaderSpin 1.1s infinite linear;
|
| 626 |
animation: loaderSpin 1.1s infinite linear;
|
| 627 |
}
|
| 628 |
.eael-btn-loader:after {
|
| 629 |
+
border-radius: 50%;
|
|
|
|
| 630 |
width: 20px;
|
| 631 |
height: 20px;
|
| 632 |
}
|
| 670 |
.eael-contact-form-7 input[type="tel"],
|
| 671 |
.eael-contact-form-7 input[type="color"],
|
| 672 |
.eael-contact-form-7 .uneditable-input {
|
|
|
|
|
|
|
|
|
|
|
|
|
| 673 |
transition: border linear 0.2s, box-shadow linear 0.2s;
|
|
|
|
| 674 |
}
|
| 675 |
|
| 676 |
.eael-contact-form-7 .wpcf7-form::before,
|
| 718 |
margin: 0 auto;
|
| 719 |
}
|
| 720 |
|
|
|
|
|
|
|
|
|
|
| 721 |
.eael-ticker-wrap {
|
| 722 |
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
| 723 |
display: flex;
|
| 724 |
+
flex-flow: row nowrap;
|
| 725 |
+
align-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 726 |
width: 100%;
|
| 727 |
}
|
| 728 |
|
| 729 |
.eael-ticker-wrap .ticker-badge {
|
| 730 |
+
flex: 0 0 auto;
|
|
|
|
|
|
|
|
|
|
| 731 |
padding: 8px 12px;
|
| 732 |
}
|
| 733 |
|
| 734 |
.eael-ticker-wrap .eael-ticker {
|
| 735 |
overflow: hidden;
|
| 736 |
+
flex: 1 1 auto;
|
|
|
|
|
|
|
|
|
|
| 737 |
}
|
| 738 |
|
| 739 |
.eael-ticker-wrap .eael-ticker .ticker-content {
|
| 766 |
|
| 767 |
@media only screen and (max-width: 767px) {
|
| 768 |
.eael-ticker-wrap {
|
| 769 |
+
flex-flow: row wrap;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 770 |
}
|
| 771 |
|
| 772 |
.content-ticker-pagination {
|
| 841 |
}
|
| 842 |
|
| 843 |
.eael-creative-button-wrapper {
|
|
|
|
|
|
|
|
|
|
| 844 |
display: flex;
|
| 845 |
}
|
| 846 |
|
| 847 |
.eael-creative-button {
|
| 848 |
+
flex: 0 0 auto;
|
|
|
|
|
|
|
|
|
|
| 849 |
min-width: 150px;
|
| 850 |
text-align: center;
|
| 851 |
vertical-align: middle;
|
| 852 |
position: relative;
|
| 853 |
z-index: 1;
|
| 854 |
+
border-radius: 2px;
|
|
|
|
| 855 |
padding: 20px 30px;
|
| 856 |
font-size: 16px;
|
| 857 |
line-height: 1;
|
| 880 |
.eael-creative-button--winona {
|
| 881 |
overflow: hidden;
|
| 882 |
padding: 0 !important;
|
|
|
|
|
|
|
| 883 |
transition: border-color 0.3s, background-color 0.3s;
|
| 884 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
|
|
|
|
|
|
| 885 |
}
|
| 886 |
|
| 887 |
.eael-creative-button--winona::after {
|
| 892 |
top: 0;
|
| 893 |
left: 0;
|
| 894 |
opacity: 0;
|
|
|
|
| 895 |
transform: translate3d(0, 25%, 0);
|
| 896 |
}
|
| 897 |
|
| 902 |
.eael-creative-button--winona::after,
|
| 903 |
.eael-creative-button--winona > span {
|
| 904 |
padding: 1em 2em;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 905 |
transition: transform 0.3s, opacity 0.3s;
|
| 906 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
|
|
|
|
|
|
|
|
|
| 907 |
}
|
| 908 |
|
| 909 |
.eael-creative-button--winona:hover::after {
|
| 910 |
opacity: 1;
|
|
|
|
| 911 |
transform: translate3d(0, 0, 0);
|
| 912 |
}
|
| 913 |
|
| 914 |
.eael-creative-button--winona:hover > span {
|
| 915 |
opacity: 0;
|
|
|
|
| 916 |
transform: translate3d(0, -25%, 0);
|
| 917 |
}
|
| 918 |
|
| 919 |
/*--- Ujarak ---*/
|
| 920 |
.eael-creative-button--ujarak {
|
|
|
|
|
|
|
| 921 |
transition: border-color 0.4s, color 0.4s;
|
| 922 |
}
|
| 923 |
|
| 930 |
height: 100%;
|
| 931 |
z-index: -1;
|
| 932 |
opacity: 0;
|
|
|
|
| 933 |
transform: scale3d(0.7, 1, 1);
|
|
|
|
|
|
|
|
|
|
|
|
|
| 934 |
transition: transform 0.4s, opacity 0.4s;
|
| 935 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
|
|
|
|
|
|
|
|
|
| 936 |
}
|
| 937 |
|
| 938 |
.eael-creative-button--ujarak,
|
| 939 |
.eael-creative-button--ujarak::before {
|
| 940 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
|
|
|
|
|
|
| 941 |
}
|
| 942 |
|
| 943 |
.eael-creative-button--ujarak:hover::before {
|
| 944 |
opacity: 1;
|
|
|
|
| 945 |
transform: translate3d(0, 0, 0);
|
| 946 |
}
|
| 947 |
|
| 948 |
/*--- Wayra ---*/
|
| 949 |
.eael-creative-button--wayra {
|
| 950 |
overflow: hidden;
|
|
|
|
|
|
|
| 951 |
transition: border-color 0.3s, color 0.3s;
|
| 952 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
|
|
|
|
|
|
| 953 |
}
|
| 954 |
|
| 955 |
.eael-creative-button--wayra::before {
|
| 960 |
width: 150%;
|
| 961 |
height: 100%;
|
| 962 |
z-index: -1;
|
|
|
|
| 963 |
transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
|
| 964 |
+
transform-origin: 0% 100%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 965 |
transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
|
|
|
|
| 966 |
}
|
| 967 |
|
| 968 |
.eael-creative-button--wayra:hover::before {
|
| 969 |
opacity: 1;
|
|
|
|
| 970 |
transform: rotate3d(0, 0, 1, 0deg);
|
| 971 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
|
|
|
|
|
|
| 972 |
}
|
| 973 |
|
| 974 |
/*--- Tamaya ---*/
|
| 984 |
height: 50%;
|
| 985 |
left: 0;
|
| 986 |
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
| 987 |
transition: transform 0.3s;
|
| 988 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
|
|
|
|
|
|
|
|
|
| 989 |
}
|
| 990 |
|
| 991 |
.eael-creative-button--tamaya::before {
|
| 1004 |
|
| 1005 |
.eael-creative-button--tamaya > span {
|
| 1006 |
display: block;
|
|
|
|
| 1007 |
transform: scale3d(0.2, 0.2, 1);
|
| 1008 |
opacity: 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1009 |
transition: transform 0.3s, opacity 0.3s;
|
| 1010 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
|
|
|
|
|
|
|
|
|
| 1011 |
}
|
| 1012 |
|
| 1013 |
.eael-creative-button--tamaya:hover::before {
|
|
|
|
| 1014 |
transform: translate3d(0, -100%, 0);
|
| 1015 |
}
|
| 1016 |
|
| 1017 |
.eael-creative-button--tamaya:hover::after {
|
|
|
|
| 1018 |
transform: translate3d(0, 100%, 0);
|
| 1019 |
}
|
| 1020 |
|
| 1021 |
.eael-creative-button--tamaya:hover > span {
|
| 1022 |
opacity: 1;
|
|
|
|
| 1023 |
transform: scale3d(1, 1, 1);
|
| 1024 |
}
|
| 1025 |
|
| 1036 |
left: 0;
|
| 1037 |
width: 100%;
|
| 1038 |
height: 100%;
|
|
|
|
| 1039 |
transform: translate3d(-100%, 0, 0);
|
| 1040 |
}
|
| 1041 |
|
| 1046 |
.eael-creative-button--rayen::before,
|
| 1047 |
.eael-creative-button--rayen > span {
|
| 1048 |
padding: 1em 2em;
|
|
|
|
|
|
|
|
|
|
| 1049 |
transition: transform 0.3s;
|
| 1050 |
+
transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
|
|
|
|
|
|
|
|
|
|
| 1051 |
}
|
| 1052 |
|
| 1053 |
.eael-creative-button--rayen:hover::before {
|
|
|
|
| 1054 |
transform: translate3d(0, 0, 0);
|
| 1055 |
}
|
| 1056 |
|
| 1057 |
.eael-creative-button--rayen:hover > span {
|
|
|
|
| 1058 |
transform: translate3d(0, 100%, 0);
|
| 1059 |
}
|
| 1060 |
|
| 1072 |
font-family: "FontAwesome";
|
| 1073 |
color: #fff;
|
| 1074 |
z-index: 1;
|
| 1075 |
+
transform: translateY(-50%);
|
|
|
|
|
|
|
| 1076 |
}
|
| 1077 |
|
| 1078 |
.eael-data-table-wrap .eael-data-tables_wrapper {
|
|
|
|
|
|
|
|
|
|
| 1079 |
display: flex;
|
| 1080 |
+
flex-flow: row wrap;
|
| 1081 |
+
justify-content: flex-start;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1082 |
width: 100%;
|
| 1083 |
}
|
| 1084 |
.eael-data-table-wrap .eael-data-tables_filter {
|
| 1085 |
+
flex-grow: 1;
|
| 1086 |
+
flex-basis: 50%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1087 |
text-align: right;
|
| 1088 |
}
|
| 1089 |
.eael-data-table-wrap .eael-data-tables_filter label {
|
| 1097 |
margin-left: 10px;
|
| 1098 |
}
|
| 1099 |
.eael-data-table-wrap .eael-data-tables_length {
|
| 1100 |
+
flex-grow: 1;
|
| 1101 |
+
flex-basis: 50%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1102 |
}
|
| 1103 |
.eael-data-table-wrap .eael-data-tables_length select {
|
| 1104 |
width: auto;
|
| 1113 |
font-weight: 700;
|
| 1114 |
}
|
| 1115 |
.eael-data-table-wrap .eael-data-tables_info {
|
| 1116 |
+
flex-grow: 1;
|
| 1117 |
+
flex-basis: 50%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1118 |
font-weight: 700;
|
| 1119 |
}
|
| 1120 |
.eael-data-table-wrap .eael-data-tables_paginate {
|
| 1121 |
+
flex-grow: 1;
|
| 1122 |
+
flex-basis: 50%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1123 |
text-align: right;
|
| 1124 |
}
|
| 1125 |
.eael-data-table-wrap .eael-data-tables_paginate .paginate_button {
|
| 1127 |
background: #f2f2f2;
|
| 1128 |
margin-right: 2px;
|
| 1129 |
cursor: pointer;
|
|
|
|
|
|
|
| 1130 |
transition: all .3s;
|
| 1131 |
}
|
| 1132 |
.eael-data-table-wrap .eael-data-tables_paginate .paginate_button:hover {
|
| 1178 |
border-color: #000;
|
| 1179 |
}
|
| 1180 |
.eael-data-table tbody tr.even {
|
|
|
|
|
|
|
| 1181 |
transition: background 0.4s ease-in-out;
|
| 1182 |
}
|
| 1183 |
.eael-data-table tbody tr.even:hover {
|
| 1188 |
}
|
| 1189 |
.eael-data-table tbody tr.odd {
|
| 1190 |
background: rgba(242, 242, 242, 0.5);
|
|
|
|
|
|
|
| 1191 |
transition: background 0.2s ease-in-out;
|
| 1192 |
}
|
| 1193 |
.eael-data-table tbody tr.odd:hover {
|
| 1227 |
padding: 0 .6em;
|
| 1228 |
margin-right: 10px;
|
| 1229 |
text-align: center;
|
| 1230 |
+
flex-grow: 0;
|
| 1231 |
+
flex-shrink: 0;
|
| 1232 |
+
flex-basis: 100px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1233 |
}
|
| 1234 |
.th-mobile-screen .eael-data-table-th-img {
|
| 1235 |
margin: 0 auto 15px auto;
|
| 1241 |
}
|
| 1242 |
|
| 1243 |
.td-content-wrapper {
|
|
|
|
|
|
|
|
|
|
| 1244 |
display: flex;
|
| 1245 |
width: 100%;
|
| 1246 |
}
|
| 1247 |
|
| 1248 |
.td-content {
|
| 1249 |
width: 100%;
|
| 1250 |
+
justify-content: center;
|
|
|
|
|
|
|
|
|
|
| 1251 |
}
|
| 1252 |
.td-content > p {
|
| 1253 |
width: 100%;
|
| 1254 |
+
justify-content: center;
|
|
|
|
|
|
|
|
|
|
| 1255 |
}
|
| 1256 |
|
| 1257 |
.custom-responsive-option-enable .eael-data-table thead {
|
| 1262 |
clear: left;
|
| 1263 |
width: 100%;
|
| 1264 |
text-align: left;
|
|
|
|
|
|
|
|
|
|
| 1265 |
display: flex;
|
| 1266 |
+
align-items: center;
|
|
|
|
|
|
|
|
|
|
| 1267 |
}
|
| 1268 |
|
| 1269 |
.eael-data-table .td-content {
|
| 1270 |
+
align-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1271 |
display: flex;
|
| 1272 |
}
|
| 1273 |
}
|
| 1418 |
color: #f54;
|
| 1419 |
}
|
| 1420 |
|
|
|
|
|
|
|
|
|
|
| 1421 |
.eael-fancy-text-container p {
|
| 1422 |
margin: 0;
|
| 1423 |
}
|
| 1424 |
|
| 1425 |
+
.eael-fancy-text-strings {
|
| 1426 |
+
display: none;
|
| 1427 |
+
}
|
| 1428 |
+
|
| 1429 |
.eael-fancy-text-prefix,
|
| 1430 |
.eael-fancy-text-suffix {
|
| 1431 |
display: inline-block;
|
| 1463 |
opacity: 1;
|
| 1464 |
}
|
| 1465 |
}
|
|
|
|
| 1466 |
.eael-fancy-text-container.style-2 {
|
| 1467 |
font-size: 24px;
|
| 1468 |
}
|
| 1530 |
}
|
| 1531 |
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box {
|
| 1532 |
z-index: 2;
|
|
|
|
|
|
|
| 1533 |
transition: all 0.5s;
|
| 1534 |
}
|
| 1535 |
@media (prefers-reduced-motion: reduce) {
|
| 1536 |
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box {
|
|
|
|
|
|
|
| 1537 |
transition: none;
|
| 1538 |
}
|
| 1539 |
}
|
| 1540 |
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon-inner {
|
| 1541 |
background-color: #37368e;
|
|
|
|
|
|
|
| 1542 |
transition: all 0.5s;
|
|
|
|
|
|
|
|
|
|
| 1543 |
display: inline-flex;
|
| 1544 |
}
|
| 1545 |
@media (prefers-reduced-motion: reduce) {
|
| 1546 |
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon-inner {
|
|
|
|
|
|
|
| 1547 |
transition: none;
|
| 1548 |
}
|
| 1549 |
}
|
| 1550 |
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon {
|
| 1551 |
padding: 0.5em;
|
|
|
|
|
|
|
| 1552 |
transition: all 0.5s;
|
| 1553 |
font-size: 30px;
|
| 1554 |
line-height: 1;
|
| 1555 |
color: #37368e;
|
| 1556 |
text-align: center;
|
|
|
|
|
|
|
|
|
|
| 1557 |
display: inline-flex;
|
| 1558 |
}
|
| 1559 |
@media (prefers-reduced-motion: reduce) {
|
| 1560 |
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon {
|
|
|
|
|
|
|
| 1561 |
transition: none;
|
| 1562 |
}
|
| 1563 |
}
|
| 1570 |
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon i:before {
|
| 1571 |
position: absolute;
|
| 1572 |
left: 50%;
|
|
|
|
|
|
|
| 1573 |
transform: translateX(-50%);
|
| 1574 |
}
|
| 1575 |
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-img {
|
| 1597 |
background-color: #fff;
|
| 1598 |
}
|
| 1599 |
.elementor-widget-eael-feature-list .eael-feature-list-items.circle .eael-feature-list-icon-box .eael-feature-list-icon-inner {
|
| 1600 |
+
border-radius: 50%;
|
|
|
|
| 1601 |
}
|
| 1602 |
.elementor-widget-eael-feature-list .eael-feature-list-items.circle .eael-feature-list-icon-box .eael-feature-list-icon-inner .eael-feature-list-icon {
|
| 1603 |
+
border-radius: 50%;
|
|
|
|
| 1604 |
}
|
| 1605 |
.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-icon-box .eael-feature-list-icon-inner {
|
| 1606 |
+
transform: rotate(45deg);
|
|
|
|
|
|
|
| 1607 |
margin: 15px;
|
| 1608 |
}
|
| 1609 |
.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-icon-box .eael-feature-list-icon i {
|
|
|
|
|
|
|
| 1610 |
transform: rotate(-45deg);
|
| 1611 |
}
|
| 1612 |
.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-icon-box .eael-feature-list-icon img {
|
|
|
|
|
|
|
| 1613 |
transform: rotate(-45deg);
|
| 1614 |
}
|
| 1615 |
.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-content-box .eael-feature-list-title {
|
| 1684 |
margin-bottom: 0 !important;
|
| 1685 |
}
|
| 1686 |
.elementor-widget-eael-feature-list.-icon-position-left .eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-item {
|
|
|
|
|
|
|
|
|
|
| 1687 |
display: flex;
|
| 1688 |
}
|
| 1689 |
.elementor-widget-eael-feature-list.-icon-position-left .eael-feature-list-item {
|
| 1690 |
text-align: left;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1691 |
flex-direction: row;
|
| 1692 |
}
|
| 1693 |
.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-item {
|
| 1694 |
text-align: right;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1695 |
flex-direction: row-reverse;
|
| 1696 |
}
|
| 1697 |
}
|
| 1698 |
@media (max-width: 1024px) {
|
| 1699 |
.elementor-widget-eael-feature-list.-tablet-icon-position-left .eael-feature-list-item, .elementor-widget-eael-feature-list.-tablet-icon-position-right .eael-feature-list-item {
|
|
|
|
|
|
|
|
|
|
| 1700 |
display: flex;
|
| 1701 |
}
|
| 1702 |
.elementor-widget-eael-feature-list.-tablet-icon-position-left .eael-feature-list-item {
|
| 1703 |
text-align: left;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1704 |
flex-direction: row;
|
| 1705 |
}
|
| 1706 |
.elementor-widget-eael-feature-list.-tablet-icon-position-right .eael-feature-list-item {
|
| 1707 |
text-align: right;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1708 |
flex-direction: row-reverse;
|
| 1709 |
}
|
| 1710 |
}
|
| 1820 |
text-align: left;
|
| 1821 |
}
|
| 1822 |
.elementor-widget-eael-feature-list.-mobile-icon-position-left .eael-feature-list-item, .elementor-widget-eael-feature-list.-mobile-icon-position-right .eael-feature-list-item {
|
|
|
|
|
|
|
|
|
|
| 1823 |
display: flex;
|
| 1824 |
}
|
| 1825 |
.elementor-widget-eael-feature-list.-mobile-icon-position-left .eael-feature-list-item {
|
| 1826 |
text-align: left;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1827 |
flex-direction: row;
|
| 1828 |
}
|
| 1829 |
.elementor-widget-eael-feature-list.-mobile-icon-position-right .eael-feature-list-item {
|
| 1830 |
text-align: right;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1831 |
flex-direction: row-reverse;
|
| 1832 |
}
|
| 1833 |
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-content-box {
|
| 2026 |
}
|
| 2027 |
|
| 2028 |
.eael-filter-gallery-control {
|
|
|
|
|
|
|
|
|
|
| 2029 |
display: flex;
|
| 2030 |
+
flex-flow: 1 1 auto;
|
| 2031 |
+
align-items: center;
|
| 2032 |
+
justify-content: center;
|
| 2033 |
+
flex-flow: row wrap;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2034 |
padding: 0px;
|
| 2035 |
margin: 0px;
|
| 2036 |
}
|
| 2069 |
|
| 2070 |
.eael-filter-gallery-container .item .caption {
|
| 2071 |
position: absolute;
|
|
|
|
|
|
|
|
|
|
| 2072 |
display: flex;
|
| 2073 |
+
flex-flow: 1 1 100%;
|
| 2074 |
+
align-items: center;
|
| 2075 |
+
justify-content: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2076 |
z-index: 1;
|
| 2077 |
top: 0px;
|
| 2078 |
left: 0px;
|
| 2079 |
right: 0px;
|
| 2080 |
bottom: 0px;
|
|
|
|
|
|
|
|
|
|
| 2081 |
transition: transform .4s;
|
|
|
|
| 2082 |
}
|
| 2083 |
|
| 2084 |
.eael-filter-gallery-container.eael-cards .item .caption {
|
| 2087 |
|
| 2088 |
.eael-filter-gallery-container.eael-cards .item .item-img .caption {
|
| 2089 |
position: absolute;
|
|
|
|
|
|
|
|
|
|
| 2090 |
display: flex;
|
| 2091 |
+
flex-flow: 1 1 100%;
|
| 2092 |
+
align-items: center;
|
| 2093 |
+
justify-content: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2094 |
z-index: 10;
|
| 2095 |
top: 0px;
|
| 2096 |
left: 0px;
|
| 2097 |
right: 0px;
|
| 2098 |
bottom: 0px;
|
|
|
|
|
|
|
|
|
|
| 2099 |
transition: transform .4s;
|
|
|
|
| 2100 |
}
|
| 2101 |
|
| 2102 |
.gallery-item-caption-over {
|
| 2111 |
/*--- Caption Animation ---*/
|
| 2112 |
.eael-filter-gallery-container .item .caption.eael-zoom-in,
|
| 2113 |
.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-zoom-in {
|
| 2114 |
+
transform: scale(0);
|
|
|
|
|
|
|
| 2115 |
}
|
| 2116 |
|
| 2117 |
.eael-filter-gallery-container .item:hover .caption.eael-zoom-in,
|
| 2118 |
.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-zoom-in {
|
| 2119 |
+
transform: scale(1);
|
|
|
|
|
|
|
| 2120 |
}
|
| 2121 |
|
| 2122 |
.eael-filter-gallery-container .item .caption.eael-slide-left,
|
| 2123 |
.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-left {
|
| 2124 |
+
transform: translateX(-100%);
|
|
|
|
|
|
|
| 2125 |
}
|
| 2126 |
|
| 2127 |
.eael-filter-gallery-container .item:hover .caption.eael-slide-left,
|
| 2128 |
.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-left {
|
| 2129 |
+
transform: translateX(0%);
|
|
|
|
|
|
|
| 2130 |
}
|
| 2131 |
|
| 2132 |
.eael-filter-gallery-container .item .caption.eael-slide-right,
|
| 2133 |
.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-right {
|
| 2134 |
+
transform: translateX(100%);
|
|
|
|
|
|
|
| 2135 |
}
|
| 2136 |
|
| 2137 |
.eael-filter-gallery-container .item:hover .caption.eael-slide-right,
|
| 2138 |
.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-right {
|
| 2139 |
+
transform: translateX(0%);
|
|
|
|
|
|
|
| 2140 |
}
|
| 2141 |
|
| 2142 |
.eael-filter-gallery-container .item .caption.eael-slide-top,
|
| 2143 |
.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-top {
|
| 2144 |
+
transform: translateY(-100%);
|
|
|
|
|
|
|
| 2145 |
}
|
| 2146 |
|
| 2147 |
.eael-filter-gallery-container .item:hover .caption.eael-slide-top,
|
| 2148 |
.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-top {
|
| 2149 |
+
transform: translateY(0%);
|
|
|
|
|
|
|
| 2150 |
}
|
| 2151 |
|
| 2152 |
.eael-filter-gallery-container .item .caption.eael-slide-bottom,
|
| 2153 |
.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-bottom {
|
| 2154 |
+
transform: translateY(100%);
|
|
|
|
|
|
|
| 2155 |
}
|
| 2156 |
|
| 2157 |
.eael-filter-gallery-container .item:hover .caption.eael-slide-bottom,
|
| 2158 |
.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-bottom {
|
| 2159 |
+
transform: translateY(0%);
|
|
|
|
|
|
|
| 2160 |
}
|
| 2161 |
|
| 2162 |
.eael-filter-gallery-container .item .caption a {
|
| 2165 |
height: 50px;
|
| 2166 |
text-align: center;
|
| 2167 |
line-height: 50px;
|
| 2168 |
+
border-radius: 50%;
|
|
|
|
| 2169 |
margin: 0 5px;
|
| 2170 |
font-size: 20px;
|
| 2171 |
cursor: pointer;
|
|
|
|
|
|
|
| 2172 |
transition: .3s;
|
| 2173 |
}
|
| 2174 |
|
| 2175 |
.eael-filter-gallery-container .item .caption a:nth-child(1),
|
| 2176 |
.eael-container .item .caption a:nth-child(2) {
|
|
|
|
|
|
|
| 2177 |
transition: .6s;
|
| 2178 |
opacity: 0;
|
| 2179 |
}
|
| 2180 |
|
| 2181 |
.eael-filter-gallery-container .item .caption a:nth-child(1) {
|
| 2182 |
+
transform: translateY(-100%);
|
|
|
|
|
|
|
| 2183 |
}
|
| 2184 |
|
| 2185 |
.eael-filter-gallery-container .item .caption a:nth-child(2) {
|
| 2186 |
+
transform: translateY(100%);
|
|
|
|
|
|
|
| 2187 |
}
|
| 2188 |
|
| 2189 |
.eael-filter-gallery-container .item .caption:hover a:nth-child(1),
|
| 2190 |
.eael-filter-gallery-container .item .caption:hover a:nth-child(2) {
|
| 2191 |
+
transform: translateY(0%);
|
|
|
|
|
|
|
| 2192 |
opacity: 1;
|
| 2193 |
}
|
| 2194 |
|
| 2205 |
position: relative;
|
| 2206 |
background-repeat: no-repeat;
|
| 2207 |
background-position: center;
|
| 2208 |
+
background-size: cover;
|
|
|
|
| 2209 |
height: 220px;
|
| 2210 |
z-index: 0;
|
| 2211 |
overflow: hidden;
|
| 2220 |
font-size: 20px;
|
| 2221 |
line-height: 1;
|
| 2222 |
margin-bottom: 0px;
|
|
|
|
|
|
|
| 2223 |
transition: .3s;
|
| 2224 |
}
|
| 2225 |
|
| 2294 |
width: 20%;
|
| 2295 |
}
|
| 2296 |
|
| 2297 |
+
.eael-gallery-grid-item {
|
| 2298 |
margin-left: calc(20px/2);
|
| 2299 |
margin-right: calc(20px/2);
|
| 2300 |
margin-bottom: 20px;
|
| 2323 |
z-index: 10;
|
| 2324 |
}
|
| 2325 |
|
| 2326 |
+
.eael-filterable-gallery-item-wrap .eael-gallery-grid-item .gallery-item-thumbnail-wrap > img {
|
| 2327 |
height: 100%;
|
| 2328 |
width: 100%;
|
| 2329 |
-o-object-fit: cover;
|
| 2372 |
|
| 2373 |
.gallery-item-caption-wrap.caption-style-card {
|
| 2374 |
padding: 10px;
|
| 2375 |
+
box-sizing: border-box;
|
|
|
|
| 2376 |
font-family: inherit;
|
| 2377 |
}
|
| 2378 |
|
| 2392 |
.gallery-item-caption-wrap.caption-style-hoverer {
|
| 2393 |
visibility: hidden;
|
| 2394 |
opacity: 0;
|
|
|
|
|
|
|
| 2395 |
transition: 0.6s all ease;
|
|
|
|
|
|
|
|
|
|
| 2396 |
display: flex;
|
| 2397 |
+
align-items: center;
|
|
|
|
|
|
|
|
|
|
| 2398 |
}
|
| 2399 |
|
| 2400 |
+
.eael-gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer {
|
| 2401 |
opacity: 1;
|
| 2402 |
visibility: visible;
|
| 2403 |
}
|
| 2409 |
}
|
| 2410 |
|
| 2411 |
.gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up h5 {
|
| 2412 |
+
transform: translateY(20px);
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2413 |
transition: 0.6s all ease;
|
| 2414 |
}
|
| 2415 |
|
| 2418 |
}
|
| 2419 |
|
| 2420 |
.gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up p {
|
| 2421 |
+
transform: translateY(40px);
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2422 |
transition: 0.6s all ease;
|
| 2423 |
}
|
| 2424 |
|
| 2425 |
.gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up .gallery-item-buttons {
|
| 2426 |
+
transform: translateY(40px);
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2427 |
transition: 0.6s all ease;
|
| 2428 |
}
|
| 2429 |
|
| 2430 |
.gallery-item-caption-wrap .gallery-item-buttons > a {
|
| 2431 |
padding: 5px 15px;
|
| 2432 |
display: inline-block;
|
| 2433 |
+
border-radius: 50%;
|
|
|
|
| 2434 |
outline: none;
|
| 2435 |
text-decoration: none;
|
| 2436 |
}
|
| 2437 |
|
| 2438 |
.gallery-item-caption-wrap.caption-style-hoverer.eael-zoom-in {
|
| 2439 |
+
transform: scale(0.8);
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2440 |
transition: 0.6s all ease;
|
| 2441 |
}
|
| 2442 |
|
| 2443 |
+
.eael-gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up h5,
|
| 2444 |
+
.eael-gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up .gallery-item-buttons,
|
| 2445 |
+
.eael-gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up p {
|
| 2446 |
+
transform: translate(0);
|
|
|
|
|
|
|
| 2447 |
}
|
| 2448 |
|
| 2449 |
+
.eael-gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-zoom-in {
|
| 2450 |
+
transform: scale(1);
|
|
|
|
|
|
|
| 2451 |
visibility: visible;
|
| 2452 |
opacity: 1;
|
| 2453 |
}
|
| 2454 |
|
| 2455 |
.gallery-item-caption-wrap.caption-style-hoverer.eael-none {
|
|
|
|
|
|
|
| 2456 |
transition: none;
|
| 2457 |
}
|
| 2458 |
|
| 2474 |
width: 62px;
|
| 2475 |
position: relative;
|
| 2476 |
z-index: 1;
|
|
|
|
|
|
|
| 2477 |
transition: 300ms;
|
| 2478 |
}
|
| 2479 |
|
| 2480 |
.video-popup {
|
|
|
|
|
|
|
|
|
|
| 2481 |
display: flex;
|
| 2482 |
+
align-items: center;
|
| 2483 |
+
justify-content: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2484 |
}
|
| 2485 |
|
| 2486 |
.video-popup:hover > img {
|
| 2487 |
+
transform: scale(1.1);
|
|
|
|
|
|
|
| 2488 |
}
|
| 2489 |
|
| 2490 |
.video-popup-bg {
|
| 2491 |
visibility: hidden;
|
| 2492 |
opacity: 0;
|
|
|
|
|
|
|
| 2493 |
transition: 350ms;
|
| 2494 |
}
|
| 2495 |
|
| 2496 |
+
.eael-gallery-grid-item:hover .video-popup-bg {
|
| 2497 |
visibility: visible;
|
| 2498 |
opacity: 1;
|
| 2499 |
}
|
| 2504 |
top: 0;
|
| 2505 |
height: 100%;
|
| 2506 |
width: 100%;
|
|
|
|
|
|
|
|
|
|
| 2507 |
display: flex;
|
| 2508 |
+
align-items: center;
|
| 2509 |
+
justify-content: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2510 |
}
|
| 2511 |
|
| 2512 |
.gallery-item-caption-wrap.card-hover-bg {
|
| 2513 |
visibility: hidden;
|
| 2514 |
opacity: 0;
|
|
|
|
|
|
|
| 2515 |
transition: 800ms;
|
| 2516 |
}
|
| 2517 |
|
| 2521 |
}
|
| 2522 |
|
| 2523 |
.gallery-item-caption-wrap .gallery-item-buttons > a > i {
|
|
|
|
|
|
|
|
|
|
| 2524 |
display: flex;
|
| 2525 |
+
align-items: center;
|
| 2526 |
+
justify-content: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2527 |
height: 100%;
|
| 2528 |
}
|
| 2529 |
|
| 2843 |
|
| 2844 |
.eael-elements-flip-box-container .flipbox-button {
|
| 2845 |
display: inline-block;
|
|
|
|
|
|
|
| 2846 |
transition: all 400ms;
|
| 2847 |
}
|
| 2848 |
|
| 2873 |
}
|
| 2874 |
|
| 2875 |
.eael_flip_box_icon_border_round {
|
| 2876 |
+
border-radius: 100px;
|
|
|
|
| 2877 |
}
|
| 2878 |
|
| 2879 |
.eael_eleements_flip_front_icon_style_background,
|
| 2903 |
color: #ffffff;
|
| 2904 |
border-color: #000000;
|
| 2905 |
-webkit-display: flex;
|
|
|
|
|
|
|
| 2906 |
display: flex;
|
| 2907 |
+
align-items: center;
|
|
|
|
|
|
|
|
|
|
| 2908 |
}
|
| 2909 |
|
| 2910 |
.eael-elements-flip-box-content,
|
| 2927 |
height: 100%;
|
| 2928 |
background: #444444;
|
| 2929 |
color: #ffffff;
|
|
|
|
|
|
|
|
|
|
| 2930 |
display: flex;
|
| 2931 |
+
align-items: center;
|
|
|
|
|
|
|
|
|
|
| 2932 |
border-color: #000000;
|
| 2933 |
}
|
| 2934 |
|
| 2962 |
|
| 2963 |
/*--- CSS3 Transitions ---*/
|
| 2964 |
.eael-elements-flip-box-container {
|
| 2965 |
+
perspective: 1000px;
|
|
|
|
| 2966 |
}
|
| 2967 |
|
| 2968 |
.eael-elements-flip-box-front-container,
|
| 2969 |
.eael-elements-flip-box-rear-container {
|
| 2970 |
+
transition-duration: 500ms;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2971 |
transition-property: all;
|
| 2972 |
+
transition-timing-function: ease;
|
|
|
|
|
|
|
| 2973 |
}
|
| 2974 |
|
| 2975 |
.eael-elements-flip-box-flip-card {
|
| 2976 |
width: 100%;
|
| 2977 |
height: 100%;
|
| 2978 |
+
transform-style: preserve-3d;
|
|
|
|
|
|
|
|
|
|
| 2979 |
transition: all 500ms ease;
|
| 2980 |
}
|
| 2981 |
|
| 2983 |
.eael-elements-flip-box-front-container {
|
| 2984 |
-webkit-backface-visibility: hidden;
|
| 2985 |
backface-visibility: hidden;
|
| 2986 |
+
transform: rotateX(0deg);
|
| 2987 |
+
transform: rotateY(0deg);
|
|
|
|
|
|
|
| 2988 |
}
|
| 2989 |
|
| 2990 |
/*--- Flip ---*/
|
| 2991 |
.eael-animate-flip.eael-animate-up.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card,
|
| 2992 |
.eael-animate-flip.eael-animate-up .eael-elements-flip-box-rear-container {
|
| 2993 |
+
transform: rotateX(180deg);
|
|
|
|
| 2994 |
}
|
| 2995 |
|
| 2996 |
.eael-animate-flip.eael-animate-down.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card,
|
| 2997 |
.eael-animate-flip.eael-animate-down .eael-elements-flip-box-rear-container {
|
| 2998 |
+
transform: rotateX(-180deg);
|
|
|
|
| 2999 |
}
|
| 3000 |
|
| 3001 |
.eael-animate-flip.eael-animate-left.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card,
|
| 3002 |
.eael-animate-flip.eael-animate-left .eael-elements-flip-box-rear-container {
|
| 3003 |
+
transform: rotateY(-180deg);
|
|
|
|
| 3004 |
}
|
| 3005 |
|
| 3006 |
.eael-animate-flip.eael-animate-right.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card,
|
| 3007 |
.eael-animate-flip.eael-animate-right .eael-elements-flip-box-rear-container {
|
| 3008 |
+
transform: rotateY(180deg);
|
|
|
|
| 3009 |
}
|
| 3010 |
|
| 3011 |
/*--- Slide ---*/
|
| 3083 |
/*--- Zoom In ---*/
|
| 3084 |
.eael-animate-zoom-in .eael-elements-flip-box-rear-container {
|
| 3085 |
opacity: 0;
|
| 3086 |
+
transform: scale(0.75);
|
|
|
|
|
|
|
| 3087 |
z-index: 3;
|
| 3088 |
}
|
| 3089 |
|
| 3090 |
.eael-animate-zoom-in.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container {
|
| 3091 |
opacity: 1;
|
| 3092 |
+
transform: scale(1);
|
|
|
|
|
|
|
| 3093 |
}
|
| 3094 |
|
| 3095 |
/*--- Zoom Out ---*/
|
| 3096 |
.eael-animate-zoom-out.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container {
|
| 3097 |
opacity: 0;
|
| 3098 |
+
transform: scale(0.75);
|
|
|
|
|
|
|
| 3099 |
}
|
| 3100 |
|
| 3101 |
.eael-animate-fade.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container {
|
| 3117 |
|
| 3118 |
.eael-flipbox-img-circle .eael-elements-flip-box-icon-image img,
|
| 3119 |
.eael-flipbox-img-circle .flipbox-back-image-icon img {
|
| 3120 |
+
border-radius: 50%;
|
|
|
|
| 3121 |
overflow: hidden;
|
| 3122 |
}
|
| 3123 |
|
| 3175 |
line-height: 1;
|
| 3176 |
margin: 0;
|
| 3177 |
text-align: center;
|
| 3178 |
+
transform: translateY(-50%);
|
|
|
|
|
|
|
| 3179 |
width: auto;
|
| 3180 |
}
|
| 3181 |
|
| 3209 |
}
|
| 3210 |
|
| 3211 |
.swiper-container-3d .swiper-slide {
|
|
|
|
| 3212 |
transition-property: all;
|
| 3213 |
-webkit-transition-property: all;
|
| 3214 |
}
|
| 3240 |
margin: 0;
|
| 3241 |
padding: 10px 20px;
|
| 3242 |
width: auto;
|
|
|
|
|
|
|
| 3243 |
transition: all 0.25s linear 0s;
|
| 3244 |
}
|
| 3245 |
|
| 3294 |
.eael-custom-radio-checkbox input[type=checkbox]:checked:before,
|
| 3295 |
.eael-custom-radio-checkbox input[type=radio]:checked:before {
|
| 3296 |
background: #999;
|
|
|
|
|
|
|
| 3297 |
transition: all 0.25s linear 0s;
|
| 3298 |
}
|
| 3299 |
|
| 3300 |
.eael-custom-radio-checkbox input[type=radio] {
|
| 3301 |
+
border-radius: 50%;
|
|
|
|
| 3302 |
}
|
| 3303 |
|
| 3304 |
.eael-custom-radio-checkbox input[type=radio]:before {
|
| 3305 |
+
border-radius: 50%;
|
| 3306 |
+
}
|
| 3307 |
+
|
| 3308 |
+
.eael-post-elements-readmore-btn {
|
| 3309 |
+
font-size: 12px;
|
| 3310 |
+
font-weight: 500;
|
| 3311 |
}
|
| 3312 |
|
| 3313 |
/*----------------------*/
|
| 3371 |
/* 34. Image accordion
|
| 3372 |
/*------------------------------*/
|
| 3373 |
.eael-img-accordion {
|
|
|
|
|
|
|
|
|
|
| 3374 |
display: flex;
|
| 3375 |
height: 50vh;
|
| 3376 |
}
|
| 3377 |
|
| 3378 |
.eael-img-accordion a {
|
| 3379 |
position: relative;
|
| 3380 |
+
flex: 1;
|
|
|
|
|
|
|
|
|
|
| 3381 |
text-align: center;
|
| 3382 |
text-decoration: none;
|
| 3383 |
color: #fff;
|
| 3384 |
+
background-size: cover;
|
|
|
|
| 3385 |
background-position: center;
|
| 3386 |
background-repeat: no-repeat;
|
|
|
|
|
|
|
|
|
|
| 3387 |
transition: flex .4s;
|
|
|
|
| 3388 |
}
|
| 3389 |
|
| 3390 |
.eael-grow-accordion {
|
| 3391 |
+
flex: 3;
|
|
|
|
|
|
|
|
|
|
| 3392 |
}
|
| 3393 |
|
| 3394 |
.eael-img-accordion .overlay {
|
|
|
|
|
|
|
|
|
|
| 3395 |
display: flex;
|
| 3396 |
+
align-items: center;
|
| 3397 |
+
justify-content: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3398 |
padding: 0 10px;
|
| 3399 |
position: absolute;
|
| 3400 |
top: 0;
|
| 3401 |
right: 0;
|
| 3402 |
bottom: 0;
|
| 3403 |
left: 0;
|
|
|
|
|
|
|
| 3404 |
transition: background-color .4s;
|
| 3405 |
}
|
| 3406 |
|
| 3418 |
left: 0px;
|
| 3419 |
bottom: 0px;
|
| 3420 |
right: 0px;
|
|
|
|
|
|
|
| 3421 |
transition: all 0.3s ease-in-out;
|
| 3422 |
}
|
| 3423 |
|
| 3424 |
.eael-img-accordion .overlay-inner * {
|
| 3425 |
visibility: hidden;
|
| 3426 |
opacity: 0;
|
| 3427 |
+
transform-style: preserve-3d;
|
|
|
|
| 3428 |
}
|
| 3429 |
|
| 3430 |
.eael-img-accordion .overlay h2 {
|
| 3431 |
color: #fff;
|
| 3432 |
+
transform: translate3d(0, -60px, 0);
|
|
|
|
| 3433 |
}
|
| 3434 |
|
| 3435 |
.eael-img-accordion .overlay p {
|
| 3436 |
color: #fff;
|
| 3437 |
+
transform: translate3d(0, 60px, 0);
|
|
|
|
| 3438 |
}
|
| 3439 |
|
| 3440 |
.eael-img-accordion .overlay-inner-show * {
|
| 3441 |
opacity: 1;
|
| 3442 |
visibility: visible;
|
| 3443 |
+
transform: none !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3444 |
transition: all .3s .3s;
|
| 3445 |
}
|
| 3446 |
|
| 3447 |
@media screen and (max-width: 800px) {
|
| 3448 |
.eael-img-accordion {
|
| 3449 |
+
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3450 |
}
|
| 3451 |
|
| 3452 |
.eael-img-accordion a:hover {
|
| 3453 |
+
flex: 1;
|
|
|
|
|
|
|
|
|
|
| 3454 |
}
|
| 3455 |
|
| 3456 |
.eael-img-accordion a:hover .overlay {
|
| 3470 |
display: block;
|
| 3471 |
width: 100%;
|
| 3472 |
height: auto;
|
|
|
|
|
|
|
| 3473 |
transition: .3s;
|
| 3474 |
}
|
| 3475 |
|
| 3476 |
.eael-infobox .infobox-icon .infobox-icon-wrap i {
|
|
|
|
|
|
|
| 3477 |
transition: .3s;
|
| 3478 |
}
|
| 3479 |
|
| 3506 |
}
|
| 3507 |
|
| 3508 |
.eael-infobox-icon-hover-bg-shape-square:hover .infobox-icon .infobox-icon-wrap {
|
| 3509 |
+
border-radius: 0;
|
|
|
|
| 3510 |
}
|
| 3511 |
|
| 3512 |
.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap,
|
| 3513 |
.eael-infobox-icon-hover-bg-shape-radius:hover .infobox-icon .infobox-icon-wrap {
|
| 3514 |
+
border-radius: 15px;
|
|
|
|
| 3515 |
}
|
| 3516 |
|
| 3517 |
.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap {
|
|
|
|
|
|
|
|
|
|
| 3518 |
display: flex;
|
| 3519 |
+
align-items: center;
|
| 3520 |
+
justify-content: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3521 |
}
|
| 3522 |
|
| 3523 |
.eael-infobox-icon-bg-shape-circle .infobox-icon .infobox-icon-wrap,
|
| 3524 |
.eael-infobox-icon-hover-bg-shape-circle:hover .infobox-icon .infobox-icon-wrap {
|
| 3525 |
+
border-radius: 50%;
|
|
|
|
| 3526 |
}
|
| 3527 |
|
| 3528 |
.eael-infobox-icon-bg-shape-square .infobox-icon .infobox-icon-wrap i,
|
| 3529 |
.eael-infobox-icon-bg-shape-circle .infobox-icon .infobox-icon-wrap i {
|
| 3530 |
margin-top: 50%;
|
| 3531 |
+
transform: translateY(-50%);
|
|
|
|
|
|
|
| 3532 |
}
|
| 3533 |
|
| 3534 |
/*--- Infobox Button ---*/
|
| 3535 |
.eael-infobox .infobox-button a.eael-infobox-button {
|
| 3536 |
display: inline-block;
|
| 3537 |
padding: 5px 10px;
|
|
|
|
|
|
|
| 3538 |
transition: all 300ms ease-in-out 0s;
|
| 3539 |
}
|
| 3540 |
|
| 3542 |
.eael-infobox-content-align-left.eael-infobox-icon-bg-shape-square .infobox-icon,
|
| 3543 |
.eael-infobox-content-align-left.eael-infobox-icon-bg-shape-radius .infobox-icon,
|
| 3544 |
.eael-infobox-content-align-left.eael-infobox-icon-bg-shape-circle .infobox-icon {
|
|
|
|
|
|
|
|
|
|
| 3545 |
display: flex;
|
| 3546 |
+
justify-content: flex-start;
|
|
|
|
|
|
|
|
|
|
| 3547 |
}
|
| 3548 |
|
| 3549 |
.eael-infobox-content-align-center.eael-infobox-icon-bg-shape-square .infobox-icon,
|
| 3550 |
.eael-infobox-content-align-center.eael-infobox-icon-bg-shape-radius .infobox-icon,
|
| 3551 |
.eael-infobox-content-align-center.eael-infobox-icon-bg-shape-circle .infobox-icon {
|
|
|
|
|
|
|
|
|
|
| 3552 |
display: flex;
|
| 3553 |
+
justify-content: center;
|
|
|
|
|
|
|
|
|
|
| 3554 |
}
|
| 3555 |
|
| 3556 |
.eael-infobox-content-align-right.eael-infobox-icon-bg-shape-square .infobox-icon,
|
| 3557 |
.eael-infobox-content-align-right.eael-infobox-icon-bg-shape-radius .infobox-icon,
|
| 3558 |
.eael-infobox-content-align-right.eael-infobox-icon-bg-shape-circle .infobox-icon {
|
|
|
|
|
|
|
|
|
|
| 3559 |
display: flex;
|
| 3560 |
+
justify-content: flex-end;
|
|
|
|
|
|
|
|
|
|
| 3561 |
}
|
| 3562 |
|
| 3563 |
/*--- Image/Icon On Left ---*/
|
| 3564 |
.eael-infobox.icon-on-left {
|
| 3565 |
position: relative;
|
| 3566 |
z-index: 0;
|
|
|
|
|
|
|
|
|
|
| 3567 |
display: flex;
|
| 3568 |
}
|
| 3569 |
|
| 3570 |
.eael-infobox.icon-on-right .infobox-icon-wrap,
|
| 3571 |
.eael-infobox.icon-on-left .infobox-icon-wrap {
|
| 3572 |
+
justify-content: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3573 |
display: flex !important;
|
| 3574 |
+
align-items: center;
|
|
|
|
|
|
|
|
|
|
| 3575 |
}
|
| 3576 |
|
| 3577 |
.eael-infobox.icon-on-left .infobox-icon .infobox-icon-wrap {
|
| 3588 |
|
| 3589 |
.eael-infobox.icon-on-left .infobox-icon .infobox-icon-wrap i {
|
| 3590 |
margin-top: 0px;
|
| 3591 |
+
transform: translateY(0%);
|
|
|
|
|
|
|
| 3592 |
}
|
| 3593 |
|
| 3594 |
.eael-infobox.icon-on-left .infobox-content {
|
| 3595 |
padding-left: 15px;
|
| 3596 |
+
flex: 1 1 auto;
|
|
|
|
|
|
|
|
|
|
| 3597 |
}
|
| 3598 |
|
| 3599 |
.eael-infobox.icon-on-left .infobox-content .title {
|
| 3605 |
.eael-infobox.icon-on-right {
|
| 3606 |
position: relative;
|
| 3607 |
z-index: 0;
|
|
|
|
|
|
|
|
|
|
| 3608 |
display: flex;
|
| 3609 |
+
flex-direction: row-reverse;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3610 |
}
|
| 3611 |
|
| 3612 |
.eael-infobox.icon-on-right .infobox-icon .infobox-icon-wrap {
|
| 3620 |
|
| 3621 |
.eael-infobox.icon-on-right .infobox-icon .infobox-icon-wrap i {
|
| 3622 |
margin-top: 0px;
|
| 3623 |
+
transform: translateY(0%);
|
|
|
|
|
|
|
| 3624 |
}
|
| 3625 |
|
| 3626 |
.eael-infobox.icon-on-right .infobox-content {
|
| 3627 |
padding-right: 15px;
|
| 3628 |
text-align: right;
|
| 3629 |
+
flex: 1 1 auto;
|
| 3630 |
+
box-sizing: border-box;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3631 |
}
|
| 3632 |
|
| 3633 |
.eael-infobox.icon-on-right .infobox-content .title {
|
| 3637 |
|
| 3638 |
/*--- Imgae Circle On Top ---*/
|
| 3639 |
.eael-infobox .infobox-icon img {
|
|
|
|
|
|
|
| 3640 |
transition: all 300ms ease-in-out 0s;
|
| 3641 |
}
|
| 3642 |
|
| 3643 |
.eael-infobox-hover-img-shape-square:hover .eael-infobox .infobox-icon img {
|
| 3644 |
+
border-radius: 0;
|
|
|
|
| 3645 |
}
|
| 3646 |
|
| 3647 |
.eael-infobox-shape-circle .eael-infobox .infobox-icon img,
|
| 3648 |
.eael-infobox-hover-img-shape-circle:hover .eael-infobox .infobox-icon img {
|
| 3649 |
+
border-radius: 50%;
|
|
|
|
| 3650 |
}
|
| 3651 |
|
| 3652 |
.eael-infobox-shape-radius .eael-infobox .infobox-icon img,
|
| 3653 |
.eael-infobox-hover-img-shape-radius:hover .eael-infobox .infobox-icon img {
|
| 3654 |
+
border-radius: 15px;
|
|
|
|
| 3655 |
}
|
| 3656 |
|
| 3657 |
/* ------------------------ */
|
| 3690 |
left: 0;
|
| 3691 |
top: 0;
|
| 3692 |
padding: 0 8px;
|
| 3693 |
+
box-sizing: border-box;
|
|
|
|
| 3694 |
}
|
| 3695 |
|
| 3696 |
.mfp-container:before {
|
| 3725 |
|
| 3726 |
.mfp-zoom-out-cur,
|
| 3727 |
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
|
|
|
|
| 3728 |
cursor: zoom-out;
|
| 3729 |
}
|
| 3730 |
|
| 3731 |
.mfp-zoom {
|
| 3732 |
cursor: pointer;
|
|
|
|
| 3733 |
cursor: zoom-in;
|
| 3734 |
}
|
| 3735 |
|
| 3794 |
outline: none;
|
| 3795 |
padding: 0;
|
| 3796 |
z-index: 1046;
|
| 3797 |
+
box-shadow: none;
|
| 3798 |
+
touch-action: manipulation;
|
|
|
|
|
|
|
| 3799 |
}
|
| 3800 |
|
| 3801 |
button::-moz-focus-inner {
|
| 3955 |
left: 0;
|
| 3956 |
width: 100%;
|
| 3957 |
height: 100%;
|
| 3958 |
+
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
|
|
|
|
| 3959 |
background: #000;
|
| 3960 |
}
|
| 3961 |
|
| 3966 |
height: auto;
|
| 3967 |
display: block;
|
| 3968 |
line-height: 0;
|
| 3969 |
+
box-sizing: border-box;
|
|
|
|
| 3970 |
padding: 40px 0 40px;
|
| 3971 |
margin: 0 auto;
|
| 3972 |
}
|
| 3987 |
width: auto;
|
| 3988 |
height: auto;
|
| 3989 |
z-index: -1;
|
| 3990 |
+
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
|
|
|
|
| 3991 |
background: #444;
|
| 3992 |
}
|
| 3993 |
|
| 4069 |
top: auto;
|
| 4070 |
padding: 3px 5px;
|
| 4071 |
position: fixed;
|
| 4072 |
+
box-sizing: border-box;
|
|
|
|
| 4073 |
}
|
| 4074 |
|
| 4075 |
.mfp-img-mobile .mfp-bottom-bar:empty {
|
| 4095 |
}
|
| 4096 |
@media all and (max-width: 900px) {
|
| 4097 |
.mfp-arrow {
|
| 4098 |
+
transform: scale(0.75);
|
|
|
|
|
|
|
| 4099 |
}
|
| 4100 |
|
| 4101 |
.mfp-arrow-left {
|
| 4102 |
+
transform-origin: 0;
|
|
|
|
|
|
|
| 4103 |
}
|
| 4104 |
|
| 4105 |
.mfp-arrow-right {
|
| 4106 |
+
transform-origin: 100%;
|
|
|
|
|
|
|
| 4107 |
}
|
| 4108 |
|
| 4109 |
.mfp-container {
|
| 4176 |
|
| 4177 |
.eael-ninja-form .submit-container input[type=button] {
|
| 4178 |
border: 0;
|
| 4179 |
+
border-radius: 0;
|
|
|
|
| 4180 |
}
|
| 4181 |
|
| 4182 |
.eael-ninja-form-button-full-width .submit-container input[type=button] {
|
| 4219 |
width: 100%;
|
| 4220 |
height: 100%;
|
| 4221 |
z-index: 2;
|
|
|
|
|
|
|
|
|
|
| 4222 |
transition: opacity 0.2s ease-in-out, transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
|
|
|
|
| 4223 |
}
|
| 4224 |
|
| 4225 |
.eael-entry-overlay > a {
|
| 4251 |
}
|
| 4252 |
|
| 4253 |
.eael-entry-footer .eael-author-avatar .avatar {
|
| 4254 |
+
border-radius: 50%;
|
|
|
|
| 4255 |
}
|
| 4256 |
|
| 4257 |
.eael-post-grid .eael-entry-footer .eael-entry-meta {
|
| 4260 |
}
|
| 4261 |
|
| 4262 |
.eael-grid-post .eael-entry-meta {
|
|
|
|
|
|
|
|
|
|
| 4263 |
display: flex;
|
| 4264 |
+
flex-direction: row;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4265 |
}
|
| 4266 |
|
| 4267 |
.eael-grid-post .eael-entry-footer .eael-entry-meta {
|
| 4268 |
+
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4269 |
}
|
| 4270 |
|
| 4271 |
.eael-entry-meta > div {
|
| 4307 |
}
|
| 4308 |
|
| 4309 |
.eael-entry-overlay {
|
|
|
|
|
|
|
|
|
|
| 4310 |
display: flex;
|
| 4311 |
+
align-items: center;
|
| 4312 |
+
justify-content: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4313 |
}
|
| 4314 |
|
| 4315 |
.eael-entry-overlay > i {
|
| 4320 |
.eael-entry-overlay.fade-in {
|
| 4321 |
visibility: hidden;
|
| 4322 |
opacity: 0;
|
|
|
|
|
|
|
| 4323 |
transition: 300ms;
|
| 4324 |
}
|
| 4325 |
|
| 4329 |
}
|
| 4330 |
|
| 4331 |
.eael-entry-medianone:hover .eael-entry-overlay.fade-in > i {
|
| 4332 |
+
transform: translate(0);
|
|
|
|
|
|
|
| 4333 |
opacity: 1;
|
| 4334 |
}
|
| 4335 |
|
| 4336 |
/*--- zoom in --- */
|
| 4337 |
.eael-entry-overlay.zoom-in {
|
| 4338 |
+
transform: scale(0.9);
|
|
|
|
|
|
|
| 4339 |
visibility: hidden;
|
| 4340 |
opacity: 0;
|
|
|
|
|
|
|
| 4341 |
transition: 300ms;
|
| 4342 |
}
|
| 4343 |
|
| 4344 |
.eael-entry-medianone:hover .eael-entry-overlay.zoom-in {
|
| 4345 |
visibility: visible;
|
| 4346 |
opacity: 1;
|
| 4347 |
+
transform: scale(1);
|
|
|
|
|
|
|
| 4348 |
}
|
| 4349 |
|
| 4350 |
/*--- slide up ---*/
|
| 4351 |
.eael-entry-overlay.slide-up {
|
| 4352 |
+
transform: translateY(100%);
|
|
|
|
|
|
|
| 4353 |
visibility: hidden;
|
| 4354 |
opacity: 0;
|
|
|
|
|
|
|
| 4355 |
transition: 300ms;
|
| 4356 |
}
|
| 4357 |
|
| 4358 |
.eael-entry-medianone:hover .eael-entry-overlay.slide-up {
|
| 4359 |
+
transform: translateY(0);
|
|
|
|
|
|
|
| 4360 |
visibility: visible;
|
| 4361 |
opacity: 1;
|
| 4362 |
}
|
| 4379 |
}
|
| 4380 |
|
| 4381 |
.eael-entry-media.grid-hover-style-zoom-in .eael-entry-overlay {
|
| 4382 |
+
transform: scale(0.4);
|
|
|
|
|
|
|
| 4383 |
opacity: 0;
|
| 4384 |
}
|
| 4385 |
|
| 4386 |
.eael-entry-media.grid-hover-style-zoom-in:hover .eael-entry-overlay {
|
| 4387 |
+
transform: scale(1);
|
|
|
|
|
|
|
| 4388 |
opacity: 1;
|
| 4389 |
}
|
| 4390 |
|
| 4391 |
.eael-entry-media.grid-hover-style-animate-down .eael-entry-overlay {
|
| 4392 |
+
transform: translateY(-100%);
|
|
|
|
|
|
|
| 4393 |
}
|
| 4394 |
|
| 4395 |
.eael-entry-media.grid-hover-style-animate-down .eael-entry-overlay > i {
|
| 4396 |
+
transform: translateY(-100px);
|
| 4397 |
+
transition-delay: 100ms;
|
| 4398 |
+
transition-duration: 300ms;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4399 |
}
|
| 4400 |
|
| 4401 |
.eael-entry-media.grid-hover-style-animate-down:hover .eael-entry-overlay {
|
| 4402 |
+
transform: translate(0);
|
|
|
|
|
|
|
| 4403 |
}
|
| 4404 |
|
| 4405 |
.eael-entry-media.grid-hover-style-animate-down:hover .eael-entry-overlay > i {
|
| 4406 |
+
transform: translateY(0);
|
|
|
|
|
|
|
| 4407 |
}
|
| 4408 |
|
| 4409 |
.eael-entry-media.grid-hover-style-animate-up .eael-entry-overlay {
|
| 4410 |
+
transform: translateY(100%);
|
|
|
|
|
|
|
| 4411 |
visibility: hidden;
|
| 4412 |
opacity: 0;
|
| 4413 |
}
|
| 4414 |
|
| 4415 |
.eael-entry-media.grid-hover-style-animate-up .eael-entry-overlay > i {
|
| 4416 |
+
transform: translateY(100px);
|
| 4417 |
+
transition-delay: 100ms;
|
| 4418 |
+
transition-duration: 300ms;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4419 |
}
|
| 4420 |
|
| 4421 |
.eael-entry-media.grid-hover-style-animate-up:hover .eael-entry-overlay {
|
| 4422 |
+
transform: translate(0);
|
|
|
|
|
|
|
| 4423 |
visibility: visible;
|
| 4424 |
opacity: 1;
|
| 4425 |
}
|
| 4426 |
|
| 4427 |
.eael-entry-media.grid-hover-style-animate-up:hover .eael-entry-overlay > i {
|
| 4428 |
+
transform: translateY(0);
|
|
|
|
|
|
|
| 4429 |
}
|
| 4430 |
|
| 4431 |
/*--- Post Grid Column Styles ---*/
|
| 4496 |
|
| 4497 |
.eael-entry-footer {
|
| 4498 |
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
| 4499 |
display: flex;
|
| 4500 |
}
|
| 4501 |
|
| 4542 |
.eael-timeline-bullet {
|
| 4543 |
background-color: #9fa9af;
|
| 4544 |
border: 5px solid #fff;
|
| 4545 |
+
border-radius: 50%;
|
| 4546 |
+
box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
|
| 4547 |
content: "";
|
| 4548 |
height: 20px;
|
| 4549 |
position: absolute;
|
| 4557 |
.eael-timeline-post:nth-child(2n) .eael-timeline-bullet {
|
| 4558 |
background-color: #9fa9af;
|
| 4559 |
border: 5px solid #fff;
|
| 4560 |
+
border-radius: 50%;
|
|
|
|
| 4561 |
bottom: 36px;
|
| 4562 |
content: "";
|
| 4563 |
height: 20px;
|
| 4569 |
}
|
| 4570 |
|
| 4571 |
.eael-timeline-post-inner {
|
|
|
|
|
|
|
| 4572 |
background: linear-gradient(45deg, #3f3f46 0%, #05abe0 100%) repeat scroll 0 0 transparent;
|
| 4573 |
border: 8px solid #e5eaed;
|
| 4574 |
+
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
|
|
|
|
| 4575 |
float: right;
|
| 4576 |
margin: 30px 40px 30px auto;
|
| 4577 |
position: relative;
|
| 4619 |
}
|
| 4620 |
|
| 4621 |
.eael-timeline-post-image {
|
| 4622 |
+
background-size: cover;
|
|
|
|
| 4623 |
background-position: center center;
|
| 4624 |
background-repeat: no-repeat;
|
| 4625 |
display: block;
|
| 4627 |
overflow: hidden;
|
| 4628 |
position: relative;
|
| 4629 |
opacity: .6;
|
|
|
|
|
|
|
| 4630 |
transition: all .3s;
|
| 4631 |
}
|
| 4632 |
|
| 4652 |
position: absolute;
|
| 4653 |
top: 0;
|
| 4654 |
left: 0;
|
|
|
|
|
|
|
| 4655 |
transition: all .3s;
|
| 4656 |
}
|
| 4657 |
|
| 4675 |
background-color: rgba(0, 0, 0, 0.7);
|
| 4676 |
color: #fff;
|
| 4677 |
font-size: 10px;
|
| 4678 |
+
border-radius: 20px;
|
|
|
|
| 4679 |
position: absolute;
|
| 4680 |
right: -97px;
|
| 4681 |
width: 100px;
|
| 4684 |
text-align: center;
|
| 4685 |
top: 50px;
|
| 4686 |
z-index: 99;
|
|
|
|
|
|
|
| 4687 |
transition: all .5s;
|
| 4688 |
}
|
| 4689 |
|
| 4690 |
.eael-timeline-post:nth-child(2n) time {
|
| 4691 |
background-color: rgba(0, 0, 0, 0.7);
|
| 4692 |
+
border-radius: 20px;
|
|
|
|
| 4693 |
color: #fff;
|
| 4694 |
font-size: 10px;
|
| 4695 |
height: 30px;
|
| 4731 |
}
|
| 4732 |
|
| 4733 |
.eael-load-more-button-wrap {
|
|
|
|
|
|
|
|
|
|
| 4734 |
display: flex;
|
| 4735 |
}
|
| 4736 |
|
| 4803 |
.eael-timeline-post time,
|
| 4804 |
.eael-timeline-post:nth-child(2n) time {
|
| 4805 |
background-color: #fff;
|
| 4806 |
+
border-radius: 0;
|
|
|
|
| 4807 |
color: #444;
|
| 4808 |
font-size: 12px;
|
| 4809 |
text-transform: uppercase;
|
| 4852 |
/* -------------------------------- */
|
| 4853 |
.eael-pricing {
|
| 4854 |
-webkit-display: flex;
|
|
|
|
|
|
|
| 4855 |
display: flex;
|
| 4856 |
+
justify-content: center;
|
| 4857 |
+
align-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4858 |
}
|
| 4859 |
|
| 4860 |
.eael-pricing .eael-pricing-item {
|
| 4872 |
color: #fff;
|
| 4873 |
text-transform: uppercase;
|
| 4874 |
text-decoration: none;
|
|
|
|
|
|
|
| 4875 |
transition: .3s;
|
|
|
|
| 4876 |
border-radius: 4px;
|
| 4877 |
}
|
| 4878 |
|
| 4910 |
.eael-pricing.style-1 .eael-pricing-item {
|
| 4911 |
border: 1px solid rgba(9, 9, 9, 0.1);
|
| 4912 |
padding: 30px;
|
|
|
|
| 4913 |
border-radius: 5px;
|
|
|
|
|
|
|
| 4914 |
transition: .5s;
|
| 4915 |
}
|
| 4916 |
|
| 4917 |
.eael-pricing.style-1 .eael-pricing-item:hover {
|
|
|
|
| 4918 |
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
|
| 4919 |
}
|
| 4920 |
|
| 4932 |
left: 0px;
|
| 4933 |
right: 0px;
|
| 4934 |
z-index: 1;
|
|
|
|
| 4935 |
border-radius: 5px 5px 0px 0px;
|
| 4936 |
}
|
| 4937 |
|
| 5076 |
|
| 5077 |
.eael-pricing.style-2 .eael-pricing-item {
|
| 5078 |
padding: 30px 0px;
|
| 5079 |
+
border-radius: 5px;
|
|
|
|
| 5080 |
margin: 0px;
|
| 5081 |
border: 1px solid rgba(9, 9, 9, 0.1);
|
| 5082 |
}
|
| 5083 |
|
| 5084 |
.eael-pricing.style-2 .eael-pricing-item.featured {
|
|
|
|
| 5085 |
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
|
| 5086 |
}
|
| 5087 |
|
| 5095 |
left: 0px;
|
| 5096 |
right: 0px;
|
| 5097 |
z-index: 1;
|
|
|
|
| 5098 |
border-radius: 5px 5px 0px 0px;
|
| 5099 |
}
|
| 5100 |
|
| 5147 |
width: 80px;
|
| 5148 |
height: 80px;
|
| 5149 |
background: #00c853;
|
| 5150 |
+
border-radius: 50%;
|
|
|
|
| 5151 |
margin-bottom: 30px;
|
| 5152 |
text-align: center;
|
|
|
|
|
|
|
| 5153 |
transition: .5s;
|
| 5154 |
overflow: hidden;
|
| 5155 |
}
|
| 5158 |
font-size: 30px;
|
| 5159 |
color: #fff;
|
| 5160 |
line-height: 80px;
|
|
|
|
|
|
|
| 5161 |
transition: .5s;
|
| 5162 |
}
|
| 5163 |
|
| 5344 |
}
|
| 5345 |
|
| 5346 |
.eael-pricing-content-align-left .eael-pricing.style-3 .eael-pricing-item .header:after {
|
| 5347 |
+
transform: translateX(-80%);
|
|
|
|
|
|
|
| 5348 |
}
|
| 5349 |
|
| 5350 |
.eael-pricing-content-align-right .eael-pricing.style-3 .eael-pricing-item .header:after {
|
| 5351 |
+
transform: translateX(80%);
|
|
|
|
|
|
|
| 5352 |
}
|
| 5353 |
|
| 5354 |
.eael-pricing-content-align-left .eael-pricing.style-3 .eael-pricing-item:hover .header:after,
|
| 5355 |
.eael-pricing-content-align-right .eael-pricing.style-3 .eael-pricing-item:hover .header:after {
|
| 5356 |
+
transform: translateX(0%);
|
|
|
|
|
|
|
| 5357 |
}
|
| 5358 |
|
| 5359 |
.eael-pricing-content-align-left .eael-pricing.style-1 .eael-pricing-item .header:after,
|
| 5402 |
.only-in-pro {
|
| 5403 |
width: 100%;
|
| 5404 |
-webkit-display: flex;
|
|
|
|
|
|
|
| 5405 |
display: flex;
|
| 5406 |
+
align-items: center;
|
| 5407 |
+
justify-content: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5408 |
padding: 15px;
|
| 5409 |
min-width: 200px;
|
| 5410 |
background: #EF5350;
|
| 5443 |
bottom: auto;
|
| 5444 |
}
|
| 5445 |
|
| 5446 |
+
@media only screen and (max-width: 480px) {
|
| 5447 |
+
.eael-pricing.style-1 .eael-pricing-item .price-tag {
|
| 5448 |
+
display: block;
|
| 5449 |
+
}
|
| 5450 |
+
}
|
| 5451 |
+
|
| 5452 |
/*--------------------------*/
|
| 5453 |
/* 09. Product Styles
|
| 5454 |
/*--------------------------*/
|
| 5556 |
overflow: hidden;
|
| 5557 |
text-align: center;
|
| 5558 |
padding: 0;
|
| 5559 |
+
border-radius: 0;
|
|
|
|
| 5560 |
background-color: #fff;
|
| 5561 |
+
box-shadow: none;
|
|
|
|
| 5562 |
}
|
| 5563 |
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a,
|
| 5564 |
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a,
|
| 5569 |
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a:hover,
|
| 5570 |
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a:hover {
|
| 5571 |
outline: none;
|
| 5572 |
+
box-shadow: none;
|
|
|
|
| 5573 |
}
|
| 5574 |
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product img, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product img,
|
| 5575 |
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product img,
|
| 5601 |
text-transform: uppercase;
|
| 5602 |
color: #fff;
|
| 5603 |
background-color: #ff2a13;
|
| 5604 |
+
border-radius: 0;
|
|
|
|
| 5605 |
border: none;
|
| 5606 |
+
box-shadow: none;
|
|
|
|
| 5607 |
position: absolute;
|
| 5608 |
height: 100px;
|
| 5609 |
width: 200px;
|
| 5613 |
right: auto;
|
| 5614 |
margin: 0;
|
| 5615 |
padding: 0;
|
| 5616 |
+
transform: rotate(-45deg);
|
|
|
|
|
|
|
| 5617 |
}
|
| 5618 |
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price,
|
| 5619 |
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price,
|
| 5655 |
background-color: #333;
|
| 5656 |
padding: 0;
|
| 5657 |
margin: 15px;
|
| 5658 |
+
border-radius: 0;
|
|
|
|
| 5659 |
}
|
| 5660 |
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button:focus,
|
| 5661 |
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus,
|
| 5687 |
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,
|
| 5688 |
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart {
|
| 5689 |
visibility: hidden;
|
|
|
|
|
|
|
| 5690 |
transition: none;
|
| 5691 |
}
|
| 5692 |
.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover,
|
| 5706 |
overflow: hidden;
|
| 5707 |
text-align: center;
|
| 5708 |
padding: 0 0 15px 0;
|
| 5709 |
+
border-radius: 0;
|
|
|
|
| 5710 |
background-color: #fff;
|
| 5711 |
+
box-shadow: none;
|
|
|
|
| 5712 |
}
|
| 5713 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product a,
|
| 5714 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product a {
|
| 5717 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product a:hover,
|
| 5718 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product a:hover {
|
| 5719 |
outline: none;
|
| 5720 |
+
box-shadow: none;
|
|
|
|
| 5721 |
}
|
| 5722 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product img,
|
| 5723 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product img {
|
| 5740 |
left: 0;
|
| 5741 |
right: 0;
|
| 5742 |
text-align: center;
|
| 5743 |
+
transform: translateY(-50%);
|
|
|
|
|
|
|
| 5744 |
}
|
| 5745 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link,
|
| 5746 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,
|
| 5757 |
width: 38px;
|
| 5758 |
height: 38px;
|
| 5759 |
border-style: none;
|
| 5760 |
+
border-radius: 50%;
|
|
|
|
| 5761 |
vertical-align: middle;
|
| 5762 |
padding: 0;
|
| 5763 |
margin: 0 5px;
|
| 5764 |
+
transform: translateY(20px);
|
|
|
|
|
|
|
| 5765 |
opacity: 0;
|
|
|
|
|
|
|
|
|
|
| 5766 |
transition: transform 200ms, opacity 300ms;
|
|
|
|
| 5767 |
}
|
| 5768 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link:focus,
|
| 5769 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:focus,
|
| 5850 |
text-transform: uppercase;
|
| 5851 |
color: #fff;
|
| 5852 |
background-color: #ff2a13;
|
| 5853 |
+
border-radius: 0;
|
|
|
|
| 5854 |
border: none;
|
| 5855 |
+
box-shadow: none;
|
|
|
|
| 5856 |
position: absolute;
|
| 5857 |
height: 100px;
|
| 5858 |
width: 200px;
|
| 5862 |
right: auto;
|
| 5863 |
margin: 0;
|
| 5864 |
padding: 0;
|
| 5865 |
+
transform: rotate(-45deg);
|
|
|
|
|
|
|
| 5866 |
}
|
| 5867 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price,
|
| 5868 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price {
|
| 5892 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay a,
|
| 5893 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .add_to_cart_button {
|
| 5894 |
opacity: 1;
|
| 5895 |
+
transform: translateY(0);
|
|
|
|
|
|
|
| 5896 |
}
|
| 5897 |
|
| 5898 |
@-webkit-keyframes animateStripe {
|
| 5899 |
0% {
|
| 5900 |
+
transform: translate(0, 0);
|
|
|
|
| 5901 |
}
|
| 5902 |
100% {
|
| 5903 |
+
transform: translate(35px, 0);
|
|
|
|
| 5904 |
}
|
| 5905 |
}
|
| 5906 |
@keyframes animateStripe {
|
| 5907 |
0% {
|
| 5908 |
+
transform: translate(0, 0);
|
|
|
|
| 5909 |
}
|
| 5910 |
100% {
|
| 5911 |
+
transform: translate(35px, 0);
|
|
|
|
| 5912 |
}
|
| 5913 |
}
|
| 5914 |
@-webkit-keyframes animateStripeRTL {
|
| 5915 |
0% {
|
| 5916 |
+
transform: translate(0, 0);
|
|
|
|
| 5917 |
}
|
| 5918 |
100% {
|
| 5919 |
+
transform: translate(-35px, 0);
|
|
|
|
| 5920 |
}
|
| 5921 |
}
|
| 5922 |
@keyframes animateStripeRTL {
|
| 5923 |
0% {
|
| 5924 |
+
transform: translate(0, 0);
|
|
|
|
| 5925 |
}
|
| 5926 |
100% {
|
| 5927 |
+
transform: translate(-35px, 0);
|
|
|
|
| 5928 |
}
|
| 5929 |
}
|
| 5930 |
.eael-progressbar {
|
| 5960 |
width: 0;
|
| 5961 |
height: 12px;
|
| 5962 |
background-color: #000000;
|
| 5963 |
+
transform: translateY(-50%);
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5964 |
transition: width 1500ms linear;
|
| 5965 |
overflow: hidden;
|
| 5966 |
}
|
| 5983 |
width: 220px;
|
| 5984 |
height: 220px;
|
| 5985 |
padding: 10px;
|
| 5986 |
+
border-radius: 50%;
|
|
|
|
| 5987 |
}
|
| 5988 |
|
| 5989 |
.eael-progressbar-circle-pie {
|
| 6002 |
border-width: 12px;
|
| 6003 |
border-style: solid;
|
| 6004 |
border-color: #eeeeee;
|
| 6005 |
+
border-radius: 50%;
|
|
|
|
| 6006 |
}
|
| 6007 |
|
| 6008 |
.eael-progressbar-circle-half {
|
| 6014 |
border-width: 12px;
|
| 6015 |
border-style: solid;
|
| 6016 |
border-color: #000000;
|
| 6017 |
+
border-radius: 50%;
|
|
|
|
| 6018 |
-webkit-clip-path: inset(0 50% 0 0);
|
| 6019 |
clip-path: inset(0 50% 0 0);
|
| 6020 |
}
|
| 6021 |
|
| 6022 |
.eael-progressbar-circle-half-left {
|
| 6023 |
+
transform: rotate(0deg);
|
|
|
|
|
|
|
| 6024 |
}
|
| 6025 |
|
| 6026 |
.eael-progressbar-circle-half-right {
|
| 6027 |
+
transform: rotate(180deg);
|
|
|
|
|
|
|
| 6028 |
visibility: hidden;
|
| 6029 |
}
|
| 6030 |
|
| 6032 |
position: absolute;
|
| 6033 |
top: 50%;
|
| 6034 |
width: 100%;
|
| 6035 |
+
transform: translateY(-50%);
|
|
|
|
|
|
|
| 6036 |
text-align: center;
|
| 6037 |
}
|
| 6038 |
|
| 6049 |
.eael-progressbar-half-circle .eael-progressbar-circle-half {
|
| 6050 |
-webkit-clip-path: inset(50% 0 0 0);
|
| 6051 |
clip-path: inset(50% 0 0 0);
|
| 6052 |
+
transform: rotate(0deg);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6053 |
transition: transform 1500ms linear;
|
|
|
|
| 6054 |
}
|
| 6055 |
.eael-progressbar-half-circle .eael-progressbar-circle-inner-content {
|
| 6056 |
top: initial;
|
| 6057 |
bottom: 0;
|
| 6058 |
+
transform: translateY(0);
|
|
|
|
|
|
|
| 6059 |
}
|
| 6060 |
.eael-progressbar-half-circle .eael-progressbar-title {
|
| 6061 |
font-size: 16px;
|
| 6084 |
left: -35px;
|
| 6085 |
width: calc(100% + 70px);
|
| 6086 |
height: 100%;
|
|
|
|
|
|
|
| 6087 |
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
| 6088 |
+
background-size: 35px 35px;
|
|
|
|
| 6089 |
}
|
| 6090 |
|
| 6091 |
.eael-progressbar-line-animate .eael-progressbar-line-fill:after {
|
| 6121 |
margin: 0 0 0 auto;
|
| 6122 |
}
|
| 6123 |
|
| 6124 |
+
.eael-reading-progress-wrap.eael-reading-progress-wrap-local .eael-reading-progress-global {
|
| 6125 |
+
display: none;
|
| 6126 |
+
}
|
| 6127 |
+
.eael-reading-progress-wrap.eael-reading-progress-wrap-global .eael-reading-progress-local {
|
| 6128 |
+
display: none;
|
| 6129 |
+
}
|
| 6130 |
+
.eael-reading-progress-wrap.eael-reading-progress-wrap-disabled .eael-reading-progress-global,
|
| 6131 |
+
.eael-reading-progress-wrap.eael-reading-progress-wrap-disabled .eael-reading-progress-local {
|
| 6132 |
+
display: none;
|
| 6133 |
+
}
|
| 6134 |
+
.eael-reading-progress-wrap .eael-reading-progress {
|
| 6135 |
+
width: 100%;
|
| 6136 |
+
position: fixed;
|
| 6137 |
+
top: 0;
|
| 6138 |
+
left: 0;
|
| 6139 |
+
height: 5px;
|
| 6140 |
+
z-index: 999999;
|
| 6141 |
+
}
|
| 6142 |
+
.eael-reading-progress-wrap .eael-reading-progress.eael-reading-progress-bottom {
|
| 6143 |
+
top: unset;
|
| 6144 |
+
bottom: 0;
|
| 6145 |
+
}
|
| 6146 |
+
.eael-reading-progress-wrap .eael-reading-progress .eael-reading-progress-fill {
|
| 6147 |
+
height: 5px;
|
| 6148 |
+
background-color: #1fd18e;
|
| 6149 |
+
width: 0%;
|
| 6150 |
+
transition: width 50ms ease;
|
| 6151 |
+
}
|
| 6152 |
+
|
| 6153 |
/*----------------------------*/
|
| 6154 |
/* 07. Team Members Styles
|
| 6155 |
/*----------------------------*/
|
| 6159 |
}
|
| 6160 |
|
| 6161 |
.team-avatar-rounded figure img {
|
| 6162 |
+
border-radius: 50%;
|
|
|
|
| 6163 |
height: auto;
|
| 6164 |
}
|
| 6165 |
|
| 6249 |
padding-top: 15%;
|
| 6250 |
opacity: 0;
|
| 6251 |
overflow: hidden;
|
| 6252 |
+
text-overflow: ellipsis;
|
|
|
|
| 6253 |
position: absolute;
|
| 6254 |
right: 10px;
|
| 6255 |
top: 10px;
|
|
|
|
|
|
|
| 6256 |
transition: all 0.615s cubic-bezier(0.19, 1, 0.22, 1) 0s;
|
| 6257 |
}
|
| 6258 |
|
| 6262 |
|
| 6263 |
.eael-team-member-social-link > a {
|
| 6264 |
display: inline-block;
|
|
|
|
|
|
|
| 6265 |
transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s;
|
| 6266 |
}
|
| 6267 |
|
| 6331 |
}
|
| 6332 |
|
| 6333 |
.testimonial-avatar-rounded figure img {
|
| 6334 |
+
border-radius: 50%;
|
|
|
|
| 6335 |
height: auto;
|
| 6336 |
}
|
| 6337 |
|
| 6661 |
color: #333;
|
| 6662 |
line-height: 1;
|
| 6663 |
cursor: pointer;
|
|
|
|
|
|
|
| 6664 |
transition: all 0.3s ease-in-out;
|
| 6665 |
}
|
| 6666 |
|
| 6671 |
background-color: black;
|
| 6672 |
color: #fff;
|
| 6673 |
text-align: center;
|
| 6674 |
+
border-radius: 4px;
|
|
|
|
| 6675 |
padding: 10px;
|
| 6676 |
position: absolute;
|
| 6677 |
z-index: 1;
|
| 6694 |
.eael-tooltip .eael-tooltip-text.eael-tooltip-left {
|
| 6695 |
top: 50%;
|
| 6696 |
right: 100%;
|
| 6697 |
+
transform: translateY(-50%);
|
|
|
|
|
|
|
| 6698 |
margin-right: 10px;
|
| 6699 |
}
|
| 6700 |
|
| 6713 |
.eael-tooltip .eael-tooltip-text.eael-tooltip-right {
|
| 6714 |
top: 50%;
|
| 6715 |
left: 100%;
|
| 6716 |
+
transform: translateY(-50%);
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6717 |
transition: all 0.3s ease-in-out;
|
| 6718 |
margin-left: 10px;
|
| 6719 |
}
|
| 6771 |
|
| 6772 |
/*--- Alignments ---*/
|
| 6773 |
.eael-tooltip-align-left {
|
|
|
|
|
|
|
|
|
|
| 6774 |
display: flex;
|
| 6775 |
width: 100%;
|
| 6776 |
+
justify-content: flex-start;
|
|
|
|
|
|
|
|
|
|
| 6777 |
}
|
| 6778 |
|
| 6779 |
.eael-tooltip-align-right {
|
|
|
|
|
|
|
|
|
|
| 6780 |
display: flex;
|
| 6781 |
width: 100%;
|
| 6782 |
+
justify-content: flex-end;
|
|
|
|
|
|
|
|
|
|
| 6783 |
}
|
| 6784 |
|
| 6785 |
.eael-tooltip-align-center {
|
|
|
|
|
|
|
|
|
|
| 6786 |
display: flex;
|
| 6787 |
width: 100%;
|
| 6788 |
+
justify-content: center;
|
|
|
|
|
|
|
|
|
|
| 6789 |
}
|
| 6790 |
|
| 6791 |
.eael-tooltip-align-justify .eael-tooltip {
|
|
|
|
|
|
|
|
|
|
| 6792 |
display: flex;
|
| 6793 |
+
justify-content: center;
|
| 6794 |
+
align-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6795 |
}
|
| 6796 |
|
| 6797 |
/*--- Tooltip Keyframes ---*/
|
| 6876 |
}
|
| 6877 |
}
|
| 6878 |
|
| 6879 |
+
.eael-twitter-feed::before, .eael-twitter-feed::after {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6880 |
content: "";
|
| 6881 |
clear: both;
|
| 6882 |
}
|
| 6883 |
|
| 6884 |
+
.eael-twitter-feed-masonry .eael-twitter-feed-item {
|
| 6885 |
float: left;
|
|
|
|
| 6886 |
}
|
| 6887 |
+
@media only screen and (max-width: 480px) {
|
| 6888 |
+
.eael-twitter-feed-masonry.eael-twitter-feed-col-2 .eael-twitter-feed-item {
|
| 6889 |
+
width: 100% !important;
|
| 6890 |
+
}
|
| 6891 |
}
|
| 6892 |
+
@media only screen and (max-width: 480px) {
|
| 6893 |
+
.eael-twitter-feed-masonry.eael-twitter-feed-col-3 .eael-twitter-feed-item {
|
| 6894 |
+
width: 100% !important;
|
| 6895 |
+
}
|
|
|
|
|
|
|
|
|
|
| 6896 |
}
|
| 6897 |
+
@media only screen and (max-width: 480px) {
|
| 6898 |
+
.eael-twitter-feed-masonry.eael-twitter-feed-col-4 .eael-twitter-feed-item {
|
| 6899 |
+
width: 100% !important;
|
| 6900 |
+
}
|
| 6901 |
}
|
| 6902 |
|
| 6903 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-inner {
|
| 6904 |
+
background: #fff;
|
| 6905 |
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
| 6906 |
+
}
|
| 6907 |
+
.eael-twitter-feed-item a {
|
| 6908 |
color: #0088cc;
|
| 6909 |
text-decoration: none;
|
| 6910 |
}
|
| 6911 |
+
.eael-twitter-feed-item a:hover {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6912 |
outline: 0;
|
| 6913 |
color: #005580;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6914 |
}
|
| 6915 |
+
.eael-twitter-feed-item a:focus {
|
| 6916 |
+
outline: none;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6917 |
}
|
| 6918 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header {
|
| 6919 |
+
padding: 20px 15px 0;
|
| 6920 |
+
margin-bottom: 10px;
|
| 6921 |
}
|
| 6922 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-avatar {
|
| 6923 |
+
float: left;
|
| 6924 |
+
width: 38px;
|
| 6925 |
+
margin-right: 10px;
|
| 6926 |
}
|
| 6927 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-avatar img {
|
| 6928 |
+
max-width: 100%;
|
| 6929 |
+
height: auto;
|
| 6930 |
+
-o-object-fit: cover;
|
| 6931 |
+
object-fit: cover;
|
|
|
|
|
|
|
|
|
|
| 6932 |
}
|
| 6933 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-avatar.avatar-circle img {
|
| 6934 |
+
border-radius: 50%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6935 |
}
|
| 6936 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-meta {
|
| 6937 |
+
float: left;
|
|
|
|
|
|
|
| 6938 |
}
|
| 6939 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-meta .eael-twitter-feed-item-icon {
|
| 6940 |
+
color: #1da1f2;
|
|
|
|
| 6941 |
margin-right: 5px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6942 |
}
|
| 6943 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-meta .eael-twitter-feed-item-author {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6944 |
color: #444;
|
| 6945 |
line-height: 1.5em;
|
| 6946 |
+
font-weight: 700;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6947 |
}
|
| 6948 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-date {
|
| 6949 |
+
float: right;
|
| 6950 |
+
margin-right: 10px;
|
| 6951 |
+
font-size: 90%;
|
| 6952 |
+
color: #999999;
|
| 6953 |
}
|
| 6954 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-content {
|
| 6955 |
+
padding: 0 15px 15px;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6956 |
}
|
| 6957 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-content p {
|
| 6958 |
+
color: #666666;
|
| 6959 |
+
margin: 0 0 5px;
|
| 6960 |
+
min-height: 20px;
|
| 6961 |
+
text-overflow: ellipsis;
|
| 6962 |
+
-webkit-line-clamp: 5;
|
| 6963 |
+
-webkit-box-orient: vertical;
|
| 6964 |
}
|
| 6965 |
|
| 6966 |
/*----------------------*/
|
| 7219 |
-ms-flex-align: center;
|
| 7220 |
align-items: center;
|
| 7221 |
text-align: center;
|
| 7222 |
+
background-color: #f1f1f1;
|
| 7223 |
}
|
| 7224 |
|
| 7225 |
.eael-advance-tabs .eael-tabs-nav > ul li:after {
|
| 7411 |
}
|
| 7412 |
}
|
| 7413 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7414 |
/*--------------------------*/
|
| 7415 |
/* 19. Call To Action
|
| 7416 |
/*-------------------------*/
|
| 7459 |
background-image: url("../img/bg.jpg");
|
| 7460 |
background-repeat: no-repeat;
|
| 7461 |
background-position: center;
|
| 7462 |
+
background-size: cover;
|
|
|
|
| 7463 |
position: relative;
|
| 7464 |
z-index: 0;
|
| 7465 |
color: rgba(255, 255, 255, 0.7);
|
| 7708 |
}
|
| 7709 |
}
|
| 7710 |
|
| 7711 |
+
/* ----------------------------------------- */
|
| 7712 |
+
/* 22. Caldera Contact Form Styler
|
| 7713 |
+
/* ----------------------------------------- */
|
| 7714 |
+
.eael-caldera-form-align-left,
|
| 7715 |
+
.eael-caldera-form-btn-align-left {
|
| 7716 |
+
text-align: left;
|
| 7717 |
+
}
|
| 7718 |
+
|
| 7719 |
+
.eael-caldera-form-align-right,
|
| 7720 |
+
.eael-caldera-form-btn-align-right {
|
| 7721 |
+
text-align: right;
|
| 7722 |
+
}
|
| 7723 |
+
|
| 7724 |
+
.eael-caldera-form-align-center,
|
| 7725 |
+
.eael-caldera-form-btn-align-center {
|
| 7726 |
+
text-align: center;
|
| 7727 |
+
}
|
| 7728 |
+
|
| 7729 |
+
.eael-caldera-form .control-label {
|
| 7730 |
+
display: none;
|
| 7731 |
+
}
|
| 7732 |
+
|
| 7733 |
+
.eael-caldera-form-labels-yes .control-label {
|
| 7734 |
+
display: block;
|
| 7735 |
+
}
|
| 7736 |
+
|
| 7737 |
+
.eael-caldera-form-button-center .form-group input[type=button],
|
| 7738 |
+
.eael-caldera-form-button-center .form-group input[type=submit] {
|
| 7739 |
+
display: block;
|
| 7740 |
+
margin: 0 auto;
|
| 7741 |
+
}
|
| 7742 |
+
|
| 7743 |
+
.eael-caldera-form-button-right .form-group input[type=button],
|
| 7744 |
+
.eael-caldera-form-button-right .form-group input[type=submit] {
|
| 7745 |
+
float: right;
|
| 7746 |
+
}
|
| 7747 |
+
|
| 7748 |
+
.eael-caldera-form .intl-tel-input {
|
| 7749 |
+
display: inherit;
|
| 7750 |
+
}
|
| 7751 |
+
|
| 7752 |
+
.eael-custom-radio-checkbox .caldera-grid input[type=checkbox],
|
| 7753 |
+
.eael-custom-radio-checkbox .caldera-grid input[type=radio] {
|
| 7754 |
+
border-style: solid;
|
| 7755 |
+
border-width: 0;
|
| 7756 |
+
padding: 3px;
|
| 7757 |
+
-webkit-appearance: none;
|
| 7758 |
+
}
|
| 7759 |
+
|
| 7760 |
+
.eael-caldera-form-button-full-width .form-group input[type=submit],
|
| 7761 |
+
.eael-caldera-form-button-full-width .form-group input[type=button] {
|
| 7762 |
+
width: 100%;
|
| 7763 |
+
}
|
| 7764 |
+
|
| 7765 |
@-webkit-keyframes "loaderSpin" {
|
| 7766 |
0% {
|
| 7767 |
-webkit-transform: rotate(0deg);
|
| 7827 |
}
|
| 7828 |
|
| 7829 |
.eael-btn-loader {
|
| 7830 |
+
border-radius: 50%;
|
|
|
|
| 7831 |
width: 20px;
|
| 7832 |
height: 20px;
|
| 7833 |
font-size: 10px;
|
| 7843 |
animation: loaderSpin 1.1s infinite linear;
|
| 7844 |
}
|
| 7845 |
.eael-btn-loader:after {
|
| 7846 |
+
border-radius: 50%;
|
|
|
|
| 7847 |
width: 20px;
|
| 7848 |
height: 20px;
|
| 7849 |
}
|
| 7940 |
margin: 0 auto;
|
| 7941 |
}
|
| 7942 |
|
|
|
|
|
|
|
|
|
|
| 7943 |
.eael-ticker-wrap {
|
| 7944 |
overflow: hidden;
|
| 7945 |
display: -webkit-box;
|
| 8099 |
vertical-align: middle;
|
| 8100 |
position: relative;
|
| 8101 |
z-index: 1;
|
| 8102 |
+
border-radius: 2px;
|
|
|
|
| 8103 |
padding: 20px 30px;
|
| 8104 |
font-size: 16px;
|
| 8105 |
line-height: 1;
|
| 8374 |
transform: translate3d(0, 100%, 0);
|
| 8375 |
}
|
| 8376 |
|
| 8377 |
+
/* -------------------------------- */
|
| 8378 |
+
/* 20. Dual Color Heading
|
| 8379 |
+
/* -------------------------------- */
|
| 8380 |
+
.eael-dual-header {
|
| 8381 |
+
display: block;
|
| 8382 |
+
margin-bottom: 50px;
|
| 8383 |
+
}
|
| 8384 |
+
|
| 8385 |
+
.eael-dual-header .title,
|
| 8386 |
+
.eael-dual-header .title span {
|
| 8387 |
+
font-size: 36px;
|
| 8388 |
+
font-weight: 700;
|
| 8389 |
+
text-transform: uppercase;
|
| 8390 |
+
line-height: 48px;
|
| 8391 |
+
margin: 10px 0px;
|
| 8392 |
+
}
|
| 8393 |
+
|
| 8394 |
+
.eael-dual-header .subtext {
|
| 8395 |
+
font-size: 16px;
|
| 8396 |
+
display: block;
|
| 8397 |
+
}
|
| 8398 |
+
|
| 8399 |
+
.eael-dual-header i {
|
| 8400 |
+
display: block;
|
| 8401 |
+
padding: 0px;
|
| 8402 |
+
margin: 20px 0px 10px 0px;
|
| 8403 |
+
font-size: 36px;
|
| 8404 |
+
}
|
| 8405 |
+
|
| 8406 |
+
.eael-dual-header .title span.lead {
|
| 8407 |
+
color: #1abc9c;
|
| 8408 |
+
}
|
| 8409 |
+
|
| 8410 |
+
/*--- Builder Related Css ---*/
|
| 8411 |
+
.eael-dual-header-content-align-center {
|
| 8412 |
+
text-align: center;
|
| 8413 |
+
}
|
| 8414 |
+
|
| 8415 |
+
.eael-dual-header-content-align-left {
|
| 8416 |
+
text-align: left;
|
| 8417 |
+
}
|
| 8418 |
+
|
| 8419 |
+
.eael-dual-header-content-align-right {
|
| 8420 |
+
text-align: right;
|
| 8421 |
+
}
|
| 8422 |
+
|
| 8423 |
table.eael-data-table thead .sorting, table.eael-data-table thead .sorting_desc, table.eael-data-table thead .sorting_asc {
|
| 8424 |
position: relative;
|
| 8425 |
z-index: 0;
|
| 8763 |
text-align: center;
|
| 8764 |
}
|
| 8765 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8766 |
.elementor-panel .pro-feature, .elementor-panel .pro-feature a {
|
| 8767 |
color: #a4afb7;
|
| 8768 |
text-transform: uppercase;
|
| 8800 |
color: #f54;
|
| 8801 |
}
|
| 8802 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8803 |
/*----------------------------*/
|
| 8804 |
/* 35. Feature List
|
| 8805 |
/*----------------------------*/
|
| 8944 |
background-color: #fff;
|
| 8945 |
}
|
| 8946 |
.elementor-widget-eael-feature-list .eael-feature-list-items.circle .eael-feature-list-icon-box .eael-feature-list-icon-inner {
|
| 8947 |
+
border-radius: 50%;
|
| 8948 |
+
}
|
| 8949 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items.circle .eael-feature-list-icon-box .eael-feature-list-icon-inner .eael-feature-list-icon {
|
| 8950 |
+
border-radius: 50%;
|
| 8951 |
+
}
|
| 8952 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-icon-box .eael-feature-list-icon-inner {
|
| 8953 |
+
-webkit-transform: rotate(45deg);
|
| 8954 |
+
-ms-transform: rotate(45deg);
|
| 8955 |
+
transform: rotate(45deg);
|
| 8956 |
+
margin: 15px;
|
| 8957 |
+
}
|
| 8958 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-icon-box .eael-feature-list-icon i {
|
| 8959 |
+
-ms-transform: rotate(-45deg);
|
| 8960 |
+
-webkit-transform: rotate(-45deg);
|
| 8961 |
+
transform: rotate(-45deg);
|
| 8962 |
+
}
|
| 8963 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-icon-box .eael-feature-list-icon img {
|
| 8964 |
+
-ms-transform: rotate(-45deg);
|
| 8965 |
+
-webkit-transform: rotate(-45deg);
|
| 8966 |
+
transform: rotate(-45deg);
|
| 8967 |
+
}
|
| 8968 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-content-box .eael-feature-list-title {
|
| 8969 |
+
margin-top: 15px;
|
| 8970 |
+
}
|
| 8971 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item {
|
| 8972 |
+
padding: 0 0 0 50px;
|
| 8973 |
+
position: relative;
|
| 8974 |
+
}
|
| 8975 |
+
@media (max-width: 767px) {
|
| 8976 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item {
|
| 8977 |
+
padding: 0 0 0 30px;
|
| 8978 |
+
display: block;
|
| 8979 |
+
}
|
| 8980 |
+
}
|
| 8981 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before, .elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after {
|
| 8982 |
+
content: "";
|
| 8983 |
+
position: absolute;
|
| 8984 |
+
display: block;
|
| 8985 |
+
}
|
| 8986 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before {
|
| 8987 |
+
left: 0;
|
| 8988 |
+
top: 0;
|
| 8989 |
+
z-index: 1;
|
| 8990 |
+
border-left: 1px solid #000;
|
| 8991 |
+
border-right: none !important;
|
| 8992 |
+
height: 100%;
|
| 8993 |
+
}
|
| 8994 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after {
|
| 8995 |
+
left: 5px;
|
| 8996 |
+
top: 30px;
|
| 8997 |
+
width: 23px;
|
| 8998 |
+
display: block;
|
| 8999 |
+
z-index: 2;
|
| 9000 |
+
border-bottom: 1px dashed #000;
|
| 9001 |
+
border-top: none !important;
|
| 9002 |
+
}
|
| 9003 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item .connector {
|
| 9004 |
+
display: none;
|
| 9005 |
+
}
|
| 9006 |
+
@media (min-width: 768px) {
|
| 9007 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern.-icon-position-right .eael-feature-list-item {
|
| 9008 |
+
padding: 0 50px 0 0;
|
| 9009 |
+
}
|
| 9010 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern.-icon-position-right .eael-feature-list-item:before {
|
| 9011 |
+
left: auto;
|
| 9012 |
+
right: 0;
|
| 9013 |
+
}
|
| 9014 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern.-icon-position-right .eael-feature-list-item:after {
|
| 9015 |
+
left: auto;
|
| 9016 |
+
right: 5px;
|
| 9017 |
+
top: 30px;
|
| 9018 |
+
}
|
| 9019 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern.-icon-position-right .eael-feature-list-item .connector {
|
| 9020 |
+
display: none;
|
| 9021 |
+
}
|
| 9022 |
+
}
|
| 9023 |
+
@media (min-width: 1025px) {
|
| 9024 |
+
.elementor-widget-eael-feature-list.-icon-position-left .eael-feature-list-content-box {
|
| 9025 |
+
margin-right: 0 !important;
|
| 9026 |
+
margin-top: 0 !important;
|
| 9027 |
+
margin-bottom: 0 !important;
|
| 9028 |
+
}
|
| 9029 |
+
.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-content-box {
|
| 9030 |
+
margin-left: 0 !important;
|
| 9031 |
+
margin-top: 0 !important;
|
| 9032 |
+
margin-bottom: 0 !important;
|
| 9033 |
+
}
|
| 9034 |
+
.elementor-widget-eael-feature-list.-icon-position-top .eael-feature-list-content-box {
|
| 9035 |
+
margin-left: 0 !important;
|
| 9036 |
+
margin-right: 0 !important;
|
| 9037 |
+
margin-bottom: 0 !important;
|
| 9038 |
+
}
|
| 9039 |
+
.elementor-widget-eael-feature-list.-icon-position-left .eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-item {
|
| 9040 |
+
display: -webkit-box;
|
| 9041 |
+
display: -webkit-flex;
|
| 9042 |
+
display: -ms-flexbox;
|
| 9043 |
+
display: flex;
|
| 9044 |
+
}
|
| 9045 |
+
.elementor-widget-eael-feature-list.-icon-position-left .eael-feature-list-item {
|
| 9046 |
+
text-align: left;
|
| 9047 |
+
-webkit-box-orient: horizontal;
|
| 9048 |
+
-webkit-box-direction: normal;
|
| 9049 |
+
-webkit-flex-direction: row;
|
| 9050 |
+
-ms-flex-direction: row;
|
| 9051 |
+
flex-direction: row;
|
| 9052 |
+
}
|
| 9053 |
+
.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-item {
|
| 9054 |
+
text-align: right;
|
| 9055 |
+
-webkit-box-orient: horizontal;
|
| 9056 |
+
-webkit-box-direction: reverse;
|
| 9057 |
+
-webkit-flex-direction: row-reverse;
|
| 9058 |
+
-ms-flex-direction: row-reverse;
|
| 9059 |
+
flex-direction: row-reverse;
|
| 9060 |
+
}
|
| 9061 |
+
}
|
| 9062 |
+
@media (max-width: 1024px) {
|
| 9063 |
+
.elementor-widget-eael-feature-list.-tablet-icon-position-left .eael-feature-list-item, .elementor-widget-eael-feature-list.-tablet-icon-position-right .eael-feature-list-item {
|
| 9064 |
+
display: -webkit-box;
|
| 9065 |
+
display: -webkit-flex;
|
| 9066 |
+
display: -ms-flexbox;
|
| 9067 |
+
display: flex;
|
| 9068 |
+
}
|
| 9069 |
+
.elementor-widget-eael-feature-list.-tablet-icon-position-left .eael-feature-list-item {
|
| 9070 |
+
text-align: left;
|
| 9071 |
+
-webkit-box-orient: horizontal;
|
| 9072 |
+
-webkit-box-direction: normal;
|
| 9073 |
+
-webkit-flex-direction: row;
|
| 9074 |
+
-ms-flex-direction: row;
|
| 9075 |
+
flex-direction: row;
|
| 9076 |
+
}
|
| 9077 |
+
.elementor-widget-eael-feature-list.-tablet-icon-position-right .eael-feature-list-item {
|
| 9078 |
+
text-align: right;
|
| 9079 |
+
-webkit-box-orient: horizontal;
|
| 9080 |
+
-webkit-box-direction: reverse;
|
| 9081 |
+
-webkit-flex-direction: row-reverse;
|
| 9082 |
+
-ms-flex-direction: row-reverse;
|
| 9083 |
+
flex-direction: row-reverse;
|
| 9084 |
+
}
|
| 9085 |
+
}
|
| 9086 |
+
@media (min-width: 768px) and (max-width: 1024px) {
|
| 9087 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left .eael-feature-list-content-box {
|
| 9088 |
+
margin-right: 0 !important;
|
| 9089 |
+
margin-top: 0 !important;
|
| 9090 |
+
margin-bottom: 0 !important;
|
| 9091 |
+
}
|
| 9092 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9093 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9094 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9095 |
+
.eael-feature-list-item {
|
| 9096 |
+
padding: 0 0 0 50px;
|
| 9097 |
+
}
|
| 9098 |
+
}
|
| 9099 |
+
@media (min-width: 768px) and (max-width: 1024px) and (max-width: 767px) {
|
| 9100 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9101 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9102 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9103 |
+
.eael-feature-list-item {
|
| 9104 |
+
padding: 0 0 0 30px;
|
| 9105 |
+
}
|
| 9106 |
+
}
|
| 9107 |
+
@media (min-width: 768px) and (max-width: 1024px) {
|
| 9108 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9109 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9110 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9111 |
+
.eael-feature-list-item:before {
|
| 9112 |
+
left: 0;
|
| 9113 |
+
right: auto;
|
| 9114 |
+
}
|
| 9115 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9116 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9117 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9118 |
+
.eael-feature-list-item:after {
|
| 9119 |
+
left: 5px;
|
| 9120 |
+
top: 30px;
|
| 9121 |
+
}
|
| 9122 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top .eael-feature-list-content-box {
|
| 9123 |
+
margin-left: 0 !important;
|
| 9124 |
+
margin-right: 0 !important;
|
| 9125 |
+
margin-bottom: 0 !important;
|
| 9126 |
+
}
|
| 9127 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9128 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9129 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9130 |
+
.eael-feature-list-item {
|
| 9131 |
+
padding: 0 0 0 50px;
|
| 9132 |
+
}
|
| 9133 |
+
}
|
| 9134 |
+
@media (min-width: 768px) and (max-width: 1024px) and (max-width: 767px) {
|
| 9135 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9136 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9137 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9138 |
+
.eael-feature-list-item {
|
| 9139 |
+
padding: 0 0 0 30px;
|
| 9140 |
+
}
|
| 9141 |
+
}
|
| 9142 |
+
@media (min-width: 768px) and (max-width: 1024px) {
|
| 9143 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9144 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9145 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9146 |
+
.eael-feature-list-item:before {
|
| 9147 |
+
left: 0;
|
| 9148 |
+
right: auto;
|
| 9149 |
+
}
|
| 9150 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9151 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9152 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9153 |
+
.eael-feature-list-item:after {
|
| 9154 |
+
left: 5px;
|
| 9155 |
+
}
|
| 9156 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right .eael-feature-list-content-box {
|
| 9157 |
+
margin-left: 0 !important;
|
| 9158 |
+
margin-top: 0 !important;
|
| 9159 |
+
margin-bottom: 0 !important;
|
| 9160 |
+
}
|
| 9161 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9162 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9163 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9164 |
+
.eael-feature-list-item {
|
| 9165 |
+
padding: 0 50px 0 0;
|
| 9166 |
+
}
|
| 9167 |
+
}
|
| 9168 |
+
@media (min-width: 768px) and (max-width: 1024px) and (max-width: 767px) {
|
| 9169 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9170 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9171 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9172 |
+
.eael-feature-list-item {
|
| 9173 |
+
padding: 0 30px 0 0;
|
| 9174 |
+
}
|
| 9175 |
+
}
|
| 9176 |
+
@media (min-width: 768px) and (max-width: 1024px) {
|
| 9177 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9178 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9179 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9180 |
+
.eael-feature-list-item:before {
|
| 9181 |
+
right: 0;
|
| 9182 |
+
left: auto;
|
| 9183 |
+
}
|
| 9184 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9185 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9186 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9187 |
+
.eael-feature-list-item:after {
|
| 9188 |
+
left: auto;
|
| 9189 |
+
right: 5px;
|
| 9190 |
+
}
|
| 9191 |
+
}
|
| 9192 |
+
@media (max-width: 767px) {
|
| 9193 |
+
.elementor-widget-eael-feature-list.-icon-position-left .eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-item, .elementor-widget-eael-feature-list.-tablet-icon-position-left .eael-feature-list-item, .elementor-widget-eael-feature-list.-tablet-icon-position-right .eael-feature-list-item {
|
| 9194 |
+
display: block;
|
| 9195 |
+
text-align: left;
|
| 9196 |
+
}
|
| 9197 |
+
.elementor-widget-eael-feature-list.-mobile-icon-position-left .eael-feature-list-item, .elementor-widget-eael-feature-list.-mobile-icon-position-right .eael-feature-list-item {
|
| 9198 |
+
display: -webkit-box;
|
| 9199 |
+
display: -webkit-flex;
|
| 9200 |
+
display: -ms-flexbox;
|
| 9201 |
+
display: flex;
|
| 9202 |
+
}
|
| 9203 |
+
.elementor-widget-eael-feature-list.-mobile-icon-position-left .eael-feature-list-item {
|
| 9204 |
+
text-align: left;
|
| 9205 |
+
-webkit-box-orient: horizontal;
|
| 9206 |
+
-webkit-box-direction: normal;
|
| 9207 |
+
-webkit-flex-direction: row;
|
| 9208 |
+
-ms-flex-direction: row;
|
| 9209 |
+
flex-direction: row;
|
| 9210 |
+
}
|
| 9211 |
+
.elementor-widget-eael-feature-list.-mobile-icon-position-right .eael-feature-list-item {
|
| 9212 |
+
text-align: right;
|
| 9213 |
+
-webkit-box-orient: horizontal;
|
| 9214 |
+
-webkit-box-direction: reverse;
|
| 9215 |
+
-webkit-flex-direction: row-reverse;
|
| 9216 |
+
-ms-flex-direction: row-reverse;
|
| 9217 |
+
flex-direction: row-reverse;
|
| 9218 |
+
}
|
| 9219 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-content-box {
|
| 9220 |
+
margin-right: 0 !important;
|
| 9221 |
+
margin-top: 0 !important;
|
| 9222 |
+
margin-bottom: 0 !important;
|
| 9223 |
+
}
|
| 9224 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9225 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9226 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9227 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9228 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9229 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9230 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9231 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9232 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9233 |
+
.eael-feature-list-item {
|
| 9234 |
+
padding: 0 0 0 50px;
|
| 9235 |
+
}
|
| 9236 |
+
}
|
| 9237 |
+
@media (max-width: 767px) and (max-width: 767px) {
|
| 9238 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9239 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9240 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9241 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9242 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9243 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9244 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9245 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9246 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9247 |
+
.eael-feature-list-item {
|
| 9248 |
+
padding: 0 0 0 30px;
|
| 9249 |
+
}
|
| 9250 |
+
}
|
| 9251 |
+
@media (max-width: 767px) {
|
| 9252 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9253 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9254 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9255 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9256 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9257 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9258 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9259 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9260 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9261 |
+
.eael-feature-list-item:before {
|
| 9262 |
+
left: 0;
|
| 9263 |
+
right: auto;
|
| 9264 |
+
}
|
| 9265 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9266 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9267 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9268 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9269 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9270 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9271 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9272 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9273 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern
|
| 9274 |
+
.eael-feature-list-item:after {
|
| 9275 |
+
left: 5px;
|
| 9276 |
+
}
|
| 9277 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-content-box {
|
| 9278 |
+
margin-left: 0 !important;
|
| 9279 |
+
margin-right: 0 !important;
|
| 9280 |
+
margin-bottom: 0 !important;
|
| 9281 |
+
}
|
| 9282 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9283 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9284 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9285 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9286 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9287 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9288 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9289 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9290 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9291 |
+
.eael-feature-list-item {
|
| 9292 |
+
padding: 0 0 0 50px;
|
| 9293 |
+
}
|
| 9294 |
+
}
|
| 9295 |
+
@media (max-width: 767px) and (max-width: 767px) {
|
| 9296 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9297 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9298 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9299 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9300 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9301 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9302 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9303 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9304 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9305 |
+
.eael-feature-list-item {
|
| 9306 |
+
padding: 0 0 0 30px;
|
| 9307 |
+
}
|
| 9308 |
+
}
|
| 9309 |
+
@media (max-width: 767px) {
|
| 9310 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9311 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9312 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9313 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9314 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9315 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9316 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9317 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9318 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9319 |
+
.eael-feature-list-item:before {
|
| 9320 |
+
left: 0;
|
| 9321 |
+
right: auto;
|
| 9322 |
+
}
|
| 9323 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9324 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9325 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9326 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9327 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9328 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9329 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9330 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9331 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern
|
| 9332 |
+
.eael-feature-list-item:after {
|
| 9333 |
+
left: 5px;
|
| 9334 |
+
}
|
| 9335 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-content-box, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-content-box {
|
| 9336 |
+
margin-left: 0 !important;
|
| 9337 |
+
margin-top: 0 !important;
|
| 9338 |
+
margin-bottom: 0 !important;
|
| 9339 |
+
}
|
| 9340 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9341 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9342 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9343 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9344 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9345 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9346 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9347 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9348 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9349 |
+
.eael-feature-list-item {
|
| 9350 |
+
padding: 0 50px 0 0;
|
| 9351 |
+
}
|
| 9352 |
+
}
|
| 9353 |
+
@media (max-width: 767px) and (max-width: 767px) {
|
| 9354 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9355 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9356 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9357 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9358 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9359 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9360 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9361 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9362 |
+
.eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9363 |
+
.eael-feature-list-item {
|
| 9364 |
+
padding: 0 30px 0 0;
|
| 9365 |
+
}
|
| 9366 |
+
}
|
| 9367 |
+
@media (max-width: 767px) {
|
| 9368 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9369 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9370 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9371 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9372 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9373 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9374 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9375 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9376 |
+
.eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9377 |
+
.eael-feature-list-item:before {
|
| 9378 |
+
right: 0;
|
| 9379 |
+
left: auto;
|
| 9380 |
+
}
|
| 9381 |
+
.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9382 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9383 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9384 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9385 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9386 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9387 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9388 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9389 |
+
.eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern
|
| 9390 |
+
.eael-feature-list-item:after {
|
| 9391 |
+
left: auto;
|
| 9392 |
+
right: 5px;
|
| 9393 |
+
}
|
| 9394 |
+
}
|
| 9395 |
+
|
| 9396 |
+
.eael-fancy-text-container p {
|
| 9397 |
+
margin: 0;
|
| 9398 |
+
}
|
| 9399 |
+
|
| 9400 |
+
.eael-fancy-text-strings {
|
| 9401 |
+
display: none;
|
| 9402 |
+
}
|
| 9403 |
+
|
| 9404 |
+
.eael-fancy-text-prefix,
|
| 9405 |
+
.eael-fancy-text-suffix {
|
| 9406 |
+
display: inline-block;
|
| 9407 |
+
}
|
| 9408 |
+
|
| 9409 |
+
.morphext > .animated {
|
| 9410 |
+
display: inline-block;
|
| 9411 |
+
}
|
| 9412 |
+
|
| 9413 |
+
.typed-cursor {
|
| 9414 |
+
opacity: 1;
|
| 9415 |
+
-webkit-animation: blink_cursor 0.7s infinite;
|
| 9416 |
+
animation: blink_cursor 0.7s infinite;
|
| 9417 |
+
}
|
| 9418 |
+
|
| 9419 |
+
@keyframes blink_cursor {
|
| 9420 |
+
0% {
|
| 9421 |
+
opacity: 1;
|
| 9422 |
+
}
|
| 9423 |
+
50% {
|
| 9424 |
+
opacity: 0;
|
| 9425 |
+
}
|
| 9426 |
+
100% {
|
| 9427 |
+
opacity: 1;
|
| 9428 |
+
}
|
| 9429 |
+
}
|
| 9430 |
+
@-webkit-keyframes blink_cursor {
|
| 9431 |
+
0% {
|
| 9432 |
+
opacity: 1;
|
| 9433 |
+
}
|
| 9434 |
+
50% {
|
| 9435 |
+
opacity: 0;
|
| 9436 |
+
}
|
| 9437 |
+
100% {
|
| 9438 |
+
opacity: 1;
|
| 9439 |
+
}
|
| 9440 |
+
}
|
| 9441 |
+
.eael-fancy-text-container.style-2 {
|
| 9442 |
+
font-size: 24px;
|
| 9443 |
+
}
|
| 9444 |
+
|
| 9445 |
+
.eael-fancy-text-container.style-2 .eael-fancy-text-strings {
|
| 9446 |
+
background: #ff5544;
|
| 9447 |
+
color: #fff;
|
| 9448 |
+
padding: 10px 25px;
|
| 9449 |
+
}
|
| 9450 |
+
|
| 9451 |
+
/*------------------------------*/
|
| 9452 |
+
/* 27. Filterable Gallery
|
| 9453 |
+
/*------------------------------*/
|
| 9454 |
+
.eael-filter-gallery-control {
|
| 9455 |
+
width: 100%;
|
| 9456 |
+
}
|
| 9457 |
+
|
| 9458 |
+
.eael-filter-gallery-control ul,
|
| 9459 |
+
.eael-filter-gallery-control ul li {
|
| 9460 |
+
text-align: center;
|
| 9461 |
+
}
|
| 9462 |
+
|
| 9463 |
+
.eael-filter-gallery-control ul {
|
| 9464 |
+
margin: 0px 0px 20px 0px;
|
| 9465 |
+
padding: 0px;
|
| 9466 |
+
text-align: center;
|
| 9467 |
+
}
|
| 9468 |
+
|
| 9469 |
+
.eael-filter-gallery-control {
|
| 9470 |
+
display: -webkit-box;
|
| 9471 |
+
display: -webkit-flex;
|
| 9472 |
+
display: -ms-flexbox;
|
| 9473 |
+
display: flex;
|
| 9474 |
+
-webkit-box-orient: vertical;
|
| 9475 |
+
-webkit-box-direction: normal;
|
| 9476 |
+
-webkit-flex-flow: 1 1 auto;
|
| 9477 |
+
-ms-flex-flow: 1 1 auto;
|
| 9478 |
+
flex-flow: 1 1 auto;
|
| 9479 |
+
-webkit-box-align: center;
|
| 9480 |
+
-webkit-align-items: center;
|
| 9481 |
+
-ms-flex-align: center;
|
| 9482 |
+
align-items: center;
|
| 9483 |
+
-webkit-box-pack: center;
|
| 9484 |
+
-webkit-justify-content: center;
|
| 9485 |
+
-ms-flex-pack: center;
|
| 9486 |
+
justify-content: center;
|
| 9487 |
+
-webkit-flex-flow: row wrap;
|
| 9488 |
+
-ms-flex-flow: row wrap;
|
| 9489 |
+
flex-flow: row wrap;
|
| 9490 |
+
padding: 0px;
|
| 9491 |
+
margin: 0px;
|
| 9492 |
+
}
|
| 9493 |
+
|
| 9494 |
+
.eael-filter-gallery-control ul li {
|
| 9495 |
+
list-style: none;
|
| 9496 |
+
font-size: 24px;
|
| 9497 |
+
display: inline-block;
|
| 9498 |
+
text-align: center;
|
| 9499 |
+
}
|
| 9500 |
+
|
| 9501 |
+
.eael-filter-gallery-control ul li a.control {
|
| 9502 |
+
font-family: 'Montserrat', sans-serif;
|
| 9503 |
+
font-size: 16px;
|
| 9504 |
+
font-weight: 600;
|
| 9505 |
+
padding: 10px 25px;
|
| 9506 |
+
margin: 10px 6px;
|
| 9507 |
+
}
|
| 9508 |
+
|
| 9509 |
+
.eael-filter-gallery-container {
|
| 9510 |
+
text-align: justify;
|
| 9511 |
+
font-size: 0.1px;
|
| 9512 |
+
}
|
| 9513 |
+
|
| 9514 |
+
.eael-filter-gallery-container:after {
|
| 9515 |
+
content: '';
|
| 9516 |
+
display: inline-block;
|
| 9517 |
+
width: 100%;
|
| 9518 |
+
}
|
| 9519 |
+
|
| 9520 |
+
.eael-filter-gallery-container:not(.eael-cards) .item:before {
|
| 9521 |
+
content: '';
|
| 9522 |
+
display: inline-block;
|
| 9523 |
+
padding-top: 56.25%;
|
| 9524 |
+
}
|
| 9525 |
+
|
| 9526 |
+
.eael-filter-gallery-container .item .caption {
|
| 9527 |
+
position: absolute;
|
| 9528 |
+
display: -webkit-box;
|
| 9529 |
+
display: -webkit-flex;
|
| 9530 |
+
display: -ms-flexbox;
|
| 9531 |
+
display: flex;
|
| 9532 |
+
-webkit-box-orient: vertical;
|
| 9533 |
+
-webkit-box-direction: normal;
|
| 9534 |
+
-webkit-flex-flow: 1 1 100%;
|
| 9535 |
+
-ms-flex-flow: 1 1 100%;
|
| 9536 |
+
flex-flow: 1 1 100%;
|
| 9537 |
+
-webkit-box-align: center;
|
| 9538 |
+
-webkit-align-items: center;
|
| 9539 |
+
-ms-flex-align: center;
|
| 9540 |
+
align-items: center;
|
| 9541 |
+
-webkit-box-pack: center;
|
| 9542 |
+
-webkit-justify-content: center;
|
| 9543 |
+
-ms-flex-pack: center;
|
| 9544 |
+
justify-content: center;
|
| 9545 |
+
z-index: 1;
|
| 9546 |
+
top: 0px;
|
| 9547 |
+
left: 0px;
|
| 9548 |
+
right: 0px;
|
| 9549 |
+
bottom: 0px;
|
| 9550 |
+
-webkit-transition: -webkit-transform .4s;
|
| 9551 |
+
transition: -webkit-transform .4s;
|
| 9552 |
+
-o-transition: transform .4s;
|
| 9553 |
+
transition: transform .4s;
|
| 9554 |
+
transition: transform .4s, -webkit-transform .4s;
|
| 9555 |
+
}
|
| 9556 |
+
|
| 9557 |
+
.eael-filter-gallery-container.eael-cards .item .caption {
|
| 9558 |
+
display: none;
|
| 9559 |
+
}
|
| 9560 |
+
|
| 9561 |
+
.eael-filter-gallery-container.eael-cards .item .item-img .caption {
|
| 9562 |
+
position: absolute;
|
| 9563 |
+
display: -webkit-box;
|
| 9564 |
+
display: -webkit-flex;
|
| 9565 |
+
display: -ms-flexbox;
|
| 9566 |
+
display: flex;
|
| 9567 |
+
-webkit-box-orient: vertical;
|
| 9568 |
+
-webkit-box-direction: normal;
|
| 9569 |
+
-webkit-flex-flow: 1 1 100%;
|
| 9570 |
+
-ms-flex-flow: 1 1 100%;
|
| 9571 |
+
flex-flow: 1 1 100%;
|
| 9572 |
+
-webkit-box-align: center;
|
| 9573 |
+
-webkit-align-items: center;
|
| 9574 |
+
-ms-flex-align: center;
|
| 9575 |
+
align-items: center;
|
| 9576 |
+
-webkit-box-pack: center;
|
| 9577 |
+
-webkit-justify-content: center;
|
| 9578 |
+
-ms-flex-pack: center;
|
| 9579 |
+
justify-content: center;
|
| 9580 |
+
z-index: 10;
|
| 9581 |
+
top: 0px;
|
| 9582 |
+
left: 0px;
|
| 9583 |
+
right: 0px;
|
| 9584 |
+
bottom: 0px;
|
| 9585 |
+
-webkit-transition: -webkit-transform .4s;
|
| 9586 |
+
transition: -webkit-transform .4s;
|
| 9587 |
+
-o-transition: transform .4s;
|
| 9588 |
+
transition: transform .4s;
|
| 9589 |
+
transition: transform .4s, -webkit-transform .4s;
|
| 9590 |
+
}
|
| 9591 |
+
|
| 9592 |
+
.gallery-item-caption-over {
|
| 9593 |
+
width: 100%;
|
| 9594 |
+
height: auto;
|
| 9595 |
+
}
|
| 9596 |
+
|
| 9597 |
+
a.eael-gallery-load-more, a.eael-gallery-load-more:hover {
|
| 9598 |
+
text-decoration: none;
|
| 9599 |
+
}
|
| 9600 |
+
|
| 9601 |
+
/*--- Caption Animation ---*/
|
| 9602 |
+
.eael-filter-gallery-container .item .caption.eael-zoom-in,
|
| 9603 |
+
.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-zoom-in {
|
| 9604 |
+
-webkit-transform: scale(0);
|
| 9605 |
+
-ms-transform: scale(0);
|
| 9606 |
+
transform: scale(0);
|
| 9607 |
+
}
|
| 9608 |
+
|
| 9609 |
+
.eael-filter-gallery-container .item:hover .caption.eael-zoom-in,
|
| 9610 |
+
.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-zoom-in {
|
| 9611 |
+
-webkit-transform: scale(1);
|
| 9612 |
+
-ms-transform: scale(1);
|
| 9613 |
+
transform: scale(1);
|
| 9614 |
+
}
|
| 9615 |
+
|
| 9616 |
+
.eael-filter-gallery-container .item .caption.eael-slide-left,
|
| 9617 |
+
.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-left {
|
| 9618 |
+
-webkit-transform: translateX(-100%);
|
| 9619 |
+
-ms-transform: translateX(-100%);
|
| 9620 |
+
transform: translateX(-100%);
|
| 9621 |
+
}
|
| 9622 |
+
|
| 9623 |
+
.eael-filter-gallery-container .item:hover .caption.eael-slide-left,
|
| 9624 |
+
.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-left {
|
| 9625 |
+
-webkit-transform: translateX(0%);
|
| 9626 |
+
-ms-transform: translateX(0%);
|
| 9627 |
+
transform: translateX(0%);
|
| 9628 |
+
}
|
| 9629 |
+
|
| 9630 |
+
.eael-filter-gallery-container .item .caption.eael-slide-right,
|
| 9631 |
+
.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-right {
|
| 9632 |
+
-webkit-transform: translateX(100%);
|
| 9633 |
+
-ms-transform: translateX(100%);
|
| 9634 |
+
transform: translateX(100%);
|
| 9635 |
+
}
|
| 9636 |
+
|
| 9637 |
+
.eael-filter-gallery-container .item:hover .caption.eael-slide-right,
|
| 9638 |
+
.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-right {
|
| 9639 |
+
-webkit-transform: translateX(0%);
|
| 9640 |
+
-ms-transform: translateX(0%);
|
| 9641 |
+
transform: translateX(0%);
|
| 9642 |
+
}
|
| 9643 |
+
|
| 9644 |
+
.eael-filter-gallery-container .item .caption.eael-slide-top,
|
| 9645 |
+
.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-top {
|
| 9646 |
+
-webkit-transform: translateY(-100%);
|
| 9647 |
+
-ms-transform: translateY(-100%);
|
| 9648 |
+
transform: translateY(-100%);
|
| 9649 |
+
}
|
| 9650 |
+
|
| 9651 |
+
.eael-filter-gallery-container .item:hover .caption.eael-slide-top,
|
| 9652 |
+
.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-top {
|
| 9653 |
+
-webkit-transform: translateY(0%);
|
| 9654 |
+
-ms-transform: translateY(0%);
|
| 9655 |
+
transform: translateY(0%);
|
| 9656 |
+
}
|
| 9657 |
+
|
| 9658 |
+
.eael-filter-gallery-container .item .caption.eael-slide-bottom,
|
| 9659 |
+
.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-bottom {
|
| 9660 |
+
-webkit-transform: translateY(100%);
|
| 9661 |
+
-ms-transform: translateY(100%);
|
| 9662 |
+
transform: translateY(100%);
|
| 9663 |
+
}
|
| 9664 |
+
|
| 9665 |
+
.eael-filter-gallery-container .item:hover .caption.eael-slide-bottom,
|
| 9666 |
+
.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-bottom {
|
| 9667 |
+
-webkit-transform: translateY(0%);
|
| 9668 |
+
-ms-transform: translateY(0%);
|
| 9669 |
+
transform: translateY(0%);
|
| 9670 |
+
}
|
| 9671 |
+
|
| 9672 |
+
.eael-filter-gallery-container .item .caption a {
|
| 9673 |
+
display: inline-block;
|
| 9674 |
+
width: 50px;
|
| 9675 |
+
height: 50px;
|
| 9676 |
+
text-align: center;
|
| 9677 |
+
line-height: 50px;
|
| 9678 |
+
border-radius: 50%;
|
| 9679 |
+
margin: 0 5px;
|
| 9680 |
+
font-size: 20px;
|
| 9681 |
+
cursor: pointer;
|
| 9682 |
+
-webkit-transition: .3s;
|
| 9683 |
+
-o-transition: .3s;
|
| 9684 |
+
transition: .3s;
|
| 9685 |
+
}
|
| 9686 |
+
|
| 9687 |
+
.eael-filter-gallery-container .item .caption a:nth-child(1),
|
| 9688 |
+
.eael-container .item .caption a:nth-child(2) {
|
| 9689 |
+
-webkit-transition: .6s;
|
| 9690 |
+
-o-transition: .6s;
|
| 9691 |
+
transition: .6s;
|
| 9692 |
+
opacity: 0;
|
| 9693 |
+
}
|
| 9694 |
+
|
| 9695 |
+
.eael-filter-gallery-container .item .caption a:nth-child(1) {
|
| 9696 |
+
-webkit-transform: translateY(-100%);
|
| 9697 |
+
-ms-transform: translateY(-100%);
|
| 9698 |
+
transform: translateY(-100%);
|
| 9699 |
+
}
|
| 9700 |
+
|
| 9701 |
+
.eael-filter-gallery-container .item .caption a:nth-child(2) {
|
| 9702 |
+
-webkit-transform: translateY(100%);
|
| 9703 |
+
-ms-transform: translateY(100%);
|
| 9704 |
+
transform: translateY(100%);
|
| 9705 |
+
}
|
| 9706 |
+
|
| 9707 |
+
.eael-filter-gallery-container .item .caption:hover a:nth-child(1),
|
| 9708 |
+
.eael-filter-gallery-container .item .caption:hover a:nth-child(2) {
|
| 9709 |
+
-webkit-transform: translateY(0%);
|
| 9710 |
+
-ms-transform: translateY(0%);
|
| 9711 |
+
transform: translateY(0%);
|
| 9712 |
+
opacity: 1;
|
| 9713 |
+
}
|
| 9714 |
+
|
| 9715 |
+
.eael-filter-gallery-container .item .caption .eael-popup-link {
|
| 9716 |
+
outline: 0;
|
| 9717 |
+
}
|
| 9718 |
+
|
| 9719 |
+
/*--- Filter Gallery Card Style ---*/
|
| 9720 |
+
.eael-filter-gallery-container.eael-cards .item:before {
|
| 9721 |
+
padding-top: 0px;
|
| 9722 |
+
}
|
| 9723 |
+
|
| 9724 |
+
.eael-filter-gallery-container.eael-cards .item-img {
|
| 9725 |
+
position: relative;
|
| 9726 |
+
background-repeat: no-repeat;
|
| 9727 |
+
background-position: center;
|
| 9728 |
+
background-size: cover;
|
| 9729 |
+
height: 220px;
|
| 9730 |
+
z-index: 0;
|
| 9731 |
+
overflow: hidden;
|
| 9732 |
+
}
|
| 9733 |
+
|
| 9734 |
+
.eael-filter-gallery-container.eael-cards .item-content {
|
| 9735 |
+
padding: 15px;
|
| 9736 |
+
}
|
| 9737 |
+
|
| 9738 |
+
.eael-filter-gallery-container.eael-cards .item-content .title,
|
| 9739 |
+
.eael-filter-gallery-container.eael-cards .item-content .title a {
|
| 9740 |
+
font-size: 20px;
|
| 9741 |
+
line-height: 1;
|
| 9742 |
+
margin-bottom: 0px;
|
| 9743 |
+
-webkit-transition: .3s;
|
| 9744 |
+
-o-transition: .3s;
|
| 9745 |
+
transition: .3s;
|
| 9746 |
+
}
|
| 9747 |
+
|
| 9748 |
+
.eael-filter-gallery-container.eael-cards .item-content p {
|
| 9749 |
+
font-size: 14px;
|
| 9750 |
+
line-height: 26px;
|
| 9751 |
+
}
|
| 9752 |
+
|
| 9753 |
+
.eael-fg-card-content-align-center .eael-filterable-gallery-item-wrap .gallery-item-caption-wrap .gallery-item-caption-over {
|
| 9754 |
+
text-align: center;
|
| 9755 |
+
}
|
| 9756 |
+
|
| 9757 |
+
.eael-fg-card-content-align-right .eael-filterable-gallery-item-wrap .gallery-item-caption-wrap .gallery-item-caption-over {
|
| 9758 |
+
text-align: right;
|
| 9759 |
+
}
|
| 9760 |
+
|
| 9761 |
+
.eael-fg-hoverer-content-align-center .eael-filterable-gallery-item-wrap .gallery-item-caption-wrap .gallery-item-caption-over {
|
| 9762 |
+
text-align: center;
|
| 9763 |
+
}
|
| 9764 |
+
|
| 9765 |
+
.eael-fg-hoverer-content-align-right .eael-filterable-gallery-item-wrap .gallery-item-caption-wrap .gallery-item-caption-over {
|
| 9766 |
+
text-align: right;
|
| 9767 |
+
}
|
| 9768 |
+
|
| 9769 |
+
/*--- Editor Specific Style ---*/
|
| 9770 |
+
.eael-fg-content-align-left .eael-cards .item .item-content {
|
| 9771 |
+
text-align: left;
|
| 9772 |
+
}
|
| 9773 |
+
|
| 9774 |
+
.eael-fg-content-align-center .eael-cards .item .item-content {
|
| 9775 |
+
text-align: center;
|
| 9776 |
+
}
|
| 9777 |
+
|
| 9778 |
+
.eael-fg-content-align-right .eael-cards .item .item-content {
|
| 9779 |
+
text-align: right;
|
| 9780 |
+
}
|
| 9781 |
+
|
| 9782 |
+
/*--- Magnific Gallery Fix ---*/
|
| 9783 |
+
.mfp-wrap ~ div.dialog-widget {
|
| 9784 |
+
display: none !important;
|
| 9785 |
+
}
|
| 9786 |
+
|
| 9787 |
+
.eael-filterable-gallery-item-wrap {
|
| 9788 |
+
float: left;
|
| 9789 |
+
width: 33.33%;
|
| 9790 |
+
}
|
| 9791 |
+
|
| 9792 |
+
.eael-filter-gallery-container.eael-col-1 .eael-filterable-gallery-item-wrap {
|
| 9793 |
+
width: 100%;
|
| 9794 |
+
}
|
| 9795 |
+
|
| 9796 |
+
.eael-filter-gallery-control > ul li {
|
| 9797 |
+
font-size: 13px;
|
| 9798 |
+
line-height: 1.8;
|
| 9799 |
+
text-transform: uppercase;
|
| 9800 |
+
letter-spacing: 1px;
|
| 9801 |
+
padding: 6px 15px;
|
| 9802 |
+
cursor: pointer;
|
| 9803 |
+
margin: 0 5px;
|
| 9804 |
+
font-weight: normal;
|
| 9805 |
+
}
|
| 9806 |
+
|
| 9807 |
+
.eael-filter-gallery-container.eael-col-2 .eael-filterable-gallery-item-wrap {
|
| 9808 |
+
width: 50%;
|
| 9809 |
+
}
|
| 9810 |
+
|
| 9811 |
+
.eael-filter-gallery-container.eael-col-4 .eael-filterable-gallery-item-wrap {
|
| 9812 |
+
width: 25%;
|
| 9813 |
+
}
|
| 9814 |
+
|
| 9815 |
+
.eael-filter-gallery-container.eael-col-5 .eael-filterable-gallery-item-wrap {
|
| 9816 |
+
width: 20%;
|
| 9817 |
+
}
|
| 9818 |
+
|
| 9819 |
+
.eael-gallery-grid-item {
|
| 9820 |
+
margin-left: calc(20px/2);
|
| 9821 |
+
margin-right: calc(20px/2);
|
| 9822 |
+
margin-bottom: 20px;
|
| 9823 |
+
position: relative;
|
| 9824 |
+
overflow: hidden;
|
| 9825 |
+
}
|
| 9826 |
+
|
| 9827 |
+
.gallery-item-caption-wrap,
|
| 9828 |
+
.media-content-wrap {
|
| 9829 |
+
font-size: 14px;
|
| 9830 |
+
text-align: left;
|
| 9831 |
+
}
|
| 9832 |
+
|
| 9833 |
+
.gallery-item-thumbnail-wrap.caption-style-card img {
|
| 9834 |
+
max-height: 100%;
|
| 9835 |
+
width: 100%;
|
| 9836 |
+
}
|
| 9837 |
+
|
| 9838 |
+
.gallery-item-caption-wrap.caption-style-hoverer {
|
| 9839 |
+
position: absolute;
|
| 9840 |
+
left: 0;
|
| 9841 |
+
top: 0;
|
| 9842 |
+
height: 100%;
|
| 9843 |
+
width: 100%;
|
| 9844 |
+
padding: 15px;
|
| 9845 |
+
z-index: 10;
|
| 9846 |
+
}
|
| 9847 |
+
|
| 9848 |
+
.eael-filterable-gallery-item-wrap .eael-gallery-grid-item .gallery-item-thumbnail-wrap > img {
|
| 9849 |
+
height: 100%;
|
| 9850 |
+
width: 100%;
|
| 9851 |
+
-o-object-fit: cover;
|
| 9852 |
+
object-fit: cover;
|
| 9853 |
+
}
|
| 9854 |
+
|
| 9855 |
+
/*--- Gallery content css ---*/
|
| 9856 |
+
.fg-item-title,
|
| 9857 |
+
.fg-item-content {
|
| 9858 |
+
color: #ffffff;
|
| 9859 |
+
font-family: inherit;
|
| 9860 |
+
}
|
| 9861 |
+
|
| 9862 |
+
/*--- Gallery Card Style CSS ---*/
|
| 9863 |
+
.gallery-item-caption-wrap.caption-style-card .fg-item-title {
|
| 9864 |
+
font-size: 18px;
|
| 9865 |
+
margin: 15px 0 15px;
|
| 9866 |
+
line-height: 1;
|
| 9867 |
+
}
|
| 9868 |
+
|
| 9869 |
+
.gallery-item-caption-wrap.caption-style-card {
|
| 9870 |
+
background: #f7f7f7;
|
| 9871 |
+
}
|
| 9872 |
+
|
| 9873 |
+
.gallery-item-caption-wrap.caption-style-card .fg-item-title {
|
| 9874 |
+
margin: 10px 0 15px;
|
| 9875 |
+
color: #000000;
|
| 9876 |
+
}
|
| 9877 |
+
|
| 9878 |
+
.gallery-item-caption-wrap.caption-style-card .fg-item-content {
|
| 9879 |
+
color: #212529;
|
| 9880 |
+
line-height: 1.5;
|
| 9881 |
+
font-weight: normal;
|
| 9882 |
+
}
|
| 9883 |
+
|
| 9884 |
+
.gallery-item-buttons > a {
|
| 9885 |
+
display: inline-block;
|
| 9886 |
+
font-size: 16px;
|
| 9887 |
+
color: #000;
|
| 9888 |
+
margin-right: 15px;
|
| 9889 |
+
}
|
| 9890 |
+
|
| 9891 |
+
.gallery-item-buttons > a:visited {
|
| 9892 |
+
color: #000;
|
| 9893 |
+
}
|
| 9894 |
+
|
| 9895 |
+
.gallery-item-caption-wrap.caption-style-card {
|
| 9896 |
+
padding: 10px;
|
| 9897 |
+
-webkit-box-sizing: border-box;
|
| 9898 |
+
box-sizing: border-box;
|
| 9899 |
+
font-family: inherit;
|
| 9900 |
+
}
|
| 9901 |
+
|
| 9902 |
+
/*--- Gallery item hover style ---*/
|
| 9903 |
+
.gallery-item-caption-wrap .gallery-item-hoverer-bg {
|
| 9904 |
+
position: absolute;
|
| 9905 |
+
left: 0;
|
| 9906 |
+
top: 0;
|
| 9907 |
+
height: 100%;
|
| 9908 |
+
width: 100%;
|
| 9909 |
+
content: '';
|
| 9910 |
+
background: #000000;
|
| 9911 |
+
z-index: -1;
|
| 9912 |
+
opacity: .7;
|
| 9913 |
+
}
|
| 9914 |
+
|
| 9915 |
+
.gallery-item-caption-wrap.caption-style-hoverer {
|
| 9916 |
+
visibility: hidden;
|
| 9917 |
+
opacity: 0;
|
| 9918 |
+
-webkit-transition: 0.6s all ease;
|
| 9919 |
+
-o-transition: 0.6s all ease;
|
| 9920 |
+
transition: 0.6s all ease;
|
| 9921 |
+
display: -webkit-box;
|
| 9922 |
+
display: -webkit-flex;
|
| 9923 |
+
display: -ms-flexbox;
|
| 9924 |
+
display: flex;
|
| 9925 |
+
-webkit-box-align: center;
|
| 9926 |
+
-webkit-align-items: center;
|
| 9927 |
+
-ms-flex-align: center;
|
| 9928 |
+
align-items: center;
|
| 9929 |
+
}
|
| 9930 |
+
|
| 9931 |
+
.eael-gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer {
|
| 9932 |
+
opacity: 1;
|
| 9933 |
+
visibility: visible;
|
| 9934 |
+
}
|
| 9935 |
+
|
| 9936 |
+
.gallery-item-caption-wrap.caption-style-hoverer h5 {
|
| 9937 |
+
font-size: 20px;
|
| 9938 |
+
margin-bottom: 5px;
|
| 9939 |
+
line-height: 1;
|
| 9940 |
+
}
|
| 9941 |
+
|
| 9942 |
+
.gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up h5 {
|
| 9943 |
+
-webkit-transform: translateY(20px);
|
| 9944 |
+
-ms-transform: translateY(20px);
|
| 9945 |
+
transform: translateY(20px);
|
| 9946 |
+
-webkit-transition: 0.6s all ease;
|
| 9947 |
+
-o-transition: 0.6s all ease;
|
| 9948 |
+
transition: 0.6s all ease;
|
| 9949 |
+
}
|
| 9950 |
+
|
| 9951 |
+
.gallery-item-caption-wrap.caption-style-hoverer p {
|
| 9952 |
+
margin-bottom: 5px;
|
| 9953 |
+
}
|
| 9954 |
+
|
| 9955 |
+
.gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up p {
|
| 9956 |
+
-webkit-transform: translateY(40px);
|
| 9957 |
+
-ms-transform: translateY(40px);
|
| 9958 |
+
transform: translateY(40px);
|
| 9959 |
+
-webkit-transition: 0.6s all ease;
|
| 9960 |
+
-o-transition: 0.6s all ease;
|
| 9961 |
+
transition: 0.6s all ease;
|
| 9962 |
+
}
|
| 9963 |
+
|
| 9964 |
+
.gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up .gallery-item-buttons {
|
| 9965 |
+
-webkit-transform: translateY(40px);
|
| 9966 |
+
-ms-transform: translateY(40px);
|
| 9967 |
+
transform: translateY(40px);
|
| 9968 |
+
-webkit-transition: 0.6s all ease;
|
| 9969 |
+
-o-transition: 0.6s all ease;
|
| 9970 |
+
transition: 0.6s all ease;
|
| 9971 |
+
}
|
| 9972 |
+
|
| 9973 |
+
.gallery-item-caption-wrap .gallery-item-buttons > a {
|
| 9974 |
+
padding: 5px 15px;
|
| 9975 |
+
display: inline-block;
|
| 9976 |
+
border-radius: 50%;
|
| 9977 |
+
outline: none;
|
| 9978 |
+
text-decoration: none;
|
| 9979 |
+
}
|
| 9980 |
+
|
| 9981 |
+
.gallery-item-caption-wrap.caption-style-hoverer.eael-zoom-in {
|
| 9982 |
+
-webkit-transform: scale(0.8);
|
| 9983 |
+
-ms-transform: scale(0.8);
|
| 9984 |
+
transform: scale(0.8);
|
| 9985 |
+
-webkit-transition: 0.6s all ease;
|
| 9986 |
+
-o-transition: 0.6s all ease;
|
| 9987 |
+
transition: 0.6s all ease;
|
| 9988 |
+
}
|
| 9989 |
+
|
| 9990 |
+
.eael-gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up h5,
|
| 9991 |
+
.eael-gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up .gallery-item-buttons,
|
| 9992 |
+
.eael-gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up p {
|
| 9993 |
+
-webkit-transform: translate(0);
|
| 9994 |
+
-ms-transform: translate(0);
|
| 9995 |
+
transform: translate(0);
|
| 9996 |
+
}
|
| 9997 |
+
|
| 9998 |
+
.eael-gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-zoom-in {
|
| 9999 |
+
-webkit-transform: scale(1);
|
| 10000 |
+
-ms-transform: scale(1);
|
| 10001 |
+
transform: scale(1);
|
| 10002 |
+
visibility: visible;
|
| 10003 |
+
opacity: 1;
|
| 10004 |
+
}
|
| 10005 |
+
|
| 10006 |
+
.gallery-item-caption-wrap.caption-style-hoverer.eael-none {
|
| 10007 |
+
-webkit-transition: none;
|
| 10008 |
+
-o-transition: none;
|
| 10009 |
+
transition: none;
|
| 10010 |
+
}
|
| 10011 |
+
|
| 10012 |
+
/*--- Video Gallery ---*/
|
| 10013 |
+
.gallery-item-thumbnail-wrap {
|
| 10014 |
+
position: relative;
|
| 10015 |
+
}
|
| 10016 |
+
|
| 10017 |
+
.video-popup,
|
| 10018 |
+
.video-popup-bg {
|
| 10019 |
+
position: absolute;
|
| 10020 |
+
left: 0;
|
| 10021 |
+
top: 0;
|
| 10022 |
+
height: 100%;
|
| 10023 |
+
width: 100%;
|
| 10024 |
+
}
|
| 10025 |
+
|
| 10026 |
+
.video-popup > img {
|
| 10027 |
+
width: 62px;
|
| 10028 |
+
position: relative;
|
| 10029 |
+
z-index: 1;
|
| 10030 |
+
-webkit-transition: 300ms;
|
| 10031 |
+
-o-transition: 300ms;
|
| 10032 |
+
transition: 300ms;
|
| 10033 |
+
}
|
| 10034 |
+
|
| 10035 |
+
.video-popup {
|
| 10036 |
+
display: -webkit-box;
|
| 10037 |
+
display: -webkit-flex;
|
| 10038 |
+
display: -ms-flexbox;
|
| 10039 |
+
display: flex;
|
| 10040 |
+
-webkit-box-align: center;
|
| 10041 |
+
-webkit-align-items: center;
|
| 10042 |
+
-ms-flex-align: center;
|
| 10043 |
+
align-items: center;
|
| 10044 |
+
-webkit-box-pack: center;
|
| 10045 |
+
-webkit-justify-content: center;
|
| 10046 |
+
-ms-flex-pack: center;
|
| 10047 |
+
justify-content: center;
|
| 10048 |
+
}
|
| 10049 |
+
|
| 10050 |
+
.video-popup:hover > img {
|
| 10051 |
+
-webkit-transform: scale(1.1);
|
| 10052 |
+
-ms-transform: scale(1.1);
|
| 10053 |
+
transform: scale(1.1);
|
| 10054 |
+
}
|
| 10055 |
+
|
| 10056 |
+
.video-popup-bg {
|
| 10057 |
+
visibility: hidden;
|
| 10058 |
+
opacity: 0;
|
| 10059 |
+
-webkit-transition: 350ms;
|
| 10060 |
+
-o-transition: 350ms;
|
| 10061 |
+
transition: 350ms;
|
| 10062 |
+
}
|
| 10063 |
+
|
| 10064 |
+
.eael-gallery-grid-item:hover .video-popup-bg {
|
| 10065 |
+
visibility: visible;
|
| 10066 |
+
opacity: 1;
|
| 10067 |
+
}
|
| 10068 |
+
|
| 10069 |
+
.gallery-item-thumbnail-wrap > .gallery-item-caption-wrap {
|
| 10070 |
+
position: absolute;
|
| 10071 |
+
left: 0;
|
| 10072 |
+
top: 0;
|
| 10073 |
+
height: 100%;
|
| 10074 |
+
width: 100%;
|
| 10075 |
+
display: -webkit-box;
|
| 10076 |
+
display: -webkit-flex;
|
| 10077 |
+
display: -ms-flexbox;
|
| 10078 |
+
display: flex;
|
| 10079 |
+
-webkit-box-align: center;
|
| 10080 |
+
-webkit-align-items: center;
|
| 10081 |
+
-ms-flex-align: center;
|
| 10082 |
+
align-items: center;
|
| 10083 |
+
-webkit-box-pack: center;
|
| 10084 |
+
-webkit-justify-content: center;
|
| 10085 |
+
-ms-flex-pack: center;
|
| 10086 |
+
justify-content: center;
|
| 10087 |
+
}
|
| 10088 |
+
|
| 10089 |
+
.gallery-item-caption-wrap.card-hover-bg {
|
| 10090 |
+
visibility: hidden;
|
| 10091 |
+
opacity: 0;
|
| 10092 |
+
-webkit-transition: 800ms;
|
| 10093 |
+
-o-transition: 800ms;
|
| 10094 |
+
transition: 800ms;
|
| 10095 |
+
}
|
| 10096 |
+
|
| 10097 |
+
.gallery-item-thumbnail-wrap:hover .gallery-item-caption-wrap.card-hover-bg {
|
| 10098 |
+
visibility: visible;
|
| 10099 |
+
opacity: 1;
|
| 10100 |
+
}
|
| 10101 |
+
|
| 10102 |
+
.gallery-item-caption-wrap .gallery-item-buttons > a > i {
|
| 10103 |
+
display: -webkit-box;
|
| 10104 |
+
display: -webkit-flex;
|
| 10105 |
+
display: -ms-flexbox;
|
| 10106 |
+
display: flex;
|
| 10107 |
+
-webkit-box-align: center;
|
| 10108 |
+
-webkit-align-items: center;
|
| 10109 |
+
-ms-flex-align: center;
|
| 10110 |
+
align-items: center;
|
| 10111 |
+
-webkit-box-pack: center;
|
| 10112 |
+
-webkit-justify-content: center;
|
| 10113 |
+
-ms-flex-pack: center;
|
| 10114 |
+
justify-content: center;
|
| 10115 |
+
height: 100%;
|
| 10116 |
+
}
|
| 10117 |
+
|
| 10118 |
+
/*--- Gallery Column CSS ---*/
|
| 10119 |
+
@media only screen and (min-width: 1025px) {
|
| 10120 |
+
/* For Desktop: */
|
| 10121 |
+
.elementor-element.elementor-grid-1 {
|
| 10122 |
+
position: relative;
|
| 10123 |
+
}
|
| 10124 |
+
|
| 10125 |
+
.elementor-element.elementor-grid-1 .eael-filterable-gallery-item-wrap {
|
| 10126 |
+
width: 100%;
|
| 10127 |
+
float: left;
|
| 10128 |
+
}
|
| 10129 |
+
|
| 10130 |
+
.elementor-element.elementor-grid-2 {
|
| 10131 |
+
position: relative;
|
| 10132 |
+
}
|
| 10133 |
+
|
| 10134 |
+
.elementor-element.elementor-grid-2 .eael-filterable-gallery-item-wrap {
|
| 10135 |
+
width: 50%;
|
| 10136 |
+
float: left;
|
| 10137 |
+
}
|
| 10138 |
+
|
| 10139 |
+
.elementor-element.elementor-grid-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n) {
|
| 10140 |
+
margin-right: 0 !important;
|
| 10141 |
+
}
|
| 10142 |
+
|
| 10143 |
+
.elementor-element.elementor-grid-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n+1) {
|
| 10144 |
+
clear: left;
|
| 10145 |
+
}
|
| 10146 |
+
|
| 10147 |
+
.elementor-element.elementor-grid-3 {
|
| 10148 |
+
position: relative;
|
| 10149 |
+
}
|
| 10150 |
+
|
| 10151 |
+
.elementor-element.elementor-grid-3 .eael-filterable-gallery-item-wrap {
|
| 10152 |
+
width: 33.3333%;
|
| 10153 |
+
float: left;
|
| 10154 |
+
}
|
| 10155 |
+
|
| 10156 |
+
.elementor-element.elementor-grid-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n) {
|
| 10157 |
+
margin-right: 0 !important;
|
| 10158 |
+
}
|
| 10159 |
+
|
| 10160 |
+
.elementor-element.elementor-grid-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n+1) {
|
| 10161 |
+
clear: left;
|
| 10162 |
+
}
|
| 10163 |
+
|
| 10164 |
+
.elementor-element.elementor-grid-4 {
|
| 10165 |
+
position: relative;
|
| 10166 |
+
}
|
| 10167 |
+
|
| 10168 |
+
.elementor-element.elementor-grid-4 .eael-filterable-gallery-item-wrap {
|
| 10169 |
+
width: 25%;
|
| 10170 |
+
float: left;
|
| 10171 |
+
}
|
| 10172 |
+
|
| 10173 |
+
.elementor-element.elementor-grid-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n) {
|
| 10174 |
+
margin-right: 0 !important;
|
| 10175 |
+
}
|
| 10176 |
+
|
| 10177 |
+
.elementor-element.elementor-grid-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n+1) {
|
| 10178 |
+
clear: left;
|
| 10179 |
+
}
|
| 10180 |
+
|
| 10181 |
+
.elementor-element.elementor-grid-5 {
|
| 10182 |
+
position: relative;
|
| 10183 |
+
}
|
| 10184 |
+
|
| 10185 |
+
.elementor-element.elementor-grid-5 .pp-logo-grid {
|
| 10186 |
+
margin-right: -5px;
|
| 10187 |
+
}
|
| 10188 |
+
|
| 10189 |
+
.elementor-element.elementor-grid-5 .eael-filterable-gallery-item-wrap {
|
| 10190 |
+
width: 20%;
|
| 10191 |
+
float: left;
|
| 10192 |
+
}
|
| 10193 |
+
|
| 10194 |
+
.elementor-element.elementor-grid-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n) {
|
| 10195 |
+
margin-right: 0 !important;
|
| 10196 |
+
}
|
| 10197 |
+
|
| 10198 |
+
.elementor-element.elementor-grid-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n+1) {
|
| 10199 |
+
clear: left;
|
| 10200 |
+
}
|
| 10201 |
+
|
| 10202 |
+
.elementor-element.elementor-grid-6 {
|
| 10203 |
+
position: relative;
|
| 10204 |
+
}
|
| 10205 |
+
|
| 10206 |
+
.elementor-element.elementor-grid-6 .pp-logo-grid {
|
| 10207 |
+
margin-right: -6px;
|
| 10208 |
+
}
|
| 10209 |
+
|
| 10210 |
+
.elementor-element.elementor-grid-6 .eael-filterable-gallery-item-wrap {
|
| 10211 |
+
width: 16.6667%;
|
| 10212 |
+
float: left;
|
| 10213 |
+
}
|
| 10214 |
+
|
| 10215 |
+
.elementor-element.elementor-grid-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n) {
|
| 10216 |
+
margin-right: 0 !important;
|
| 10217 |
+
}
|
| 10218 |
+
|
| 10219 |
+
.elementor-element.elementor-grid-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n+1) {
|
| 10220 |
+
clear: left;
|
| 10221 |
+
}
|
| 10222 |
+
}
|
| 10223 |
+
@media only screen and (max-width: 1024px) and (min-width: 766px) {
|
| 10224 |
+
/* For tablets: */
|
| 10225 |
+
.elementor-element.elementor-grid-tablet-1 {
|
| 10226 |
+
position: relative;
|
| 10227 |
+
}
|
| 10228 |
+
|
| 10229 |
+
.elementor-element.elementor-grid-tablet-1 .eael-filterable-gallery-item-wrap {
|
| 10230 |
+
width: 100%;
|
| 10231 |
+
float: left;
|
| 10232 |
+
}
|
| 10233 |
+
|
| 10234 |
+
.elementor-element.elementor-grid-tablet-2 {
|
| 10235 |
+
position: relative;
|
| 10236 |
+
}
|
| 10237 |
+
|
| 10238 |
+
.elementor-element.elementor-grid-tablet-2 .eael-filterable-gallery-item-wrap {
|
| 10239 |
+
width: 50%;
|
| 10240 |
+
float: left;
|
| 10241 |
+
}
|
| 10242 |
+
|
| 10243 |
+
.elementor-element.elementor-grid-tablet-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n) {
|
| 10244 |
+
margin-right: 0 !important;
|
| 10245 |
+
}
|
| 10246 |
+
|
| 10247 |
+
.elementor-element.elementor-grid-tablet-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n+1) {
|
| 10248 |
+
clear: left;
|
| 10249 |
+
}
|
| 10250 |
+
|
| 10251 |
+
.elementor-element.elementor-grid-tablet-3 {
|
| 10252 |
+
position: relative;
|
| 10253 |
+
}
|
| 10254 |
+
|
| 10255 |
+
.elementor-element.elementor-grid-tablet-3 .eael-filterable-gallery-item-wrap {
|
| 10256 |
+
width: 33.3333%;
|
| 10257 |
+
float: left;
|
| 10258 |
+
}
|
| 10259 |
+
|
| 10260 |
+
.elementor-element.elementor-grid-tablet-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n) {
|
| 10261 |
+
margin-right: 0 !important;
|
| 10262 |
+
}
|
| 10263 |
+
|
| 10264 |
+
.elementor-element.elementor-grid-tablet-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n+1) {
|
| 10265 |
+
clear: left;
|
| 10266 |
+
}
|
| 10267 |
+
|
| 10268 |
+
.elementor-element.elementor-grid-tablet-4 {
|
| 10269 |
+
position: relative;
|
| 10270 |
+
}
|
| 10271 |
+
|
| 10272 |
+
.elementor-element.elementor-grid-tablet-4 .eael-filterable-gallery-item-wrap {
|
| 10273 |
+
width: 25%;
|
| 10274 |
+
float: left;
|
| 10275 |
+
}
|
| 10276 |
+
|
| 10277 |
+
.elementor-element.elementor-grid-tablet-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n) {
|
| 10278 |
+
margin-right: 0 !important;
|
| 10279 |
+
}
|
| 10280 |
+
|
| 10281 |
+
.elementor-element.elementor-grid-tablet-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n+1) {
|
| 10282 |
+
clear: left;
|
| 10283 |
+
}
|
| 10284 |
+
|
| 10285 |
+
.elementor-element.elementor-grid-tablet-5 {
|
| 10286 |
+
position: relative;
|
| 10287 |
+
}
|
| 10288 |
+
|
| 10289 |
+
.elementor-element.elementor-grid-tablet-5 .eael-filterable-gallery-item-wrap {
|
| 10290 |
+
width: 20%;
|
| 10291 |
+
float: left;
|
| 10292 |
+
}
|
| 10293 |
+
|
| 10294 |
+
.elementor-element.elementor-grid-tablet-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n) {
|
| 10295 |
+
margin-right: 0 !important;
|
| 10296 |
+
}
|
| 10297 |
+
|
| 10298 |
+
.elementor-element.elementor-grid-tablet-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n+1) {
|
| 10299 |
+
clear: left;
|
| 10300 |
+
}
|
| 10301 |
+
|
| 10302 |
+
.elementor-element.elementor-grid-tablet-6 {
|
| 10303 |
+
position: relative;
|
| 10304 |
+
}
|
| 10305 |
+
|
| 10306 |
+
.elementor-element.elementor-grid-tablet-6 .pp-logo-grid {
|
| 10307 |
+
margin-right: -6px;
|
| 10308 |
+
}
|
| 10309 |
+
|
| 10310 |
+
.elementor-element.elementor-grid-tablet-6 .eael-filterable-gallery-item-wrap {
|
| 10311 |
+
width: 16.6667%;
|
| 10312 |
+
float: left;
|
| 10313 |
+
}
|
| 10314 |
+
|
| 10315 |
+
.elementor-element.elementor-grid-tablet-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n) {
|
| 10316 |
+
margin-right: 0 !important;
|
| 10317 |
+
}
|
| 10318 |
+
|
| 10319 |
+
.elementor-element.elementor-grid-tablet-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n+1) {
|
| 10320 |
+
clear: left;
|
| 10321 |
+
}
|
| 10322 |
+
}
|
| 10323 |
+
@media only screen and (max-width: 767px) {
|
| 10324 |
+
.elementor-element.elementor-grid-mobile-1 {
|
| 10325 |
+
position: relative;
|
| 10326 |
+
}
|
| 10327 |
+
|
| 10328 |
+
.elementor-element.elementor-grid-mobile-1 .eael-filterable-gallery-item-wrap {
|
| 10329 |
+
width: 100%;
|
| 10330 |
+
float: left;
|
| 10331 |
+
}
|
| 10332 |
+
|
| 10333 |
+
.elementor-element.elementor-grid-mobile-2 {
|
| 10334 |
+
position: relative;
|
| 10335 |
+
}
|
| 10336 |
+
|
| 10337 |
+
.elementor-element.elementor-grid-mobile-2 .eael-filterable-gallery-item-wrap {
|
| 10338 |
+
width: 50%;
|
| 10339 |
+
float: left;
|
| 10340 |
+
}
|
| 10341 |
+
|
| 10342 |
+
.elementor-element.elementor-grid-mobile-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n) {
|
| 10343 |
+
margin-right: 0 !important;
|
| 10344 |
+
}
|
| 10345 |
+
|
| 10346 |
+
.elementor-element.elementor-grid-mobile-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n+1) {
|
| 10347 |
+
clear: left;
|
| 10348 |
+
}
|
| 10349 |
+
|
| 10350 |
+
.elementor-element.elementor-grid-mobile-3 {
|
| 10351 |
+
position: relative;
|
| 10352 |
+
}
|
| 10353 |
+
|
| 10354 |
+
.elementor-element.elementor-grid-mobile-3 .eael-filterable-gallery-item-wrap {
|
| 10355 |
+
width: 33.3333%;
|
| 10356 |
+
float: left;
|
| 10357 |
+
}
|
| 10358 |
+
|
| 10359 |
+
.elementor-element.elementor-grid-mobile-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n) {
|
| 10360 |
+
margin-right: 0 !important;
|
| 10361 |
+
}
|
| 10362 |
+
|
| 10363 |
+
.elementor-element.elementor-grid-mobile-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n+1) {
|
| 10364 |
+
clear: left;
|
| 10365 |
+
}
|
| 10366 |
+
|
| 10367 |
+
.elementor-element.elementor-grid-mobile-4 {
|
| 10368 |
+
position: relative;
|
| 10369 |
+
}
|
| 10370 |
+
|
| 10371 |
+
.elementor-element.elementor-grid-mobile-4 .eael-filterable-gallery-item-wrap {
|
| 10372 |
+
width: 25%;
|
| 10373 |
+
float: left;
|
| 10374 |
+
}
|
| 10375 |
+
|
| 10376 |
+
.elementor-element.elementor-grid-mobile-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n) {
|
| 10377 |
+
margin-right: 0 !important;
|
| 10378 |
+
}
|
| 10379 |
+
|
| 10380 |
+
.elementor-element.elementor-grid-mobile-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n+1) {
|
| 10381 |
+
clear: left;
|
| 10382 |
+
}
|
| 10383 |
+
|
| 10384 |
+
.elementor-element.elementor-grid-mobile-5 {
|
| 10385 |
+
position: relative;
|
| 10386 |
+
}
|
| 10387 |
+
|
| 10388 |
+
.elementor-element.elementor-grid-mobile-5 .eael-filterable-gallery-item-wrap {
|
| 10389 |
+
width: 20%;
|
| 10390 |
+
float: left;
|
| 10391 |
+
}
|
| 10392 |
+
|
| 10393 |
+
.elementor-element.elementor-grid-mobile-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n) {
|
| 10394 |
+
margin-right: 0 !important;
|
| 10395 |
+
}
|
| 10396 |
+
|
| 10397 |
+
.elementor-element.elementor-grid-mobile-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n+1) {
|
| 10398 |
+
clear: left;
|
| 10399 |
+
}
|
| 10400 |
+
|
| 10401 |
+
.elementor-element.elementor-grid-mobile-6 {
|
| 10402 |
+
position: relative;
|
| 10403 |
+
}
|
| 10404 |
+
|
| 10405 |
+
.elementor-element.elementor-grid-mobile-6 .pp-logo-grid {
|
| 10406 |
+
margin-right: -6px;
|
| 10407 |
+
}
|
| 10408 |
+
|
| 10409 |
+
.elementor-element.elementor-grid-mobile-6 .eael-filterable-gallery-item-wrap {
|
| 10410 |
+
width: 16.6667%;
|
| 10411 |
+
float: left;
|
| 10412 |
+
}
|
| 10413 |
+
|
| 10414 |
+
.elementor-element.elementor-grid-mobile-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n) {
|
| 10415 |
+
margin-right: 0 !important;
|
| 10416 |
+
}
|
| 10417 |
+
|
| 10418 |
+
.elementor-element.elementor-grid-mobile-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n+1) {
|
| 10419 |
+
clear: left;
|
| 10420 |
+
}
|
| 10421 |
+
}
|
| 10422 |
+
|
| 10423 |
+
/*---------------------------*/
|
| 10424 |
+
/* 18. Flipbox Style
|
| 10425 |
+
/*---------------------------*/
|
| 10426 |
+
.eael-elements-flip-box-container {
|
| 10427 |
+
position: relative;
|
| 10428 |
+
height: 300px;
|
| 10429 |
+
width: 100%;
|
| 10430 |
+
}
|
| 10431 |
+
|
| 10432 |
+
.eael-elements-flip-box-container .flipbox-button {
|
| 10433 |
+
display: inline-block;
|
| 10434 |
+
-webkit-transition: all 400ms;
|
| 10435 |
+
-o-transition: all 400ms;
|
| 10436 |
+
transition: all 400ms;
|
| 10437 |
+
}
|
| 10438 |
+
|
| 10439 |
+
.eael-elements-flip-box-container a {
|
| 10440 |
+
display: block;
|
| 10441 |
+
}
|
| 10442 |
+
|
| 10443 |
+
.eael-elements-flip-box-vertical-align {
|
| 10444 |
+
width: 100%;
|
| 10445 |
+
}
|
| 10446 |
+
|
| 10447 |
+
.eael-elements-flip-box-padding {
|
| 10448 |
+
padding: 0px 30px 5px 30px;
|
| 10449 |
+
}
|
| 10450 |
+
|
| 10451 |
+
.eael-elements-flip-box-icon-image {
|
| 10452 |
+
display: inline-block;
|
| 10453 |
+
margin: 0 auto 0px auto;
|
| 10454 |
+
line-height: 1;
|
| 10455 |
+
}
|
| 10456 |
+
|
| 10457 |
+
.eael-elements-flip-box-icon-image.eael_eleements_flip_front_icon_style_background {
|
| 10458 |
+
background: #cccccc;
|
| 10459 |
+
}
|
| 10460 |
+
|
| 10461 |
+
.eael_eleements_flip_front_icon_style_bordered {
|
| 10462 |
+
border: 2px solid #ffffff;
|
| 10463 |
+
}
|
| 10464 |
+
|
| 10465 |
+
.eael_flip_box_icon_border_round {
|
| 10466 |
+
border-radius: 100px;
|
| 10467 |
+
}
|
| 10468 |
+
|
| 10469 |
+
.eael_eleements_flip_front_icon_style_background,
|
| 10470 |
+
.eael_eleements_flip_front_icon_style_bordered {
|
| 10471 |
+
padding: 15px;
|
| 10472 |
+
}
|
| 10473 |
+
|
| 10474 |
+
.eael-elements-flip-box-icon-image i {
|
| 10475 |
+
font-size: 40px;
|
| 10476 |
+
line-height: 40px;
|
| 10477 |
+
width: 40px;
|
| 10478 |
+
}
|
| 10479 |
+
|
| 10480 |
+
.eael-elements-slider-display-table {
|
| 10481 |
+
width: 100%;
|
| 10482 |
+
}
|
| 10483 |
+
|
| 10484 |
+
.eael-elements-flip-box-front-container {
|
| 10485 |
+
text-align: center;
|
| 10486 |
+
position: absolute;
|
| 10487 |
+
top: 0px;
|
| 10488 |
+
left: 0px;
|
| 10489 |
+
z-index: 2;
|
| 10490 |
+
width: 100%;
|
| 10491 |
+
height: 100%;
|
| 10492 |
+
background: #0e9dd2;
|
| 10493 |
+
color: #ffffff;
|
| 10494 |
+
border-color: #000000;
|
| 10495 |
+
-webkit-display: flex;
|
| 10496 |
+
display: -webkit-box;
|
| 10497 |
+
display: -ms-flexbox;
|
| 10498 |
+
display: flex;
|
| 10499 |
+
-webkit-align-items: center;
|
| 10500 |
+
-webkit-box-align: center;
|
| 10501 |
+
-ms-flex-align: center;
|
| 10502 |
+
align-items: center;
|
| 10503 |
+
}
|
| 10504 |
+
|
| 10505 |
+
.eael-elements-flip-box-content,
|
| 10506 |
+
.eael-elements-flip-box-heading {
|
| 10507 |
+
color: #ffffff;
|
| 10508 |
+
}
|
| 10509 |
+
|
| 10510 |
+
.eael-elements-flip-box-heading.flipbox-linked-title {
|
| 10511 |
+
color: #fff;
|
| 10512 |
+
font-size: 1.5em;
|
| 10513 |
+
font-weight: 700;
|
| 10514 |
+
}
|
| 10515 |
+
|
| 10516 |
+
.eael-elements-flip-box-rear-container {
|
| 10517 |
+
text-align: center;
|
| 10518 |
+
position: absolute;
|
| 10519 |
+
top: 0px;
|
| 10520 |
+
left: 0px;
|
| 10521 |
+
width: 100%;
|
| 10522 |
+
height: 100%;
|
| 10523 |
+
background: #444444;
|
| 10524 |
+
color: #ffffff;
|
| 10525 |
+
display: -webkit-box;
|
| 10526 |
+
display: -webkit-flex;
|
| 10527 |
+
display: -ms-flexbox;
|
| 10528 |
+
display: flex;
|
| 10529 |
+
-webkit-align-items: center;
|
| 10530 |
+
-webkit-box-align: center;
|
| 10531 |
+
-ms-flex-align: center;
|
| 10532 |
+
align-items: center;
|
| 10533 |
+
border-color: #000000;
|
| 10534 |
+
}
|
| 10535 |
+
|
| 10536 |
+
/*--- Floating Button Styles ---*/
|
| 10537 |
+
.eael-elements-button-floating-container {
|
| 10538 |
+
position: fixed;
|
| 10539 |
+
z-index: 100;
|
| 10540 |
+
}
|
| 10541 |
+
|
| 10542 |
+
.eael-elements-button-floating-container .eael-elements-button {
|
| 10543 |
+
margin-top: 0px;
|
| 10544 |
+
font-size: 14px;
|
| 10545 |
+
position: relative;
|
| 10546 |
+
padding: 14px 20px;
|
| 10547 |
+
}
|
| 10548 |
+
|
| 10549 |
+
.eael-elements-button {
|
| 10550 |
+
cursor: pointer;
|
| 10551 |
+
display: inline-block;
|
| 10552 |
+
background: #077bbe;
|
| 10553 |
+
color: #ffffff;
|
| 10554 |
+
line-height: 1;
|
| 10555 |
+
padding: 16px 25px;
|
| 10556 |
+
margin-top: 15px;
|
| 10557 |
+
}
|
| 10558 |
+
|
| 10559 |
+
.eael-elements-button:hover {
|
| 10560 |
+
background: #077bbe;
|
| 10561 |
+
color: #ffffff;
|
| 10562 |
+
}
|
| 10563 |
+
|
| 10564 |
+
/*--- CSS3 Transitions ---*/
|
| 10565 |
+
.eael-elements-flip-box-container {
|
| 10566 |
+
-webkit-perspective: 1000px;
|
| 10567 |
+
perspective: 1000px;
|
| 10568 |
+
}
|
| 10569 |
+
|
| 10570 |
+
.eael-elements-flip-box-front-container,
|
| 10571 |
+
.eael-elements-flip-box-rear-container {
|
| 10572 |
+
-webkit-transition-duration: 500ms;
|
| 10573 |
+
-o-transition-duration: 500ms;
|
| 10574 |
+
transition-duration: 500ms;
|
| 10575 |
+
-webkit-transition-property: all;
|
| 10576 |
+
-o-transition-property: all;
|
| 10577 |
+
transition-property: all;
|
| 10578 |
+
-webkit-transition-timing-function: ease;
|
| 10579 |
+
-o-transition-timing-function: ease;
|
| 10580 |
+
transition-timing-function: ease;
|
| 10581 |
+
}
|
| 10582 |
+
|
| 10583 |
+
.eael-elements-flip-box-flip-card {
|
| 10584 |
+
width: 100%;
|
| 10585 |
+
height: 100%;
|
| 10586 |
+
-webkit-transform-style: preserve-3d;
|
| 10587 |
+
transform-style: preserve-3d;
|
| 10588 |
+
-webkit-transition: all 500ms ease;
|
| 10589 |
+
-o-transition: all 500ms ease;
|
| 10590 |
+
transition: all 500ms ease;
|
| 10591 |
+
}
|
| 10592 |
+
|
| 10593 |
+
.eael-elements-flip-box-rear-container,
|
| 10594 |
+
.eael-elements-flip-box-front-container {
|
| 10595 |
+
-webkit-backface-visibility: hidden;
|
| 10596 |
+
backface-visibility: hidden;
|
| 10597 |
+
-webkit-transform: rotateX(0deg);
|
| 10598 |
+
transform: rotateX(0deg);
|
| 10599 |
+
-webkit-transform: rotateY(0deg);
|
| 10600 |
+
transform: rotateY(0deg);
|
| 10601 |
+
}
|
| 10602 |
+
|
| 10603 |
+
/*--- Flip ---*/
|
| 10604 |
+
.eael-animate-flip.eael-animate-up.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card,
|
| 10605 |
+
.eael-animate-flip.eael-animate-up .eael-elements-flip-box-rear-container {
|
| 10606 |
+
-webkit-transform: rotateX(180deg);
|
| 10607 |
+
transform: rotateX(180deg);
|
| 10608 |
+
}
|
| 10609 |
+
|
| 10610 |
+
.eael-animate-flip.eael-animate-down.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card,
|
| 10611 |
+
.eael-animate-flip.eael-animate-down .eael-elements-flip-box-rear-container {
|
| 10612 |
+
-webkit-transform: rotateX(-180deg);
|
| 10613 |
+
transform: rotateX(-180deg);
|
| 10614 |
+
}
|
| 10615 |
+
|
| 10616 |
+
.eael-animate-flip.eael-animate-left.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card,
|
| 10617 |
+
.eael-animate-flip.eael-animate-left .eael-elements-flip-box-rear-container {
|
| 10618 |
+
-webkit-transform: rotateY(-180deg);
|
| 10619 |
+
transform: rotateY(-180deg);
|
| 10620 |
+
}
|
| 10621 |
+
|
| 10622 |
+
.eael-animate-flip.eael-animate-right.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card,
|
| 10623 |
+
.eael-animate-flip.eael-animate-right .eael-elements-flip-box-rear-container {
|
| 10624 |
+
-webkit-transform: rotateY(180deg);
|
| 10625 |
+
transform: rotateY(180deg);
|
| 10626 |
+
}
|
| 10627 |
+
|
| 10628 |
+
/*--- Slide ---*/
|
| 10629 |
+
.eael-animate-push.eael-elements-flip-box-container,
|
| 10630 |
+
.eael-animate-slide.eael-elements-flip-box-container {
|
| 10631 |
+
overflow: hidden;
|
| 10632 |
+
}
|
| 10633 |
+
|
| 10634 |
+
.eael-animate-push .eael-elements-flip-box-rear-container,
|
| 10635 |
+
.eael-animate-slide .eael-elements-flip-box-rear-container {
|
| 10636 |
+
z-index: 3;
|
| 10637 |
+
}
|
| 10638 |
+
|
| 10639 |
+
.eael-animate-push.eael-animate-up .eael-elements-flip-box-rear-container,
|
| 10640 |
+
.eael-animate-slide.eael-animate-up .eael-elements-flip-box-rear-container {
|
| 10641 |
+
top: 100%;
|
| 10642 |
+
}
|
| 10643 |
+
|
| 10644 |
+
.eael-animate-push.eael-animate-up.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container,
|
| 10645 |
+
.eael-animate-slide.eael-animate-up.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container {
|
| 10646 |
+
top: 0;
|
| 10647 |
+
}
|
| 10648 |
+
|
| 10649 |
+
.eael-animate-push.eael-animate-down .eael-elements-flip-box-rear-container,
|
| 10650 |
+
.eael-animate-slide.eael-animate-down .eael-elements-flip-box-rear-container {
|
| 10651 |
+
top: auto;
|
| 10652 |
+
bottom: 100%;
|
| 10653 |
+
}
|
| 10654 |
+
|
| 10655 |
+
.eael-animate-push.eael-animate-down.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container,
|
| 10656 |
+
.eael-animate-slide.eael-animate-down.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container {
|
| 10657 |
+
top: auto;
|
| 10658 |
+
bottom: 0;
|
| 10659 |
+
}
|
| 10660 |
+
|
| 10661 |
+
.eael-animate-push.eael-animate-left .eael-elements-flip-box-rear-container,
|
| 10662 |
+
.eael-animate-slide.eael-animate-left .eael-elements-flip-box-rear-container {
|
| 10663 |
+
left: 100%;
|
| 10664 |
+
}
|
| 10665 |
+
|
| 10666 |
+
.eael-animate-push.eael-animate-left.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container,
|
| 10667 |
+
.eael-animate-slide.eael-animate-left.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container {
|
| 10668 |
+
left: 0;
|
| 10669 |
+
}
|
| 10670 |
+
|
| 10671 |
+
.eael-animate-push.eael-animate-right .eael-elements-flip-box-rear-container,
|
| 10672 |
+
.eael-animate-slide.eael-animate-right .eael-elements-flip-box-rear-container {
|
| 10673 |
+
left: auto;
|
| 10674 |
+
right: 100%;
|
| 10675 |
+
}
|
| 10676 |
+
|
| 10677 |
+
.eael-animate-push.eael-animate-right.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container,
|
| 10678 |
+
.eael-animate-slide.eael-animate-right.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container {
|
| 10679 |
+
left: auto;
|
| 10680 |
+
right: 0;
|
| 10681 |
+
}
|
| 10682 |
+
|
| 10683 |
+
/*--- Push + Slide Above ---*/
|
| 10684 |
+
.eael-animate-push.eael-animate-up.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container {
|
| 10685 |
+
top: -100%;
|
| 10686 |
+
}
|
| 10687 |
+
|
| 10688 |
+
.eael-animate-push.eael-animate-down.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container {
|
| 10689 |
+
top: 100%;
|
| 10690 |
+
}
|
| 10691 |
+
|
| 10692 |
+
.eael-animate-push.eael-animate-left.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container {
|
| 10693 |
+
left: -100%;
|
| 10694 |
+
}
|
| 10695 |
+
|
| 10696 |
+
.eael-animate-push.eael-animate-right.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container {
|
| 10697 |
+
left: 100%;
|
| 10698 |
+
}
|
| 10699 |
+
|
| 10700 |
+
/*--- Zoom In ---*/
|
| 10701 |
+
.eael-animate-zoom-in .eael-elements-flip-box-rear-container {
|
| 10702 |
+
opacity: 0;
|
| 10703 |
+
-webkit-transform: scale(0.75);
|
| 10704 |
+
-ms-transform: scale(0.75);
|
| 10705 |
+
transform: scale(0.75);
|
| 10706 |
+
z-index: 3;
|
| 10707 |
+
}
|
| 10708 |
+
|
| 10709 |
+
.eael-animate-zoom-in.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container {
|
| 10710 |
+
opacity: 1;
|
| 10711 |
+
-webkit-transform: scale(1);
|
| 10712 |
+
-ms-transform: scale(1);
|
| 10713 |
+
transform: scale(1);
|
| 10714 |
+
}
|
| 10715 |
+
|
| 10716 |
+
/*--- Zoom Out ---*/
|
| 10717 |
+
.eael-animate-zoom-out.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container {
|
| 10718 |
+
opacity: 0;
|
| 10719 |
+
-webkit-transform: scale(0.75);
|
| 10720 |
+
-ms-transform: scale(0.75);
|
| 10721 |
+
transform: scale(0.75);
|
| 10722 |
+
}
|
| 10723 |
+
|
| 10724 |
+
.eael-animate-fade.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container {
|
| 10725 |
+
opacity: 0;
|
| 10726 |
+
}
|
| 10727 |
+
|
| 10728 |
+
/*--- Builder Related Style ---*/
|
| 10729 |
+
.eael-flipbox-content-align-right .eael-elements-flip-box-padding {
|
| 10730 |
+
text-align: right;
|
| 10731 |
+
}
|
| 10732 |
+
|
| 10733 |
+
.eael-flipbox-content-align-left .eael-elements-flip-box-padding {
|
| 10734 |
+
text-align: left;
|
| 10735 |
+
}
|
| 10736 |
+
|
| 10737 |
+
.eael-flipbox-content-align-center .eael-elements-flip-box-padding {
|
| 10738 |
+
text-align: center;
|
| 10739 |
+
}
|
| 10740 |
+
|
| 10741 |
+
.eael-flipbox-img-circle .eael-elements-flip-box-icon-image img,
|
| 10742 |
+
.eael-flipbox-img-circle .flipbox-back-image-icon img {
|
| 10743 |
+
border-radius: 50%;
|
| 10744 |
+
overflow: hidden;
|
| 10745 |
+
}
|
| 10746 |
+
|
| 10747 |
+
/*--------------------------*/
|
| 10748 |
+
/* 01. General Styles
|
| 10749 |
+
/*--------------------------*/
|
| 10750 |
+
.clearfix::before,
|
| 10751 |
+
.clearfix::after {
|
| 10752 |
+
content: " ";
|
| 10753 |
+
display: table;
|
| 10754 |
+
clear: both;
|
| 10755 |
+
}
|
| 10756 |
+
|
| 10757 |
+
/*---------------------------------------*/
|
| 10758 |
+
/* 02. Common styles for slider elements
|
| 10759 |
+
/*---------------------------------------*/
|
| 10760 |
+
.eael-testimonial-slider.nav-top-left,
|
| 10761 |
+
.eael-testimonial-slider.nav-top-right,
|
| 10762 |
+
.eael-team-slider.nav-top-left,
|
| 10763 |
+
.eael-team-slider.nav-top-right,
|
| 10764 |
+
.eael-logo-carousel.nav-top-left,
|
| 10765 |
+
.eael-logo-carousel.nav-top-right,
|
| 10766 |
+
.eael-post-carousel.nav-top-left,
|
| 10767 |
+
.eael-post-carousel.nav-top-right,
|
| 10768 |
+
.eael-product-carousel.nav-top-left,
|
| 10769 |
+
.eael-product-carousel.nav-top-right {
|
| 10770 |
+
padding-top: 40px;
|
| 10771 |
+
}
|
| 10772 |
+
|
| 10773 |
+
/*----------------------------*/
|
| 10774 |
+
/* 28. Swiper
|
| 10775 |
+
/*----------------------------*/
|
| 10776 |
+
.swiper-container-wrap .swiper-slide,
|
| 10777 |
+
.swiper-container .swiper-slide {
|
| 10778 |
+
text-align: center;
|
| 10779 |
+
}
|
| 10780 |
+
|
| 10781 |
+
.swiper-container-wrap .swiper-slide img,
|
| 10782 |
+
.swiper-container .swiper-slide img {
|
| 10783 |
+
width: auto;
|
| 10784 |
+
}
|
| 10785 |
+
|
| 10786 |
+
.swiper-container-wrap-dots-outside .swiper-pagination,
|
| 10787 |
+
.swiper-container-dots-outside .swiper-pagination {
|
| 10788 |
+
position: static;
|
| 10789 |
+
}
|
| 10790 |
+
|
| 10791 |
+
.swiper-container-wrap .swiper-button-next,
|
| 10792 |
+
.swiper-container-wrap .swiper-button-prev,
|
| 10793 |
+
.swiper-container .swiper-button-next,
|
| 10794 |
+
.swiper-container .swiper-button-prev {
|
| 10795 |
+
background: transparent;
|
| 10796 |
+
font-size: 20px;
|
| 10797 |
+
height: auto;
|
| 10798 |
+
line-height: 1;
|
| 10799 |
+
margin: 0;
|
| 10800 |
+
text-align: center;
|
| 10801 |
+
-webkit-transform: translateY(-50%);
|
| 10802 |
+
-ms-transform: translateY(-50%);
|
| 10803 |
+
transform: translateY(-50%);
|
| 10804 |
+
width: auto;
|
| 10805 |
+
}
|
| 10806 |
+
|
| 10807 |
+
.swiper-container-wrap .swiper-button-next .fa,
|
| 10808 |
+
.swiper-container-wrap .swiper-button-prev .fa,
|
| 10809 |
+
.swiper-container .swiper-button-next .fa,
|
| 10810 |
+
.swiper-container .swiper-button-prev .fa {
|
| 10811 |
+
vertical-align: top;
|
| 10812 |
+
}
|
| 10813 |
+
|
| 10814 |
+
.swiper-container-wrap .swiper-pagination {
|
| 10815 |
+
bottom: 10px;
|
| 10816 |
+
left: 0;
|
| 10817 |
+
width: 100%;
|
| 10818 |
+
}
|
| 10819 |
+
|
| 10820 |
+
.swiper-container-wrap-dots-outside .swiper-pagination {
|
| 10821 |
+
position: static;
|
| 10822 |
+
}
|
| 10823 |
+
|
| 10824 |
+
.swiper-container-wrap .swiper-pagination-bullet {
|
| 10825 |
+
background: #ccc;
|
| 10826 |
+
margin: 0 4px;
|
| 10827 |
+
opacity: 1;
|
| 10828 |
+
height: 8px;
|
| 10829 |
+
width: 8px;
|
| 10830 |
+
}
|
| 10831 |
+
|
| 10832 |
+
.swiper-container-wrap .swiper-pagination-bullet-active {
|
| 10833 |
+
background: #000;
|
| 10834 |
+
}
|
| 10835 |
+
|
| 10836 |
+
.swiper-container-3d .swiper-slide {
|
| 10837 |
+
-o-transition-property: all;
|
| 10838 |
+
transition-property: all;
|
| 10839 |
+
-webkit-transition-property: all;
|
| 10840 |
+
}
|
| 10841 |
+
|
| 10842 |
+
/*--------------------------------*/
|
| 10843 |
+
/* 10. Contact forms common
|
| 10844 |
+
/*--------------------------------*/
|
| 10845 |
+
.eael-contact-form input[type=text],
|
| 10846 |
+
.eael-contact-form input[type=email],
|
| 10847 |
+
.eael-contact-form input[type=url],
|
| 10848 |
+
.eael-contact-form input[type=tel],
|
| 10849 |
+
.eael-contact-form input[type=date],
|
| 10850 |
+
.eael-contact-form input[type=number],
|
| 10851 |
+
.eael-contact-form textarea {
|
| 10852 |
+
background: #fff;
|
| 10853 |
+
box-shadow: none;
|
| 10854 |
+
-webkit-box-shadow: none;
|
| 10855 |
+
float: none;
|
| 10856 |
+
height: auto;
|
| 10857 |
+
margin: 0;
|
| 10858 |
+
outline: 0;
|
| 10859 |
+
width: 100%;
|
| 10860 |
+
}
|
| 10861 |
+
|
| 10862 |
+
.eael-contact-form input[type=submit] {
|
| 10863 |
+
border: 0;
|
| 10864 |
+
float: none;
|
| 10865 |
+
height: auto;
|
| 10866 |
+
margin: 0;
|
| 10867 |
+
padding: 10px 20px;
|
| 10868 |
+
width: auto;
|
| 10869 |
+
-webkit-transition: all 0.25s linear 0s;
|
| 10870 |
+
-o-transition: all 0.25s linear 0s;
|
| 10871 |
+
transition: all 0.25s linear 0s;
|
| 10872 |
+
}
|
| 10873 |
+
|
| 10874 |
+
.eael-contact-form.placeholder-hide input::-webkit-input-placeholder,
|
| 10875 |
+
.eael-contact-form.placeholder-hide textarea::-webkit-input-placeholder {
|
| 10876 |
+
opacity: 0;
|
| 10877 |
+
visibility: hidden;
|
| 10878 |
+
}
|
| 10879 |
+
|
| 10880 |
+
.eael-contact-form.placeholder-hide input::-moz-placeholder,
|
| 10881 |
+
.eael-contact-form.placeholder-hide textarea::-moz-placeholder {
|
| 10882 |
+
opacity: 0;
|
| 10883 |
+
visibility: hidden;
|
| 10884 |
+
}
|
| 10885 |
+
|
| 10886 |
+
.eael-contact-form.placeholder-hide input:-ms-input-placeholder,
|
| 10887 |
+
.eael-contact-form.placeholder-hide textarea:-ms-input-placeholder {
|
| 10888 |
+
opacity: 0;
|
| 10889 |
+
visibility: hidden;
|
| 10890 |
+
}
|
| 10891 |
+
|
| 10892 |
+
.eael-contact-form.placeholder-hide input:-moz-placeholder,
|
| 10893 |
+
.eael-contact-form.placeholder-hide textarea:-moz-placeholder {
|
| 10894 |
+
opacity: 0;
|
| 10895 |
+
visibility: hidden;
|
| 10896 |
+
}
|
| 10897 |
+
|
| 10898 |
+
.eael-custom-radio-checkbox input[type=checkbox],
|
| 10899 |
+
.eael-custom-radio-checkbox input[type=radio] {
|
| 10900 |
+
-webkit-appearance: none;
|
| 10901 |
+
-moz-appearance: none;
|
| 10902 |
+
border-style: solid;
|
| 10903 |
+
border-width: 0;
|
| 10904 |
+
outline: none;
|
| 10905 |
+
min-width: 1px;
|
| 10906 |
+
width: 15px;
|
| 10907 |
+
height: 15px;
|
| 10908 |
+
background: #ddd;
|
| 10909 |
+
padding: 3px;
|
| 10910 |
+
}
|
| 10911 |
+
|
| 10912 |
+
.eael-custom-radio-checkbox input[type=checkbox]:before,
|
| 10913 |
+
.eael-custom-radio-checkbox input[type=radio]:before {
|
| 10914 |
+
content: "";
|
| 10915 |
+
width: 100%;
|
| 10916 |
+
height: 100%;
|
| 10917 |
+
padding: 0;
|
| 10918 |
+
margin: 0;
|
| 10919 |
+
display: block;
|
| 10920 |
+
}
|
| 10921 |
+
|
| 10922 |
+
.eael-custom-radio-checkbox input[type=checkbox]:checked:before,
|
| 10923 |
+
.eael-custom-radio-checkbox input[type=radio]:checked:before {
|
| 10924 |
+
background: #999;
|
| 10925 |
+
-webkit-transition: all 0.25s linear 0s;
|
| 10926 |
+
-o-transition: all 0.25s linear 0s;
|
| 10927 |
+
transition: all 0.25s linear 0s;
|
| 10928 |
+
}
|
| 10929 |
+
|
| 10930 |
+
.eael-custom-radio-checkbox input[type=radio] {
|
| 10931 |
+
border-radius: 50%;
|
| 10932 |
+
}
|
| 10933 |
+
|
| 10934 |
+
.eael-custom-radio-checkbox input[type=radio]:before {
|
| 10935 |
+
border-radius: 50%;
|
| 10936 |
+
}
|
| 10937 |
+
|
| 10938 |
+
.eael-post-elements-readmore-btn {
|
| 10939 |
+
font-size: 12px;
|
| 10940 |
+
font-weight: 500;
|
| 10941 |
+
}
|
| 10942 |
+
|
| 10943 |
+
/*----------------------*/
|
| 10944 |
+
/* 14. Gravity Form
|
| 10945 |
+
/*----------------------*/
|
| 10946 |
+
.eael-gravity-form-align-default,
|
| 10947 |
+
.eael-gravity-form-align-left,
|
| 10948 |
+
.eael-gravity-form-btn-align-left {
|
| 10949 |
+
text-align: left;
|
| 10950 |
+
}
|
| 10951 |
+
|
| 10952 |
+
.eael-gravity-form-align-right,
|
| 10953 |
+
.eael-gravity-form-btn-align-right {
|
| 10954 |
+
text-align: right;
|
| 10955 |
+
}
|
| 10956 |
+
|
| 10957 |
+
.eael-gravity-form-align-center,
|
| 10958 |
+
.eael-gravity-form-btn-align-center {
|
| 10959 |
+
text-align: center;
|
| 10960 |
+
}
|
| 10961 |
+
|
| 10962 |
+
.eael-gravity-form .gform_wrapper .gform_footer {
|
| 10963 |
+
margin: 0;
|
| 10964 |
+
padding: 0;
|
| 10965 |
+
}
|
| 10966 |
+
|
| 10967 |
+
.gform_wrapper form li,
|
| 10968 |
+
.gform_wrapper li {
|
| 10969 |
+
list-style: none;
|
| 10970 |
+
}
|
| 10971 |
+
|
| 10972 |
+
.eael-gravity-form .gform_wrapper ul.gform_fields li.gfield {
|
| 10973 |
+
padding: 0;
|
| 10974 |
+
}
|
| 10975 |
+
|
| 10976 |
+
.eael-gravity-form .gform_wrapper textarea {
|
| 10977 |
+
padding: 0;
|
| 10978 |
+
}
|
| 10979 |
+
|
| 10980 |
+
.eael-gravity-form .gform_wrapper .gform_footer input.button,
|
| 10981 |
+
.eael-gravity-form .gform_wrapper .gform_footer input[type=submit],
|
| 10982 |
+
.eael-gravity-form .gform_wrapper .gform_page_footer input.button,
|
| 10983 |
+
.eael-gravity-form .gform_wrapper .gform_page_footer input[type=submit] {
|
| 10984 |
+
margin: 0;
|
| 10985 |
+
}
|
| 10986 |
+
|
| 10987 |
+
.eael-gravity-form.title-description-hide .gform_heading {
|
| 10988 |
+
display: none;
|
| 10989 |
+
}
|
| 10990 |
+
|
| 10991 |
+
.eael-gravity-form.labels-hide .gform_wrapper .top_label .gfield_label,
|
| 10992 |
+
.eael-gravity-form.labels-hide .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label {
|
| 10993 |
+
display: none;
|
| 10994 |
+
}
|
| 10995 |
+
|
| 10996 |
+
.eael-gravity-form-button-full-width .gform_wrapper .gform_footer input[type="submit"] {
|
| 10997 |
+
width: 100%;
|
| 10998 |
+
}
|
| 10999 |
+
|
| 11000 |
+
/*------------------------------*/
|
| 11001 |
+
/* 34. Image accordion
|
| 11002 |
+
/*------------------------------*/
|
| 11003 |
+
.eael-img-accordion {
|
| 11004 |
+
display: -webkit-box;
|
| 11005 |
+
display: -webkit-flex;
|
| 11006 |
+
display: -ms-flexbox;
|
| 11007 |
+
display: flex;
|
| 11008 |
+
height: 50vh;
|
| 11009 |
+
}
|
| 11010 |
+
|
| 11011 |
+
.eael-img-accordion a {
|
| 11012 |
+
position: relative;
|
| 11013 |
+
-webkit-box-flex: 1;
|
| 11014 |
+
-webkit-flex: 1;
|
| 11015 |
+
-ms-flex: 1;
|
| 11016 |
+
flex: 1;
|
| 11017 |
+
text-align: center;
|
| 11018 |
+
text-decoration: none;
|
| 11019 |
+
color: #fff;
|
| 11020 |
+
background-size: cover;
|
| 11021 |
+
background-position: center;
|
| 11022 |
+
background-repeat: no-repeat;
|
| 11023 |
+
-webkit-transition: -webkit-box-flex .4s, -webkit-flex .4s;
|
| 11024 |
+
transition: -webkit-box-flex .4s, -webkit-flex .4s;
|
| 11025 |
+
-o-transition: flex .4s;
|
| 11026 |
+
transition: flex .4s;
|
| 11027 |
+
transition: flex .4s, -webkit-box-flex .4s, -webkit-flex .4s, -ms-flex .4s;
|
| 11028 |
+
}
|
| 11029 |
+
|
| 11030 |
+
.eael-grow-accordion {
|
| 11031 |
+
-webkit-box-flex: 3;
|
| 11032 |
+
-webkit-flex: 3;
|
| 11033 |
+
-ms-flex: 3;
|
| 11034 |
+
flex: 3;
|
| 11035 |
+
}
|
| 11036 |
+
|
| 11037 |
+
.eael-img-accordion .overlay {
|
| 11038 |
+
display: -webkit-box;
|
| 11039 |
+
display: -webkit-flex;
|
| 11040 |
+
display: -ms-flexbox;
|
| 11041 |
+
display: flex;
|
| 11042 |
+
-webkit-box-align: center;
|
| 11043 |
+
-webkit-align-items: center;
|
| 11044 |
+
-ms-flex-align: center;
|
| 11045 |
+
align-items: center;
|
| 11046 |
+
-webkit-box-pack: center;
|
| 11047 |
+
-webkit-justify-content: center;
|
| 11048 |
+
-ms-flex-pack: center;
|
| 11049 |
+
justify-content: center;
|
| 11050 |
+
padding: 0 10px;
|
| 11051 |
+
position: absolute;
|
| 11052 |
+
top: 0;
|
| 11053 |
+
right: 0;
|
| 11054 |
+
bottom: 0;
|
| 11055 |
+
left: 0;
|
| 11056 |
+
-webkit-transition: background-color .4s;
|
| 11057 |
+
-o-transition: background-color .4s;
|
| 11058 |
+
transition: background-color .4s;
|
| 11059 |
+
}
|
| 11060 |
+
|
| 11061 |
+
.eael-img-accordion .overlay .overlay-inner {
|
| 11062 |
+
z-index: 1;
|
| 11063 |
+
}
|
| 11064 |
+
|
| 11065 |
+
.eael-img-accordion a:after {
|
| 11066 |
+
content: "";
|
| 11067 |
+
position: absolute;
|
| 11068 |
+
width: 100%;
|
| 11069 |
+
height: 100%;
|
| 11070 |
+
z-index: 0;
|
| 11071 |
+
top: 0px;
|
| 11072 |
+
left: 0px;
|
| 11073 |
+
bottom: 0px;
|
| 11074 |
+
right: 0px;
|
| 11075 |
+
-webkit-transition: all 0.3s ease-in-out;
|
| 11076 |
+
-o-transition: all 0.3s ease-in-out;
|
| 11077 |
+
transition: all 0.3s ease-in-out;
|
| 11078 |
+
}
|
| 11079 |
+
|
| 11080 |
+
.eael-img-accordion .overlay-inner * {
|
| 11081 |
+
visibility: hidden;
|
| 11082 |
+
opacity: 0;
|
| 11083 |
+
-webkit-transform-style: preserve-3d;
|
| 11084 |
+
transform-style: preserve-3d;
|
| 11085 |
+
}
|
| 11086 |
+
|
| 11087 |
+
.eael-img-accordion .overlay h2 {
|
| 11088 |
+
color: #fff;
|
| 11089 |
+
-webkit-transform: translate3d(0, -60px, 0);
|
| 11090 |
+
transform: translate3d(0, -60px, 0);
|
| 11091 |
+
}
|
| 11092 |
+
|
| 11093 |
+
.eael-img-accordion .overlay p {
|
| 11094 |
+
color: #fff;
|
| 11095 |
+
-webkit-transform: translate3d(0, 60px, 0);
|
| 11096 |
+
transform: translate3d(0, 60px, 0);
|
| 11097 |
+
}
|
| 11098 |
+
|
| 11099 |
+
.eael-img-accordion .overlay-inner-show * {
|
| 11100 |
+
opacity: 1;
|
| 11101 |
+
visibility: visible;
|
| 11102 |
+
-webkit-transform: none !important;
|
| 11103 |
+
-ms-transform: none !important;
|
| 11104 |
+
transform: none !important;
|
| 11105 |
+
-webkit-transition: all .3s .3s;
|
| 11106 |
+
-o-transition: all .3s .3s;
|
| 11107 |
+
transition: all .3s .3s;
|
| 11108 |
+
}
|
| 11109 |
+
|
| 11110 |
+
@media screen and (max-width: 800px) {
|
| 11111 |
+
.eael-img-accordion {
|
| 11112 |
+
-webkit-box-orient: vertical;
|
| 11113 |
+
-webkit-box-direction: normal;
|
| 11114 |
+
-webkit-flex-direction: column;
|
| 11115 |
+
-ms-flex-direction: column;
|
| 11116 |
+
flex-direction: column;
|
| 11117 |
+
}
|
| 11118 |
+
|
| 11119 |
+
.eael-img-accordion a:hover {
|
| 11120 |
+
-webkit-box-flex: 1;
|
| 11121 |
+
-webkit-flex: 1;
|
| 11122 |
+
-ms-flex: 1;
|
| 11123 |
+
flex: 1;
|
| 11124 |
+
}
|
| 11125 |
+
|
| 11126 |
+
.eael-img-accordion a:hover .overlay {
|
| 11127 |
+
background-color: transparent;
|
| 11128 |
+
}
|
| 11129 |
+
}
|
| 11130 |
+
|
| 11131 |
+
/* ------------------------ */
|
| 11132 |
+
/* 17. Infobox Style
|
| 11133 |
+
/* ------------------------ */
|
| 11134 |
+
/*--- Image/Icon On Top ---*/
|
| 11135 |
+
.eael-infobox .infobox-icon {
|
| 11136 |
+
height: auto;
|
| 11137 |
+
}
|
| 11138 |
+
|
| 11139 |
+
.eael-infobox .infobox-icon .infobox-icon-wrap {
|
| 11140 |
+
display: block;
|
| 11141 |
+
width: 100%;
|
| 11142 |
+
height: auto;
|
| 11143 |
+
-webkit-transition: .3s;
|
| 11144 |
+
-o-transition: .3s;
|
| 11145 |
+
transition: .3s;
|
| 11146 |
+
}
|
| 11147 |
+
|
| 11148 |
+
.eael-infobox .infobox-icon .infobox-icon-wrap i {
|
| 11149 |
+
-webkit-transition: .3s;
|
| 11150 |
+
-o-transition: .3s;
|
| 11151 |
+
transition: .3s;
|
| 11152 |
+
}
|
| 11153 |
+
|
| 11154 |
+
/*--- For Content Alignment ---*/
|
| 11155 |
+
.eael-infobox-content-align-left .eael-infobox .infobox-icon,
|
| 11156 |
+
.eael-infobox-content-align-left .eael-infobox .infobox-content,
|
| 11157 |
+
.eael-infobox-content-align-left .eael-infobox .infobox-button {
|
| 11158 |
+
text-align: left;
|
| 11159 |
+
}
|
| 11160 |
+
|
| 11161 |
+
.eael-infobox-content-align-right .eael-infobox .infobox-icon,
|
| 11162 |
+
.eael-infobox-content-align-right .eael-infobox .infobox-content,
|
| 11163 |
+
.eael-infobox-content-align-right .eael-infobox .infobox-button {
|
| 11164 |
+
text-align: right;
|
| 11165 |
+
}
|
| 11166 |
+
|
| 11167 |
+
.eael-infobox-content-align-center .eael-infobox .infobox-icon,
|
| 11168 |
+
.eael-infobox-content-align-center .eael-infobox .infobox-content,
|
| 11169 |
+
.eael-infobox-content-align-center .eael-infobox .infobox-button {
|
| 11170 |
+
text-align: center;
|
| 11171 |
+
}
|
| 11172 |
+
|
| 11173 |
+
/*--- For icon background shape ---*/
|
| 11174 |
+
.eael-infobox-icon-bg-shape-square .infobox-icon .infobox-icon-wrap,
|
| 11175 |
+
.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap,
|
| 11176 |
+
.eael-infobox-icon-bg-shape-circle .infobox-icon .infobox-icon-wrap {
|
| 11177 |
+
width: 90px;
|
| 11178 |
+
height: 90px;
|
| 11179 |
+
text-align: center;
|
| 11180 |
+
}
|
| 11181 |
+
|
| 11182 |
+
.eael-infobox-icon-hover-bg-shape-square:hover .infobox-icon .infobox-icon-wrap {
|
| 11183 |
+
border-radius: 0;
|
| 11184 |
+
}
|
| 11185 |
+
|
| 11186 |
+
.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap,
|
| 11187 |
+
.eael-infobox-icon-hover-bg-shape-radius:hover .infobox-icon .infobox-icon-wrap {
|
| 11188 |
+
border-radius: 15px;
|
| 11189 |
+
}
|
| 11190 |
+
|
| 11191 |
+
.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap {
|
| 11192 |
+
display: -webkit-box;
|
| 11193 |
+
display: -webkit-flex;
|
| 11194 |
+
display: -ms-flexbox;
|
| 11195 |
+
display: flex;
|
| 11196 |
+
-webkit-box-align: center;
|
| 11197 |
+
-webkit-align-items: center;
|
| 11198 |
+
-ms-flex-align: center;
|
| 11199 |
+
align-items: center;
|
| 11200 |
+
-webkit-box-pack: center;
|
| 11201 |
+
-webkit-justify-content: center;
|
| 11202 |
+
-ms-flex-pack: center;
|
| 11203 |
+
justify-content: center;
|
| 11204 |
+
}
|
| 11205 |
+
|
| 11206 |
+
.eael-infobox-icon-bg-shape-circle .infobox-icon .infobox-icon-wrap,
|
| 11207 |
+
.eael-infobox-icon-hover-bg-shape-circle:hover .infobox-icon .infobox-icon-wrap {
|
| 11208 |
+
border-radius: 50%;
|
| 11209 |
+
}
|
| 11210 |
+
|
| 11211 |
+
.eael-infobox-icon-bg-shape-square .infobox-icon .infobox-icon-wrap i,
|
| 11212 |
+
.eael-infobox-icon-bg-shape-circle .infobox-icon .infobox-icon-wrap i {
|
| 11213 |
+
margin-top: 50%;
|
| 11214 |
+
-webkit-transform: translateY(-50%);
|
| 11215 |
+
-ms-transform: translateY(-50%);
|
| 11216 |
+
transform: translateY(-50%);
|
| 11217 |
+
}
|
| 11218 |
+
|
| 11219 |
+
/*--- Infobox Button ---*/
|
| 11220 |
+
.eael-infobox .infobox-button a.eael-infobox-button {
|
| 11221 |
+
display: inline-block;
|
| 11222 |
+
padding: 5px 10px;
|
| 11223 |
+
-webkit-transition: all 300ms ease-in-out 0s;
|
| 11224 |
+
-o-transition: all 300ms ease-in-out 0s;
|
| 11225 |
+
transition: all 300ms ease-in-out 0s;
|
| 11226 |
+
}
|
| 11227 |
+
|
| 11228 |
+
/*--- For icon bg shape alignment ---*/
|
| 11229 |
+
.eael-infobox-content-align-left.eael-infobox-icon-bg-shape-square .infobox-icon,
|
| 11230 |
+
.eael-infobox-content-align-left.eael-infobox-icon-bg-shape-radius .infobox-icon,
|
| 11231 |
+
.eael-infobox-content-align-left.eael-infobox-icon-bg-shape-circle .infobox-icon {
|
| 11232 |
+
display: -webkit-box;
|
| 11233 |
+
display: -webkit-flex;
|
| 11234 |
+
display: -ms-flexbox;
|
| 11235 |
+
display: flex;
|
| 11236 |
+
-webkit-box-pack: start;
|
| 11237 |
+
-webkit-justify-content: flex-start;
|
| 11238 |
+
-ms-flex-pack: start;
|
| 11239 |
+
justify-content: flex-start;
|
| 11240 |
+
}
|
| 11241 |
+
|
| 11242 |
+
.eael-infobox-content-align-center.eael-infobox-icon-bg-shape-square .infobox-icon,
|
| 11243 |
+
.eael-infobox-content-align-center.eael-infobox-icon-bg-shape-radius .infobox-icon,
|
| 11244 |
+
.eael-infobox-content-align-center.eael-infobox-icon-bg-shape-circle .infobox-icon {
|
| 11245 |
+
display: -webkit-box;
|
| 11246 |
+
display: -webkit-flex;
|
| 11247 |
+
display: -ms-flexbox;
|
| 11248 |
+
display: flex;
|
| 11249 |
+
-webkit-box-pack: center;
|
| 11250 |
+
-webkit-justify-content: center;
|
| 11251 |
+
-ms-flex-pack: center;
|
| 11252 |
+
justify-content: center;
|
| 11253 |
+
}
|
| 11254 |
+
|
| 11255 |
+
.eael-infobox-content-align-right.eael-infobox-icon-bg-shape-square .infobox-icon,
|
| 11256 |
+
.eael-infobox-content-align-right.eael-infobox-icon-bg-shape-radius .infobox-icon,
|
| 11257 |
+
.eael-infobox-content-align-right.eael-infobox-icon-bg-shape-circle .infobox-icon {
|
| 11258 |
+
display: -webkit-box;
|
| 11259 |
+
display: -webkit-flex;
|
| 11260 |
+
display: -ms-flexbox;
|
| 11261 |
+
display: flex;
|
| 11262 |
+
-webkit-box-pack: end;
|
| 11263 |
+
-webkit-justify-content: flex-end;
|
| 11264 |
+
-ms-flex-pack: end;
|
| 11265 |
+
justify-content: flex-end;
|
| 11266 |
+
}
|
| 11267 |
+
|
| 11268 |
+
/*--- Image/Icon On Left ---*/
|
| 11269 |
+
.eael-infobox.icon-on-left {
|
| 11270 |
+
position: relative;
|
| 11271 |
+
z-index: 0;
|
| 11272 |
+
display: -webkit-box;
|
| 11273 |
+
display: -webkit-flex;
|
| 11274 |
+
display: -ms-flexbox;
|
| 11275 |
+
display: flex;
|
| 11276 |
+
}
|
| 11277 |
+
|
| 11278 |
+
.eael-infobox.icon-on-right .infobox-icon-wrap,
|
| 11279 |
+
.eael-infobox.icon-on-left .infobox-icon-wrap {
|
| 11280 |
+
-webkit-box-pack: center;
|
| 11281 |
+
-webkit-justify-content: center;
|
| 11282 |
+
-ms-flex-pack: center;
|
| 11283 |
+
justify-content: center;
|
| 11284 |
+
display: -webkit-box !important;
|
| 11285 |
+
display: -webkit-flex !important;
|
| 11286 |
+
display: -ms-flexbox !important;
|
| 11287 |
+
display: flex !important;
|
| 11288 |
+
-webkit-box-align: center;
|
| 11289 |
+
-webkit-align-items: center;
|
| 11290 |
+
-ms-flex-align: center;
|
| 11291 |
+
align-items: center;
|
| 11292 |
+
}
|
| 11293 |
+
|
| 11294 |
+
.eael-infobox.icon-on-left .infobox-icon .infobox-icon-wrap {
|
| 11295 |
+
background: none;
|
| 11296 |
+
border: 0px;
|
| 11297 |
+
text-align: left;
|
| 11298 |
+
height: auto;
|
| 11299 |
+
display: block;
|
| 11300 |
+
}
|
| 11301 |
+
|
| 11302 |
+
.eael-infobox .infobox-content p {
|
| 11303 |
+
margin: 0 0 15px;
|
| 11304 |
+
}
|
| 11305 |
+
|
| 11306 |
+
.eael-infobox.icon-on-left .infobox-icon .infobox-icon-wrap i {
|
| 11307 |
+
margin-top: 0px;
|
| 11308 |
+
-webkit-transform: translateY(0%);
|
| 11309 |
+
-ms-transform: translateY(0%);
|
| 11310 |
+
transform: translateY(0%);
|
| 11311 |
+
}
|
| 11312 |
+
|
| 11313 |
+
.eael-infobox.icon-on-left .infobox-content {
|
| 11314 |
+
padding-left: 15px;
|
| 11315 |
+
-webkit-box-flex: 1;
|
| 11316 |
+
-webkit-flex: 1 1 auto;
|
| 11317 |
+
-ms-flex: 1 1 auto;
|
| 11318 |
+
flex: 1 1 auto;
|
| 11319 |
+
}
|
| 11320 |
+
|
| 11321 |
+
.eael-infobox.icon-on-left .infobox-content .title {
|
| 11322 |
+
line-height: 1;
|
| 11323 |
+
margin: 0 0 10px 0;
|
| 11324 |
+
}
|
| 11325 |
+
|
| 11326 |
+
/*--- Image/Icon On Right ---*/
|
| 11327 |
+
.eael-infobox.icon-on-right {
|
| 11328 |
+
position: relative;
|
| 11329 |
+
z-index: 0;
|
| 11330 |
+
display: -webkit-box;
|
| 11331 |
+
display: -webkit-flex;
|
| 11332 |
+
display: -ms-flexbox;
|
| 11333 |
+
display: flex;
|
| 11334 |
+
-webkit-box-orient: horizontal;
|
| 11335 |
+
-webkit-box-direction: reverse;
|
| 11336 |
+
-webkit-flex-direction: row-reverse;
|
| 11337 |
+
-ms-flex-direction: row-reverse;
|
| 11338 |
+
flex-direction: row-reverse;
|
| 11339 |
+
}
|
| 11340 |
+
|
| 11341 |
+
.eael-infobox.icon-on-right .infobox-icon .infobox-icon-wrap {
|
| 11342 |
+
background: none;
|
| 11343 |
+
border: 0px;
|
| 11344 |
+
text-align: right;
|
| 11345 |
+
width: auto;
|
| 11346 |
+
height: auto;
|
| 11347 |
+
display: block;
|
| 11348 |
+
}
|
| 11349 |
+
|
| 11350 |
+
.eael-infobox.icon-on-right .infobox-icon .infobox-icon-wrap i {
|
| 11351 |
+
margin-top: 0px;
|
| 11352 |
+
-webkit-transform: translateY(0%);
|
| 11353 |
+
-ms-transform: translateY(0%);
|
| 11354 |
+
transform: translateY(0%);
|
| 11355 |
+
}
|
| 11356 |
+
|
| 11357 |
+
.eael-infobox.icon-on-right .infobox-content {
|
| 11358 |
+
padding-right: 15px;
|
| 11359 |
+
text-align: right;
|
| 11360 |
+
-webkit-box-flex: 1;
|
| 11361 |
+
-webkit-flex: 1 1 auto;
|
| 11362 |
+
-ms-flex: 1 1 auto;
|
| 11363 |
+
flex: 1 1 auto;
|
| 11364 |
+
-webkit-box-sizing: border-box;
|
| 11365 |
+
box-sizing: border-box;
|
| 11366 |
+
}
|
| 11367 |
+
|
| 11368 |
+
.eael-infobox.icon-on-right .infobox-content .title {
|
| 11369 |
+
line-height: 1;
|
| 11370 |
+
margin: 0 0 10px 0;
|
| 11371 |
+
}
|
| 11372 |
+
|
| 11373 |
+
/*--- Imgae Circle On Top ---*/
|
| 11374 |
+
.eael-infobox .infobox-icon img {
|
| 11375 |
+
-webkit-transition: all 300ms ease-in-out 0s;
|
| 11376 |
+
-o-transition: all 300ms ease-in-out 0s;
|
| 11377 |
+
transition: all 300ms ease-in-out 0s;
|
| 11378 |
+
}
|
| 11379 |
+
|
| 11380 |
+
.eael-infobox-hover-img-shape-square:hover .eael-infobox .infobox-icon img {
|
| 11381 |
+
border-radius: 0;
|
| 11382 |
+
}
|
| 11383 |
+
|
| 11384 |
+
.eael-infobox-shape-circle .eael-infobox .infobox-icon img,
|
| 11385 |
+
.eael-infobox-hover-img-shape-circle:hover .eael-infobox .infobox-icon img {
|
| 11386 |
+
border-radius: 50%;
|
| 11387 |
+
}
|
| 11388 |
+
|
| 11389 |
+
.eael-infobox-shape-radius .eael-infobox .infobox-icon img,
|
| 11390 |
+
.eael-infobox-hover-img-shape-radius:hover .eael-infobox .infobox-icon img {
|
| 11391 |
+
border-radius: 15px;
|
| 11392 |
+
}
|
| 11393 |
+
|
| 11394 |
+
/* ------------------------ */
|
| 11395 |
+
/* 26. Magnific Popup
|
| 11396 |
+
/* ------------------------ */
|
| 11397 |
+
/*--- Magnific Popup CSS ---*/
|
| 11398 |
+
.mfp-bg {
|
| 11399 |
+
top: 0;
|
| 11400 |
+
left: 0;
|
| 11401 |
+
width: 100%;
|
| 11402 |
+
height: 100%;
|
| 11403 |
+
z-index: 1042;
|
| 11404 |
+
overflow: hidden;
|
| 11405 |
+
position: fixed;
|
| 11406 |
+
background: #0b0b0b;
|
| 11407 |
+
opacity: 0.8;
|
| 11408 |
+
}
|
| 11409 |
+
|
| 11410 |
+
.mfp-wrap {
|
| 11411 |
+
top: 0;
|
| 11412 |
+
left: 0;
|
| 11413 |
+
width: 100%;
|
| 11414 |
+
height: 100%;
|
| 11415 |
+
z-index: 1043;
|
| 11416 |
+
position: fixed;
|
| 11417 |
+
outline: none !important;
|
| 11418 |
+
-webkit-backface-visibility: hidden;
|
| 11419 |
+
backface-visibility: hidden;
|
| 11420 |
+
}
|
| 11421 |
+
|
| 11422 |
+
.mfp-container {
|
| 11423 |
+
text-align: center;
|
| 11424 |
+
position: absolute;
|
| 11425 |
+
width: 100%;
|
| 11426 |
+
height: 100%;
|
| 11427 |
+
left: 0;
|
| 11428 |
+
top: 0;
|
| 11429 |
+
padding: 0 8px;
|
| 11430 |
+
-webkit-box-sizing: border-box;
|
| 11431 |
+
box-sizing: border-box;
|
| 11432 |
+
}
|
| 11433 |
+
|
| 11434 |
+
.mfp-container:before {
|
| 11435 |
+
content: '';
|
| 11436 |
+
display: inline-block;
|
| 11437 |
+
height: 100%;
|
| 11438 |
+
vertical-align: middle;
|
| 11439 |
+
}
|
| 11440 |
+
|
| 11441 |
+
.mfp-align-top .mfp-container:before {
|
| 11442 |
+
display: none;
|
| 11443 |
+
}
|
| 11444 |
+
|
| 11445 |
+
.mfp-content {
|
| 11446 |
+
position: relative;
|
| 11447 |
+
display: inline-block;
|
| 11448 |
+
vertical-align: middle;
|
| 11449 |
+
margin: 0 auto;
|
| 11450 |
+
text-align: left;
|
| 11451 |
+
z-index: 1045;
|
| 11452 |
+
}
|
| 11453 |
+
|
| 11454 |
+
.mfp-inline-holder .mfp-content,
|
| 11455 |
+
.mfp-ajax-holder .mfp-content {
|
| 11456 |
+
width: 100%;
|
| 11457 |
+
cursor: auto;
|
| 11458 |
+
}
|
| 11459 |
+
|
| 11460 |
+
.mfp-ajax-cur {
|
| 11461 |
+
cursor: progress;
|
| 11462 |
+
}
|
| 11463 |
+
|
| 11464 |
+
.mfp-zoom-out-cur,
|
| 11465 |
+
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
|
| 11466 |
+
cursor: -webkit-zoom-out;
|
| 11467 |
+
cursor: zoom-out;
|
| 11468 |
+
}
|
| 11469 |
+
|
| 11470 |
+
.mfp-zoom {
|
| 11471 |
+
cursor: pointer;
|
| 11472 |
+
cursor: -webkit-zoom-in;
|
| 11473 |
+
cursor: zoom-in;
|
| 11474 |
+
}
|
| 11475 |
+
|
| 11476 |
+
.mfp-auto-cursor .mfp-content {
|
| 11477 |
+
cursor: auto;
|
| 11478 |
+
}
|
| 11479 |
+
|
| 11480 |
+
.mfp-close,
|
| 11481 |
+
.mfp-arrow,
|
| 11482 |
+
.mfp-preloader,
|
| 11483 |
+
.mfp-counter {
|
| 11484 |
+
-webkit-user-select: none;
|
| 11485 |
+
-moz-user-select: none;
|
| 11486 |
+
-ms-user-select: none;
|
| 11487 |
+
user-select: none;
|
| 11488 |
+
}
|
| 11489 |
+
|
| 11490 |
+
.mfp-loading.mfp-figure {
|
| 11491 |
+
display: none;
|
| 11492 |
+
}
|
| 11493 |
+
|
| 11494 |
+
.mfp-hide {
|
| 11495 |
+
display: none !important;
|
| 11496 |
+
}
|
| 11497 |
+
|
| 11498 |
+
.mfp-preloader {
|
| 11499 |
+
color: #CCC;
|
| 11500 |
+
position: absolute;
|
| 11501 |
+
top: 50%;
|
| 11502 |
+
width: auto;
|
| 11503 |
+
text-align: center;
|
| 11504 |
+
margin-top: -0.8em;
|
| 11505 |
+
left: 8px;
|
| 11506 |
+
right: 8px;
|
| 11507 |
+
z-index: 1044;
|
| 11508 |
+
}
|
| 11509 |
+
|
| 11510 |
+
.mfp-preloader a {
|
| 11511 |
+
color: #CCC;
|
| 11512 |
+
}
|
| 11513 |
+
|
| 11514 |
+
.mfp-preloader a:hover {
|
| 11515 |
+
color: #FFF;
|
| 11516 |
+
}
|
| 11517 |
+
|
| 11518 |
+
.mfp-s-ready .mfp-preloader {
|
| 11519 |
+
display: none;
|
| 11520 |
+
}
|
| 11521 |
+
|
| 11522 |
+
.mfp-s-error .mfp-content {
|
| 11523 |
+
display: none;
|
| 11524 |
+
}
|
| 11525 |
+
|
| 11526 |
+
button.mfp-close,
|
| 11527 |
+
button.mfp-arrow {
|
| 11528 |
+
overflow: visible;
|
| 11529 |
+
cursor: pointer;
|
| 11530 |
+
background: transparent;
|
| 11531 |
+
border: 0;
|
| 11532 |
+
-webkit-appearance: none;
|
| 11533 |
+
display: block;
|
| 11534 |
+
outline: none;
|
| 11535 |
+
padding: 0;
|
| 11536 |
+
z-index: 1046;
|
| 11537 |
+
-webkit-box-shadow: none;
|
| 11538 |
+
box-shadow: none;
|
| 11539 |
+
-ms-touch-action: manipulation;
|
| 11540 |
+
touch-action: manipulation;
|
| 11541 |
+
}
|
| 11542 |
+
|
| 11543 |
+
button::-moz-focus-inner {
|
| 11544 |
+
padding: 0;
|
| 11545 |
+
border: 0;
|
| 11546 |
+
}
|
| 11547 |
+
|
| 11548 |
+
.mfp-close {
|
| 11549 |
+
width: 44px;
|
| 11550 |
+
height: 44px;
|
| 11551 |
+
line-height: 44px;
|
| 11552 |
+
position: absolute;
|
| 11553 |
+
right: 0;
|
| 11554 |
+
top: 0;
|
| 11555 |
+
text-decoration: none;
|
| 11556 |
+
text-align: center;
|
| 11557 |
+
opacity: 0.65;
|
| 11558 |
+
padding: 0 0 18px 10px;
|
| 11559 |
+
color: #FFF;
|
| 11560 |
+
font-style: normal;
|
| 11561 |
+
font-size: 28px;
|
| 11562 |
+
font-family: Arial, Baskerville, monospace;
|
| 11563 |
+
}
|
| 11564 |
+
|
| 11565 |
+
.mfp-close:hover,
|
| 11566 |
+
.mfp-close:focus {
|
| 11567 |
+
opacity: 1;
|
| 11568 |
+
}
|
| 11569 |
+
|
| 11570 |
+
.mfp-close:active {
|
| 11571 |
+
top: 1px;
|
| 11572 |
+
}
|
| 11573 |
+
|
| 11574 |
+
.mfp-close-btn-in .mfp-close {
|
| 11575 |
+
color: #333;
|
| 11576 |
+
}
|
| 11577 |
+
|
| 11578 |
+
.mfp-image-holder .mfp-close,
|
| 11579 |
+
.mfp-iframe-holder .mfp-close {
|
| 11580 |
+
color: #FFF;
|
| 11581 |
+
right: -6px;
|
| 11582 |
+
text-align: right;
|
| 11583 |
+
padding-right: 6px;
|
| 11584 |
+
width: 100%;
|
| 11585 |
+
}
|
| 11586 |
+
|
| 11587 |
+
.mfp-counter {
|
| 11588 |
+
position: absolute;
|
| 11589 |
+
top: 0;
|
| 11590 |
+
right: 0;
|
| 11591 |
+
color: #CCC;
|
| 11592 |
+
font-size: 12px;
|
| 11593 |
+
line-height: 18px;
|
| 11594 |
+
white-space: nowrap;
|
| 11595 |
+
}
|
| 11596 |
+
|
| 11597 |
+
.mfp-arrow {
|
| 11598 |
+
position: absolute;
|
| 11599 |
+
opacity: 0.65;
|
| 11600 |
+
margin: 0;
|
| 11601 |
+
top: 50%;
|
| 11602 |
+
margin-top: -55px;
|
| 11603 |
+
padding: 0;
|
| 11604 |
+
width: 90px;
|
| 11605 |
+
height: 110px;
|
| 11606 |
+
-webkit-tap-highlight-color: transparent;
|
| 11607 |
+
}
|
| 11608 |
+
|
| 11609 |
+
.mfp-arrow:active {
|
| 11610 |
+
margin-top: -54px;
|
| 11611 |
+
}
|
| 11612 |
+
|
| 11613 |
+
.mfp-arrow:hover,
|
| 11614 |
+
.mfp-arrow:focus {
|
| 11615 |
+
opacity: 1;
|
| 11616 |
+
}
|
| 11617 |
+
|
| 11618 |
+
.mfp-arrow:before,
|
| 11619 |
+
.mfp-arrow:after {
|
| 11620 |
+
content: '';
|
| 11621 |
+
display: block;
|
| 11622 |
+
width: 0;
|
| 11623 |
+
height: 0;
|
| 11624 |
+
position: absolute;
|
| 11625 |
+
left: 0;
|
| 11626 |
+
top: 0;
|
| 11627 |
+
margin-top: 35px;
|
| 11628 |
+
margin-left: 35px;
|
| 11629 |
+
border: medium inset transparent;
|
| 11630 |
+
}
|
| 11631 |
+
|
| 11632 |
+
.mfp-arrow:after {
|
| 11633 |
+
border-top-width: 13px;
|
| 11634 |
+
border-bottom-width: 13px;
|
| 11635 |
+
top: 8px;
|
| 11636 |
+
}
|
| 11637 |
+
|
| 11638 |
+
.mfp-arrow:before {
|
| 11639 |
+
border-top-width: 21px;
|
| 11640 |
+
border-bottom-width: 21px;
|
| 11641 |
+
opacity: 0.7;
|
| 11642 |
+
}
|
| 11643 |
+
|
| 11644 |
+
.mfp-arrow-left {
|
| 11645 |
+
left: 0;
|
| 11646 |
+
}
|
| 11647 |
+
|
| 11648 |
+
.mfp-arrow-left:after {
|
| 11649 |
+
border-right: 17px solid #FFF;
|
| 11650 |
+
margin-left: 31px;
|
| 11651 |
+
}
|
| 11652 |
+
|
| 11653 |
+
.mfp-arrow-left:before {
|
| 11654 |
+
margin-left: 25px;
|
| 11655 |
+
border-right: 27px solid #3F3F3F;
|
| 11656 |
+
}
|
| 11657 |
+
|
| 11658 |
+
.mfp-arrow-right {
|
| 11659 |
+
right: 0;
|
| 11660 |
+
}
|
| 11661 |
+
|
| 11662 |
+
.mfp-arrow-right:after {
|
| 11663 |
+
border-left: 17px solid #FFF;
|
| 11664 |
+
margin-left: 39px;
|
| 11665 |
+
}
|
| 11666 |
+
|
| 11667 |
+
.mfp-arrow-right:before {
|
| 11668 |
+
border-left: 27px solid #3F3F3F;
|
| 11669 |
+
}
|
| 11670 |
+
|
| 11671 |
+
.mfp-iframe-holder {
|
| 11672 |
+
padding-top: 40px;
|
| 11673 |
+
padding-bottom: 40px;
|
| 11674 |
+
}
|
| 11675 |
+
|
| 11676 |
+
.mfp-iframe-holder .mfp-content {
|
| 11677 |
+
line-height: 0;
|
| 11678 |
+
width: 100%;
|
| 11679 |
+
max-width: 900px;
|
| 11680 |
+
}
|
| 11681 |
+
|
| 11682 |
+
.mfp-iframe-holder .mfp-close {
|
| 11683 |
+
top: -40px;
|
| 11684 |
+
}
|
| 11685 |
+
|
| 11686 |
+
.mfp-iframe-scaler {
|
| 11687 |
+
width: 100%;
|
| 11688 |
+
height: 0;
|
| 11689 |
+
overflow: hidden;
|
| 11690 |
+
padding-top: 56.25%;
|
| 11691 |
+
}
|
| 11692 |
+
|
| 11693 |
+
.mfp-iframe-scaler iframe {
|
| 11694 |
+
position: absolute;
|
| 11695 |
+
display: block;
|
| 11696 |
+
top: 0;
|
| 11697 |
+
left: 0;
|
| 11698 |
+
width: 100%;
|
| 11699 |
+
height: 100%;
|
| 11700 |
+
-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
|
| 11701 |
+
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
|
| 11702 |
+
background: #000;
|
| 11703 |
+
}
|
| 11704 |
+
|
| 11705 |
+
/*--- Main image in popup ---*/
|
| 11706 |
+
img.mfp-img {
|
| 11707 |
+
width: auto;
|
| 11708 |
+
max-width: 100%;
|
| 11709 |
+
height: auto;
|
| 11710 |
+
display: block;
|
| 11711 |
+
line-height: 0;
|
| 11712 |
+
-webkit-box-sizing: border-box;
|
| 11713 |
+
box-sizing: border-box;
|
| 11714 |
+
padding: 40px 0 40px;
|
| 11715 |
+
margin: 0 auto;
|
| 11716 |
+
}
|
| 11717 |
+
|
| 11718 |
+
/*--- The shadow behind the image ---*/
|
| 11719 |
+
.mfp-figure {
|
| 11720 |
+
line-height: 0;
|
| 11721 |
+
}
|
| 11722 |
+
|
| 11723 |
+
.mfp-figure:after {
|
| 11724 |
+
content: '';
|
| 11725 |
+
position: absolute;
|
| 11726 |
+
left: 0;
|
| 11727 |
+
top: 40px;
|
| 11728 |
+
bottom: 40px;
|
| 11729 |
+
display: block;
|
| 11730 |
+
right: 0;
|
| 11731 |
+
width: auto;
|
| 11732 |
+
height: auto;
|
| 11733 |
+
z-index: -1;
|
| 11734 |
+
-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
|
| 11735 |
+
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
|
| 11736 |
+
background: #444;
|
| 11737 |
+
}
|
| 11738 |
+
|
| 11739 |
+
.mfp-figure small {
|
| 11740 |
+
color: #BDBDBD;
|
| 11741 |
+
display: block;
|
| 11742 |
+
font-size: 12px;
|
| 11743 |
+
line-height: 14px;
|
| 11744 |
+
}
|
| 11745 |
+
|
| 11746 |
+
.mfp-figure figure {
|
| 11747 |
+
margin: 0;
|
| 11748 |
+
}
|
| 11749 |
+
|
| 11750 |
+
.mfp-bottom-bar {
|
| 11751 |
+
margin-top: -36px;
|
| 11752 |
+
position: absolute;
|
| 11753 |
+
top: 100%;
|
| 11754 |
+
left: 0;
|
| 11755 |
+
width: 100%;
|
| 11756 |
+
cursor: auto;
|
| 11757 |
+
}
|
| 11758 |
+
|
| 11759 |
+
.mfp-title {
|
| 11760 |
+
text-align: left;
|
| 11761 |
+
line-height: 18px;
|
| 11762 |
+
color: #F3F3F3;
|
| 11763 |
+
word-wrap: break-word;
|
| 11764 |
+
padding-right: 36px;
|
| 11765 |
+
}
|
| 11766 |
+
|
| 11767 |
+
.mfp-image-holder .mfp-content {
|
| 11768 |
+
max-width: 100%;
|
| 11769 |
+
}
|
| 11770 |
+
|
| 11771 |
+
.mfp-gallery .mfp-image-holder .mfp-figure {
|
| 11772 |
+
cursor: pointer;
|
| 11773 |
+
}
|
| 11774 |
+
|
| 11775 |
+
button.mfp-close,
|
| 11776 |
+
button.mfp-close:hover {
|
| 11777 |
+
display: inline-block !important;
|
| 11778 |
+
background: transparent;
|
| 11779 |
+
width: auto !important;
|
| 11780 |
+
}
|
| 11781 |
+
|
| 11782 |
+
.mfp-arrow,
|
| 11783 |
+
.mfp-arrow:hover {
|
| 11784 |
+
background: transparent;
|
| 11785 |
+
}
|
| 11786 |
+
|
| 11787 |
+
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
|
| 11788 |
+
/**
|
| 11789 |
+
* Remove all paddings around the image on small screen
|
| 11790 |
+
*/
|
| 11791 |
+
.mfp-img-mobile .mfp-image-holder {
|
| 11792 |
+
padding-left: 0;
|
| 11793 |
+
padding-right: 0;
|
| 11794 |
+
}
|
| 11795 |
+
|
| 11796 |
+
.mfp-img-mobile img.mfp-img {
|
| 11797 |
+
padding: 0;
|
| 11798 |
+
}
|
| 11799 |
+
|
| 11800 |
+
.mfp-img-mobile .mfp-figure:after {
|
| 11801 |
+
top: 0;
|
| 11802 |
+
bottom: 0;
|
| 11803 |
+
}
|
| 11804 |
+
|
| 11805 |
+
.mfp-img-mobile .mfp-figure small {
|
| 11806 |
+
display: inline;
|
| 11807 |
+
margin-left: 5px;
|
| 11808 |
+
}
|
| 11809 |
+
|
| 11810 |
+
.mfp-img-mobile .mfp-bottom-bar {
|
| 11811 |
+
background: rgba(0, 0, 0, 0.6);
|
| 11812 |
+
bottom: 0;
|
| 11813 |
+
margin: 0;
|
| 11814 |
+
top: auto;
|
| 11815 |
+
padding: 3px 5px;
|
| 11816 |
+
position: fixed;
|
| 11817 |
+
-webkit-box-sizing: border-box;
|
| 11818 |
+
box-sizing: border-box;
|
| 11819 |
+
}
|
| 11820 |
+
|
| 11821 |
+
.mfp-img-mobile .mfp-bottom-bar:empty {
|
| 11822 |
+
padding: 0;
|
| 11823 |
+
}
|
| 11824 |
+
|
| 11825 |
+
.mfp-img-mobile .mfp-counter {
|
| 11826 |
+
right: 5px;
|
| 11827 |
+
top: 3px;
|
| 11828 |
+
}
|
| 11829 |
+
|
| 11830 |
+
.mfp-img-mobile .mfp-close {
|
| 11831 |
+
top: 0;
|
| 11832 |
+
right: 0;
|
| 11833 |
+
width: 35px;
|
| 11834 |
+
height: 35px;
|
| 11835 |
+
line-height: 35px;
|
| 11836 |
+
background: rgba(0, 0, 0, 0.6);
|
| 11837 |
+
position: fixed;
|
| 11838 |
+
text-align: center;
|
| 11839 |
+
padding: 0;
|
| 11840 |
+
}
|
| 11841 |
+
}
|
| 11842 |
+
@media all and (max-width: 900px) {
|
| 11843 |
+
.mfp-arrow {
|
| 11844 |
+
-webkit-transform: scale(0.75);
|
| 11845 |
+
-ms-transform: scale(0.75);
|
| 11846 |
+
transform: scale(0.75);
|
| 11847 |
+
}
|
| 11848 |
+
|
| 11849 |
+
.mfp-arrow-left {
|
| 11850 |
+
-webkit-transform-origin: 0;
|
| 11851 |
+
-ms-transform-origin: 0;
|
| 11852 |
+
transform-origin: 0;
|
| 11853 |
+
}
|
| 11854 |
+
|
| 11855 |
+
.mfp-arrow-right {
|
| 11856 |
+
-webkit-transform-origin: 100%;
|
| 11857 |
+
-ms-transform-origin: 100%;
|
| 11858 |
+
transform-origin: 100%;
|
| 11859 |
+
}
|
| 11860 |
+
|
| 11861 |
+
.mfp-container {
|
| 11862 |
+
padding-left: 6px;
|
| 11863 |
+
padding-right: 6px;
|
| 11864 |
+
}
|
| 11865 |
+
}
|
| 11866 |
+
|
| 11867 |
+
/*----------------------*/
|
| 11868 |
+
/* 13. Ninja Form Styles
|
| 11869 |
+
/*----------------------*/
|
| 11870 |
+
.eael-ninja-container input,
|
| 11871 |
+
.eael-ninja-container textarea {
|
| 11872 |
+
height: auto;
|
| 11873 |
+
padding: 10px;
|
| 11874 |
+
}
|
| 11875 |
+
|
| 11876 |
+
.eael-contact-form-align-center .eael-ninja-container,
|
| 11877 |
+
.eael-contact-form-btn-align-center .eael-ninja-container .nf-field .nf-field-element input[type="button"] {
|
| 11878 |
+
margin-left: auto !important;
|
| 11879 |
+
margin-right: auto !important;
|
| 11880 |
+
display: block;
|
| 11881 |
+
float: none;
|
| 11882 |
+
}
|
| 11883 |
+
|
| 11884 |
+
.eael-contact-form-align-left .eael-ninja-container,
|
| 11885 |
+
.eael-contact-form-btn-align-left .eael-ninja-container .nf-field .nf-field-element input[type="button"] {
|
| 11886 |
+
float: left;
|
| 11887 |
+
width: auto;
|
| 11888 |
+
}
|
| 11889 |
+
|
| 11890 |
+
.eael-contact-form-align-right .eael-ninja-container,
|
| 11891 |
+
.eael-contact-form-btn-align-right .eael-ninja-container .nf-field .nf-field-element input[type="button"] {
|
| 11892 |
+
float: right;
|
| 11893 |
+
width: auto;
|
| 11894 |
+
}
|
| 11895 |
+
|
| 11896 |
+
.eael-ninja-container ul.wpuf-form li .wpuf-fields input[type="text"],
|
| 11897 |
+
.eael-ninja-container .nf-field .nf-field-element input[type="password"],
|
| 11898 |
+
.eael-ninja-container ul.wpuf-form li .wpuf-fields input[type="email"],
|
| 11899 |
+
.eael-ninja-container .nf-field .nf-field-element input[type="url"],
|
| 11900 |
+
.eael-ninja-container ul.wpuf-form li .wpuf-fields input[type="number"],
|
| 11901 |
+
.eael-ninja-container .nf-field .nf-field-element textarea {
|
| 11902 |
+
max-width: 100%;
|
| 11903 |
+
}
|
| 11904 |
+
|
| 11905 |
+
.eael-ninja-form .nf-form-title {
|
| 11906 |
+
display: none;
|
| 11907 |
+
}
|
| 11908 |
+
|
| 11909 |
+
.eael-ninja-form-title-yes .nf-form-title {
|
| 11910 |
+
display: block;
|
| 11911 |
+
}
|
| 11912 |
+
|
| 11913 |
+
.eael-ninja-form .title-description-hide .nf-form-title {
|
| 11914 |
+
display: none;
|
| 11915 |
+
}
|
| 11916 |
+
|
| 11917 |
+
.eael-ninja-form.title-description-hide .nf-form-title {
|
| 11918 |
+
display: none;
|
| 11919 |
+
}
|
| 11920 |
+
|
| 11921 |
+
.eael-ninja-form .nf-field-label {
|
| 11922 |
+
display: none;
|
| 11923 |
+
}
|
| 11924 |
+
|
| 11925 |
+
.eael-ninja-form-labels-yes .nf-field-label {
|
| 11926 |
+
display: block;
|
| 11927 |
+
}
|
| 11928 |
+
|
| 11929 |
+
.eael-ninja-form .submit-container input[type=button] {
|
| 11930 |
+
border: 0;
|
| 11931 |
+
border-radius: 0;
|
| 11932 |
+
}
|
| 11933 |
+
|
| 11934 |
+
.eael-ninja-form-button-full-width .submit-container input[type=button] {
|
| 11935 |
+
width: 100%;
|
| 11936 |
+
}
|
| 11937 |
+
|
| 11938 |
+
/*-----------------------------*/
|
| 11939 |
+
/* 15. Post Grid Style
|
| 11940 |
+
/*-----------------------------*/
|
| 11941 |
+
.eael-post-grid {
|
| 11942 |
+
margin: 0 -10px;
|
| 11943 |
+
}
|
| 11944 |
+
|
| 11945 |
+
.eael-grid-post {
|
| 11946 |
+
float: left;
|
| 11947 |
+
padding: 10px;
|
| 11948 |
+
}
|
| 11949 |
+
|
| 11950 |
+
.eael-post-carousel .eael-grid-post {
|
| 11951 |
+
float: none;
|
| 11952 |
+
padding: 0;
|
| 11953 |
+
}
|
| 11954 |
+
|
| 11955 |
+
.eael-grid-post-holder {
|
| 11956 |
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
| 11957 |
+
}
|
| 11958 |
+
|
| 11959 |
+
.eael-grid-post-holder-inner {
|
| 11960 |
+
height: 100%;
|
| 11961 |
+
}
|
| 11962 |
+
|
| 11963 |
+
.eael-entry-media {
|
| 11964 |
+
position: relative;
|
| 11965 |
+
}
|
| 11966 |
+
|
| 11967 |
+
.eael-entry-overlay {
|
| 11968 |
+
position: absolute;
|
| 11969 |
+
top: 0;
|
| 11970 |
+
left: 0;
|
| 11971 |
+
width: 100%;
|
| 11972 |
+
height: 100%;
|
| 11973 |
+
z-index: 2;
|
| 11974 |
+
-webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
|
| 11975 |
+
transition: opacity 0.2s ease-in-out, -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
|
| 11976 |
+
-o-transition: opacity 0.2s ease-in-out, transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
|
| 11977 |
+
transition: opacity 0.2s ease-in-out, transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
|
| 11978 |
+
transition: opacity 0.2s ease-in-out, transform 0.25s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
|
| 11979 |
+
}
|
| 11980 |
+
|
| 11981 |
+
.eael-entry-overlay > a {
|
| 11982 |
+
position: absolute;
|
| 11983 |
+
top: 0;
|
| 11984 |
+
left: 0;
|
| 11985 |
+
width: 100%;
|
| 11986 |
+
height: 100%;
|
| 11987 |
+
z-index: 3;
|
| 11988 |
+
}
|
| 11989 |
+
|
| 11990 |
+
.eael-entry-title {
|
| 11991 |
+
margin: 10px 0 5px;
|
| 11992 |
+
font-size: 1.2em;
|
| 11993 |
+
}
|
| 11994 |
+
|
| 11995 |
+
.eael-entry-thumbnail img {
|
| 11996 |
+
width: 100%;
|
| 11997 |
+
max-width: 100%;
|
| 11998 |
+
vertical-align: middle;
|
| 11999 |
+
}
|
| 12000 |
+
|
| 12001 |
+
.eael-entry-thumbnail > img {
|
| 12002 |
+
height: 100%;
|
| 12003 |
+
}
|
| 12004 |
+
|
| 12005 |
+
.eael-entry-footer .eael-author-avatar {
|
| 12006 |
+
width: 50px;
|
| 12007 |
+
}
|
| 12008 |
+
|
| 12009 |
+
.eael-entry-footer .eael-author-avatar .avatar {
|
| 12010 |
+
border-radius: 50%;
|
| 12011 |
+
}
|
| 12012 |
+
|
| 12013 |
+
.eael-post-grid .eael-entry-footer .eael-entry-meta {
|
| 12014 |
+
padding-left: 8px;
|
| 12015 |
+
text-align: left;
|
| 12016 |
+
}
|
| 12017 |
+
|
| 12018 |
+
.eael-grid-post .eael-entry-meta {
|
| 12019 |
+
display: -webkit-box;
|
| 12020 |
+
display: -webkit-flex;
|
| 12021 |
+
display: -ms-flexbox;
|
| 12022 |
+
display: flex;
|
| 12023 |
+
-webkit-box-orient: horizontal;
|
| 12024 |
+
-webkit-box-direction: normal;
|
| 12025 |
+
-webkit-flex-direction: row;
|
| 12026 |
+
-ms-flex-direction: row;
|
| 12027 |
+
flex-direction: row;
|
| 12028 |
+
}
|
| 12029 |
+
|
| 12030 |
+
.eael-grid-post .eael-entry-footer .eael-entry-meta {
|
| 12031 |
+
-webkit-box-orient: vertical;
|
| 12032 |
+
-webkit-box-direction: normal;
|
| 12033 |
+
-webkit-flex-direction: column;
|
| 12034 |
+
-ms-flex-direction: column;
|
| 12035 |
+
flex-direction: column;
|
| 12036 |
+
}
|
| 12037 |
+
|
| 12038 |
+
.eael-entry-meta > div {
|
| 12039 |
+
font-size: 12px;
|
| 12040 |
+
line-height: 1.2;
|
| 12041 |
+
padding-bottom: 5px;
|
| 12042 |
+
}
|
| 12043 |
+
|
| 12044 |
+
.eael-grid-post-excerpt p {
|
| 12045 |
+
margin: 0;
|
| 12046 |
+
font-size: 14px;
|
| 12047 |
+
}
|
| 12048 |
+
|
| 12049 |
+
.eael-entry-meta .eael-entry-footer .eael-posted-by {
|
| 12050 |
+
display: block;
|
| 12051 |
+
}
|
| 12052 |
+
|
| 12053 |
+
.eael-grid-post .eael-entry-wrapper,
|
| 12054 |
+
.eael-grid-post .eael-entry-footer {
|
| 12055 |
+
padding: 15px;
|
| 12056 |
+
}
|
| 12057 |
+
|
| 12058 |
+
.eael-post-grid .eael-entry-header .eael-entry-meta span.eael-posted-on {
|
| 12059 |
+
padding-left: 5px;
|
| 12060 |
+
}
|
| 12061 |
+
|
| 12062 |
+
.eael-post-grid .eael-entry-header .eael-entry-meta span.eael-posted-on::before {
|
| 12063 |
+
content: '\f111';
|
| 12064 |
+
font-family: FontAwesome;
|
| 12065 |
+
color: inherit;
|
| 12066 |
+
opacity: .4;
|
| 12067 |
+
font-size: .8em;
|
| 12068 |
+
padding-right: 7px;
|
| 12069 |
+
}
|
| 12070 |
+
|
| 12071 |
+
/*--- Post Grid Thumbnail Hover Effects ---*/
|
| 12072 |
+
.eael-entry-medianone {
|
| 12073 |
+
position: relative;
|
| 12074 |
+
}
|
| 12075 |
+
|
| 12076 |
+
.eael-entry-overlay {
|
| 12077 |
+
display: -webkit-box;
|
| 12078 |
+
display: -webkit-flex;
|
| 12079 |
+
display: -ms-flexbox;
|
| 12080 |
+
display: flex;
|
| 12081 |
+
-webkit-box-align: center;
|
| 12082 |
+
-webkit-align-items: center;
|
| 12083 |
+
-ms-flex-align: center;
|
| 12084 |
+
align-items: center;
|
| 12085 |
+
-webkit-box-pack: center;
|
| 12086 |
+
-webkit-justify-content: center;
|
| 12087 |
+
-ms-flex-pack: center;
|
| 12088 |
+
justify-content: center;
|
| 12089 |
+
}
|
| 12090 |
+
|
| 12091 |
+
.eael-entry-overlay > i {
|
| 12092 |
+
color: #fff;
|
| 12093 |
+
}
|
| 12094 |
+
|
| 12095 |
+
/*--- fade in ---*/
|
| 12096 |
+
.eael-entry-overlay.fade-in {
|
| 12097 |
+
visibility: hidden;
|
| 12098 |
+
opacity: 0;
|
| 12099 |
+
-webkit-transition: 300ms;
|
| 12100 |
+
-o-transition: 300ms;
|
| 12101 |
+
transition: 300ms;
|
| 12102 |
+
}
|
| 12103 |
+
|
| 12104 |
+
.eael-entry-medianone:hover .eael-entry-overlay.fade-in {
|
| 12105 |
+
visibility: visible;
|
| 12106 |
+
opacity: 1;
|
| 12107 |
+
}
|
| 12108 |
+
|
| 12109 |
+
.eael-entry-medianone:hover .eael-entry-overlay.fade-in > i {
|
| 12110 |
+
-webkit-transform: translate(0);
|
| 12111 |
+
-ms-transform: translate(0);
|
| 12112 |
+
transform: translate(0);
|
| 12113 |
+
opacity: 1;
|
| 12114 |
+
}
|
| 12115 |
+
|
| 12116 |
+
/*--- zoom in --- */
|
| 12117 |
+
.eael-entry-overlay.zoom-in {
|
| 12118 |
+
-webkit-transform: scale(0.9);
|
| 12119 |
+
-ms-transform: scale(0.9);
|
| 12120 |
+
transform: scale(0.9);
|
| 12121 |
+
visibility: hidden;
|
| 12122 |
+
opacity: 0;
|
| 12123 |
+
-webkit-transition: 300ms;
|
| 12124 |
+
-o-transition: 300ms;
|
| 12125 |
+
transition: 300ms;
|
| 12126 |
+
}
|
| 12127 |
+
|
| 12128 |
+
.eael-entry-medianone:hover .eael-entry-overlay.zoom-in {
|
| 12129 |
+
visibility: visible;
|
| 12130 |
+
opacity: 1;
|
| 12131 |
+
-webkit-transform: scale(1);
|
| 12132 |
+
-ms-transform: scale(1);
|
| 12133 |
+
transform: scale(1);
|
| 12134 |
+
}
|
| 12135 |
+
|
| 12136 |
+
/*--- slide up ---*/
|
| 12137 |
+
.eael-entry-overlay.slide-up {
|
| 12138 |
+
-webkit-transform: translateY(100%);
|
| 12139 |
+
-ms-transform: translateY(100%);
|
| 12140 |
+
transform: translateY(100%);
|
| 12141 |
+
visibility: hidden;
|
| 12142 |
+
opacity: 0;
|
| 12143 |
+
-webkit-transition: 300ms;
|
| 12144 |
+
-o-transition: 300ms;
|
| 12145 |
+
transition: 300ms;
|
| 12146 |
+
}
|
| 12147 |
+
|
| 12148 |
+
.eael-entry-medianone:hover .eael-entry-overlay.slide-up {
|
| 12149 |
+
-webkit-transform: translateY(0);
|
| 12150 |
+
-ms-transform: translateY(0);
|
| 12151 |
+
transform: translateY(0);
|
| 12152 |
+
visibility: visible;
|
| 12153 |
+
opacity: 1;
|
| 12154 |
+
}
|
| 12155 |
+
|
| 12156 |
+
.eael-entry-medianone {
|
| 12157 |
+
overflow: hidden;
|
| 12158 |
+
}
|
| 12159 |
+
|
| 12160 |
+
/*--- Post Grid & Carousel Hover Styles ---*/
|
| 12161 |
+
.eael-entry-media.grid-hover-style-fade-in .eael-entry-overlay {
|
| 12162 |
+
opacity: 0;
|
| 12163 |
+
}
|
| 12164 |
+
|
| 12165 |
+
.eael-entry-media.grid-hover-style-fade-in:hover .eael-entry-overlay {
|
| 12166 |
+
opacity: 1;
|
| 12167 |
+
}
|
| 12168 |
+
|
| 12169 |
+
.eael-entry-media.grid-hover-style-none .eael-entry-overlay {
|
| 12170 |
+
display: none;
|
| 12171 |
+
}
|
| 12172 |
+
|
| 12173 |
+
.eael-entry-media.grid-hover-style-zoom-in .eael-entry-overlay {
|
| 12174 |
+
-webkit-transform: scale(0.4);
|
| 12175 |
+
-ms-transform: scale(0.4);
|
| 12176 |
+
transform: scale(0.4);
|
| 12177 |
+
opacity: 0;
|
| 12178 |
+
}
|
| 12179 |
+
|
| 12180 |
+
.eael-entry-media.grid-hover-style-zoom-in:hover .eael-entry-overlay {
|
| 12181 |
+
-webkit-transform: scale(1);
|
| 12182 |
+
-ms-transform: scale(1);
|
| 12183 |
+
transform: scale(1);
|
| 12184 |
+
opacity: 1;
|
| 12185 |
+
}
|
| 12186 |
+
|
| 12187 |
+
.eael-entry-media.grid-hover-style-animate-down .eael-entry-overlay {
|
| 12188 |
+
-webkit-transform: translateY(-100%);
|
| 12189 |
+
-ms-transform: translateY(-100%);
|
| 12190 |
+
transform: translateY(-100%);
|
| 12191 |
+
}
|
| 12192 |
+
|
| 12193 |
+
.eael-entry-media.grid-hover-style-animate-down .eael-entry-overlay > i {
|
| 12194 |
+
-webkit-transform: translateY(-100px);
|
| 12195 |
+
-ms-transform: translateY(-100px);
|
| 12196 |
+
transform: translateY(-100px);
|
| 12197 |
+
-webkit-transition-delay: 100ms;
|
| 12198 |
+
-o-transition-delay: 100ms;
|
| 12199 |
+
transition-delay: 100ms;
|
| 12200 |
+
-webkit-transition-duration: 300ms;
|
| 12201 |
+
-o-transition-duration: 300ms;
|
| 12202 |
+
transition-duration: 300ms;
|
| 12203 |
+
}
|
| 12204 |
+
|
| 12205 |
+
.eael-entry-media.grid-hover-style-animate-down:hover .eael-entry-overlay {
|
| 12206 |
+
-webkit-transform: translate(0);
|
| 12207 |
+
-ms-transform: translate(0);
|
| 12208 |
+
transform: translate(0);
|
| 12209 |
+
}
|
| 12210 |
+
|
| 12211 |
+
.eael-entry-media.grid-hover-style-animate-down:hover .eael-entry-overlay > i {
|
| 12212 |
+
-webkit-transform: translateY(0);
|
| 12213 |
+
-ms-transform: translateY(0);
|
| 12214 |
+
transform: translateY(0);
|
| 12215 |
+
}
|
| 12216 |
+
|
| 12217 |
+
.eael-entry-media.grid-hover-style-animate-up .eael-entry-overlay {
|
| 12218 |
+
-webkit-transform: translateY(100%);
|
| 12219 |
+
-ms-transform: translateY(100%);
|
| 12220 |
+
transform: translateY(100%);
|
| 12221 |
+
visibility: hidden;
|
| 12222 |
+
opacity: 0;
|
| 12223 |
+
}
|
| 12224 |
+
|
| 12225 |
+
.eael-entry-media.grid-hover-style-animate-up .eael-entry-overlay > i {
|
| 12226 |
+
-webkit-transform: translateY(100px);
|
| 12227 |
+
-ms-transform: translateY(100px);
|
| 12228 |
+
transform: translateY(100px);
|
| 12229 |
+
-webkit-transition-delay: 100ms;
|
| 12230 |
+
-o-transition-delay: 100ms;
|
| 12231 |
+
transition-delay: 100ms;
|
| 12232 |
+
-webkit-transition-duration: 300ms;
|
| 12233 |
+
-o-transition-duration: 300ms;
|
| 12234 |
+
transition-duration: 300ms;
|
| 12235 |
+
}
|
| 12236 |
+
|
| 12237 |
+
.eael-entry-media.grid-hover-style-animate-up:hover .eael-entry-overlay {
|
| 12238 |
+
-webkit-transform: translate(0);
|
| 12239 |
+
-ms-transform: translate(0);
|
| 12240 |
+
transform: translate(0);
|
| 12241 |
+
visibility: visible;
|
| 12242 |
+
opacity: 1;
|
| 12243 |
+
}
|
| 12244 |
+
|
| 12245 |
+
.eael-entry-media.grid-hover-style-animate-up:hover .eael-entry-overlay > i {
|
| 12246 |
+
-webkit-transform: translateY(0);
|
| 12247 |
+
-ms-transform: translateY(0);
|
| 12248 |
+
transform: translateY(0);
|
| 12249 |
+
}
|
| 12250 |
+
|
| 12251 |
+
/*--- Post Grid Column Styles ---*/
|
| 12252 |
+
.eael-col-1 .eael-post-grid-column {
|
| 12253 |
+
float: none;
|
| 12254 |
+
width: 100%;
|
| 12255 |
+
}
|
| 12256 |
+
|
| 12257 |
+
.eael-col-2 .eael-post-grid-column {
|
| 12258 |
+
float: left;
|
| 12259 |
+
width: 50%;
|
| 12260 |
+
}
|
| 12261 |
+
|
| 12262 |
+
.eael-col-3 .eael-post-grid-column {
|
| 12263 |
+
float: left;
|
| 12264 |
+
width: 33.3333%;
|
| 12265 |
+
}
|
| 12266 |
+
|
| 12267 |
+
.eael-col-4 .eael-post-grid-column {
|
| 12268 |
+
float: left;
|
| 12269 |
+
width: 25%;
|
| 12270 |
+
}
|
| 12271 |
+
|
| 12272 |
+
.eael-col-5 .eael-post-grid-column {
|
| 12273 |
+
float: left;
|
| 12274 |
+
width: 20%;
|
| 12275 |
+
}
|
| 12276 |
+
|
| 12277 |
+
.eael-col-6 .eael-post-grid-column {
|
| 12278 |
+
float: left;
|
| 12279 |
+
width: 16.6666%;
|
| 12280 |
+
}
|
| 12281 |
+
|
| 12282 |
+
@media only screen and (max-width: 979px) {
|
| 12283 |
+
.eael-col-1 .eael-post-grid-column,
|
| 12284 |
+
.eael-col-2 .eael-post-grid-column,
|
| 12285 |
+
.eael-col-3 .eael-post-grid-column,
|
| 12286 |
+
.eael-col-4 .eael-post-grid-column,
|
| 12287 |
+
.eael-col-5 .eael-post-grid-column,
|
| 12288 |
+
.eael-col-6 .eael-post-grid-column {
|
| 12289 |
+
width: 33.3333%;
|
| 12290 |
+
}
|
| 12291 |
+
}
|
| 12292 |
+
@media only screen and (max-width: 767px) {
|
| 12293 |
+
.eael-col-1 .eael-post-grid-column,
|
| 12294 |
+
.eael-col-2 .eael-post-grid-column,
|
| 12295 |
+
.eael-col-3 .eael-post-grid-column,
|
| 12296 |
+
.eael-col-4 .eael-post-grid-column,
|
| 12297 |
+
.eael-col-5 .eael-post-grid-column,
|
| 12298 |
+
.eael-col-6 .eael-post-grid-column {
|
| 12299 |
+
width: 50%;
|
| 12300 |
+
}
|
| 12301 |
+
}
|
| 12302 |
+
@media only screen and (max-width: 480px) {
|
| 12303 |
+
.eael-col-1 .eael-post-grid-column,
|
| 12304 |
+
.eael-col-2 .eael-post-grid-column,
|
| 12305 |
+
.eael-col-3 .eael-post-grid-column,
|
| 12306 |
+
.eael-col-4 .eael-post-grid-column,
|
| 12307 |
+
.eael-col-5 .eael-post-grid-column,
|
| 12308 |
+
.eael-col-6 .eael-post-grid-column {
|
| 12309 |
+
float: none;
|
| 12310 |
+
width: 100%;
|
| 12311 |
+
}
|
| 12312 |
+
}
|
| 12313 |
+
.eael-author-avatar > a {
|
| 12314 |
+
display: block;
|
| 12315 |
+
}
|
| 12316 |
+
|
| 12317 |
+
.eael-entry-footer {
|
| 12318 |
+
overflow: hidden;
|
| 12319 |
+
display: -webkit-box;
|
| 12320 |
+
display: -webkit-flex;
|
| 12321 |
+
display: -ms-flexbox;
|
| 12322 |
+
display: flex;
|
| 12323 |
+
}
|
| 12324 |
+
|
| 12325 |
+
.eael-entry-footer > div {
|
| 12326 |
+
display: inline-block;
|
| 12327 |
+
float: left;
|
| 12328 |
+
}
|
| 12329 |
+
|
| 12330 |
+
/*----------------------------*/
|
| 12331 |
+
/* 06. Post Timeline Styles
|
| 12332 |
+
/*----------------------------*/
|
| 12333 |
+
.eael-post-timeline {
|
| 12334 |
+
margin-bottom: 0;
|
| 12335 |
+
min-height: 100%;
|
| 12336 |
+
overflow: hidden;
|
| 12337 |
+
position: relative;
|
| 12338 |
+
}
|
| 12339 |
+
|
| 12340 |
+
.eael-timeline-column {
|
| 12341 |
+
width: 50%;
|
| 12342 |
+
margin-left: 0;
|
| 12343 |
+
float: left;
|
| 12344 |
+
margin-top: 0 !important;
|
| 12345 |
+
}
|
| 12346 |
+
|
| 12347 |
+
.eael-timeline-post {
|
| 12348 |
+
position: relative;
|
| 12349 |
+
}
|
| 12350 |
+
|
| 12351 |
+
.eael-timeline-post:after {
|
| 12352 |
+
background-color: rgba(83, 85, 86, 0.2);
|
| 12353 |
+
content: "";
|
| 12354 |
+
width: 2px;
|
| 12355 |
+
height: 245px;
|
| 12356 |
+
position: absolute;
|
| 12357 |
+
right: 0;
|
| 12358 |
+
top: 70px;
|
| 12359 |
+
}
|
| 12360 |
+
|
| 12361 |
+
.eael-timeline-post:nth-child(2n):after {
|
| 12362 |
+
display: none;
|
| 12363 |
+
}
|
| 12364 |
+
|
| 12365 |
+
.eael-timeline-bullet {
|
| 12366 |
+
background-color: #9fa9af;
|
| 12367 |
+
border: 5px solid #fff;
|
| 12368 |
+
border-radius: 50%;
|
| 12369 |
+
-webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.1);
|
| 12370 |
+
box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.1);
|
| 12371 |
+
content: "";
|
| 12372 |
+
height: 20px;
|
| 12373 |
+
position: absolute;
|
| 12374 |
+
right: -9px;
|
| 12375 |
+
top: 60px;
|
| 12376 |
+
width: 20px;
|
| 12377 |
+
z-index: 3;
|
| 12378 |
+
cursor: pointer;
|
| 12379 |
+
}
|
| 12380 |
+
|
| 12381 |
+
.eael-timeline-post:nth-child(2n) .eael-timeline-bullet {
|
| 12382 |
+
background-color: #9fa9af;
|
| 12383 |
+
border: 5px solid #fff;
|
| 12384 |
+
border-radius: 50%;
|
| 12385 |
+
bottom: 36px;
|
| 12386 |
+
content: "";
|
| 12387 |
+
height: 20px;
|
| 12388 |
+
left: -11px;
|
| 12389 |
+
position: absolute;
|
| 12390 |
+
top: 300px;
|
| 12391 |
+
width: 20px;
|
| 12392 |
+
z-index: 3;
|
| 12393 |
+
}
|
| 12394 |
+
|
| 12395 |
+
.eael-timeline-post-inner {
|
| 12396 |
+
background: -o-linear-gradient(45deg, #3f3f46 0%, #05abe0 100%) repeat scroll 0 0 transparent;
|
| 12397 |
+
background: linear-gradient(45deg, #3f3f46 0%, #05abe0 100%) repeat scroll 0 0 transparent;
|
| 12398 |
+
border: 8px solid #e5eaed;
|
| 12399 |
+
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
|
| 12400 |
+
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
|
| 12401 |
+
float: right;
|
| 12402 |
+
margin: 30px 40px 30px auto;
|
| 12403 |
+
position: relative;
|
| 12404 |
+
height: 320px;
|
| 12405 |
+
width: calc(100% - 40px);
|
| 12406 |
+
}
|
| 12407 |
+
|
| 12408 |
+
.eael-timeline-post:nth-child(even) .eael-timeline-post-inner {
|
| 12409 |
+
float: left;
|
| 12410 |
+
margin-left: 40px;
|
| 12411 |
+
}
|
| 12412 |
+
|
| 12413 |
+
.eael-timeline-post-inner:after {
|
| 12414 |
+
border-color: transparent transparent transparent #e5eaed;
|
| 12415 |
+
border-style: solid;
|
| 12416 |
+
border-width: 15px;
|
| 12417 |
+
content: "";
|
| 12418 |
+
height: 0;
|
| 12419 |
+
position: absolute;
|
| 12420 |
+
right: -36px;
|
| 12421 |
+
top: 17px;
|
| 12422 |
+
width: 0;
|
| 12423 |
+
}
|
| 12424 |
+
|
| 12425 |
+
.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner:after {
|
| 12426 |
+
border-color: transparent #e5eaed transparent transparent;
|
| 12427 |
+
border-style: solid;
|
| 12428 |
+
border-width: 15px;
|
| 12429 |
+
content: "";
|
| 12430 |
+
height: 0;
|
| 12431 |
+
left: -36px;
|
| 12432 |
+
position: absolute;
|
| 12433 |
+
top: 257px;
|
| 12434 |
+
width: 0;
|
| 12435 |
+
}
|
| 12436 |
+
|
| 12437 |
+
.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner::after {
|
| 12438 |
+
border-left-color: transparent !important;
|
| 12439 |
+
}
|
| 12440 |
+
|
| 12441 |
+
.eael-timeline-post p {
|
| 12442 |
+
margin: 1.6rem 0 0 0;
|
| 12443 |
+
font-size: 0.9em;
|
| 12444 |
+
line-height: 1.6em;
|
| 12445 |
+
}
|
| 12446 |
+
|
| 12447 |
+
.eael-timeline-post-image {
|
| 12448 |
+
background-size: cover;
|
| 12449 |
+
background-position: center center;
|
| 12450 |
+
background-repeat: no-repeat;
|
| 12451 |
+
display: block;
|
| 12452 |
+
height: 100%;
|
| 12453 |
+
overflow: hidden;
|
| 12454 |
+
position: relative;
|
| 12455 |
+
opacity: .6;
|
| 12456 |
+
-webkit-transition: all .3s;
|
| 12457 |
+
-o-transition: all .3s;
|
| 12458 |
+
transition: all .3s;
|
| 12459 |
+
}
|
| 12460 |
+
|
| 12461 |
+
.eael-timeline-post-title {
|
| 12462 |
+
bottom: 40px;
|
| 12463 |
+
position: absolute;
|
| 12464 |
+
width: 100%;
|
| 12465 |
+
}
|
| 12466 |
+
|
| 12467 |
+
.eael-timeline-post-title h2 {
|
| 12468 |
+
color: #fff;
|
| 12469 |
+
font-size: 20px;
|
| 12470 |
+
font-weight: bold;
|
| 12471 |
+
letter-spacing: 1px;
|
| 12472 |
+
line-height: 24px;
|
| 12473 |
+
padding: 0 25px;
|
| 12474 |
+
text-align: left;
|
| 12475 |
+
text-transform: uppercase;
|
| 12476 |
+
}
|
| 12477 |
+
|
| 12478 |
+
.eael-timeline-post-excerpt {
|
| 12479 |
+
opacity: 0;
|
| 12480 |
+
position: absolute;
|
| 12481 |
+
top: 0;
|
| 12482 |
+
left: 0;
|
| 12483 |
+
-webkit-transition: all .3s;
|
| 12484 |
+
-o-transition: all .3s;
|
| 12485 |
+
transition: all .3s;
|
| 12486 |
+
}
|
| 12487 |
+
|
| 12488 |
+
.eael-timeline-post-excerpt p {
|
| 12489 |
+
color: #fff;
|
| 12490 |
+
font-size: 14px;
|
| 12491 |
+
padding: 25px;
|
| 12492 |
+
}
|
| 12493 |
+
|
| 12494 |
+
.eael-timeline-post-inner:hover .eael-timeline-post-excerpt {
|
| 12495 |
+
opacity: 1;
|
| 12496 |
+
top: 10px;
|
| 12497 |
+
}
|
| 12498 |
+
|
| 12499 |
+
.eael-timeline-post-inner:hover .eael-timeline-post-image {
|
| 12500 |
+
opacity: .3;
|
| 12501 |
+
}
|
| 12502 |
+
|
| 12503 |
+
.eael-timeline-post time {
|
| 12504 |
+
opacity: 0;
|
| 12505 |
+
background-color: rgba(0, 0, 0, 0.7);
|
| 12506 |
+
color: #fff;
|
| 12507 |
+
font-size: 10px;
|
| 12508 |
+
border-radius: 20px;
|
| 12509 |
+
position: absolute;
|
| 12510 |
+
right: -97px;
|
| 12511 |
+
width: 100px;
|
| 12512 |
+
height: 30px;
|
| 12513 |
+
line-height: 30px;
|
| 12514 |
+
text-align: center;
|
| 12515 |
+
top: 50px;
|
| 12516 |
+
z-index: 99;
|
| 12517 |
+
-webkit-transition: all .5s;
|
| 12518 |
+
-o-transition: all .5s;
|
| 12519 |
+
transition: all .5s;
|
| 12520 |
+
}
|
| 12521 |
+
|
| 12522 |
+
.eael-timeline-post:nth-child(2n) time {
|
| 12523 |
+
background-color: rgba(0, 0, 0, 0.7);
|
| 12524 |
+
border-radius: 20px;
|
| 12525 |
+
color: #fff;
|
| 12526 |
+
font-size: 10px;
|
| 12527 |
+
height: 30px;
|
| 12528 |
+
left: -99px;
|
| 12529 |
+
line-height: 30px;
|
| 12530 |
+
position: absolute;
|
| 12531 |
+
text-align: center;
|
| 12532 |
+
top: 290px;
|
| 12533 |
+
width: 100px;
|
| 12534 |
+
z-index: 99;
|
| 12535 |
+
}
|
| 12536 |
+
|
| 12537 |
+
.eael-timeline-post time:before {
|
| 12538 |
+
border-bottom: 5px solid rgba(0, 0, 0, 0.7);
|
| 12539 |
+
border-left: 5px solid transparent;
|
| 12540 |
+
border-right: 5px solid transparent;
|
| 12541 |
+
content: "";
|
| 12542 |
+
height: 0;
|
| 12543 |
+
left: 45px;
|
| 12544 |
+
position: absolute;
|
| 12545 |
+
top: -5px;
|
| 12546 |
+
width: 0;
|
| 12547 |
+
}
|
| 12548 |
+
|
| 12549 |
+
.eael-timeline-post:hover time {
|
| 12550 |
+
opacity: 1;
|
| 12551 |
+
}
|
| 12552 |
+
|
| 12553 |
+
.eael-timeline-post::after {
|
| 12554 |
+
height: 100%;
|
| 12555 |
+
}
|
| 12556 |
+
|
| 12557 |
+
.eael-post-timeline .eael-timeline-post:nth-last-child(2)::after {
|
| 12558 |
+
height: 245px;
|
| 12559 |
+
}
|
| 12560 |
+
|
| 12561 |
+
.eael-post-timeline .eael-timeline-post:last-child::after {
|
| 12562 |
+
display: none;
|
| 12563 |
+
}
|
| 12564 |
+
|
| 12565 |
+
.eael-load-more-button-wrap {
|
| 12566 |
+
display: -webkit-box;
|
| 12567 |
+
display: -webkit-flex;
|
| 12568 |
+
display: -ms-flexbox;
|
| 12569 |
+
display: flex;
|
| 12570 |
+
}
|
| 12571 |
+
|
| 12572 |
+
/*--- Responsive Style for Post Timeline ---*/
|
| 12573 |
+
@media only screen and (max-width: 1366px) {
|
| 12574 |
+
.eael-timeline-post-title h2 {
|
| 12575 |
+
font-size: 0.8em;
|
| 12576 |
+
}
|
| 12577 |
+
|
| 12578 |
+
.eael-timeline-post-excerpt p {
|
| 12579 |
+
font-size: 13px;
|
| 12580 |
+
}
|
| 12581 |
+
}
|
| 12582 |
+
@media only screen and (max-width: 1169px) {
|
| 12583 |
+
.eael-timeline-post-inner {
|
| 12584 |
+
height: 320px;
|
| 12585 |
+
}
|
| 12586 |
+
}
|
| 12587 |
+
@media only screen and (max-width: 992px) {
|
| 12588 |
+
.eael-post-timeline {
|
| 12589 |
+
margin-left: 0;
|
| 12590 |
+
}
|
| 12591 |
+
|
| 12592 |
+
.eael-timeline-bullet,
|
| 12593 |
+
.eael-timeline-post:after,
|
| 12594 |
+
.eael-timeline-post:before,
|
| 12595 |
+
.eael-timeline-post-inner:after {
|
| 12596 |
+
display: none;
|
| 12597 |
+
}
|
| 12598 |
+
|
| 12599 |
+
.eael-timeline-post {
|
| 12600 |
+
display: inline-block;
|
| 12601 |
+
float: left !important;
|
| 12602 |
+
width: 50% !important;
|
| 12603 |
+
margin: 15px auto;
|
| 12604 |
+
}
|
| 12605 |
+
|
| 12606 |
+
.eael-timeline-post-inner {
|
| 12607 |
+
height: 320px;
|
| 12608 |
+
padding-bottom: 30px;
|
| 12609 |
+
}
|
| 12610 |
+
|
| 12611 |
+
.eael-timeline-post-title {
|
| 12612 |
+
bottom: 50px;
|
| 12613 |
+
}
|
| 12614 |
+
|
| 12615 |
+
.eael-timeline-post-title h2 {
|
| 12616 |
+
font-size: 0.8em;
|
| 12617 |
+
line-height: 1.2em;
|
| 12618 |
+
}
|
| 12619 |
+
|
| 12620 |
+
.eael-timeline-post .eael-timeline-post-inner {
|
| 12621 |
+
margin: 0 10px auto 0;
|
| 12622 |
+
width: 90%;
|
| 12623 |
+
}
|
| 12624 |
+
|
| 12625 |
+
.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner {
|
| 12626 |
+
margin: 0 auto 0 10px;
|
| 12627 |
+
width: 90%;
|
| 12628 |
+
}
|
| 12629 |
+
|
| 12630 |
+
.eael-timeline-post-excerpt {
|
| 12631 |
+
opacity: 0 !important;
|
| 12632 |
+
}
|
| 12633 |
+
|
| 12634 |
+
.eael-timeline-post-image {
|
| 12635 |
+
opacity: .3;
|
| 12636 |
+
}
|
| 12637 |
+
|
| 12638 |
+
.eael-timeline-post time,
|
| 12639 |
+
.eael-timeline-post:nth-child(2n) time {
|
| 12640 |
+
background-color: #fff;
|
| 12641 |
+
border-radius: 0;
|
| 12642 |
+
color: #444;
|
| 12643 |
+
font-size: 12px;
|
| 12644 |
+
text-transform: uppercase;
|
| 12645 |
+
left: 0;
|
| 12646 |
+
opacity: 1;
|
| 12647 |
+
padding-top: 3px;
|
| 12648 |
+
top: 275px;
|
| 12649 |
+
width: 100%;
|
| 12650 |
+
}
|
| 12651 |
+
|
| 12652 |
+
time:before {
|
| 12653 |
+
display: none;
|
| 12654 |
+
}
|
| 12655 |
+
}
|
| 12656 |
+
@media only screen and (max-width: 767px) {
|
| 12657 |
+
.eael-timeline-post {
|
| 12658 |
+
display: block;
|
| 12659 |
+
float: none !important;
|
| 12660 |
+
margin: 20px auto;
|
| 12661 |
+
width: 100% !important;
|
| 12662 |
+
}
|
| 12663 |
+
|
| 12664 |
+
.eael-timeline-post .eael-timeline-post-inner,
|
| 12665 |
+
.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner {
|
| 12666 |
+
display: block;
|
| 12667 |
+
float: none;
|
| 12668 |
+
margin: 0 auto;
|
| 12669 |
+
}
|
| 12670 |
+
}
|
| 12671 |
+
@media only screen and (max-width: 479px) {
|
| 12672 |
+
.eael-timeline-post .eael-timeline-post-inner,
|
| 12673 |
+
.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner {
|
| 12674 |
+
height: 250px;
|
| 12675 |
+
margin: 0 auto;
|
| 12676 |
+
width: 95%;
|
| 12677 |
+
}
|
| 12678 |
+
|
| 12679 |
+
.eael-timeline-post time,
|
| 12680 |
+
.eael-timeline-post:nth-child(2n) time {
|
| 12681 |
+
top: 205px;
|
| 12682 |
+
}
|
| 12683 |
+
}
|
| 12684 |
+
|
| 12685 |
+
/* -------------------------------- */
|
| 12686 |
+
/* 21. Pricing Table
|
| 12687 |
+
/* -------------------------------- */
|
| 12688 |
+
.eael-pricing {
|
| 12689 |
+
-webkit-display: flex;
|
| 12690 |
+
display: -webkit-box;
|
| 12691 |
+
display: -ms-flexbox;
|
| 12692 |
+
display: flex;
|
| 12693 |
+
-webkit-justify-content: center;
|
| 12694 |
+
-webkit-box-pack: center;
|
| 12695 |
+
-ms-flex-pack: center;
|
| 12696 |
+
justify-content: center;
|
| 12697 |
+
-webkit-align-items: center;
|
| 12698 |
+
-webkit-box-align: center;
|
| 12699 |
+
-ms-flex-align: center;
|
| 12700 |
+
align-items: center;
|
| 12701 |
+
}
|
| 12702 |
+
|
| 12703 |
+
.eael-pricing .eael-pricing-item {
|
| 12704 |
+
width: 100%;
|
| 12705 |
+
height: auto;
|
| 12706 |
+
margin: 0;
|
| 12707 |
+
}
|
| 12708 |
+
|
| 12709 |
+
.eael-pricing .eael-pricing-button {
|
| 12710 |
+
display: inline-block;
|
| 12711 |
+
padding: 12px 25px;
|
| 12712 |
+
background: #00C853;
|
| 12713 |
+
font-size: 14px;
|
| 12714 |
+
font-weight: 600;
|
| 12715 |
+
color: #fff;
|
| 12716 |
+
text-transform: uppercase;
|
| 12717 |
+
text-decoration: none;
|
| 12718 |
+
-webkit-transition: .3s;
|
| 12719 |
+
-o-transition: .3s;
|
| 12720 |
+
transition: .3s;
|
| 12721 |
+
border-radius: 4px;
|
| 12722 |
+
}
|
| 12723 |
+
|
| 12724 |
+
.eael-pricing .eael-pricing-button:hover {
|
| 12725 |
+
background: #03b048;
|
| 12726 |
+
}
|
| 12727 |
+
|
| 12728 |
+
.eael-pricing .eael-pricing-item ul {
|
| 12729 |
+
padding: 0px;
|
| 12730 |
+
margin: 0px;
|
| 12731 |
+
list-style: none;
|
| 12732 |
+
}
|
| 12733 |
+
|
| 12734 |
+
.eael-pricing .eael-pricing-item ul li.disable-item {
|
| 12735 |
+
text-decoration: line-through;
|
| 12736 |
+
opacity: 0.5;
|
| 12737 |
+
}
|
| 12738 |
+
|
| 12739 |
+
.eael-pricing .eael-pricing-item ul li span.li-icon {
|
| 12740 |
+
color: #00C853;
|
| 12741 |
+
margin-right: 6px;
|
| 12742 |
+
}
|
| 12743 |
+
|
| 12744 |
+
.eael-pricing .eael-pricing-item ul li.disable-item span.li-icon {
|
| 12745 |
+
color: #EF5350;
|
| 12746 |
+
}
|
| 12747 |
+
|
| 12748 |
+
/*--- Pricing Table: Style 1 ---*/
|
| 12749 |
+
.eael-pricing.style-1 {
|
| 12750 |
+
position: relative;
|
| 12751 |
+
z-index: 0;
|
| 12752 |
+
text-align: center;
|
| 12753 |
+
}
|
| 12754 |
+
|
| 12755 |
+
.eael-pricing.style-1 .eael-pricing-item {
|
| 12756 |
+
border: 1px solid rgba(9, 9, 9, 0.1);
|
| 12757 |
+
padding: 30px;
|
| 12758 |
+
border-radius: 5px;
|
| 12759 |
+
-webkit-transition: .5s;
|
| 12760 |
+
-o-transition: .5s;
|
| 12761 |
+
transition: .5s;
|
| 12762 |
+
}
|
| 12763 |
+
|
| 12764 |
+
.eael-pricing.style-1 .eael-pricing-item:hover {
|
| 12765 |
+
-webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
|
| 12766 |
+
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
|
| 12767 |
+
}
|
| 12768 |
+
|
| 12769 |
+
.eael-pricing.style-1 .eael-pricing-item.featured {
|
| 12770 |
+
position: relative;
|
| 12771 |
+
}
|
| 12772 |
+
|
| 12773 |
+
.eael-pricing.style-1 .eael-pricing-item.ribbon-1:before {
|
| 12774 |
+
content: "";
|
| 12775 |
+
position: absolute;
|
| 12776 |
+
width: 100%;
|
| 12777 |
+
height: 3px;
|
| 12778 |
+
background: #00C853;
|
| 12779 |
+
top: 0px;
|
| 12780 |
+
left: 0px;
|
| 12781 |
+
right: 0px;
|
| 12782 |
+
z-index: 1;
|
| 12783 |
+
border-radius: 5px 5px 0px 0px;
|
| 12784 |
+
}
|
| 12785 |
+
|
| 12786 |
+
.eael-pricing.style-1 .eael-pricing-item.ribbon-2:before {
|
| 12787 |
+
content: "Featured";
|
| 12788 |
+
position: absolute;
|
| 12789 |
+
width: auto;
|
| 12790 |
+
background: #00C853;
|
| 12791 |
+
color: #fff;
|
| 12792 |
+
top: 35px;
|
| 12793 |
+
right: -15px;
|
| 12794 |
+
z-index: 10;
|
| 12795 |
+
font-size: 10px;
|
| 12796 |
+
font-weight: 600;
|
| 12797 |
+
text-transform: uppercase;
|
| 12798 |
+
padding: 5px 10px;
|
| 12799 |
+
}
|
| 12800 |
+
|
| 12801 |
+
.eael-pricing.style-1 .eael-pricing-item.ribbon-2:after {
|
| 12802 |
+
content: "";
|
| 12803 |
+
position: absolute;
|
| 12804 |
+
top: 20px;
|
| 12805 |
+
right: -15px;
|
| 12806 |
+
width: 0;
|
| 12807 |
+
height: 0;
|
| 12808 |
+
border-bottom: 15px solid #00C853;
|
| 12809 |
+
border-right: 15px solid transparent;
|
| 12810 |
+
z-index: 9;
|
| 12811 |
+
opacity: 0.9;
|
| 12812 |
+
}
|
| 12813 |
+
|
| 12814 |
+
.eael-pricing.style-1 .eael-pricing-item.ribbon-3:before {
|
| 12815 |
+
content: "Featured";
|
| 12816 |
+
position: absolute;
|
| 12817 |
+
width: auto;
|
| 12818 |
+
background: rgba(0, 0, 0, 0.6);
|
| 12819 |
+
color: #fff;
|
| 12820 |
+
top: 15px;
|
| 12821 |
+
right: 15px;
|
| 12822 |
+
z-index: 10;
|
| 12823 |
+
font-size: 11px;
|
| 12824 |
+
font-weight: 600;
|
| 12825 |
+
text-transform: uppercase;
|
| 12826 |
+
padding: 5px 15px;
|
| 12827 |
+
}
|
| 12828 |
+
|
| 12829 |
+
.eael-pricing.style-1 .eael-pricing-item .header {
|
| 12830 |
+
display: block;
|
| 12831 |
+
position: relative;
|
| 12832 |
+
z-index: 0;
|
| 12833 |
+
padding-bottom: 15px;
|
| 12834 |
+
margin-bottom: 15px;
|
| 12835 |
+
}
|
| 12836 |
+
|
| 12837 |
+
.eael-pricing.style-1 .eael-pricing-item .header:after {
|
| 12838 |
+
content: "";
|
| 12839 |
+
position: absolute;
|
| 12840 |
+
width: 140px;
|
| 12841 |
+
height: 1px;
|
| 12842 |
+
bottom: 0px;
|
| 12843 |
+
left: 0px;
|
| 12844 |
+
right: 0px;
|
| 12845 |
+
margin: 0 auto;
|
| 12846 |
+
z-index: 1;
|
| 12847 |
+
background: rgba(9, 9, 9, 0.1);
|
| 12848 |
+
}
|
| 12849 |
+
|
| 12850 |
+
.eael-pricing.style-1 .eael-pricing-item .header .title {
|
| 12851 |
+
font-weight: 700;
|
| 12852 |
+
line-height: 30px;
|
| 12853 |
+
margin: 0px;
|
| 12854 |
+
}
|
| 12855 |
+
|
| 12856 |
+
.eael-pricing.style-1 .eael-pricing-item .eael-pricing-tag {
|
| 12857 |
+
position: relative;
|
| 12858 |
+
z-index: 0;
|
| 12859 |
+
padding: 15px 0px;
|
| 12860 |
+
margin-bottom: 15px;
|
| 12861 |
+
}
|
| 12862 |
+
|
| 12863 |
+
.eael-pricing.style-1 .eael-pricing-item .eael-pricing-tag:after {
|
| 12864 |
+
content: "";
|
| 12865 |
+
position: absolute;
|
| 12866 |
+
width: 140px;
|
| 12867 |
+
height: 1px;
|
| 12868 |
+
bottom: 0px;
|
| 12869 |
+
left: 0px;
|
| 12870 |
+
right: 0px;
|
| 12871 |
+
margin: 0 auto;
|
| 12872 |
+
z-index: 1;
|
| 12873 |
+
background: rgba(9, 9, 9, 0.04);
|
| 12874 |
+
}
|
| 12875 |
+
|
| 12876 |
+
.eael-pricing.style-1 .eael-pricing-item .price-tag {
|
| 12877 |
+
position: relative;
|
| 12878 |
+
display: inline-block;
|
| 12879 |
+
font-size: 28px;
|
| 12880 |
+
font-weight: 500;
|
| 12881 |
+
line-height: 0px;
|
| 12882 |
+
margin: 0px auto;
|
| 12883 |
+
}
|
| 12884 |
+
|
| 12885 |
+
.eael-pricing.style-1 .eael-pricing-item .price-tag .price-currency {
|
| 12886 |
+
font-size: 24px;
|
| 12887 |
+
font-weight: 700;
|
| 12888 |
+
}
|
| 12889 |
+
|
| 12890 |
+
.eael-pricing.style-1 .eael-pricing-item .price-period {
|
| 12891 |
+
color: #999;
|
| 12892 |
+
}
|
| 12893 |
+
|
| 12894 |
+
.eael-pricing.style-1 .eael-pricing-item .body ul {
|
| 12895 |
+
display: block;
|
| 12896 |
+
width: 100%;
|
| 12897 |
+
margin-bottom: 15px;
|
| 12898 |
+
}
|
| 12899 |
+
|
| 12900 |
+
.eael-pricing.style-1 .eael-pricing-item .body ul li {
|
| 12901 |
+
display: block;
|
| 12902 |
+
width: 100%;
|
| 12903 |
+
height: auto;
|
| 12904 |
+
padding: 10px 0px;
|
| 12905 |
+
font-size: 14px;
|
| 12906 |
+
color: #6d6d6d;
|
| 12907 |
+
border-bottom: 1px solid rgba(9, 9, 9, 0.04);
|
| 12908 |
+
}
|
| 12909 |
+
|
| 12910 |
+
.eael-pricing.style-1 .eael-pricing-item .body ul li:last-child {
|
| 12911 |
+
border: none;
|
| 12912 |
+
}
|
| 12913 |
+
|
| 12914 |
+
.eael-pricing.style-1 .eael-pricing-item.featured-large {
|
| 12915 |
+
padding: 60px 0px;
|
| 12916 |
+
}
|
| 12917 |
+
|
| 12918 |
+
/*--- Pricing Table : Style 2 ---*/
|
| 12919 |
+
.eael-pricing.style-2 {
|
| 12920 |
+
position: relative;
|
| 12921 |
+
z-index: 0;
|
| 12922 |
+
text-align: center;
|
| 12923 |
+
}
|
| 12924 |
+
|
| 12925 |
+
.eael-pricing.style-2 .eael-pricing-item {
|
| 12926 |
+
padding: 30px 0px;
|
| 12927 |
+
border-radius: 5px;
|
| 12928 |
+
margin: 0px;
|
| 12929 |
+
border: 1px solid rgba(9, 9, 9, 0.1);
|
| 12930 |
+
}
|
| 12931 |
+
|
| 12932 |
+
.eael-pricing.style-2 .eael-pricing-item.featured {
|
| 12933 |
+
-webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
|
| 12934 |
+
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
|
| 12935 |
+
}
|
| 12936 |
+
|
| 12937 |
+
.eael-pricing.style-2 .eael-pricing-item.ribbon-1:before {
|
| 12938 |
+
content: "";
|
| 12939 |
+
position: absolute;
|
| 12940 |
+
width: 100%;
|
| 12941 |
+
height: 3px;
|
| 12942 |
+
background: #00C853;
|
| 12943 |
+
top: 0px;
|
| 12944 |
+
left: 0px;
|
| 12945 |
+
right: 0px;
|
| 12946 |
+
z-index: 1;
|
| 12947 |
+
border-radius: 5px 5px 0px 0px;
|
| 12948 |
+
}
|
| 12949 |
+
|
| 12950 |
+
.eael-pricing.style-2 .eael-pricing-item.ribbon-2:before {
|
| 12951 |
+
content: "Featured";
|
| 12952 |
+
position: absolute;
|
| 12953 |
+
width: auto;
|
| 12954 |
+
background: #00C853;
|
| 12955 |
+
color: #fff;
|
| 12956 |
+
top: 35px;
|
| 12957 |
+
right: -15px;
|
| 12958 |
+
z-index: 10;
|
| 12959 |
+
font-size: 10px;
|
| 12960 |
+
font-weight: 600;
|
| 12961 |
+
text-transform: uppercase;
|
| 12962 |
+
padding: 5px 10px;
|
| 12963 |
+
}
|
| 12964 |
+
|
| 12965 |
+
.eael-pricing.style-2 .eael-pricing-item.ribbon-2:after {
|
| 12966 |
+
content: "";
|
| 12967 |
+
position: absolute;
|
| 12968 |
+
top: 20px;
|
| 12969 |
+
right: -15px;
|
| 12970 |
+
width: 0;
|
| 12971 |
+
height: 0;
|
| 12972 |
+
border-bottom: 15px solid #00C853;
|
| 12973 |
+
border-right: 15px solid transparent;
|
| 12974 |
+
z-index: 9;
|
| 12975 |
+
opacity: 0.9;
|
| 12976 |
+
}
|
| 12977 |
+
|
| 12978 |
+
.eael-pricing.style-2 .eael-pricing-item.ribbon-3:before {
|
| 12979 |
+
content: "Featured";
|
| 12980 |
+
position: absolute;
|
| 12981 |
+
width: auto;
|
| 12982 |
+
background: rgba(0, 0, 0, 0.6);
|
| 12983 |
+
color: #fff;
|
| 12984 |
+
top: 15px;
|
| 12985 |
+
right: 15px;
|
| 12986 |
+
z-index: 10;
|
| 12987 |
+
font-size: 11px;
|
| 12988 |
+
font-weight: 600;
|
| 12989 |
+
text-transform: uppercase;
|
| 12990 |
+
padding: 5px 15px;
|
| 12991 |
+
}
|
| 12992 |
+
|
| 12993 |
+
.eael-pricing.style-2 .eael-pricing-item .eael-pricing-icon .icon {
|
| 12994 |
+
display: inline-block;
|
| 12995 |
+
position: relative;
|
| 12996 |
+
width: 80px;
|
| 12997 |
+
height: 80px;
|
| 12998 |
+
background: #00c853;
|
| 12999 |
+
border-radius: 50%;
|
| 13000 |
+
margin-bottom: 30px;
|
| 13001 |
+
text-align: center;
|
| 13002 |
+
-webkit-transition: .5s;
|
| 13003 |
+
-o-transition: .5s;
|
| 13004 |
+
transition: .5s;
|
| 13005 |
+
overflow: hidden;
|
| 13006 |
+
}
|
| 13007 |
+
|
| 13008 |
+
.eael-pricing.style-2 .eael-pricing-item .eael-pricing-icon .icon i {
|
| 13009 |
+
font-size: 30px;
|
| 13010 |
+
color: #fff;
|
| 13011 |
+
line-height: 80px;
|
| 13012 |
+
-webkit-transition: .5s;
|
| 13013 |
+
-o-transition: .5s;
|
| 13014 |
+
transition: .5s;
|
| 13015 |
+
}
|
| 13016 |
+
|
| 13017 |
+
.eael-pricing.style-2 .eael-pricing-item:hover .eael-pricing-icon .icon {
|
| 13018 |
+
background: #43A047;
|
| 13019 |
+
}
|
| 13020 |
+
|
| 13021 |
+
.eael-pricing.style-2 .eael-pricing-item:hover .eael-pricing-icon .icon i {
|
| 13022 |
+
color: #fff;
|
| 13023 |
+
}
|
| 13024 |
+
|
| 13025 |
+
.eael-pricing.style-2 .eael-pricing-item .header {
|
| 13026 |
+
background: #C8E6C9;
|
| 13027 |
+
padding: 25px 30px;
|
| 13028 |
+
margin-bottom: 15px;
|
| 13029 |
+
position: relative;
|
| 13030 |
+
z-index: 0;
|
| 13031 |
+
}
|
| 13032 |
+
|
| 13033 |
+
.eael-pricing.style-2 .eael-pricing-item.featured .header:after {
|
| 13034 |
+
content: "";
|
| 13035 |
+
position: absolute;
|
| 13036 |
+
width: 100%;
|
| 13037 |
+
height: 100%;
|
| 13038 |
+
top: 0px;
|
| 13039 |
+
left: 0px;
|
| 13040 |
+
right: 0px;
|
| 13041 |
+
bottom: 0px;
|
| 13042 |
+
z-index: -1;
|
| 13043 |
+
background: rgba(255, 255, 255, 0.4);
|
| 13044 |
+
}
|
| 13045 |
+
|
| 13046 |
+
.eael-pricing.style-2 .eael-pricing-item .header .title {
|
| 13047 |
+
font-size: 28px;
|
| 13048 |
+
font-weight: 700;
|
| 13049 |
+
line-height: 40px;
|
| 13050 |
+
margin: 0px;
|
| 13051 |
+
}
|
| 13052 |
+
|
| 13053 |
+
.eael-pricing.style-2 .eael-pricing-item .header .subititle {
|
| 13054 |
+
font-size: 14px;
|
| 13055 |
+
font-weight: 600;
|
| 13056 |
+
color: #6d6d6d;
|
| 13057 |
+
}
|
| 13058 |
+
|
| 13059 |
+
.eael-pricing.style-2 .eael-pricing-item .eael-pricing-tag {
|
| 13060 |
+
position: relative;
|
| 13061 |
+
z-index: 0;
|
| 13062 |
+
padding: 15px 0px;
|
| 13063 |
+
margin-bottom: 15px;
|
| 13064 |
+
}
|
| 13065 |
+
|
| 13066 |
+
.eael-pricing.style-2 .eael-pricing-item .eael-pricing-tag:after {
|
| 13067 |
+
content: "";
|
| 13068 |
+
position: absolute;
|
| 13069 |
+
width: 140px;
|
| 13070 |
+
height: 1px;
|
| 13071 |
+
bottom: 0px;
|
| 13072 |
+
left: 0px;
|
| 13073 |
+
right: 0px;
|
| 13074 |
+
margin: 0 auto;
|
| 13075 |
+
z-index: 1;
|
| 13076 |
+
background: rgba(9, 9, 9, 0.04);
|
| 13077 |
+
}
|
| 13078 |
+
|
| 13079 |
+
.eael-pricing.style-2 .eael-pricing-item .price-tag {
|
| 13080 |
+
position: relative;
|
| 13081 |
+
display: inline-block;
|
| 13082 |
+
font-size: 28px;
|
| 13083 |
+
font-weight: 500;
|
| 13084 |
+
line-height: 0px;
|
| 13085 |
+
margin: 0px auto;
|
| 13086 |
+
}
|
| 13087 |
+
|
| 13088 |
+
.eael-pricing.style-2 .eael-pricing-item .price-tag .price-currency {
|
| 13089 |
+
font-size: 24px;
|
| 13090 |
+
font-weight: 700;
|
| 13091 |
+
color: #00C853;
|
| 13092 |
+
}
|
| 13093 |
+
|
| 13094 |
+
.eael-pricing.style-2 .eael-pricing-item .price-period {
|
| 13095 |
+
color: #999;
|
| 13096 |
+
}
|
| 13097 |
+
|
| 13098 |
+
.eael-pricing.style-2 .eael-pricing-item .body ul {
|
| 13099 |
+
display: block;
|
| 13100 |
+
width: 100%;
|
| 13101 |
+
margin-bottom: 15px;
|
| 13102 |
+
}
|
| 13103 |
+
|
| 13104 |
+
.eael-pricing.style-2 .eael-pricing-item .body ul li {
|
| 13105 |
+
display: block;
|
| 13106 |
+
width: 100%;
|
| 13107 |
+
height: auto;
|
| 13108 |
+
padding: 10px 15px;
|
| 13109 |
+
font-size: 14px;
|
| 13110 |
+
color: #6d6d6d;
|
| 13111 |
+
border-bottom: 1px solid rgba(9, 9, 9, 0.04);
|
| 13112 |
+
}
|
| 13113 |
+
|
| 13114 |
+
.eael-pricing.style-2 .eael-pricing-item .body ul li:last-child {
|
| 13115 |
+
border: none;
|
| 13116 |
+
}
|
| 13117 |
+
|
| 13118 |
+
/*--- Media Query ---*/
|
| 13119 |
+
@media only screen and (min-width: 768px) and (max-width: 992px) {
|
| 13120 |
+
.eael-pricing {
|
| 13121 |
+
display: block;
|
| 13122 |
+
}
|
| 13123 |
+
|
| 13124 |
+
.eael-pricing .eael-pricing-item,
|
| 13125 |
+
.eael-pricing.style-2 .eael-pricing-item,
|
| 13126 |
+
.eael-pricing.style-4 .eael-pricing-item {
|
| 13127 |
+
width: 100%;
|
| 13128 |
+
margin: 0 auto 30px auto;
|
| 13129 |
+
}
|
| 13130 |
+
}
|
| 13131 |
+
@media only screen and (max-width: 480px) {
|
| 13132 |
+
.eael-pricing {
|
| 13133 |
+
display: block;
|
| 13134 |
+
}
|
| 13135 |
+
|
| 13136 |
+
.eael-pricing .eael-pricing-item {
|
| 13137 |
+
width: 100%;
|
| 13138 |
+
}
|
| 13139 |
+
|
| 13140 |
+
.eael-pricing .eael-pricing-item,
|
| 13141 |
+
.eael-pricing.style-2 .eael-pricing-item,
|
| 13142 |
+
.eael-pricing.style-4 .eael-pricing-item {
|
| 13143 |
+
margin: 0 auto 30px auto;
|
| 13144 |
+
}
|
| 13145 |
+
}
|
| 13146 |
+
/*--- Page Builder Related Style ---*/
|
| 13147 |
+
.eael-pricing-content-align-center .eael-pricing {
|
| 13148 |
+
text-align: center;
|
| 13149 |
+
}
|
| 13150 |
+
|
| 13151 |
+
.eael-pricing-content-align-left .eael-pricing {
|
| 13152 |
+
text-align: left;
|
| 13153 |
+
}
|
| 13154 |
+
|
| 13155 |
+
.eael-pricing-content-align-right .eael-pricing {
|
| 13156 |
+
text-align: right;
|
| 13157 |
+
}
|
| 13158 |
+
|
| 13159 |
+
.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .price-tag {
|
| 13160 |
+
padding-left: 45px;
|
| 13161 |
+
}
|
| 13162 |
+
|
| 13163 |
+
.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .price-tag:before {
|
| 13164 |
+
left: 30px;
|
| 13165 |
+
}
|
| 13166 |
+
|
| 13167 |
+
.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .eael-pricing-tag {
|
| 13168 |
+
padding-right: 30px;
|
| 13169 |
+
}
|
| 13170 |
+
|
| 13171 |
+
.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .header,
|
| 13172 |
+
.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .eael-pricing-icon,
|
| 13173 |
+
.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .footer,
|
| 13174 |
+
.eael-pricing-content-align-left .eael-pricing.style-4 .eael-pricing-item .header,
|
| 13175 |
+
.eael-pricing-content-align-left .eael-pricing.style-4 .eael-pricing-item .footer {
|
| 13176 |
+
padding-left: 30px;
|
| 13177 |
+
padding-right: 30px;
|
| 13178 |
+
}
|
| 13179 |
+
|
| 13180 |
+
.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .header,
|
| 13181 |
+
.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .eael-pricing-icon,
|
| 13182 |
+
.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .footer,
|
| 13183 |
+
.eael-pricing-content-align-right .eael-pricing.style-4 .eael-pricing-item .header,
|
| 13184 |
+
.eael-pricing-content-align-right .eael-pricing.style-4 .eael-pricing-item .footer {
|
| 13185 |
+
padding-right: 30px;
|
| 13186 |
+
padding-left: 30px;
|
| 13187 |
+
}
|
| 13188 |
+
|
| 13189 |
+
.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .body ul li,
|
| 13190 |
+
.eael-pricing-content-align-left .eael-pricing.style-4 .eael-pricing-item .body ul li {
|
| 13191 |
+
padding-left: 30px;
|
| 13192 |
+
}
|
| 13193 |
+
|
| 13194 |
+
.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .body ul li,
|
| 13195 |
+
.eael-pricing-content-align-right .eael-pricing.style-4 .eael-pricing-item .body ul li {
|
| 13196 |
+
padding-right: 30px;
|
| 13197 |
+
}
|
| 13198 |
+
|
| 13199 |
+
.eael-pricing-content-align-left .eael-pricing.style-3 .eael-pricing-item .header:after {
|
| 13200 |
+
-webkit-transform: translateX(-80%);
|
| 13201 |
+
-ms-transform: translateX(-80%);
|
| 13202 |
+
transform: translateX(-80%);
|
| 13203 |
+
}
|
| 13204 |
+
|
| 13205 |
+
.eael-pricing-content-align-right .eael-pricing.style-3 .eael-pricing-item .header:after {
|
| 13206 |
+
-webkit-transform: translateX(80%);
|
| 13207 |
+
-ms-transform: translateX(80%);
|
| 13208 |
+
transform: translateX(80%);
|
| 13209 |
+
}
|
| 13210 |
+
|
| 13211 |
+
.eael-pricing-content-align-left .eael-pricing.style-3 .eael-pricing-item:hover .header:after,
|
| 13212 |
+
.eael-pricing-content-align-right .eael-pricing.style-3 .eael-pricing-item:hover .header:after {
|
| 13213 |
+
-webkit-transform: translateX(0%);
|
| 13214 |
+
-ms-transform: translateX(0%);
|
| 13215 |
+
transform: translateX(0%);
|
| 13216 |
+
}
|
| 13217 |
+
|
| 13218 |
+
.eael-pricing-content-align-left .eael-pricing.style-1 .eael-pricing-item .header:after,
|
| 13219 |
+
.eael-pricing-content-align-right .eael-pricing.style-1 .eael-pricing-item .header:after,
|
| 13220 |
+
.eael-pricing-content-align-left .eael-pricing.style-1 .eael-pricing-item .eael-pricing-tag:after,
|
| 13221 |
+
.eael-pricing-content-align-right .eael-pricing.style-1 .eael-pricing-item .eael-pricing-tag:after,
|
| 13222 |
+
.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .eael-pricing-tag:after,
|
| 13223 |
+
.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .eael-pricing-tag:after {
|
| 13224 |
+
margin: 0;
|
| 13225 |
+
width: 100%;
|
| 13226 |
+
}
|
| 13227 |
+
|
| 13228 |
+
/*--- Button Alignment ---*/
|
| 13229 |
+
.eael-pricing-button-align-right .eael-pricing.style-1 .footer,
|
| 13230 |
+
.eael-pricing-button-align-right .eael-pricing.style-2 .footer,
|
| 13231 |
+
.eael-pricing-button-align-right .eael-pricing.style-3 .footer,
|
| 13232 |
+
.eael-pricing-button-align-right .eael-pricing.style-4 .footer {
|
| 13233 |
+
text-align: right;
|
| 13234 |
+
}
|
| 13235 |
+
|
| 13236 |
+
.eael-pricing-button-align-center .eael-pricing.style-1 .footer,
|
| 13237 |
+
.eael-pricing-button-align-center .eael-pricing.style-2 .footer,
|
| 13238 |
+
.eael-pricing-button-align-center .eael-pricing.style-3 .footer,
|
| 13239 |
+
.eael-pricing-button-align-center .eael-pricing.style-4 .footer {
|
| 13240 |
+
text-align: center;
|
| 13241 |
+
}
|
| 13242 |
+
|
| 13243 |
+
.eael-pricing-button-align-left .eael-pricing.style-1 .footer,
|
| 13244 |
+
.eael-pricing-button-align-left .eael-pricing.style-2 .footer,
|
| 13245 |
+
.eael-pricing-button-align-left .eael-pricing.style-3 .footer,
|
| 13246 |
+
.eael-pricing-button-align-left .eael-pricing.style-4 .footer {
|
| 13247 |
+
text-align: left;
|
| 13248 |
+
}
|
| 13249 |
+
|
| 13250 |
+
.eael-pricing-content-align-center.eael-pricing-button-align-right .eael-pricing.style-2 .footer,
|
| 13251 |
+
.eael-pricing-content-align-center.eael-pricing-button-align-right .eael-pricing.style-4 .footer {
|
| 13252 |
+
padding-right: 30px;
|
| 13253 |
+
}
|
| 13254 |
+
|
| 13255 |
+
.eael-pricing-content-align-center.eael-pricing-button-align-left .eael-pricing.style-2 .footer,
|
| 13256 |
+
.eael-pricing-content-align-center.eael-pricing-button-align-left .eael-pricing.style-4 .footer {
|
| 13257 |
+
padding-left: 30px;
|
| 13258 |
+
}
|
| 13259 |
+
|
| 13260 |
+
/*--- Only In Pro Alert ---*/
|
| 13261 |
+
.only-in-pro {
|
| 13262 |
+
width: 100%;
|
| 13263 |
+
-webkit-display: flex;
|
| 13264 |
+
display: -webkit-box;
|
| 13265 |
+
display: -ms-flexbox;
|
| 13266 |
+
display: flex;
|
| 13267 |
+
-webkit-align-items: center;
|
| 13268 |
+
-webkit-box-align: center;
|
| 13269 |
+
-ms-flex-align: center;
|
| 13270 |
+
align-items: center;
|
| 13271 |
+
-webkit-justify-content: center;
|
| 13272 |
+
-webkit-box-pack: center;
|
| 13273 |
+
-ms-flex-pack: center;
|
| 13274 |
+
justify-content: center;
|
| 13275 |
+
padding: 15px;
|
| 13276 |
+
min-width: 200px;
|
| 13277 |
+
background: #EF5350;
|
| 13278 |
+
color: #fff;
|
| 13279 |
+
text-align: center;
|
| 13280 |
+
}
|
| 13281 |
+
|
| 13282 |
+
.only-in-pro .title {
|
| 13283 |
+
font-family: 'Roboto', sans-serif;
|
| 13284 |
+
font-size: 24px;
|
| 13285 |
+
line-height: 40px;
|
| 13286 |
+
margin: 0px;
|
| 13287 |
+
}
|
| 13288 |
+
|
| 13289 |
+
/*--- Pricing Table Tooltip ---*/
|
| 13290 |
+
div.tooltipster-sidetip.tooltipster-base.tooltipster-right .tooltipster-arrow {
|
| 13291 |
+
position: absolute;
|
| 13292 |
+
top: 50%;
|
| 13293 |
+
}
|
| 13294 |
+
|
| 13295 |
+
div.tooltipster-sidetip.tooltipster-top div.tooltipster-box {
|
| 13296 |
+
margin-bottom: 0px !important;
|
| 13297 |
+
}
|
| 13298 |
+
|
| 13299 |
+
div.tooltipster-sidetip.tooltipster-bottom div.tooltipster-box {
|
| 13300 |
+
margin-top: 0px !important;
|
| 13301 |
+
}
|
| 13302 |
+
|
| 13303 |
+
.tooltipster-base.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
|
| 13304 |
+
top: auto;
|
| 13305 |
+
bottom: -8px;
|
| 13306 |
+
}
|
| 13307 |
+
|
| 13308 |
+
div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
|
| 13309 |
+
top: -8px;
|
| 13310 |
+
bottom: auto;
|
| 13311 |
+
}
|
| 13312 |
+
|
| 13313 |
+
@media only screen and (max-width: 480px) {
|
| 13314 |
+
.eael-pricing.style-1 .eael-pricing-item .price-tag {
|
| 13315 |
+
display: block;
|
| 13316 |
+
}
|
| 13317 |
+
}
|
| 13318 |
+
|
| 13319 |
+
/*--------------------------*/
|
| 13320 |
+
/* 09. Product Styles
|
| 13321 |
+
/*--------------------------*/
|
| 13322 |
+
.eael-product-grid .woocommerce ul.products,
|
| 13323 |
+
.eael-post-grid .woocommerce ul.products {
|
| 13324 |
+
display: grid;
|
| 13325 |
+
grid-gap: 25px;
|
| 13326 |
+
margin: 0 !important;
|
| 13327 |
+
padding: 0 !important;
|
| 13328 |
+
}
|
| 13329 |
+
.eael-product-grid .woocommerce ul.products:before, .eael-product-grid .woocommerce ul.products:after,
|
| 13330 |
+
.eael-post-grid .woocommerce ul.products:before,
|
| 13331 |
+
.eael-post-grid .woocommerce ul.products:after {
|
| 13332 |
+
display: none;
|
| 13333 |
+
}
|
| 13334 |
+
.eael-product-grid .woocommerce ul.products .product,
|
| 13335 |
+
.eael-post-grid .woocommerce ul.products .product {
|
| 13336 |
+
width: 100%;
|
| 13337 |
+
margin: 0;
|
| 13338 |
+
padding: 0;
|
| 13339 |
+
}
|
| 13340 |
+
.eael-product-grid .woocommerce ul.products.eael-product-columns-1,
|
| 13341 |
+
.eael-post-grid .woocommerce ul.products.eael-product-columns-1 {
|
| 13342 |
+
grid-template-columns: 100%;
|
| 13343 |
+
}
|
| 13344 |
+
.eael-product-grid .woocommerce ul.products.eael-product-columns-2,
|
| 13345 |
+
.eael-post-grid .woocommerce ul.products.eael-product-columns-2 {
|
| 13346 |
+
grid-template-columns: repeat(2, 1fr);
|
| 13347 |
+
}
|
| 13348 |
+
@media screen and (max-width: 480px) {
|
| 13349 |
+
.eael-product-grid .woocommerce ul.products.eael-product-columns-2,
|
| 13350 |
+
.eael-post-grid .woocommerce ul.products.eael-product-columns-2 {
|
| 13351 |
+
grid-template-columns: repeat(1, 1fr);
|
| 13352 |
+
}
|
| 13353 |
+
}
|
| 13354 |
+
.eael-product-grid .woocommerce ul.products.eael-product-columns-3,
|
| 13355 |
+
.eael-post-grid .woocommerce ul.products.eael-product-columns-3 {
|
| 13356 |
+
grid-template-columns: repeat(3, 1fr);
|
| 13357 |
+
}
|
| 13358 |
+
@media screen and (max-width: 767px) {
|
| 13359 |
+
.eael-product-grid .woocommerce ul.products.eael-product-columns-3,
|
| 13360 |
+
.eael-post-grid .woocommerce ul.products.eael-product-columns-3 {
|
| 13361 |
+
grid-template-columns: repeat(2, 1fr);
|
| 13362 |
+
}
|
| 13363 |
+
}
|
| 13364 |
+
@media screen and (max-width: 480px) {
|
| 13365 |
+
.eael-product-grid .woocommerce ul.products.eael-product-columns-3,
|
| 13366 |
+
.eael-post-grid .woocommerce ul.products.eael-product-columns-3 {
|
| 13367 |
+
grid-template-columns: repeat(1, 1fr);
|
| 13368 |
+
}
|
| 13369 |
+
}
|
| 13370 |
+
.eael-product-grid .woocommerce ul.products.eael-product-columns-4,
|
| 13371 |
+
.eael-post-grid .woocommerce ul.products.eael-product-columns-4 {
|
| 13372 |
+
grid-template-columns: repeat(4, 1fr);
|
| 13373 |
+
}
|
| 13374 |
+
@media screen and (max-width: 767px) {
|
| 13375 |
+
.eael-product-grid .woocommerce ul.products.eael-product-columns-4,
|
| 13376 |
+
.eael-post-grid .woocommerce ul.products.eael-product-columns-4 {
|
| 13377 |
+
grid-template-columns: repeat(2, 1fr);
|
| 13378 |
+
}
|
| 13379 |
+
}
|
| 13380 |
+
@media screen and (max-width: 480px) {
|
| 13381 |
+
.eael-product-grid .woocommerce ul.products.eael-product-columns-4,
|
| 13382 |
+
.eael-post-grid .woocommerce ul.products.eael-product-columns-4 {
|
| 13383 |
+
grid-template-columns: repeat(1, 1fr);
|
| 13384 |
+
}
|
| 13385 |
+
}
|
| 13386 |
+
.eael-product-grid .woocommerce ul.products.eael-product-columns-5,
|
| 13387 |
+
.eael-post-grid .woocommerce ul.products.eael-product-columns-5 {
|
| 13388 |
+
grid-template-columns: repeat(5, 1fr);
|
| 13389 |
+
}
|
| 13390 |
+
@media screen and (max-width: 767px) {
|
| 13391 |
+
.eael-product-grid .woocommerce ul.products.eael-product-columns-5,
|
| 13392 |
+
.eael-post-grid .woocommerce ul.products.eael-product-columns-5 {
|
| 13393 |
+
grid-template-columns: repeat(2, 1fr);
|
| 13394 |
+
}
|
| 13395 |
+
}
|
| 13396 |
+
@media screen and (max-width: 480px) {
|
| 13397 |
+
.eael-product-grid .woocommerce ul.products.eael-product-columns-5,
|
| 13398 |
+
.eael-post-grid .woocommerce ul.products.eael-product-columns-5 {
|
| 13399 |
+
grid-template-columns: repeat(1, 1fr);
|
| 13400 |
+
}
|
| 13401 |
+
}
|
| 13402 |
+
.eael-product-grid .woocommerce ul.products.eael-product-columns-6,
|
| 13403 |
+
.eael-post-grid .woocommerce ul.products.eael-product-columns-6 {
|
| 13404 |
+
grid-template-columns: repeat(6, 1fr);
|
| 13405 |
+
}
|
| 13406 |
+
@media screen and (max-width: 767px) {
|
| 13407 |
+
.eael-product-grid .woocommerce ul.products.eael-product-columns-6,
|
| 13408 |
+
.eael-post-grid .woocommerce ul.products.eael-product-columns-6 {
|
| 13409 |
+
grid-template-columns: repeat(2, 1fr);
|
| 13410 |
+
}
|
| 13411 |
+
}
|
| 13412 |
+
@media screen and (max-width: 480px) {
|
| 13413 |
+
.eael-product-grid .woocommerce ul.products.eael-product-columns-6,
|
| 13414 |
+
.eael-post-grid .woocommerce ul.products.eael-product-columns-6 {
|
| 13415 |
+
grid-template-columns: repeat(1, 1fr);
|
| 13416 |
+
}
|
| 13417 |
+
}
|
| 13418 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product,
|
| 13419 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product,
|
| 13420 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product {
|
| 13421 |
+
position: relative;
|
| 13422 |
+
float: left;
|
| 13423 |
+
overflow: hidden;
|
| 13424 |
+
text-align: center;
|
| 13425 |
+
padding: 0;
|
| 13426 |
+
border-radius: 0;
|
| 13427 |
+
background-color: #fff;
|
| 13428 |
+
-webkit-box-shadow: none;
|
| 13429 |
+
box-shadow: none;
|
| 13430 |
+
}
|
| 13431 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a,
|
| 13432 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a,
|
| 13433 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a {
|
| 13434 |
+
text-decoration: none;
|
| 13435 |
+
}
|
| 13436 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a:hover, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a:hover,
|
| 13437 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a:hover,
|
| 13438 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a:hover {
|
| 13439 |
+
outline: none;
|
| 13440 |
+
-webkit-box-shadow: none;
|
| 13441 |
+
box-shadow: none;
|
| 13442 |
+
}
|
| 13443 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product img, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product img,
|
| 13444 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product img,
|
| 13445 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product img {
|
| 13446 |
+
width: 100%;
|
| 13447 |
+
height: auto;
|
| 13448 |
+
-webkit-backface-visibility: hidden;
|
| 13449 |
+
backface-visibility: hidden;
|
| 13450 |
+
}
|
| 13451 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .woocommerce-loop-product__title, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .woocommerce-loop-product__title,
|
| 13452 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .woocommerce-loop-product__title,
|
| 13453 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .woocommerce-loop-product__title {
|
| 13454 |
+
font-size: 16px;
|
| 13455 |
+
font-weight: 700;
|
| 13456 |
+
line-height: 1;
|
| 13457 |
+
color: #333;
|
| 13458 |
+
margin: 25px 0 12px;
|
| 13459 |
+
padding: 0;
|
| 13460 |
+
}
|
| 13461 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .onsale, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .onsale,
|
| 13462 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .onsale,
|
| 13463 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .onsale {
|
| 13464 |
+
display: block;
|
| 13465 |
+
line-height: 170px;
|
| 13466 |
+
font-size: 13px;
|
| 13467 |
+
text-align: center;
|
| 13468 |
+
letter-spacing: 0;
|
| 13469 |
+
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6);
|
| 13470 |
+
text-transform: uppercase;
|
| 13471 |
+
color: #fff;
|
| 13472 |
+
background-color: #ff2a13;
|
| 13473 |
+
border-radius: 0;
|
| 13474 |
+
border: none;
|
| 13475 |
+
-webkit-box-shadow: none;
|
| 13476 |
+
box-shadow: none;
|
| 13477 |
+
position: absolute;
|
| 13478 |
+
height: 100px;
|
| 13479 |
+
width: 200px;
|
| 13480 |
+
z-index: 1;
|
| 13481 |
+
left: -100px;
|
| 13482 |
+
top: -50px;
|
| 13483 |
+
right: auto;
|
| 13484 |
+
margin: 0;
|
| 13485 |
+
padding: 0;
|
| 13486 |
+
-webkit-transform: rotate(-45deg);
|
| 13487 |
+
-ms-transform: rotate(-45deg);
|
| 13488 |
+
transform: rotate(-45deg);
|
| 13489 |
+
}
|
| 13490 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price,
|
| 13491 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price,
|
| 13492 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .price {
|
| 13493 |
+
font-size: 14px;
|
| 13494 |
+
margin-bottom: 0;
|
| 13495 |
+
}
|
| 13496 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price del, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price del,
|
| 13497 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price del,
|
| 13498 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .price del {
|
| 13499 |
+
opacity: 0.5;
|
| 13500 |
+
display: inline-block;
|
| 13501 |
+
}
|
| 13502 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price ins, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price ins,
|
| 13503 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price ins,
|
| 13504 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .price ins {
|
| 13505 |
+
font-weight: 400;
|
| 13506 |
+
background-color: transparent;
|
| 13507 |
+
color: #ff2a13;
|
| 13508 |
+
}
|
| 13509 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .star-rating, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .star-rating,
|
| 13510 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .star-rating,
|
| 13511 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .star-rating {
|
| 13512 |
+
display: block;
|
| 13513 |
+
float: none;
|
| 13514 |
+
font-size: 14px;
|
| 13515 |
+
margin: 10px auto;
|
| 13516 |
+
}
|
| 13517 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,
|
| 13518 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button,
|
| 13519 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button {
|
| 13520 |
+
display: block;
|
| 13521 |
+
font-size: 14px;
|
| 13522 |
+
font-weight: 400;
|
| 13523 |
+
line-height: 38px;
|
| 13524 |
+
text-align: center;
|
| 13525 |
+
text-transform: uppercase;
|
| 13526 |
+
color: #fff;
|
| 13527 |
+
background-color: #333;
|
| 13528 |
+
padding: 0;
|
| 13529 |
+
margin: 15px;
|
| 13530 |
+
border-radius: 0;
|
| 13531 |
+
}
|
| 13532 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button:focus,
|
| 13533 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus,
|
| 13534 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button:focus {
|
| 13535 |
+
outline: none;
|
| 13536 |
+
}
|
| 13537 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a.added_to_cart, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart,
|
| 13538 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a.added_to_cart,
|
| 13539 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart {
|
| 13540 |
+
display: block;
|
| 13541 |
+
margin: 0 0 15px 0;
|
| 13542 |
+
padding: 0;
|
| 13543 |
+
font-size: 14px;
|
| 13544 |
+
line-height: 1;
|
| 13545 |
+
text-transform: capitalize;
|
| 13546 |
+
color: #333;
|
| 13547 |
+
background-color: transparent;
|
| 13548 |
+
}
|
| 13549 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product,
|
| 13550 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product {
|
| 13551 |
+
border: 1px solid #eee;
|
| 13552 |
+
}
|
| 13553 |
+
.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product,
|
| 13554 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product {
|
| 13555 |
+
border: 1px solid transparent;
|
| 13556 |
+
}
|
| 13557 |
+
.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,
|
| 13558 |
+
.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart,
|
| 13559 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,
|
| 13560 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart {
|
| 13561 |
+
visibility: hidden;
|
| 13562 |
+
-webkit-transition: none;
|
| 13563 |
+
-o-transition: none;
|
| 13564 |
+
transition: none;
|
| 13565 |
+
}
|
| 13566 |
+
.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover,
|
| 13567 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover {
|
| 13568 |
+
border: 1px solid #eee;
|
| 13569 |
+
}
|
| 13570 |
+
.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button.add_to_cart_button,
|
| 13571 |
+
.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover a.added_to_cart,
|
| 13572 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button.add_to_cart_button,
|
| 13573 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover a.added_to_cart {
|
| 13574 |
+
visibility: visible;
|
| 13575 |
+
}
|
| 13576 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product,
|
| 13577 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product {
|
| 13578 |
+
position: relative;
|
| 13579 |
+
float: left;
|
| 13580 |
+
overflow: hidden;
|
| 13581 |
+
text-align: center;
|
| 13582 |
+
padding: 0 0 15px 0;
|
| 13583 |
+
border-radius: 0;
|
| 13584 |
+
background-color: #fff;
|
| 13585 |
+
-webkit-box-shadow: none;
|
| 13586 |
+
box-shadow: none;
|
| 13587 |
+
}
|
| 13588 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product a,
|
| 13589 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product a {
|
| 13590 |
+
text-decoration: none;
|
| 13591 |
+
}
|
| 13592 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product a:hover,
|
| 13593 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product a:hover {
|
| 13594 |
+
outline: none;
|
| 13595 |
+
-webkit-box-shadow: none;
|
| 13596 |
+
box-shadow: none;
|
| 13597 |
+
}
|
| 13598 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product img,
|
| 13599 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product img {
|
| 13600 |
+
width: 100%;
|
| 13601 |
+
height: auto;
|
| 13602 |
+
margin: 0;
|
| 13603 |
+
-webkit-backface-visibility: hidden;
|
| 13604 |
+
backface-visibility: hidden;
|
| 13605 |
+
}
|
| 13606 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay,
|
| 13607 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay {
|
| 13608 |
+
position: relative;
|
| 13609 |
+
overflow: hidden;
|
| 13610 |
+
line-height: 0;
|
| 13611 |
+
}
|
| 13612 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .button-wrap,
|
| 13613 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .button-wrap {
|
| 13614 |
+
position: absolute;
|
| 13615 |
+
top: 50%;
|
| 13616 |
+
left: 0;
|
| 13617 |
+
right: 0;
|
| 13618 |
+
text-align: center;
|
| 13619 |
+
-webkit-transform: translateY(-50%);
|
| 13620 |
+
-ms-transform: translateY(-50%);
|
| 13621 |
+
transform: translateY(-50%);
|
| 13622 |
+
}
|
| 13623 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link,
|
| 13624 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,
|
| 13625 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart,
|
| 13626 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link,
|
| 13627 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,
|
| 13628 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart {
|
| 13629 |
+
display: inline-block;
|
| 13630 |
+
font-size: 14px;
|
| 13631 |
+
line-height: 38px;
|
| 13632 |
+
text-align: center;
|
| 13633 |
+
color: #fff;
|
| 13634 |
+
background-color: #333;
|
| 13635 |
+
width: 38px;
|
| 13636 |
+
height: 38px;
|
| 13637 |
+
border-style: none;
|
| 13638 |
+
border-radius: 50%;
|
| 13639 |
+
vertical-align: middle;
|
| 13640 |
+
padding: 0;
|
| 13641 |
+
margin: 0 5px;
|
| 13642 |
+
-webkit-transform: translateY(20px);
|
| 13643 |
+
-ms-transform: translateY(20px);
|
| 13644 |
+
transform: translateY(20px);
|
| 13645 |
+
opacity: 0;
|
| 13646 |
+
-webkit-transition: opacity 300ms, -webkit-transform 200ms;
|
| 13647 |
+
transition: opacity 300ms, -webkit-transform 200ms;
|
| 13648 |
+
-o-transition: transform 200ms, opacity 300ms;
|
| 13649 |
+
transition: transform 200ms, opacity 300ms;
|
| 13650 |
+
transition: transform 200ms, opacity 300ms, -webkit-transform 200ms;
|
| 13651 |
+
}
|
| 13652 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link:focus,
|
| 13653 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:focus,
|
| 13654 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:focus,
|
| 13655 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link:focus,
|
| 13656 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:focus,
|
| 13657 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:focus {
|
| 13658 |
+
outline: none;
|
| 13659 |
+
}
|
| 13660 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,
|
| 13661 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button {
|
| 13662 |
+
font-size: 0;
|
| 13663 |
+
}
|
| 13664 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:before,
|
| 13665 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:before {
|
| 13666 |
+
display: none;
|
| 13667 |
+
}
|
| 13668 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:after,
|
| 13669 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:after {
|
| 13670 |
+
content: "\f217";
|
| 13671 |
+
font: normal normal normal 14px/1 FontAwesome;
|
| 13672 |
+
font-size: 14px;
|
| 13673 |
+
line-height: 38px;
|
| 13674 |
+
text-rendering: auto;
|
| 13675 |
+
-webkit-font-smoothing: antialiased;
|
| 13676 |
+
vertical-align: middle;
|
| 13677 |
+
margin: 0;
|
| 13678 |
+
padding: 0;
|
| 13679 |
+
}
|
| 13680 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:before,
|
| 13681 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:before {
|
| 13682 |
+
display: none;
|
| 13683 |
+
}
|
| 13684 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:after,
|
| 13685 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:after {
|
| 13686 |
+
content: "\f110";
|
| 13687 |
+
display: inline-block;
|
| 13688 |
+
font: normal normal normal 14px/1 FontAwesome;
|
| 13689 |
+
font-size: 14px;
|
| 13690 |
+
line-height: 38px;
|
| 13691 |
+
color: #fff;
|
| 13692 |
+
height: auto;
|
| 13693 |
+
width: auto;
|
| 13694 |
+
position: relative;
|
| 13695 |
+
top: 0;
|
| 13696 |
+
left: 0;
|
| 13697 |
+
margin: 0;
|
| 13698 |
+
padding: 0;
|
| 13699 |
+
}
|
| 13700 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart,
|
| 13701 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart {
|
| 13702 |
+
font-size: 0;
|
| 13703 |
+
}
|
| 13704 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:after,
|
| 13705 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:after {
|
| 13706 |
+
content: "\f06e";
|
| 13707 |
+
font: normal normal normal 14px/1 FontAwesome;
|
| 13708 |
+
font-size: 14px;
|
| 13709 |
+
line-height: 38px;
|
| 13710 |
+
color: #fff;
|
| 13711 |
+
text-rendering: auto;
|
| 13712 |
+
-webkit-font-smoothing: antialiased;
|
| 13713 |
+
vertical-align: middle;
|
| 13714 |
+
margin: 0;
|
| 13715 |
+
padding: 0;
|
| 13716 |
+
}
|
| 13717 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .woocommerce-loop-product__title,
|
| 13718 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .woocommerce-loop-product__title {
|
| 13719 |
+
font-size: 16px;
|
| 13720 |
+
font-weight: 700;
|
| 13721 |
+
line-height: 1;
|
| 13722 |
+
color: #333;
|
| 13723 |
+
margin: 25px 0 12px;
|
| 13724 |
+
padding: 0;
|
| 13725 |
+
}
|
| 13726 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .onsale,
|
| 13727 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .onsale {
|
| 13728 |
+
display: block;
|
| 13729 |
+
line-height: 170px;
|
| 13730 |
+
font-size: 13px;
|
| 13731 |
+
text-align: center;
|
| 13732 |
+
letter-spacing: 0;
|
| 13733 |
+
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6);
|
| 13734 |
+
text-transform: uppercase;
|
| 13735 |
+
color: #fff;
|
| 13736 |
+
background-color: #ff2a13;
|
| 13737 |
+
border-radius: 0;
|
| 13738 |
+
border: none;
|
| 13739 |
+
-webkit-box-shadow: none;
|
| 13740 |
+
box-shadow: none;
|
| 13741 |
+
position: absolute;
|
| 13742 |
+
height: 100px;
|
| 13743 |
+
width: 200px;
|
| 13744 |
+
z-index: 1;
|
| 13745 |
+
left: -100px;
|
| 13746 |
+
top: -50px;
|
| 13747 |
+
right: auto;
|
| 13748 |
+
margin: 0;
|
| 13749 |
+
padding: 0;
|
| 13750 |
+
-webkit-transform: rotate(-45deg);
|
| 13751 |
+
-ms-transform: rotate(-45deg);
|
| 13752 |
+
transform: rotate(-45deg);
|
| 13753 |
+
}
|
| 13754 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price,
|
| 13755 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price {
|
| 13756 |
+
font-size: 14px;
|
| 13757 |
+
margin-bottom: 0;
|
| 13758 |
+
}
|
| 13759 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price del,
|
| 13760 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price del {
|
| 13761 |
+
opacity: 0.5;
|
| 13762 |
+
display: inline-block;
|
| 13763 |
+
}
|
| 13764 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price ins,
|
| 13765 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price ins {
|
| 13766 |
+
font-weight: 400;
|
| 13767 |
+
background-color: transparent;
|
| 13768 |
+
color: #ff2a13;
|
| 13769 |
+
}
|
| 13770 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .star-rating,
|
| 13771 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .star-rating {
|
| 13772 |
+
display: block;
|
| 13773 |
+
float: none;
|
| 13774 |
+
font-size: 14px;
|
| 13775 |
+
margin: 10px auto;
|
| 13776 |
+
}
|
| 13777 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay a,
|
| 13778 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .add_to_cart_button,
|
| 13779 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay a,
|
| 13780 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .add_to_cart_button {
|
| 13781 |
+
opacity: 1;
|
| 13782 |
+
-webkit-transform: translateY(0);
|
| 13783 |
+
-ms-transform: translateY(0);
|
| 13784 |
+
transform: translateY(0);
|
| 13785 |
+
}
|
| 13786 |
+
|
| 13787 |
+
@-webkit-keyframes animateStripe {
|
| 13788 |
+
0% {
|
| 13789 |
+
-webkit-transform: translate(0, 0);
|
| 13790 |
+
transform: translate(0, 0);
|
| 13791 |
+
}
|
| 13792 |
+
100% {
|
| 13793 |
+
-webkit-transform: translate(35px, 0);
|
| 13794 |
+
transform: translate(35px, 0);
|
| 13795 |
+
}
|
| 13796 |
+
}
|
| 13797 |
+
@keyframes animateStripe {
|
| 13798 |
+
0% {
|
| 13799 |
+
-webkit-transform: translate(0, 0);
|
| 13800 |
+
transform: translate(0, 0);
|
| 13801 |
+
}
|
| 13802 |
+
100% {
|
| 13803 |
+
-webkit-transform: translate(35px, 0);
|
| 13804 |
+
transform: translate(35px, 0);
|
| 13805 |
+
}
|
| 13806 |
+
}
|
| 13807 |
+
@-webkit-keyframes animateStripeRTL {
|
| 13808 |
+
0% {
|
| 13809 |
+
-webkit-transform: translate(0, 0);
|
| 13810 |
+
transform: translate(0, 0);
|
| 13811 |
+
}
|
| 13812 |
+
100% {
|
| 13813 |
+
-webkit-transform: translate(-35px, 0);
|
| 13814 |
+
transform: translate(-35px, 0);
|
| 13815 |
+
}
|
| 13816 |
+
}
|
| 13817 |
+
@keyframes animateStripeRTL {
|
| 13818 |
+
0% {
|
| 13819 |
+
-webkit-transform: translate(0, 0);
|
| 13820 |
+
transform: translate(0, 0);
|
| 13821 |
+
}
|
| 13822 |
+
100% {
|
| 13823 |
+
-webkit-transform: translate(-35px, 0);
|
| 13824 |
+
transform: translate(-35px, 0);
|
| 13825 |
+
}
|
| 13826 |
+
}
|
| 13827 |
+
.eael-progressbar {
|
| 13828 |
+
position: relative;
|
| 13829 |
+
}
|
| 13830 |
+
|
| 13831 |
+
.eael-progressbar-title {
|
| 13832 |
+
font-size: 20px;
|
| 13833 |
+
font-weight: 400;
|
| 13834 |
+
}
|
| 13835 |
+
|
| 13836 |
+
.eael-progressbar-line {
|
| 13837 |
+
position: relative;
|
| 13838 |
+
display: block;
|
| 13839 |
+
width: 100%;
|
| 13840 |
+
height: 12px;
|
| 13841 |
+
background-color: #eeeeee;
|
| 13842 |
+
}
|
| 13843 |
+
.eael-progressbar-line .eael-progressbar-count-wrap {
|
| 13844 |
+
position: absolute;
|
| 13845 |
+
right: 0;
|
| 13846 |
+
bottom: calc(100% + 5px);
|
| 13847 |
+
font-size: 16px;
|
| 13848 |
+
font-weight: 400;
|
| 13849 |
+
line-height: 1;
|
| 13850 |
+
}
|
| 13851 |
+
|
| 13852 |
+
.eael-progressbar-line-fill {
|
| 13853 |
+
display: inline-block;
|
| 13854 |
+
position: absolute;
|
| 13855 |
+
top: 50%;
|
| 13856 |
+
left: 0;
|
| 13857 |
+
width: 0;
|
| 13858 |
+
height: 12px;
|
| 13859 |
+
background-color: #000000;
|
| 13860 |
+
-webkit-transform: translateY(-50%);
|
| 13861 |
+
-ms-transform: translateY(-50%);
|
| 13862 |
+
transform: translateY(-50%);
|
| 13863 |
+
-webkit-transition: width 1500ms linear;
|
| 13864 |
+
-o-transition: width 1500ms linear;
|
| 13865 |
+
transition: width 1500ms linear;
|
| 13866 |
+
overflow: hidden;
|
| 13867 |
+
}
|
| 13868 |
+
|
| 13869 |
+
.eael-progressbar-circle {
|
| 13870 |
+
position: relative;
|
| 13871 |
+
width: 200px;
|
| 13872 |
+
height: 200px;
|
| 13873 |
+
}
|
| 13874 |
+
.eael-progressbar-circle .eael-progressbar-title {
|
| 13875 |
+
font-size: 16px;
|
| 13876 |
+
font-weight: 400;
|
| 13877 |
+
}
|
| 13878 |
+
.eael-progressbar-circle .eael-progressbar-count-wrap {
|
| 13879 |
+
font-size: 28px;
|
| 13880 |
+
font-weight: 700;
|
| 13881 |
+
}
|
| 13882 |
+
|
| 13883 |
+
.eael-progressbar-circle-shadow {
|
| 13884 |
+
width: 220px;
|
| 13885 |
+
height: 220px;
|
| 13886 |
+
padding: 10px;
|
| 13887 |
+
border-radius: 50%;
|
| 13888 |
+
}
|
| 13889 |
+
|
| 13890 |
+
.eael-progressbar-circle-pie {
|
| 13891 |
+
position: absolute;
|
| 13892 |
+
top: 0;
|
| 13893 |
+
left: 0;
|
| 13894 |
+
width: 100%;
|
| 13895 |
+
height: 100%;
|
| 13896 |
+
-webkit-clip-path: inset(0 0 0 50%);
|
| 13897 |
+
clip-path: inset(0 0 0 50%);
|
| 13898 |
+
}
|
| 13899 |
+
|
| 13900 |
+
.eael-progressbar-circle-inner {
|
| 13901 |
+
height: 100%;
|
| 13902 |
+
width: 100%;
|
| 13903 |
+
border-width: 12px;
|
| 13904 |
+
border-style: solid;
|
| 13905 |
+
border-color: #eeeeee;
|
| 13906 |
+
border-radius: 50%;
|
| 13907 |
+
}
|
| 13908 |
+
|
| 13909 |
+
.eael-progressbar-circle-half {
|
| 13910 |
+
position: absolute;
|
| 13911 |
+
left: 0;
|
| 13912 |
+
top: 0;
|
| 13913 |
+
height: 100%;
|
| 13914 |
+
width: 100%;
|
| 13915 |
+
border-width: 12px;
|
| 13916 |
+
border-style: solid;
|
| 13917 |
+
border-color: #000000;
|
| 13918 |
+
border-radius: 50%;
|
| 13919 |
+
-webkit-clip-path: inset(0 50% 0 0);
|
| 13920 |
+
clip-path: inset(0 50% 0 0);
|
| 13921 |
+
}
|
| 13922 |
+
|
| 13923 |
+
.eael-progressbar-circle-half-left {
|
| 13924 |
+
-webkit-transform: rotate(0deg);
|
| 13925 |
+
-ms-transform: rotate(0deg);
|
| 13926 |
+
transform: rotate(0deg);
|
| 13927 |
+
}
|
| 13928 |
+
|
| 13929 |
+
.eael-progressbar-circle-half-right {
|
| 13930 |
+
-webkit-transform: rotate(180deg);
|
| 13931 |
+
-ms-transform: rotate(180deg);
|
| 13932 |
+
transform: rotate(180deg);
|
| 13933 |
+
visibility: hidden;
|
| 13934 |
+
}
|
| 13935 |
+
|
| 13936 |
+
.eael-progressbar-circle-inner-content {
|
| 13937 |
+
position: absolute;
|
| 13938 |
+
top: 50%;
|
| 13939 |
+
width: 100%;
|
| 13940 |
+
-webkit-transform: translateY(-50%);
|
| 13941 |
+
-ms-transform: translateY(-50%);
|
| 13942 |
+
transform: translateY(-50%);
|
| 13943 |
+
text-align: center;
|
| 13944 |
+
}
|
| 13945 |
+
|
| 13946 |
+
.eael-progressbar-half-circle {
|
| 13947 |
+
position: relative;
|
| 13948 |
+
width: 200px;
|
| 13949 |
+
height: 100px;
|
| 13950 |
+
overflow: hidden;
|
| 13951 |
+
}
|
| 13952 |
+
.eael-progressbar-half-circle .eael-progressbar-circle-pie {
|
| 13953 |
+
-webkit-clip-path: inset(0 0 50% 0);
|
| 13954 |
+
clip-path: inset(0 0 50% 0);
|
| 13955 |
+
}
|
| 13956 |
+
.eael-progressbar-half-circle .eael-progressbar-circle-half {
|
| 13957 |
+
-webkit-clip-path: inset(50% 0 0 0);
|
| 13958 |
+
clip-path: inset(50% 0 0 0);
|
| 13959 |
+
-webkit-transform: rotate(0deg);
|
| 13960 |
+
-ms-transform: rotate(0deg);
|
| 13961 |
+
transform: rotate(0deg);
|
| 13962 |
+
-webkit-transition: -webkit-transform 1500ms linear;
|
| 13963 |
+
transition: -webkit-transform 1500ms linear;
|
| 13964 |
+
-o-transition: transform 1500ms linear;
|
| 13965 |
+
transition: transform 1500ms linear;
|
| 13966 |
+
transition: transform 1500ms linear, -webkit-transform 1500ms linear;
|
| 13967 |
+
}
|
| 13968 |
+
.eael-progressbar-half-circle .eael-progressbar-circle-inner-content {
|
| 13969 |
+
top: initial;
|
| 13970 |
+
bottom: 0;
|
| 13971 |
+
-webkit-transform: translateY(0);
|
| 13972 |
+
-ms-transform: translateY(0);
|
| 13973 |
+
transform: translateY(0);
|
| 13974 |
+
}
|
| 13975 |
+
.eael-progressbar-half-circle .eael-progressbar-title {
|
| 13976 |
+
font-size: 16px;
|
| 13977 |
+
font-weight: 400;
|
| 13978 |
+
}
|
| 13979 |
+
.eael-progressbar-half-circle .eael-progressbar-count-wrap {
|
| 13980 |
+
font-size: 28px;
|
| 13981 |
+
font-weight: 700;
|
| 13982 |
+
}
|
| 13983 |
+
|
| 13984 |
+
.eael-progressbar-half-circle-after {
|
| 13985 |
+
position: relative;
|
| 13986 |
+
font-size: 12px;
|
| 13987 |
+
font-weight: 400;
|
| 13988 |
+
clear: both;
|
| 13989 |
+
}
|
| 13990 |
+
|
| 13991 |
+
.eael-progressbar-postfix-label {
|
| 13992 |
+
float: right;
|
| 13993 |
+
}
|
| 13994 |
+
|
| 13995 |
+
.eael-progressbar-line-stripe .eael-progressbar-line-fill:after {
|
| 13996 |
+
content: '';
|
| 13997 |
+
position: absolute;
|
| 13998 |
+
top: 0;
|
| 13999 |
+
left: -35px;
|
| 14000 |
+
width: calc(100% + 70px);
|
| 14001 |
+
height: 100%;
|
| 14002 |
+
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
| 14003 |
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
| 14004 |
+
background-size: 35px 35px;
|
| 14005 |
+
}
|
| 14006 |
+
|
| 14007 |
+
.eael-progressbar-line-animate .eael-progressbar-line-fill:after {
|
| 14008 |
+
-webkit-animation: animateStripe 2s linear infinite;
|
| 14009 |
+
animation: animateStripe 2s linear infinite;
|
| 14010 |
+
}
|
| 14011 |
+
|
| 14012 |
+
.eael-progressbar-line-animate-rtl .eael-progressbar-line-fill:after {
|
| 14013 |
+
-webkit-animation: animateStripeRTL 2s linear infinite;
|
| 14014 |
+
animation: animateStripeRTL 2s linear infinite;
|
| 14015 |
+
}
|
| 14016 |
+
|
| 14017 |
+
.eael-progressbar-circle-wrap > div {
|
| 14018 |
+
margin: 0 auto;
|
| 14019 |
+
}
|
| 14020 |
+
|
| 14021 |
+
/*alignment*/
|
| 14022 |
+
.eael-progressbar-line-container.left,
|
| 14023 |
+
.eael-progressbar-circle-container.left > div,
|
| 14024 |
+
.eael-progressbar-box-container.left > div {
|
| 14025 |
+
margin: 0 auto 0 0;
|
| 14026 |
+
}
|
| 14027 |
+
|
| 14028 |
+
.eael-progressbar-line-container.center,
|
| 14029 |
+
.eael-progressbar-circle-container.center > div,
|
| 14030 |
+
.eael-progressbar-box-container.center > div {
|
| 14031 |
+
margin: 0 auto;
|
| 14032 |
+
}
|
| 14033 |
+
|
| 14034 |
+
.eael-progressbar-line-container.right,
|
| 14035 |
+
.eael-progressbar-circle-container.right > div,
|
| 14036 |
+
.eael-progressbar-box-container.right > div {
|
| 14037 |
+
margin: 0 0 0 auto;
|
| 14038 |
+
}
|
| 14039 |
+
|
| 14040 |
+
.eael-scroll-progress {
|
| 14041 |
+
width: 100%;
|
| 14042 |
+
position: fixed;
|
| 14043 |
+
top: 0;
|
| 14044 |
+
left: 0;
|
| 14045 |
+
height: 5px;
|
| 14046 |
+
z-index: 999;
|
| 14047 |
+
}
|
| 14048 |
+
.eael-scroll-progress.eael-scroll-progress-bottom {
|
| 14049 |
+
top: unset;
|
| 14050 |
+
bottom: 0;
|
| 14051 |
+
}
|
| 14052 |
+
.eael-scroll-progress .eael-scroll-progress-fill {
|
| 14053 |
+
height: 5px;
|
| 14054 |
+
background-color: #cfdd10;
|
| 14055 |
+
width: 0%;
|
| 14056 |
+
-webkit-transition: width 50ms ease;
|
| 14057 |
+
-o-transition: width 50ms ease;
|
| 14058 |
+
transition: width 50ms ease;
|
| 14059 |
+
}
|
| 14060 |
+
|
| 14061 |
+
/*----------------------------*/
|
| 14062 |
+
/* 07. Team Members Styles
|
| 14063 |
+
/*----------------------------*/
|
| 14064 |
+
.eael-team-item {
|
| 14065 |
+
overflow: hidden;
|
| 14066 |
+
position: relative;
|
| 14067 |
+
}
|
| 14068 |
+
|
| 14069 |
+
.team-avatar-rounded figure img {
|
| 14070 |
+
border-radius: 50%;
|
| 14071 |
+
height: auto;
|
| 14072 |
+
}
|
| 14073 |
+
|
| 14074 |
+
.eael-team-image > figure {
|
| 14075 |
+
margin: 0;
|
| 14076 |
+
padding: 0;
|
| 14077 |
+
}
|
| 14078 |
+
|
| 14079 |
+
.eael-team-image > figure img {
|
| 14080 |
+
display: block;
|
| 14081 |
+
margin: 0 auto;
|
| 14082 |
+
}
|
| 14083 |
+
|
| 14084 |
+
.eael-team-item .eael-team-content {
|
| 14085 |
+
padding: 10px;
|
| 14086 |
+
}
|
| 14087 |
+
|
| 14088 |
+
.eael-team-item .eael-team-member-name {
|
| 14089 |
+
font-size: 20px;
|
| 14090 |
+
font-weight: bold;
|
| 14091 |
+
letter-spacing: 0.05em;
|
| 14092 |
+
margin: 5px 0;
|
| 14093 |
+
text-transform: uppercase;
|
| 14094 |
+
}
|
| 14095 |
+
|
| 14096 |
+
.eael-team-item .eael-team-member-position {
|
| 14097 |
+
font-size: 14px;
|
| 14098 |
+
font-weight: normal;
|
| 14099 |
+
letter-spacing: 0.05em;
|
| 14100 |
+
margin: 5px 0 10px;
|
| 14101 |
+
text-transform: uppercase;
|
| 14102 |
+
}
|
| 14103 |
+
|
| 14104 |
+
.eael-team-item .eael-team-content,
|
| 14105 |
+
.eael-team-item .eael-team-content .eael-team-text {
|
| 14106 |
+
font-size: 14px;
|
| 14107 |
+
line-height: 1.5;
|
| 14108 |
+
}
|
| 14109 |
+
|
| 14110 |
+
.eael-team-content > ul {
|
| 14111 |
+
margin: 0;
|
| 14112 |
+
padding: 0;
|
| 14113 |
+
}
|
| 14114 |
+
|
| 14115 |
+
.eael-team-content li {
|
| 14116 |
+
display: inline-block;
|
| 14117 |
+
list-style: outside none none;
|
| 14118 |
+
margin-right: 10px;
|
| 14119 |
+
text-align: center;
|
| 14120 |
+
}
|
| 14121 |
+
|
| 14122 |
+
.eael-team-content li a {
|
| 14123 |
+
font-size: 2.5rem;
|
| 14124 |
+
}
|
| 14125 |
+
|
| 14126 |
+
.eael-team-align-left .eael-team-item .eael-team-member-name,
|
| 14127 |
+
.eael-team-align-left .eael-team-item .eael-team-member-position,
|
| 14128 |
+
.eael-team-align-left .eael-team-item .eael-team-text,
|
| 14129 |
+
.eael-team-align-left .eael-team-item .eael-team-content p,
|
| 14130 |
+
.eael-team-align-left .eael-team-item .eael-team-content ul,
|
| 14131 |
+
.eael-team-align-left .eael-team-item .eael-team-content li {
|
| 14132 |
+
text-align: left;
|
| 14133 |
+
}
|
| 14134 |
+
|
| 14135 |
+
.eael-team-align-right .eael-team-item .eael-team-member-name,
|
| 14136 |
+
.eael-team-align-right .eael-team-item .eael-team-member-position,
|
| 14137 |
+
.eael-team-align-right .eael-team-item .eael-team-text,
|
| 14138 |
+
.eael-team-align-right .eael-team-item .eael-team-content p,
|
| 14139 |
+
.eael-team-align-right .eael-team-item .eael-team-content ul,
|
| 14140 |
+
.eael-team-align-right .eael-team-item .eael-team-content li {
|
| 14141 |
+
text-align: right;
|
| 14142 |
+
}
|
| 14143 |
+
|
| 14144 |
+
.eael-team-align-centered .eael-team-item .eael-team-member-name,
|
| 14145 |
+
.eael-team-align-centered .eael-team-item .eael-team-member-position,
|
| 14146 |
+
.eael-team-align-centered .eael-team-item .eael-team-text,
|
| 14147 |
+
.eael-team-align-centered .eael-team-item .eael-team-content p,
|
| 14148 |
+
.eael-team-align-centered .eael-team-item .eael-team-content ul,
|
| 14149 |
+
.eael-team-align-centered .eael-team-item .eael-team-content li {
|
| 14150 |
+
text-align: center;
|
| 14151 |
+
}
|
| 14152 |
+
|
| 14153 |
+
.eael-team-item.eael-team-members-overlay .eael-team-content {
|
| 14154 |
+
bottom: 10px;
|
| 14155 |
+
left: 10px;
|
| 14156 |
+
margin-bottom: 0;
|
| 14157 |
+
padding-top: 15%;
|
| 14158 |
+
opacity: 0;
|
| 14159 |
+
overflow: hidden;
|
| 14160 |
+
-o-text-overflow: ellipsis;
|
| 14161 |
+
text-overflow: ellipsis;
|
| 14162 |
+
position: absolute;
|
| 14163 |
+
right: 10px;
|
| 14164 |
+
top: 10px;
|
| 14165 |
+
-webkit-transition: all 0.615s cubic-bezier(0.19, 1, 0.22, 1) 0s;
|
| 14166 |
+
-o-transition: all 0.615s cubic-bezier(0.19, 1, 0.22, 1) 0s;
|
| 14167 |
+
transition: all 0.615s cubic-bezier(0.19, 1, 0.22, 1) 0s;
|
| 14168 |
+
}
|
| 14169 |
+
|
| 14170 |
+
.eael-team-item.eael-team-members-overlay:hover .eael-team-content {
|
| 14171 |
+
opacity: 1;
|
| 14172 |
+
}
|
| 14173 |
+
|
| 14174 |
+
.eael-team-member-social-link > a {
|
| 14175 |
+
display: inline-block;
|
| 14176 |
+
-webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s;
|
| 14177 |
+
-o-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s;
|
| 14178 |
+
transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s;
|
| 14179 |
+
}
|
| 14180 |
+
|
| 14181 |
+
.eael-team-member-social-link > a:focus {
|
| 14182 |
+
outline: none;
|
| 14183 |
+
}
|
| 14184 |
+
|
| 14185 |
+
/*----------------------------*/
|
| 14186 |
+
/* 08. Testimonials Styles
|
| 14187 |
+
/*----------------------------*/
|
| 14188 |
+
.eael-testimonial-slider {
|
| 14189 |
+
position: relative;
|
| 14190 |
+
}
|
| 14191 |
+
|
| 14192 |
+
.testimonial-star-rating {
|
| 14193 |
+
padding: 0;
|
| 14194 |
+
margin: 0;
|
| 14195 |
+
}
|
| 14196 |
+
|
| 14197 |
+
.testimonial-star-rating li {
|
| 14198 |
+
list-style: none;
|
| 14199 |
+
display: inline-block;
|
| 14200 |
+
}
|
| 14201 |
+
|
| 14202 |
+
.testimonial-star-rating li i {
|
| 14203 |
+
color: #d8d8d8;
|
| 14204 |
+
}
|
| 14205 |
+
|
| 14206 |
+
.rating-five .testimonial-star-rating li i {
|
| 14207 |
+
color: #f2b01e;
|
| 14208 |
+
}
|
| 14209 |
+
|
| 14210 |
+
.rating-one .testimonial-star-rating li:first-child i {
|
| 14211 |
+
color: #f2b01e;
|
| 14212 |
+
}
|
| 14213 |
+
|
| 14214 |
+
.rating-two .testimonial-star-rating li:nth-child(1) i,
|
| 14215 |
+
.rating-two .testimonial-star-rating li:nth-child(2) i {
|
| 14216 |
+
color: #f2b01e;
|
| 14217 |
+
}
|
| 14218 |
+
|
| 14219 |
+
.rating-three .testimonial-star-rating li:nth-child(1) i,
|
| 14220 |
+
.rating-three .testimonial-star-rating li:nth-child(2) i,
|
| 14221 |
+
.rating-three .testimonial-star-rating li:nth-child(3) i {
|
| 14222 |
+
color: #f2b01e;
|
| 14223 |
+
}
|
| 14224 |
+
|
| 14225 |
+
.rating-four .testimonial-star-rating li:nth-child(1) i,
|
| 14226 |
+
.rating-four .testimonial-star-rating li:nth-child(2) i,
|
| 14227 |
+
.rating-four .testimonial-star-rating li:nth-child(3) i,
|
| 14228 |
+
.rating-four .testimonial-star-rating li:nth-child(4) i {
|
| 14229 |
+
color: #f2b01e;
|
| 14230 |
+
}
|
| 14231 |
+
|
| 14232 |
+
/*--- Default styles ---*/
|
| 14233 |
+
.eael-testimonial-image img {
|
| 14234 |
+
max-width: 100%;
|
| 14235 |
+
}
|
| 14236 |
+
|
| 14237 |
+
.eael-testimonial-image {
|
| 14238 |
+
padding: 10px 0px 0px 0px;
|
| 14239 |
+
}
|
| 14240 |
+
|
| 14241 |
+
.eael-testimonial-image > figure {
|
| 14242 |
+
display: block;
|
| 14243 |
+
margin: 0;
|
| 14244 |
+
}
|
| 14245 |
+
|
| 14246 |
+
.testimonial-avatar-rounded figure img {
|
| 14247 |
+
border-radius: 50%;
|
| 14248 |
+
height: auto;
|
| 14249 |
+
}
|
| 14250 |
+
|
| 14251 |
+
.eael-testimonial-content {
|
| 14252 |
+
margin: 0;
|
| 14253 |
+
padding: 10px;
|
| 14254 |
+
}
|
| 14255 |
+
|
| 14256 |
+
.eael-testimonial-item > figure {
|
| 14257 |
+
margin: 0 auto;
|
| 14258 |
+
padding: 0 20px;
|
| 14259 |
+
}
|
| 14260 |
+
|
| 14261 |
+
.eael-testimonial-item .center-text {
|
| 14262 |
+
text-align: center;
|
| 14263 |
+
}
|
| 14264 |
+
|
| 14265 |
+
.eael-testimonial-item .right-text {
|
| 14266 |
+
text-align: right;
|
| 14267 |
+
}
|
| 14268 |
+
|
| 14269 |
+
.eael-testimonial-item .left-text {
|
| 14270 |
+
text-align: left;
|
| 14271 |
+
}
|
| 14272 |
+
|
| 14273 |
+
.eael-testimonial-item .justify-text {
|
| 14274 |
+
text-align: justify;
|
| 14275 |
+
}
|
| 14276 |
+
|
| 14277 |
+
.eael-testimonial-content .eael-testimonial-text {
|
| 14278 |
+
font-size: 100%;
|
| 14279 |
+
font-style: italic;
|
| 14280 |
+
line-height: 1.5;
|
| 14281 |
+
margin-top: 0px;
|
| 14282 |
+
margin-bottom: 10px;
|
| 14283 |
+
word-wrap: break-word;
|
| 14284 |
+
}
|
| 14285 |
+
|
| 14286 |
+
.eael-testimonial-content .eael-testimonial-user {
|
| 14287 |
+
display: inline-block;
|
| 14288 |
+
font-family: inherit;
|
| 14289 |
+
font-size: 105%;
|
| 14290 |
+
font-style: italic;
|
| 14291 |
+
font-weight: normal;
|
| 14292 |
+
line-height: 1.5;
|
| 14293 |
+
margin-top: 0;
|
| 14294 |
+
margin-bottom: 0;
|
| 14295 |
+
margin-right: 5px;
|
| 14296 |
+
}
|
| 14297 |
+
|
| 14298 |
+
.eael-testimonial-content .eael-testimonial-user-company {
|
| 14299 |
+
display: inline-block;
|
| 14300 |
+
font-family: inherit;
|
| 14301 |
+
font-size: 90%;
|
| 14302 |
+
font-style: italic;
|
| 14303 |
+
font-weight: lighter;
|
| 14304 |
+
line-height: 1.75;
|
| 14305 |
+
margin-bottom: 0;
|
| 14306 |
+
margin-top: 1px;
|
| 14307 |
+
}
|
| 14308 |
+
|
| 14309 |
+
.eael-testimonial-image {
|
| 14310 |
+
position: relative;
|
| 14311 |
+
}
|
| 14312 |
+
|
| 14313 |
+
.eael-testimonial-item .eael-testimonial-quote::after {
|
| 14314 |
+
color: inherit !important;
|
| 14315 |
+
content: "\f10e";
|
| 14316 |
+
font-family: "FontAwesome";
|
| 14317 |
+
font-size: 200%;
|
| 14318 |
+
}
|
| 14319 |
+
|
| 14320 |
+
.eael-testimonial-slider.default-style .eael-testimonial-align-centered .eael-testimonial-image figure img {
|
| 14321 |
+
margin: 0 auto;
|
| 14322 |
+
}
|
| 14323 |
+
|
| 14324 |
+
.eael-testimonial-slider.default-style .eael-testimonial-align-left .eael-testimonial-image figure img,
|
| 14325 |
+
.eael-testimonial-slider.default-style .eael-testimonial-align-right .eael-testimonial-image figure img,
|
| 14326 |
+
.eael-testimonial-slider.classic-style .eael-testimonial-align-left .eael-testimonial-image figure img,
|
| 14327 |
+
.eael-testimonial-slider.classic-style .eael-testimonial-align-right .eael-testimonial-image figure img,
|
| 14328 |
+
.eael-testimonial-slider.middle-style .eael-testimonial-align-left .eael-testimonial-image figure img,
|
| 14329 |
+
.eael-testimonial-slider.middle-style .eael-testimonial-align-right .eael-testimonial-image figure img {
|
| 14330 |
+
margin: 0;
|
| 14331 |
+
}
|
| 14332 |
+
|
| 14333 |
+
.eael-testimonial-slider.default-style .eael-testimonial-align-right .eael-testimonial-image figure,
|
| 14334 |
+
.eael-testimonial-slider.classic-style .eael-testimonial-align-right .eael-testimonial-image figure,
|
| 14335 |
+
.eael-testimonial-slider.middle-style .eael-testimonial-align-right .eael-testimonial-image figure {
|
| 14336 |
+
text-align: right;
|
| 14337 |
+
}
|
| 14338 |
+
|
| 14339 |
+
.eael-testimonial-slider.default-style .eael-testimonial-align-left .eael-testimonial-image figure,
|
| 14340 |
+
.eael-testimonial-slider.classic-style .eael-testimonial-align-left .eael-testimonial-image figure,
|
| 14341 |
+
.eael-testimonial-slider.middle-style .eael-testimonial-align-left .eael-testimonial-image figure {
|
| 14342 |
+
text-align: left;
|
| 14343 |
+
}
|
| 14344 |
+
|
| 14345 |
+
.eael-testimonial-slider.default-style .eael-testimonial-align-right .default-style-testimonial-content,
|
| 14346 |
+
.eael-testimonial-slider.classic-style .eael-testimonial-align-right .testimonial-classic-style-content,
|
| 14347 |
+
.eael-testimonial-slider.middle-style .eael-testimonial-align-right .middle-style-content,
|
| 14348 |
+
.eael-testimonial-slider.middle-style .eael-testimonial-align-right .eael-testimonial-text {
|
| 14349 |
+
text-align: right;
|
| 14350 |
+
}
|
| 14351 |
+
|
| 14352 |
+
.eael-testimonial-slider.default-style .eael-testimonial-align-center .default-style-testimonial-content,
|
| 14353 |
+
.eael-testimonial-slider.classic-style .eael-testimonial-align-center .testimonial-classic-style-content,
|
| 14354 |
+
.eael-testimonial-slider.middle-style .eael-testimonial-align-center .middle-style-content,
|
| 14355 |
+
.eael-testimonial-slider.middle-style .eael-testimonial-align-center .eael-testimonial-text {
|
| 14356 |
+
text-align: center;
|
| 14357 |
+
}
|
| 14358 |
+
|
| 14359 |
+
.eael-testimonial-slider.default-style .eael-testimonial-align-left .default-style-testimonial-content,
|
| 14360 |
+
.eael-testimonial-slider.classic-style .eael-testimonial-align-left .testimonial-classic-style-content,
|
| 14361 |
+
.eael-testimonial-slider.middle-style .eael-testimonial-align-left .middle-style-content,
|
| 14362 |
+
.eael-testimonial-slider.middle-style .eael-testimonial-align-left .eael-testimonial-text {
|
| 14363 |
+
text-align: left;
|
| 14364 |
+
}
|
| 14365 |
+
|
| 14366 |
+
.eael-testimonial-slider.icon-img-left-content .eael-testimonial-text > p,
|
| 14367 |
+
.eael-testimonial-slider.icon-img-right-content .eael-testimonial-text > p {
|
| 14368 |
+
margin: 0px;
|
| 14369 |
+
}
|
| 14370 |
+
|
| 14371 |
+
/*--- Left align ---*/
|
| 14372 |
+
.icon-img-left-content .eael-testimonial-image {
|
| 14373 |
+
float: left;
|
| 14374 |
+
width: 30%;
|
| 14375 |
+
}
|
| 14376 |
+
|
| 14377 |
+
.icon-img-left-content .eael-testimonial-content {
|
| 14378 |
+
float: left;
|
| 14379 |
+
width: 70%;
|
| 14380 |
+
text-align: left;
|
| 14381 |
+
}
|
| 14382 |
+
|
| 14383 |
+
.icon-img-left-content.eael-testimonial-item {
|
| 14384 |
+
overflow: hidden;
|
| 14385 |
+
position: relative;
|
| 14386 |
+
}
|
| 14387 |
+
|
| 14388 |
+
.icon-img-left-content .eael-testimonial-quote {
|
| 14389 |
+
position: absolute;
|
| 14390 |
+
right: 0;
|
| 14391 |
+
}
|
| 14392 |
+
|
| 14393 |
+
.icon-img-left-content .eael-testimonial-text {
|
| 14394 |
+
margin-top: 0;
|
| 14395 |
+
}
|
| 14396 |
+
|
| 14397 |
+
/*--- Center align ---*/
|
| 14398 |
+
.eael-testimonial-align-centered .eael-testimonial-user,
|
| 14399 |
+
.eael-testimonial-align-centered .eael-testimonial-user-company {
|
| 14400 |
+
float: none;
|
| 14401 |
+
text-align: center;
|
| 14402 |
+
}
|
| 14403 |
+
|
| 14404 |
+
.eael-testimonial-align-centered .eael-testimonial-image > figure img {
|
| 14405 |
+
display: block;
|
| 14406 |
+
margin-left: auto !important;
|
| 14407 |
+
margin-right: auto !important;
|
| 14408 |
+
}
|
| 14409 |
+
|
| 14410 |
+
/* .eael-testimonial-align-centered .testimonial-star-rating{
|
| 14411 |
+
text-align: center;
|
| 14412 |
+
} */
|
| 14413 |
+
/*--- Right align ---*/
|
| 14414 |
+
.icon-img-right-content .eael-testimonial-image {
|
| 14415 |
+
float: right;
|
| 14416 |
+
width: 30%;
|
| 14417 |
+
}
|
| 14418 |
+
|
| 14419 |
+
.icon-img-right-content .eael-testimonial-content {
|
| 14420 |
+
float: right;
|
| 14421 |
+
width: 70%;
|
| 14422 |
+
text-align: right;
|
| 14423 |
+
}
|
| 14424 |
+
|
| 14425 |
+
.icon-img-right-content.eael-testimonial-item {
|
| 14426 |
+
overflow: hidden;
|
| 14427 |
+
position: relative;
|
| 14428 |
+
}
|
| 14429 |
+
|
| 14430 |
+
.icon-img-right-content .eael-testimonial-quote {
|
| 14431 |
+
position: absolute;
|
| 14432 |
+
}
|
| 14433 |
+
|
| 14434 |
+
.icon-img-right-content .eael-testimonial-text {
|
| 14435 |
+
margin-top: 0;
|
| 14436 |
+
}
|
| 14437 |
+
|
| 14438 |
+
.eael-testimonial-item {
|
| 14439 |
+
position: relative;
|
| 14440 |
+
}
|
| 14441 |
+
|
| 14442 |
+
.classic-style.testimonial-alignment-center .eael-testimonial-image,
|
| 14443 |
+
.default-style.testimonial-alignment-center .eael-testimonial-image {
|
| 14444 |
+
text-align: center;
|
| 14445 |
+
}
|
| 14446 |
+
|
| 14447 |
+
.classic-style.testimonial-alignment-right .eael-testimonial-image,
|
| 14448 |
+
.default-style.testimonial-alignment-right .eael-testimonial-image {
|
| 14449 |
+
text-align: right;
|
| 14450 |
+
}
|
| 14451 |
+
|
| 14452 |
+
.classic-style.testimonial-alignment-center .eael-testimonial-image > figure,
|
| 14453 |
+
.default-style.testimonial-alignment-center .eael-testimonial-image > figure {
|
| 14454 |
+
text-align: center;
|
| 14455 |
+
}
|
| 14456 |
+
|
| 14457 |
+
.eael-testimonial-slider.icon-img-left-content .eael-testimonial-align-centered .eael-testimonial-content {
|
| 14458 |
+
text-align: center;
|
| 14459 |
+
}
|
| 14460 |
+
|
| 14461 |
+
.eael-testimonial-slider.icon-img-left-content .eael-testimonial-align-left .eael-testimonial-content {
|
| 14462 |
+
text-align: left;
|
| 14463 |
+
}
|
| 14464 |
+
|
| 14465 |
+
.eael-testimonial-slider.icon-img-left-content .eael-testimonial-align-right .eael-testimonial-content {
|
| 14466 |
+
text-align: right;
|
| 14467 |
+
}
|
| 14468 |
+
|
| 14469 |
+
.eael-testimonial-slider.icon-img-right-content .eael-testimonial-align-centered .eael-testimonial-content {
|
| 14470 |
+
text-align: center;
|
| 14471 |
+
}
|
| 14472 |
+
|
| 14473 |
+
.eael-testimonial-slider.icon-img-right-content .eael-testimonial-align-left .eael-testimonial-content {
|
| 14474 |
+
text-align: left;
|
| 14475 |
+
}
|
| 14476 |
+
|
| 14477 |
+
.eael-testimonial-slider.icon-img-right-content .eael-testimonial-align-right .eael-testimonial-content {
|
| 14478 |
+
text-align: right;
|
| 14479 |
+
}
|
| 14480 |
+
|
| 14481 |
+
span.eael-testimonial-quote {
|
| 14482 |
+
position: absolute;
|
| 14483 |
+
right: 10px;
|
| 14484 |
+
top: 10px;
|
| 14485 |
+
}
|
| 14486 |
+
|
| 14487 |
+
/*--- Image align ---*/
|
| 14488 |
+
.eael-testimonial-item.left .eael-testimonial-image {
|
| 14489 |
+
text-align: left;
|
| 14490 |
+
}
|
| 14491 |
+
|
| 14492 |
+
.eael-testimonial-item.center .eael-testimonial-image {
|
| 14493 |
+
text-align: center;
|
| 14494 |
+
}
|
| 14495 |
+
|
| 14496 |
+
.eael-testimonial-item.right .eael-testimonial-image {
|
| 14497 |
+
text-align: right;
|
| 14498 |
+
}
|
| 14499 |
+
|
| 14500 |
+
/*--- Float title image style ---*/
|
| 14501 |
+
.eael-testimonial-inline-bio .eael-testimonial-image {
|
| 14502 |
+
float: left;
|
| 14503 |
+
}
|
| 14504 |
+
|
| 14505 |
+
.eael-testimonial-inline-bio .bio-text {
|
| 14506 |
+
padding-top: 10px;
|
| 14507 |
+
}
|
| 14508 |
+
|
| 14509 |
+
.eael-testimonial-content.eael-testimonial-inline-bio {
|
| 14510 |
+
overflow: hidden;
|
| 14511 |
+
margin-bottom: 0;
|
| 14512 |
+
padding-bottom: 0;
|
| 14513 |
+
}
|
| 14514 |
+
|
| 14515 |
+
.eael-testimonial-inline-bio .testimonial-star-rating,
|
| 14516 |
+
.eael-testimonial-inline-bio .bio-text {
|
| 14517 |
+
float: left;
|
| 14518 |
+
width: 65%;
|
| 14519 |
+
}
|
| 14520 |
+
|
| 14521 |
+
.eael-testimonial-content.eael-testimonial-inline-bio {
|
| 14522 |
+
text-align: left !important;
|
| 14523 |
+
}
|
| 14524 |
+
|
| 14525 |
+
/*--- Float inline style ---*/
|
| 14526 |
+
.testimonial-inline-style .eael-testimonial-image {
|
| 14527 |
+
float: left;
|
| 14528 |
+
max-width: 100%;
|
| 14529 |
+
padding: 0;
|
| 14530 |
+
margin-right: 15px;
|
| 14531 |
+
}
|
| 14532 |
+
|
| 14533 |
+
.testimonial-inline-style {
|
| 14534 |
+
overflow: hidden;
|
| 14535 |
+
text-align: left;
|
| 14536 |
+
}
|
| 14537 |
+
|
| 14538 |
+
.content-top-icon-title-inline .eael-testimonial-text,
|
| 14539 |
+
.content-top-icon-title-inline .eael-testimonial-align-left .eael-testimonial-text {
|
| 14540 |
+
text-align: left;
|
| 14541 |
+
}
|
| 14542 |
+
|
| 14543 |
+
.content-top-icon-title-inline .eael-testimonial-align-centered .eael-testimonial-text {
|
| 14544 |
+
text-align: center;
|
| 14545 |
+
}
|
| 14546 |
+
|
| 14547 |
+
.content-top-icon-title-inline .eael-testimonial-align-right .eael-testimonial-text {
|
| 14548 |
+
text-align: right;
|
| 14549 |
+
}
|
| 14550 |
+
|
| 14551 |
+
.content-bottom-icon-title-inline .eael-testimonial-text,
|
| 14552 |
+
.content-bottom-icon-title-inline .eael-testimonial-align-left .eael-testimonial-text {
|
| 14553 |
+
text-align: left;
|
| 14554 |
+
}
|
| 14555 |
+
|
| 14556 |
+
.content-bottom-icon-title-inline .eael-testimonial-align-centered .eael-testimonial-text {
|
| 14557 |
+
text-align: center;
|
| 14558 |
+
}
|
| 14559 |
+
|
| 14560 |
+
.content-bottom-icon-title-inline .eael-testimonial-align-right .eael-testimonial-text {
|
| 14561 |
+
text-align: right;
|
| 14562 |
+
}
|
| 14563 |
+
|
| 14564 |
+
.eael-twitter-feed::before, .eael-twitter-feed::after {
|
| 14565 |
+
content: "";
|
| 14566 |
+
clear: both;
|
| 14567 |
+
}
|
| 14568 |
+
|
| 14569 |
+
.eael-twitter-feed-masonry .eael-twitter-feed-item {
|
| 14570 |
+
float: left;
|
| 14571 |
+
}
|
| 14572 |
+
@media only screen and (max-width: 480px) {
|
| 14573 |
+
.eael-twitter-feed-masonry.eael-twitter-feed-col-2 .eael-twitter-feed-item {
|
| 14574 |
+
width: 100% !important;
|
| 14575 |
+
}
|
| 14576 |
+
}
|
| 14577 |
+
@media only screen and (max-width: 480px) {
|
| 14578 |
+
.eael-twitter-feed-masonry.eael-twitter-feed-col-3 .eael-twitter-feed-item {
|
| 14579 |
+
width: 100% !important;
|
| 14580 |
+
}
|
| 14581 |
+
}
|
| 14582 |
+
@media only screen and (max-width: 480px) {
|
| 14583 |
+
.eael-twitter-feed-masonry.eael-twitter-feed-col-4 .eael-twitter-feed-item {
|
| 14584 |
+
width: 100% !important;
|
| 14585 |
+
}
|
| 14586 |
+
}
|
| 14587 |
+
|
| 14588 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-inner {
|
| 14589 |
+
background: #fff;
|
| 14590 |
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
| 14591 |
+
}
|
| 14592 |
+
.eael-twitter-feed-item a {
|
| 14593 |
+
color: #0088cc;
|
| 14594 |
+
text-decoration: none;
|
| 14595 |
+
}
|
| 14596 |
+
.eael-twitter-feed-item a:hover {
|
| 14597 |
+
outline: 0;
|
| 14598 |
+
color: #005580;
|
| 14599 |
+
}
|
| 14600 |
+
.eael-twitter-feed-item a:focus {
|
| 14601 |
+
outline: none;
|
| 14602 |
+
}
|
| 14603 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header {
|
| 14604 |
+
padding: 20px 15px 0;
|
| 14605 |
+
margin-bottom: 10px;
|
| 14606 |
+
}
|
| 14607 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-avatar {
|
| 14608 |
+
float: left;
|
| 14609 |
+
width: 38px;
|
| 14610 |
+
margin-right: 10px;
|
| 14611 |
+
}
|
| 14612 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-avatar img {
|
| 14613 |
+
max-width: 100%;
|
| 14614 |
+
height: auto;
|
| 14615 |
+
-o-object-fit: cover;
|
| 14616 |
+
object-fit: cover;
|
| 14617 |
+
}
|
| 14618 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-avatar.avatar-circle img {
|
| 14619 |
+
border-radius: 50%;
|
| 14620 |
+
}
|
| 14621 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-meta {
|
| 14622 |
+
float: left;
|
| 14623 |
+
}
|
| 14624 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-meta .eael-twitter-feed-item-icon {
|
| 14625 |
+
color: #1da1f2;
|
| 14626 |
+
margin-right: 5px;
|
| 14627 |
+
}
|
| 14628 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-meta .eael-twitter-feed-item-author {
|
| 14629 |
+
color: #444;
|
| 14630 |
+
line-height: 1.5em;
|
| 14631 |
+
font-weight: 700;
|
| 14632 |
+
}
|
| 14633 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-date {
|
| 14634 |
+
float: right;
|
| 14635 |
+
margin-right: 10px;
|
| 14636 |
+
font-size: 90%;
|
| 14637 |
+
color: #999999;
|
| 14638 |
+
}
|
| 14639 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-content {
|
| 14640 |
+
padding: 0 15px 15px;
|
| 14641 |
+
}
|
| 14642 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-content p {
|
| 14643 |
+
color: #666666;
|
| 14644 |
+
margin: 0 0 5px;
|
| 14645 |
+
min-height: 20px;
|
| 14646 |
+
-o-text-overflow: ellipsis;
|
| 14647 |
+
text-overflow: ellipsis;
|
| 14648 |
+
-webkit-line-clamp: 5;
|
| 14649 |
+
-webkit-box-orient: vertical;
|
| 14650 |
+
}
|
| 14651 |
+
|
| 14652 |
+
/*------------------------------*/
|
| 14653 |
+
/* 32. Tooltip
|
| 14654 |
+
/*------------------------------*/
|
| 14655 |
+
.eael-tooltip {
|
| 14656 |
+
position: relative;
|
| 14657 |
+
display: inline-block;
|
| 14658 |
+
min-width: 150px;
|
| 14659 |
+
text-align: center;
|
| 14660 |
+
padding: 12px 24px;
|
| 14661 |
+
font-size: .93rem;
|
| 14662 |
+
color: #333;
|
| 14663 |
+
line-height: 1;
|
| 14664 |
+
cursor: pointer;
|
| 14665 |
+
-webkit-transition: all 0.3s ease-in-out;
|
| 14666 |
+
-o-transition: all 0.3s ease-in-out;
|
| 14667 |
+
transition: all 0.3s ease-in-out;
|
| 14668 |
+
}
|
| 14669 |
+
|
| 14670 |
+
.eael-tooltip .eael-tooltip-text {
|
| 14671 |
+
display: block;
|
| 14672 |
+
width: 100%;
|
| 14673 |
+
visibility: hidden;
|
| 14674 |
+
background-color: black;
|
| 14675 |
+
color: #fff;
|
| 14676 |
+
text-align: center;
|
| 14677 |
+
border-radius: 4px;
|
| 14678 |
+
padding: 10px;
|
| 14679 |
+
position: absolute;
|
| 14680 |
+
z-index: 1;
|
| 14681 |
+
font-size: .93rem;
|
| 14682 |
+
line-height: 1.3;
|
| 14683 |
+
}
|
| 14684 |
+
|
| 14685 |
+
.eael-tooltip .eael-tooltip-text::after {
|
| 14686 |
+
content: "";
|
| 14687 |
+
position: absolute;
|
| 14688 |
+
border-width: 5px;
|
| 14689 |
+
border-style: solid;
|
| 14690 |
+
}
|
| 14691 |
+
|
| 14692 |
+
.eael-tooltip:hover .eael-tooltip-text {
|
| 14693 |
+
visibility: visible;
|
| 14694 |
+
}
|
| 14695 |
+
|
| 14696 |
+
/*--- Left ---*/
|
| 14697 |
+
.eael-tooltip .eael-tooltip-text.eael-tooltip-left {
|
| 14698 |
+
top: 50%;
|
| 14699 |
+
right: 100%;
|
| 14700 |
+
-webkit-transform: translateY(-50%);
|
| 14701 |
+
-ms-transform: translateY(-50%);
|
| 14702 |
+
transform: translateY(-50%);
|
| 14703 |
+
margin-right: 10px;
|
| 14704 |
+
}
|
| 14705 |
+
|
| 14706 |
+
.eael-tooltip:hover .eael-tooltip-text.eael-tooltip-left {
|
| 14707 |
+
-webkit-animation: tooltipLeftIn 300ms ease-in-out;
|
| 14708 |
+
animation: tooltipLeftIn 300ms ease-in-out;
|
| 14709 |
+
}
|
| 14710 |
+
|
| 14711 |
+
.eael-tooltip .eael-tooltip-text.eael-tooltip-left::after {
|
| 14712 |
+
top: calc(50% - 5px);
|
| 14713 |
+
left: 100%;
|
| 14714 |
+
border-color: transparent transparent transparent black;
|
| 14715 |
+
}
|
| 14716 |
+
|
| 14717 |
+
/*--- Right ---*/
|
| 14718 |
+
.eael-tooltip .eael-tooltip-text.eael-tooltip-right {
|
| 14719 |
+
top: 50%;
|
| 14720 |
+
left: 100%;
|
| 14721 |
+
-webkit-transform: translateY(-50%);
|
| 14722 |
+
-ms-transform: translateY(-50%);
|
| 14723 |
+
transform: translateY(-50%);
|
| 14724 |
+
-webkit-transition: all 0.3s ease-in-out;
|
| 14725 |
+
-o-transition: all 0.3s ease-in-out;
|
| 14726 |
+
transition: all 0.3s ease-in-out;
|
| 14727 |
+
margin-left: 10px;
|
| 14728 |
+
}
|
| 14729 |
+
|
| 14730 |
+
.eael-tooltip:hover .eael-tooltip-text.eael-tooltip-right {
|
| 14731 |
+
-webkit-animation: tooltipRightIn 300ms linear;
|
| 14732 |
+
animation: tooltipRightIn 300ms linear;
|
| 14733 |
+
}
|
| 14734 |
+
|
| 14735 |
+
.eael-tooltip .eael-tooltip-text.eael-tooltip-right::after {
|
| 14736 |
+
top: calc(50% - 5px);
|
| 14737 |
+
right: 100%;
|
| 14738 |
+
border-color: transparent black transparent transparent;
|
| 14739 |
+
}
|
| 14740 |
+
|
| 14741 |
+
/*--- Top ---*/
|
| 14742 |
+
.eael-tooltip .eael-tooltip-text.eael-tooltip-top {
|
| 14743 |
+
bottom: calc(100%);
|
| 14744 |
+
left: 0;
|
| 14745 |
+
right: 0;
|
| 14746 |
+
margin: 0 auto 10px auto;
|
| 14747 |
+
}
|
| 14748 |
+
|
| 14749 |
+
.eael-tooltip .eael-tooltip-text.eael-tooltip-top::after {
|
| 14750 |
+
margin-top: 0px;
|
| 14751 |
+
top: 100%;
|
| 14752 |
+
left: calc( 50% - 5px);
|
| 14753 |
+
border-color: black transparent transparent transparent;
|
| 14754 |
+
}
|
| 14755 |
+
|
| 14756 |
+
.eael-tooltip:hover .eael-tooltip-text.eael-tooltip-top {
|
| 14757 |
+
-webkit-animation: tooltipTopIn 300ms linear;
|
| 14758 |
+
animation: tooltipTopIn 300ms linear;
|
| 14759 |
+
}
|
| 14760 |
+
|
| 14761 |
+
/*--- Bottom ---*/
|
| 14762 |
+
.eael-tooltip .eael-tooltip-text.eael-tooltip-bottom {
|
| 14763 |
+
top: 100%;
|
| 14764 |
+
left: 0;
|
| 14765 |
+
right: 0;
|
| 14766 |
+
margin: 10px auto 0px auto;
|
| 14767 |
+
}
|
| 14768 |
+
|
| 14769 |
+
.eael-tooltip .eael-tooltip-text.eael-tooltip-bottom::after {
|
| 14770 |
+
margin-top: 0px;
|
| 14771 |
+
bottom: 100%;
|
| 14772 |
+
left: calc( 50% - 5px);
|
| 14773 |
+
border-color: transparent transparent black transparent;
|
| 14774 |
+
}
|
| 14775 |
+
|
| 14776 |
+
.eael-tooltip:hover .eael-tooltip-text.eael-tooltip-bottom {
|
| 14777 |
+
-webkit-animation: tooltipBottomIn 300ms linear;
|
| 14778 |
+
animation: tooltipBottomIn 300ms linear;
|
| 14779 |
+
}
|
| 14780 |
+
|
| 14781 |
+
/*--- Alignments ---*/
|
| 14782 |
+
.eael-tooltip-align-left {
|
| 14783 |
+
display: -webkit-box;
|
| 14784 |
+
display: -webkit-flex;
|
| 14785 |
+
display: -ms-flexbox;
|
| 14786 |
+
display: flex;
|
| 14787 |
+
width: 100%;
|
| 14788 |
+
-webkit-box-pack: start;
|
| 14789 |
+
-webkit-justify-content: flex-start;
|
| 14790 |
+
-ms-flex-pack: start;
|
| 14791 |
+
justify-content: flex-start;
|
| 14792 |
+
}
|
| 14793 |
+
|
| 14794 |
+
.eael-tooltip-align-right {
|
| 14795 |
+
display: -webkit-box;
|
| 14796 |
+
display: -webkit-flex;
|
| 14797 |
+
display: -ms-flexbox;
|
| 14798 |
+
display: flex;
|
| 14799 |
+
width: 100%;
|
| 14800 |
+
-webkit-box-pack: end;
|
| 14801 |
+
-webkit-justify-content: flex-end;
|
| 14802 |
+
-ms-flex-pack: end;
|
| 14803 |
+
justify-content: flex-end;
|
| 14804 |
+
}
|
| 14805 |
+
|
| 14806 |
+
.eael-tooltip-align-center {
|
| 14807 |
+
display: -webkit-box;
|
| 14808 |
+
display: -webkit-flex;
|
| 14809 |
+
display: -ms-flexbox;
|
| 14810 |
+
display: flex;
|
| 14811 |
+
width: 100%;
|
| 14812 |
+
-webkit-box-pack: center;
|
| 14813 |
+
-webkit-justify-content: center;
|
| 14814 |
+
-ms-flex-pack: center;
|
| 14815 |
+
justify-content: center;
|
| 14816 |
+
}
|
| 14817 |
+
|
| 14818 |
+
.eael-tooltip-align-justify .eael-tooltip {
|
| 14819 |
+
display: -webkit-box;
|
| 14820 |
+
display: -webkit-flex;
|
| 14821 |
+
display: -ms-flexbox;
|
| 14822 |
+
display: flex;
|
| 14823 |
+
-webkit-box-pack: center;
|
| 14824 |
+
-webkit-justify-content: center;
|
| 14825 |
+
-ms-flex-pack: center;
|
| 14826 |
+
justify-content: center;
|
| 14827 |
+
-webkit-box-align: center;
|
| 14828 |
+
-webkit-align-items: center;
|
| 14829 |
+
-ms-flex-align: center;
|
| 14830 |
+
align-items: center;
|
| 14831 |
+
}
|
| 14832 |
+
|
| 14833 |
+
/*--- Tooltip Keyframes ---*/
|
| 14834 |
+
@-webkit-keyframes tooltipRightIn {
|
| 14835 |
+
0% {
|
| 14836 |
+
opacity: 0;
|
| 14837 |
+
left: 105%;
|
| 14838 |
+
}
|
| 14839 |
+
100% {
|
| 14840 |
+
opacity: 1;
|
| 14841 |
+
left: 100%;
|
| 14842 |
+
}
|
| 14843 |
+
}
|
| 14844 |
+
@keyframes tooltipRightIn {
|
| 14845 |
+
0% {
|
| 14846 |
+
opacity: 0;
|
| 14847 |
+
left: 105%;
|
| 14848 |
+
}
|
| 14849 |
+
100% {
|
| 14850 |
+
opacity: 1;
|
| 14851 |
+
left: 100%;
|
| 14852 |
+
}
|
| 14853 |
+
}
|
| 14854 |
+
@-webkit-keyframes tooltipLeftIn {
|
| 14855 |
+
0% {
|
| 14856 |
+
opacity: 0;
|
| 14857 |
+
right: 105%;
|
| 14858 |
+
}
|
| 14859 |
+
100% {
|
| 14860 |
+
opacity: 1;
|
| 14861 |
+
right: 100%;
|
| 14862 |
+
}
|
| 14863 |
+
}
|
| 14864 |
+
@keyframes tooltipLeftIn {
|
| 14865 |
+
0% {
|
| 14866 |
+
opacity: 0;
|
| 14867 |
+
right: 105%;
|
| 14868 |
+
}
|
| 14869 |
+
100% {
|
| 14870 |
+
opacity: 1;
|
| 14871 |
+
right: 100%;
|
| 14872 |
+
}
|
| 14873 |
+
}
|
| 14874 |
+
@-webkit-keyframes tooltipTopIn {
|
| 14875 |
+
0% {
|
| 14876 |
+
opacity: 0;
|
| 14877 |
+
bottom: 110%;
|
| 14878 |
+
}
|
| 14879 |
+
100% {
|
| 14880 |
+
opacity: 1;
|
| 14881 |
+
bottom: 100%;
|
| 14882 |
+
}
|
| 14883 |
+
}
|
| 14884 |
+
@keyframes tooltipTopIn {
|
| 14885 |
+
0% {
|
| 14886 |
+
opacity: 0;
|
| 14887 |
+
bottom: 110%;
|
| 14888 |
+
}
|
| 14889 |
+
100% {
|
| 14890 |
+
opacity: 1;
|
| 14891 |
+
bottom: 100%;
|
| 14892 |
+
}
|
| 14893 |
+
}
|
| 14894 |
+
@-webkit-keyframes tooltipBottomIn {
|
| 14895 |
+
0% {
|
| 14896 |
+
opacity: 0;
|
| 14897 |
+
top: 110%;
|
| 14898 |
+
}
|
| 14899 |
+
100% {
|
| 14900 |
+
opacity: 1;
|
| 14901 |
+
top: 100%;
|
| 14902 |
+
}
|
| 14903 |
+
}
|
| 14904 |
+
@keyframes tooltipBottomIn {
|
| 14905 |
+
0% {
|
| 14906 |
+
opacity: 0;
|
| 14907 |
+
top: 110%;
|
| 14908 |
+
}
|
| 14909 |
+
100% {
|
| 14910 |
+
opacity: 1;
|
| 14911 |
+
top: 100%;
|
| 14912 |
+
}
|
| 14913 |
+
}
|
| 14914 |
+
|
| 14915 |
+
/*----------------------*/
|
| 14916 |
+
/* 12. weForm Styles
|
| 14917 |
+
/*----------------------*/
|
| 14918 |
+
.eael-weform-container input,
|
| 14919 |
+
.eael-weform-container textarea {
|
| 14920 |
+
height: auto;
|
| 14921 |
+
padding: 10px;
|
| 14922 |
+
}
|
| 14923 |
+
|
| 14924 |
+
.eael-contact-form-align-center .eael-weform-container,
|
| 14925 |
+
.eael-contact-form-btn-align-center .eael-weform-container ul.wpuf-form .wpuf-submit input[type="submit"] {
|
| 14926 |
+
margin-left: auto !important;
|
| 14927 |
+
margin-right: auto !important;
|
| 14928 |
+
display: block;
|
| 14929 |
+
float: none;
|
| 14930 |
+
}
|
| 14931 |
+
|
| 14932 |
+
.eael-contact-form-align-left .eael-weform-container,
|
| 14933 |
+
.eael-contact-form-btn-align-left .eael-weform-container ul.wpuf-form .wpuf-submit input[type="submit"] {
|
| 14934 |
+
float: left;
|
| 14935 |
+
width: auto;
|
| 14936 |
+
}
|
| 14937 |
+
|
| 14938 |
+
.eael-contact-form-align-right .eael-weform-container,
|
| 14939 |
+
.eael-contact-form-btn-align-right .eael-weform-container ul.wpuf-form .wpuf-submit input[type="submit"] {
|
| 14940 |
+
float: right;
|
| 14941 |
+
width: auto;
|
| 14942 |
+
}
|
| 14943 |
+
|
| 14944 |
+
.eael-weform-container ul.wpuf-form li .wpuf-fields input[type="text"],
|
| 14945 |
+
.eael-weform-container ul.wpuf-form li .wpuf-fields input[type="password"],
|
| 14946 |
+
.eael-weform-container ul.wpuf-form li .wpuf-fields input[type="email"],
|
| 14947 |
+
.eael-weform-container ul.wpuf-form li .wpuf-fields input[type="url"],
|
| 14948 |
+
.eael-weform-container ul.wpuf-form li .wpuf-fields input[type="number"],
|
| 14949 |
+
.eael-weform-container ul.wpuf-form li .wpuf-fields textarea {
|
| 14950 |
+
max-width: 100%;
|
| 14951 |
+
}
|
| 14952 |
+
|
| 14953 |
+
/* ------------------- */
|
| 14954 |
+
/* 23. WPForms
|
| 14955 |
+
/* ------------------- */
|
| 14956 |
+
.eael-wpforms .wpforms-container .wpforms-form input[type=submit],
|
| 14957 |
+
.eael-wpforms .wpforms-container .wpforms-form button[type=submit],
|
| 14958 |
+
.eael-wpforms .wpforms-container .wpforms-form .wpforms-page-button {
|
| 14959 |
+
border: 0;
|
| 14960 |
+
}
|
| 14961 |
+
|
| 14962 |
+
.eael-wpforms .wpforms-container .wpforms-form input[type=submit]:hover,
|
| 14963 |
+
.eael-wpforms .wpforms-container .wpforms-form button[type=submit]:hover,
|
| 14964 |
+
.eael-wpforms .wpforms-container .wpforms-form .wpforms-page-button:hover {
|
| 14965 |
+
border: 0;
|
| 14966 |
+
}
|
| 14967 |
+
|
| 14968 |
+
.eael-wpforms .wpforms-container .wpforms-form input[type=checkbox],
|
| 14969 |
+
.eael-wpforms .wpforms-container .wpforms-form input[type=radio] {
|
| 14970 |
+
padding: 3px;
|
| 14971 |
+
}
|
| 14972 |
+
|
| 14973 |
+
.eael-wpforms .wpforms-container .wpforms-form .wpforms-field-label {
|
| 14974 |
+
display: none;
|
| 14975 |
+
}
|
| 14976 |
+
|
| 14977 |
+
.eael-wpforms .wpforms-container .wpforms-form .wpforms-field-name .wpforms-field-row {
|
| 14978 |
+
max-width: 100%;
|
| 14979 |
+
}
|
| 14980 |
+
|
| 14981 |
+
.eael-wpforms .wpforms-container .wpforms-field input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
|
| 14982 |
+
.eael-wpforms .wpforms-container .wpforms-field textarea,
|
| 14983 |
+
.eael-wpforms .wpforms-container .wpforms-field select {
|
| 14984 |
+
max-width: 100% !important;
|
| 14985 |
+
}
|
| 14986 |
+
|
| 14987 |
+
.eael-wpforms-labels-yes .wpforms-container .wpforms-form .wpforms-field-label {
|
| 14988 |
+
display: block;
|
| 14989 |
+
}
|
| 14990 |
+
|
| 14991 |
+
.eael-wpforms-form-button-full-width .wpforms-submit-container .wpforms-submit {
|
| 14992 |
+
width: 100%;
|
| 14993 |
+
}
|
| 14994 |
+
|
| 14995 |
+
/*------------------------------*/
|
| 14996 |
+
/* 31. Advance Accordion
|
| 14997 |
+
/*------------------------------*/
|
| 14998 |
+
.eael-adv-accordion {
|
| 14999 |
+
width: auto;
|
| 15000 |
+
height: auto;
|
| 15001 |
+
-webkit-transition: all 0.3s ease-in-out;
|
| 15002 |
+
-o-transition: all 0.3s ease-in-out;
|
| 15003 |
+
transition: all 0.3s ease-in-out;
|
| 15004 |
+
}
|
| 15005 |
+
|
| 15006 |
+
.eael-adv-accordion .eael-accordion-list .eael-accordion-header {
|
| 15007 |
+
padding: 15px;
|
| 15008 |
+
border: 1px solid rgba(0, 0, 0, 0.02);
|
| 15009 |
+
font-size: 1rem;
|
| 15010 |
+
font-weight: 600;
|
| 15011 |
+
line-height: 1;
|
| 15012 |
+
-webkit-transition: all 0.3s ease-in-out;
|
| 15013 |
+
-o-transition: all 0.3s ease-in-out;
|
| 15014 |
+
transition: all 0.3s ease-in-out;
|
| 15015 |
+
display: -webkit-box;
|
| 15016 |
+
display: -webkit-flex;
|
| 15017 |
+
display: -ms-flexbox;
|
| 15018 |
+
display: flex;
|
| 15019 |
+
-webkit-box-pack: justify;
|
| 15020 |
+
-webkit-justify-content: space-between;
|
| 15021 |
+
-ms-flex-pack: justify;
|
| 15022 |
+
justify-content: space-between;
|
| 15023 |
+
-webkit-box-align: center;
|
| 15024 |
+
-webkit-align-items: center;
|
| 15025 |
+
-ms-flex-align: center;
|
| 15026 |
+
align-items: center;
|
| 15027 |
+
cursor: pointer;
|
| 15028 |
+
}
|
| 15029 |
+
|
| 15030 |
+
.eael-adv-accordion .eael-accordion-list .eael-accordion-header .fa-toggle {
|
| 15031 |
+
-webkit-transform: rotate(0deg);
|
| 15032 |
+
-ms-transform: rotate(0deg);
|
| 15033 |
+
transform: rotate(0deg);
|
| 15034 |
+
z-index: 10;
|
| 15035 |
+
-webkit-transition: all 0.3s ease-in-out;
|
| 15036 |
+
-o-transition: all 0.3s ease-in-out;
|
| 15037 |
+
transition: all 0.3s ease-in-out;
|
| 15038 |
+
}
|
| 15039 |
+
|
| 15040 |
+
.eael-adv-accordion .eael-accordion-list .eael-accordion-header.active .fa-toggle {
|
| 15041 |
+
-webkit-transform: rotate(90deg);
|
| 15042 |
+
-ms-transform: rotate(90deg);
|
| 15043 |
+
transform: rotate(90deg);
|
| 15044 |
+
z-index: 10;
|
| 15045 |
+
-webkit-transition: all 0.3s ease-in-out;
|
| 15046 |
+
-o-transition: all 0.3s ease-in-out;
|
| 15047 |
+
transition: all 0.3s ease-in-out;
|
| 15048 |
+
}
|
| 15049 |
+
|
| 15050 |
+
.fa-accordion-icon {
|
| 15051 |
+
display: inline-block;
|
| 15052 |
+
margin-right: 10px;
|
| 15053 |
+
}
|
| 15054 |
+
|
| 15055 |
+
.eael-adv-accordion .eael-accordion-list .eael-accordion-content {
|
| 15056 |
+
display: none;
|
| 15057 |
+
border: 1px solid #eee;
|
| 15058 |
+
padding: 15px;
|
| 15059 |
+
-webkit-box-sizing: border-box;
|
| 15060 |
+
box-sizing: border-box;
|
| 15061 |
+
font-size: 1rem;
|
| 15062 |
+
line-height: 1.7;
|
| 15063 |
+
}
|
| 15064 |
+
|
| 15065 |
+
.eael-adv-accordion .eael-accordion-list .eael-accordion-content p {
|
| 15066 |
+
margin: 0;
|
| 15067 |
+
}
|
| 15068 |
+
|
| 15069 |
+
.eael-adv-accordion .eael-accordion-list .eael-accordion-content.active {
|
| 15070 |
+
display: block;
|
| 15071 |
+
}
|
| 15072 |
+
|
| 15073 |
+
@-webkit-keyframes rotate-90 {
|
| 15074 |
+
0% {
|
| 15075 |
+
-webkit-transform: rotateY(0deg);
|
| 15076 |
+
transform: rotateY(0deg);
|
| 15077 |
+
}
|
| 15078 |
+
100% {
|
| 15079 |
+
-webkit-transform: rotateY(-180deg);
|
| 15080 |
+
transform: rotateY(-180deg);
|
| 15081 |
+
}
|
| 15082 |
+
}
|
| 15083 |
+
|
| 15084 |
+
@keyframes rotate-90 {
|
| 15085 |
+
0% {
|
| 15086 |
+
-webkit-transform: rotateY(0deg);
|
| 15087 |
+
transform: rotateY(0deg);
|
| 15088 |
+
}
|
| 15089 |
+
100% {
|
| 15090 |
+
-webkit-transform: rotateY(-180deg);
|
| 15091 |
+
transform: rotateY(-180deg);
|
| 15092 |
+
}
|
| 15093 |
+
}
|
| 15094 |
+
@-webkit-keyframes fadeIn {
|
| 15095 |
+
0% {
|
| 15096 |
+
opacity: 1;
|
| 15097 |
+
-webkit-transition: all 0.3s ease-in-out;
|
| 15098 |
+
-o-transition: all 0.3s ease-in-out;
|
| 15099 |
+
transition: all 0.3s ease-in-out;
|
| 15100 |
+
}
|
| 15101 |
+
100% {
|
| 15102 |
+
opacity: 1;
|
| 15103 |
+
-webkit-transition: all 0.3s ease-in-out;
|
| 15104 |
+
-o-transition: all 0.3s ease-in-out;
|
| 15105 |
+
transition: all 0.3s ease-in-out;
|
| 15106 |
+
}
|
| 15107 |
+
}
|
| 15108 |
+
@keyframes fadeIn {
|
| 15109 |
+
0% {
|
| 15110 |
+
opacity: 1;
|
| 15111 |
+
-webkit-transition: all 0.3s ease-in-out;
|
| 15112 |
+
-o-transition: all 0.3s ease-in-out;
|
| 15113 |
+
transition: all 0.3s ease-in-out;
|
| 15114 |
+
}
|
| 15115 |
+
100% {
|
| 15116 |
+
opacity: 1;
|
| 15117 |
+
-webkit-transition: all 0.3s ease-in-out;
|
| 15118 |
+
-o-transition: all 0.3s ease-in-out;
|
| 15119 |
+
transition: all 0.3s ease-in-out;
|
| 15120 |
+
}
|
| 15121 |
+
}
|
| 15122 |
+
|
| 15123 |
+
/*----------------------------*/
|
| 15124 |
+
/* 30. Advance Tabs
|
| 15125 |
+
/*----------------------------*/
|
| 15126 |
+
.eael-advance-tabs {
|
| 15127 |
+
display: block;
|
| 15128 |
+
}
|
| 15129 |
+
|
| 15130 |
+
.eael-advance-tabs .eael-tabs-nav > ul {
|
| 15131 |
+
position: relative;
|
| 15132 |
+
padding: 0px;
|
| 15133 |
+
margin: 0px;
|
| 15134 |
+
list-style-type: none;
|
| 15135 |
+
display: -webkit-box;
|
| 15136 |
+
display: -webkit-flex;
|
| 15137 |
+
display: -ms-flexbox;
|
| 15138 |
+
display: flex;
|
| 15139 |
+
-webkit-box-pack: start;
|
| 15140 |
+
-webkit-justify-content: flex-start;
|
| 15141 |
+
-ms-flex-pack: start;
|
| 15142 |
+
justify-content: flex-start;
|
| 15143 |
+
-webkit-box-align: center;
|
| 15144 |
+
-webkit-align-items: center;
|
| 15145 |
+
-ms-flex-align: center;
|
| 15146 |
+
align-items: center;
|
| 15147 |
+
z-index: 1;
|
| 15148 |
+
}
|
| 15149 |
+
|
| 15150 |
+
.eael-advance-tabs .eael-tabs-nav > ul li {
|
| 15151 |
+
position: relative;
|
| 15152 |
+
padding: 1em 1.5em;
|
| 15153 |
+
-webkit-box-flex: 1;
|
| 15154 |
+
-webkit-flex: 1 1 auto;
|
| 15155 |
+
-ms-flex: 1 1 auto;
|
| 15156 |
+
flex: 1 1 auto;
|
| 15157 |
+
cursor: pointer;
|
| 15158 |
+
display: -webkit-box;
|
| 15159 |
+
display: -webkit-flex;
|
| 15160 |
+
display: -ms-flexbox;
|
| 15161 |
+
display: flex;
|
| 15162 |
+
-webkit-box-pack: center;
|
| 15163 |
+
-webkit-justify-content: center;
|
| 15164 |
+
-ms-flex-pack: center;
|
| 15165 |
+
justify-content: center;
|
| 15166 |
+
-webkit-box-align: center;
|
| 15167 |
+
-webkit-align-items: center;
|
| 15168 |
+
-ms-flex-align: center;
|
| 15169 |
+
align-items: center;
|
| 15170 |
+
text-align: center;
|
| 15171 |
+
background-color: #f1f1f1;
|
| 15172 |
+
}
|
| 15173 |
+
|
| 15174 |
+
.eael-advance-tabs .eael-tabs-nav > ul li:after {
|
| 15175 |
+
content: "";
|
| 15176 |
+
position: absolute;
|
| 15177 |
+
bottom: -10px;
|
| 15178 |
+
left: 0px;
|
| 15179 |
+
right: 0px;
|
| 15180 |
+
margin: 0 auto;
|
| 15181 |
+
z-index: 1;
|
| 15182 |
+
width: 0px;
|
| 15183 |
+
height: 0px;
|
| 15184 |
+
border-left: 10px solid transparent;
|
| 15185 |
+
border-right: 10px solid transparent;
|
| 15186 |
+
border-top: 10px solid #444;
|
| 15187 |
+
border-bottom: 0px;
|
| 15188 |
+
display: none;
|
| 15189 |
+
}
|
| 15190 |
+
|
| 15191 |
+
.eael-advance-tabs.active-caret-on .eael-tabs-nav > ul li.active:after,
|
| 15192 |
+
.eael-advance-tabs.active-caret-on .eael-tabs-nav > ul li.active-default:after {
|
| 15193 |
+
display: none;
|
| 15194 |
+
}
|
| 15195 |
+
|
| 15196 |
+
.eael-advance-tabs .eael-tabs-nav > ul li.active:after,
|
| 15197 |
+
.eael-advance-tabs .eael-tabs-nav > ul li.active-default:after {
|
| 15198 |
+
display: block;
|
| 15199 |
+
}
|
| 15200 |
+
|
| 15201 |
+
.eael-tabs-content {
|
| 15202 |
+
display: -webkit-box;
|
| 15203 |
+
display: -webkit-flex;
|
| 15204 |
+
display: -ms-flexbox;
|
| 15205 |
+
display: flex;
|
| 15206 |
+
-webkit-box-flex: 1;
|
| 15207 |
+
-webkit-flex: 1 1 auto;
|
| 15208 |
+
-ms-flex: 1 1 auto;
|
| 15209 |
+
flex: 1 1 auto;
|
| 15210 |
+
}
|
| 15211 |
+
|
| 15212 |
+
.eael-advance-tabs .eael-tabs-content > div {
|
| 15213 |
+
display: none;
|
| 15214 |
+
opacity: 0;
|
| 15215 |
+
}
|
| 15216 |
+
|
| 15217 |
+
.eael-advance-tabs .eael-tabs-content > div.active,
|
| 15218 |
+
.eael-advance-tabs .eael-tabs-content > div.active-default {
|
| 15219 |
+
display: block;
|
| 15220 |
+
width: 100%;
|
| 15221 |
+
padding: 1em;
|
| 15222 |
+
opacity: 1;
|
| 15223 |
+
-webkit-animation: fadeIn linear 0.3s;
|
| 15224 |
+
animation: fadeIn linear 0.3s;
|
| 15225 |
+
background-color: #444;
|
| 15226 |
+
}
|
| 15227 |
+
|
| 15228 |
+
/*--- Inline Icon ---*/
|
| 15229 |
+
.eael-tab-inline-icon li a .fa {
|
| 15230 |
+
margin-right: 10px;
|
| 15231 |
+
line-height: 1;
|
| 15232 |
+
}
|
| 15233 |
+
|
| 15234 |
+
.eael-tab-top-icon li {
|
| 15235 |
+
display: -webkit-box;
|
| 15236 |
+
display: -webkit-flex;
|
| 15237 |
+
display: -ms-flexbox;
|
| 15238 |
+
display: flex;
|
| 15239 |
+
-webkit-flex-wrap: wrap;
|
| 15240 |
+
-ms-flex-wrap: wrap;
|
| 15241 |
+
flex-wrap: wrap;
|
| 15242 |
+
text-align: center;
|
| 15243 |
+
}
|
| 15244 |
+
|
| 15245 |
+
.eael-tab-top-icon li a {
|
| 15246 |
+
display: -webkit-box;
|
| 15247 |
+
display: -webkit-flex;
|
| 15248 |
+
display: -ms-flexbox;
|
| 15249 |
+
display: flex;
|
| 15250 |
+
-webkit-flex-wrap: wrap;
|
| 15251 |
+
-ms-flex-wrap: wrap;
|
| 15252 |
+
flex-wrap: wrap;
|
| 15253 |
+
text-align: center;
|
| 15254 |
+
}
|
| 15255 |
+
|
| 15256 |
+
.eael-tab-top-icon li .fa,
|
| 15257 |
+
.eael-tab-top-icon li .eael-tab-title {
|
| 15258 |
+
-webkit-box-flex: 1;
|
| 15259 |
+
-webkit-flex: 1 1 100%;
|
| 15260 |
+
-ms-flex: 1 1 100%;
|
| 15261 |
+
flex: 1 1 100%;
|
| 15262 |
+
line-height: 1;
|
| 15263 |
+
}
|
| 15264 |
+
|
| 15265 |
+
.eael-tab-top-icon li a .eael-tab-title {
|
| 15266 |
+
margin-top: 10px;
|
| 15267 |
+
}
|
| 15268 |
+
|
| 15269 |
+
/*--- Vertical Tabs ---*/
|
| 15270 |
+
.eael-advance-tabs.eael-tabs-vertical {
|
| 15271 |
+
display: -webkit-box;
|
| 15272 |
+
display: -webkit-flex;
|
| 15273 |
+
display: -ms-flexbox;
|
| 15274 |
+
display: flex;
|
| 15275 |
+
}
|
| 15276 |
+
|
| 15277 |
+
.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav {
|
| 15278 |
+
-webkit-box-flex: 0;
|
| 15279 |
+
-webkit-flex: 0 0 auto;
|
| 15280 |
+
-ms-flex: 0 0 auto;
|
| 15281 |
+
flex: 0 0 auto;
|
| 15282 |
+
}
|
| 15283 |
+
|
| 15284 |
+
.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav > ul {
|
| 15285 |
+
-webkit-box-orient: vertical;
|
| 15286 |
+
-webkit-box-direction: normal;
|
| 15287 |
+
-webkit-flex-flow: column wrap;
|
| 15288 |
+
-ms-flex-flow: column wrap;
|
| 15289 |
+
flex-flow: column wrap;
|
| 15290 |
+
}
|
| 15291 |
+
|
| 15292 |
+
.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav > ul > li {
|
| 15293 |
+
width: 100%;
|
| 15294 |
+
-webkit-box-pack: start;
|
| 15295 |
+
-webkit-justify-content: start;
|
| 15296 |
+
-ms-flex-pack: start;
|
| 15297 |
+
justify-content: start;
|
| 15298 |
+
}
|
| 15299 |
+
|
| 15300 |
+
.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav > ul li::after {
|
| 15301 |
+
bottom: auto !important;
|
| 15302 |
+
right: -10px;
|
| 15303 |
+
top: calc(50% - 10px);
|
| 15304 |
+
left: auto !important;
|
| 15305 |
+
border-left: 10px solid #444;
|
| 15306 |
+
border-right: 0;
|
| 15307 |
+
border-top: 10px solid transparent;
|
| 15308 |
+
border-bottom: 10px solid transparent;
|
| 15309 |
+
}
|
| 15310 |
+
|
| 15311 |
+
@media only screen and (max-width: 767px) {
|
| 15312 |
+
.eael-advance-tabs .eael-tabs-nav > ul {
|
| 15313 |
+
-webkit-flex-wrap: wrap;
|
| 15314 |
+
-ms-flex-wrap: wrap;
|
| 15315 |
+
flex-wrap: wrap;
|
| 15316 |
+
}
|
| 15317 |
+
|
| 15318 |
+
.eael-advance-tabs .eael-tabs-nav > ul li {
|
| 15319 |
+
-webkit-box-flex: 1;
|
| 15320 |
+
-webkit-flex: 1 100%;
|
| 15321 |
+
-ms-flex: 1 100%;
|
| 15322 |
+
flex: 1 100%;
|
| 15323 |
+
}
|
| 15324 |
+
|
| 15325 |
+
.eael-advance-tabs.eael-tabs-vertical {
|
| 15326 |
+
-webkit-flex-wrap: wrap;
|
| 15327 |
+
-ms-flex-wrap: wrap;
|
| 15328 |
+
flex-wrap: wrap;
|
| 15329 |
+
}
|
| 15330 |
+
|
| 15331 |
+
.eael-advance-tabs.eael-tabs-vertical div.eael-tabs-nav {
|
| 15332 |
+
-webkit-box-flex: 1;
|
| 15333 |
+
-webkit-flex: 1 100%;
|
| 15334 |
+
-ms-flex: 1 100%;
|
| 15335 |
+
flex: 1 100%;
|
| 15336 |
+
}
|
| 15337 |
+
|
| 15338 |
+
.eael-advance-tabs.eael-tabs-vertical ul {
|
| 15339 |
+
-webkit-box-flex: 1;
|
| 15340 |
+
-webkit-flex: 1 100%;
|
| 15341 |
+
-ms-flex: 1 100%;
|
| 15342 |
+
flex: 1 100%;
|
| 15343 |
+
}
|
| 15344 |
+
|
| 15345 |
+
.eael-advance-tabs.eael-tabs-vertical ul li {
|
| 15346 |
+
-webkit-box-flex: 1;
|
| 15347 |
+
-webkit-flex: 1 100%;
|
| 15348 |
+
-ms-flex: 1 100%;
|
| 15349 |
+
flex: 1 100%;
|
| 15350 |
+
}
|
| 15351 |
+
|
| 15352 |
+
div.eael-advance-tabs.eael-tabs-vertical div.eael-tabs-nav > ul li::after {
|
| 15353 |
+
border-left-color: transparent !important;
|
| 15354 |
+
bottom: -20px !important;
|
| 15355 |
+
left: 0 !important;
|
| 15356 |
+
right: 0 !important;
|
| 15357 |
+
top: auto !important;
|
| 15358 |
+
border-left: 10px solid transparent;
|
| 15359 |
+
border-right: 10px solid transparent;
|
| 15360 |
+
border-top-color: #444 !important;
|
| 15361 |
+
}
|
| 15362 |
+
}
|
| 15363 |
+
|
| 15364 |
+
/* ----------------------------------------- */
|
| 15365 |
+
/* 22. Caldera Contact Form Styler
|
| 15366 |
+
/* ----------------------------------------- */
|
| 15367 |
+
.eael-caldera-form-align-left,
|
| 15368 |
+
.eael-caldera-form-btn-align-left {
|
| 15369 |
+
text-align: left;
|
| 15370 |
+
}
|
| 15371 |
+
|
| 15372 |
+
.eael-caldera-form-align-right,
|
| 15373 |
+
.eael-caldera-form-btn-align-right {
|
| 15374 |
+
text-align: right;
|
| 15375 |
+
}
|
| 15376 |
+
|
| 15377 |
+
.eael-caldera-form-align-center,
|
| 15378 |
+
.eael-caldera-form-btn-align-center {
|
| 15379 |
+
text-align: center;
|
| 15380 |
+
}
|
| 15381 |
+
|
| 15382 |
+
.eael-caldera-form .control-label {
|
| 15383 |
+
display: none;
|
| 15384 |
+
}
|
| 15385 |
+
|
| 15386 |
+
.eael-caldera-form-labels-yes .control-label {
|
| 15387 |
+
display: block;
|
| 15388 |
+
}
|
| 15389 |
+
|
| 15390 |
+
.eael-caldera-form-button-center .form-group input[type=button],
|
| 15391 |
+
.eael-caldera-form-button-center .form-group input[type=submit] {
|
| 15392 |
+
display: block;
|
| 15393 |
+
margin: 0 auto;
|
| 15394 |
+
}
|
| 15395 |
+
|
| 15396 |
+
.eael-caldera-form-button-right .form-group input[type=button],
|
| 15397 |
+
.eael-caldera-form-button-right .form-group input[type=submit] {
|
| 15398 |
+
float: right;
|
| 15399 |
+
}
|
| 15400 |
+
|
| 15401 |
+
.eael-caldera-form .intl-tel-input {
|
| 15402 |
+
display: inherit;
|
| 15403 |
+
}
|
| 15404 |
+
|
| 15405 |
+
.eael-custom-radio-checkbox .caldera-grid input[type=checkbox],
|
| 15406 |
+
.eael-custom-radio-checkbox .caldera-grid input[type=radio] {
|
| 15407 |
+
border-style: solid;
|
| 15408 |
+
border-width: 0;
|
| 15409 |
+
padding: 3px;
|
| 15410 |
+
-webkit-appearance: none;
|
| 15411 |
+
}
|
| 15412 |
+
|
| 15413 |
+
.eael-caldera-form-button-full-width .form-group input[type=submit],
|
| 15414 |
+
.eael-caldera-form-button-full-width .form-group input[type=button] {
|
| 15415 |
+
width: 100%;
|
| 15416 |
+
}
|
| 15417 |
+
|
| 15418 |
+
/*--------------------------*/
|
| 15419 |
+
/* 19. Call To Action
|
| 15420 |
+
/*-------------------------*/
|
| 15421 |
+
.eael-call-to-action {
|
| 15422 |
+
width: 100%;
|
| 15423 |
+
height: auto;
|
| 15424 |
+
display: block;
|
| 15425 |
+
padding: 30px;
|
| 15426 |
+
font-size: 16px;
|
| 15427 |
+
color: #4d4d4d;
|
| 15428 |
+
font-weight: 400;
|
| 15429 |
+
line-height: 27px;
|
| 15430 |
+
margin: 0 auto;
|
| 15431 |
+
}
|
| 15432 |
+
|
| 15433 |
+
.eael-call-to-action p {
|
| 15434 |
+
margin-bottom: 10px;
|
| 15435 |
+
}
|
| 15436 |
+
|
| 15437 |
+
.eael-call-to-action .title {
|
| 15438 |
+
font-size: 36px;
|
| 15439 |
+
font-weight: 600;
|
| 15440 |
+
line-height: 36px;
|
| 15441 |
+
margin-bottom: 10px;
|
| 15442 |
+
text-transform: capitalize;
|
| 15443 |
+
font-style: normal;
|
| 15444 |
+
}
|
| 15445 |
+
|
| 15446 |
+
.eael-call-to-action.cta-center {
|
| 15447 |
+
text-align: center;
|
| 15448 |
+
}
|
| 15449 |
+
|
| 15450 |
+
.eael-call-to-action.cta-right {
|
| 15451 |
+
text-align: right;
|
| 15452 |
+
}
|
| 15453 |
+
|
| 15454 |
+
.eael-call-to-action.cta-left {
|
| 15455 |
+
text-align: left;
|
| 15456 |
+
}
|
| 15457 |
+
|
| 15458 |
+
.eael-call-to-action.bg-lite {
|
| 15459 |
+
background: #f4f4f4;
|
| 15460 |
+
}
|
| 15461 |
+
|
| 15462 |
+
.eael-call-to-action.bg-img {
|
| 15463 |
+
background-image: url("../img/bg.jpg");
|
| 15464 |
+
background-repeat: no-repeat;
|
| 15465 |
+
background-position: center;
|
| 15466 |
+
background-size: cover;
|
| 15467 |
+
position: relative;
|
| 15468 |
+
z-index: 0;
|
| 15469 |
+
color: rgba(255, 255, 255, 0.7);
|
| 15470 |
+
}
|
| 15471 |
+
|
| 15472 |
+
.eael-call-to-action.bg-img .icon {
|
| 15473 |
+
color: #fff;
|
| 15474 |
+
}
|
| 15475 |
+
|
| 15476 |
+
.eael-call-to-action.bg-img:after {
|
| 15477 |
+
content: "";
|
| 15478 |
+
position: absolute;
|
| 15479 |
+
width: 100%;
|
| 15480 |
+
height: 100%;
|
| 15481 |
+
top: 0px;
|
| 15482 |
+
left: 0px;
|
| 15483 |
+
z-index: -1;
|
| 15484 |
+
background: rgba(0, 0, 0, 0.8);
|
| 15485 |
+
}
|
| 15486 |
+
|
| 15487 |
+
.eael-call-to-action.bg-img.bg-fixed {
|
| 15488 |
+
background-attachment: fixed;
|
| 15489 |
+
background-position: center center;
|
| 15490 |
+
}
|
| 15491 |
+
|
| 15492 |
+
.eael-call-to-action.bg-img .title {
|
| 15493 |
+
color: rgba(255, 255, 255, 0.9);
|
| 15494 |
+
}
|
| 15495 |
+
|
| 15496 |
+
/*--- Cta Flex ---*/
|
| 15497 |
+
.eael-call-to-action.cta-flex,
|
| 15498 |
+
.eael-call-to-action.cta-icon-flex {
|
| 15499 |
+
display: -webkit-box;
|
| 15500 |
+
display: -webkit-flex;
|
| 15501 |
+
display: -ms-flexbox;
|
| 15502 |
+
display: flex;
|
| 15503 |
+
-webkit-box-pack: justify;
|
| 15504 |
+
-webkit-justify-content: space-between;
|
| 15505 |
+
-ms-flex-pack: justify;
|
| 15506 |
+
justify-content: space-between;
|
| 15507 |
+
-webkit-box-align: start;
|
| 15508 |
+
-webkit-align-items: flex-start;
|
| 15509 |
+
-ms-flex-align: start;
|
| 15510 |
+
align-items: flex-start;
|
| 15511 |
+
}
|
| 15512 |
+
|
| 15513 |
+
/*--- Cta Icon Flex ---*/
|
| 15514 |
+
.eael-call-to-action.cta-icon-flex .icon {
|
| 15515 |
+
-webkit-box-flex: 1;
|
| 15516 |
+
-webkit-flex-grow: 1;
|
| 15517 |
+
-ms-flex-positive: 1;
|
| 15518 |
+
flex-grow: 1;
|
| 15519 |
+
font-size: 80px;
|
| 15520 |
+
text-align: left;
|
| 15521 |
+
line-height: 130px;
|
| 15522 |
+
}
|
| 15523 |
+
|
| 15524 |
+
.eael-call-to-action.cta-icon-flex .action {
|
| 15525 |
+
-webkit-box-flex: 1;
|
| 15526 |
+
-webkit-flex-grow: 1;
|
| 15527 |
+
-ms-flex-positive: 1;
|
| 15528 |
+
flex-grow: 1;
|
| 15529 |
+
text-align: right;
|
| 15530 |
+
padding-top: 22px;
|
| 15531 |
+
-webkit-flex-basis: 22%;
|
| 15532 |
+
-ms-flex-preferred-size: 22%;
|
| 15533 |
+
flex-basis: 22%;
|
| 15534 |
+
}
|
| 15535 |
+
|
| 15536 |
+
.eael-call-to-action.cta-icon-flex .content {
|
| 15537 |
+
-webkit-box-flex: 1;
|
| 15538 |
+
-webkit-flex-grow: 1;
|
| 15539 |
+
-ms-flex-positive: 1;
|
| 15540 |
+
flex-grow: 1;
|
| 15541 |
+
padding: 0px 30px;
|
| 15542 |
+
}
|
| 15543 |
+
|
| 15544 |
+
/*--- Cta Flex ---*/
|
| 15545 |
+
.eael-call-to-action.cta-flex .content {
|
| 15546 |
+
padding: 0px 15px;
|
| 15547 |
+
-webkit-box-flex: 1;
|
| 15548 |
+
-webkit-flex-grow: 1;
|
| 15549 |
+
-ms-flex-positive: 1;
|
| 15550 |
+
flex-grow: 1;
|
| 15551 |
+
}
|
| 15552 |
+
|
| 15553 |
+
.eael-call-to-action.cta-flex .action {
|
| 15554 |
+
-webkit-box-flex: 1;
|
| 15555 |
+
-webkit-flex-grow: 1;
|
| 15556 |
+
-ms-flex-positive: 1;
|
| 15557 |
+
flex-grow: 1;
|
| 15558 |
+
text-align: right;
|
| 15559 |
+
padding-top: 25px;
|
| 15560 |
+
-webkit-flex-basis: 23%;
|
| 15561 |
+
-ms-flex-preferred-size: 23%;
|
| 15562 |
+
flex-basis: 23%;
|
| 15563 |
+
}
|
| 15564 |
+
|
| 15565 |
+
/*--- Cta Button ---*/
|
| 15566 |
+
.eael-call-to-action .cta-button {
|
| 15567 |
+
position: relative;
|
| 15568 |
+
display: inline-block;
|
| 15569 |
+
padding: 12px 30px;
|
| 15570 |
+
background: #f9f9f9;
|
| 15571 |
+
font-size: 16px;
|
| 15572 |
+
text-decoration: none;
|
| 15573 |
+
color: #4d4d4d;
|
| 15574 |
+
-webkit-transition: .5s;
|
| 15575 |
+
-o-transition: .5s;
|
| 15576 |
+
transition: .5s;
|
| 15577 |
+
-webkit-box-shadow: 0px 0px 3px -1px rgba(0, 0, 0, 0.2);
|
| 15578 |
+
-ms-box-shadow: 0px 0px 3px -1px rgba(0, 0, 0, 0.2);
|
| 15579 |
+
box-shadow: 0px 0px 3px -1px rgba(0, 0, 0, 0.2);
|
| 15580 |
+
margin-right: 10px;
|
| 15581 |
+
margin-top: 10px;
|
| 15582 |
+
z-index: 0;
|
| 15583 |
+
overflow: hidden;
|
| 15584 |
+
}
|
| 15585 |
+
|
| 15586 |
+
.eael-call-to-action .cta-button:last-child {
|
| 15587 |
+
margin-right: 0px;
|
| 15588 |
+
}
|
| 15589 |
+
|
| 15590 |
+
.eael-call-to-action .cta-button:focus {
|
| 15591 |
+
outline: none;
|
| 15592 |
+
}
|
| 15593 |
+
|
| 15594 |
+
/*--- Hover ---*/
|
| 15595 |
+
.eael-call-to-action .cta-button:hover {
|
| 15596 |
+
color: #fff;
|
| 15597 |
+
background: #3F51B5;
|
| 15598 |
+
-webkit-box-shadow: 0px 1px 12px 1px rgba(0, 0, 0, 0.1);
|
| 15599 |
+
-ms-box-shadow: 0px 1px 12px 1px rgba(0, 0, 0, 0.1);
|
| 15600 |
+
box-shadow: 0px 1px 12px 1px rgba(0, 0, 0, 0.1);
|
| 15601 |
+
}
|
| 15602 |
+
|
| 15603 |
+
/*--- Cta Button effect 1 ---*/
|
| 15604 |
+
.eael-call-to-action .cta-button.effect-1:after {
|
| 15605 |
+
content: "";
|
| 15606 |
+
position: absolute;
|
| 15607 |
+
width: 100%;
|
| 15608 |
+
height: 100%;
|
| 15609 |
+
background: #3F51B5;
|
| 15610 |
+
top: 0px;
|
| 15611 |
+
left: 0px;
|
| 15612 |
+
transform: translateY(-100%);
|
| 15613 |
+
-webkit-transform: translateY(-100%);
|
| 15614 |
+
-ms-transform: translateY(-100%);
|
| 15615 |
+
z-index: -1;
|
| 15616 |
+
-webkit-transition: .5s;
|
| 15617 |
+
-o-transition: .5s;
|
| 15618 |
+
transition: .5s;
|
| 15619 |
+
color: #fff;
|
| 15620 |
+
}
|
| 15621 |
+
|
| 15622 |
+
.eael-call-to-action .cta-button.effect-1:hover::after {
|
| 15623 |
+
-webkit-transform: translateY(0);
|
| 15624 |
+
-ms-transform: translateY(0);
|
| 15625 |
+
transform: translateY(0);
|
| 15626 |
+
}
|
| 15627 |
+
|
| 15628 |
+
/*--- Cta Button effect 2 ---*/
|
| 15629 |
+
.eael-call-to-action .cta-button.effect-2:after {
|
| 15630 |
+
content: "";
|
| 15631 |
+
position: absolute;
|
| 15632 |
+
width: 100%;
|
| 15633 |
+
height: 100%;
|
| 15634 |
+
background: #3F51B5;
|
| 15635 |
+
top: 0px;
|
| 15636 |
+
left: 0px;
|
| 15637 |
+
z-index: -1;
|
| 15638 |
+
-webkit-transition: .5s;
|
| 15639 |
+
-o-transition: .5s;
|
| 15640 |
+
transition: .5s;
|
| 15641 |
+
color: #fff;
|
| 15642 |
+
-webkit-transform: translateX(-100%);
|
| 15643 |
+
-ms-transform: translateX(-100%);
|
| 15644 |
+
transform: translateX(-100%);
|
| 15645 |
+
}
|
| 15646 |
+
|
| 15647 |
+
.eael-call-to-action .cta-button.effect-2:hover::after {
|
| 15648 |
+
-webkit-transform: translateX(0);
|
| 15649 |
+
-ms-transform: translateX(0);
|
| 15650 |
+
transform: translateX(0);
|
| 15651 |
+
}
|
| 15652 |
+
|
| 15653 |
+
/*--- Media Queries ---*/
|
| 15654 |
+
@media only screen and (max-width: 768px) {
|
| 15655 |
+
.eael-call-to-action.cta-flex,
|
| 15656 |
+
.eael-call-to-action.cta-icon-flex {
|
| 15657 |
+
-webkit-flex-wrap: wrap;
|
| 15658 |
+
-ms-flex-wrap: wrap;
|
| 15659 |
+
flex-wrap: wrap;
|
| 15660 |
+
}
|
| 15661 |
+
|
| 15662 |
+
.eael-call-to-action .title {
|
| 15663 |
+
font-size: 28px;
|
| 15664 |
+
line-height: 36px;
|
| 15665 |
+
margin-top: 0px;
|
| 15666 |
+
}
|
| 15667 |
+
|
| 15668 |
+
.eael-call-to-action.cta-icon-flex .icon {
|
| 15669 |
+
-webkit-box-flex: 1;
|
| 15670 |
+
-webkit-flex-grow: 1;
|
| 15671 |
+
-ms-flex-positive: 1;
|
| 15672 |
+
flex-grow: 1;
|
| 15673 |
+
font-size: 48px;
|
| 15674 |
+
line-height: 90px;
|
| 15675 |
+
text-align: center;
|
| 15676 |
+
}
|
| 15677 |
+
|
| 15678 |
+
.eael-call-to-action.cta-flex .content,
|
| 15679 |
+
.eael-call-to-action.cta-icon-flex .content {
|
| 15680 |
+
-webkit-box-flex: 1;
|
| 15681 |
+
-webkit-flex-grow: 1;
|
| 15682 |
+
-ms-flex-positive: 1;
|
| 15683 |
+
flex-grow: 1;
|
| 15684 |
+
text-align: center;
|
| 15685 |
+
padding: 0px;
|
| 15686 |
+
}
|
| 15687 |
+
|
| 15688 |
+
.eael-call-to-action.cta-flex .action,
|
| 15689 |
+
.eael-call-to-action.cta-icon-flex .action {
|
| 15690 |
+
text-align: center;
|
| 15691 |
+
padding-top: 0px;
|
| 15692 |
+
}
|
| 15693 |
+
|
| 15694 |
+
.eael-call-to-action .cta-button {
|
| 15695 |
+
padding: 12px 25px;
|
| 15696 |
+
}
|
| 15697 |
+
}
|
| 15698 |
+
@media only screen and (max-width: 360px) {
|
| 15699 |
+
.eael-call-to-action {
|
| 15700 |
+
font-size: 14px;
|
| 15701 |
+
line-height: 26px;
|
| 15702 |
+
}
|
| 15703 |
+
|
| 15704 |
+
.eael-call-to-action .cta-button {
|
| 15705 |
+
padding: 4px 20px;
|
| 15706 |
+
font-size: 12px;
|
| 15707 |
+
}
|
| 15708 |
+
|
| 15709 |
+
.eael-call-to-action .title {
|
| 15710 |
+
font-size: 20px;
|
| 15711 |
+
line-height: 30px;
|
| 15712 |
+
}
|
| 15713 |
+
}
|
| 15714 |
+
|
| 15715 |
+
@-webkit-keyframes "loaderSpin" {
|
| 15716 |
+
0% {
|
| 15717 |
+
-webkit-transform: rotate(0deg);
|
| 15718 |
+
transform: rotate(0deg);
|
| 15719 |
+
}
|
| 15720 |
+
100% {
|
| 15721 |
+
-webkit-transform: rotate(360deg);
|
| 15722 |
+
transform: rotate(360deg);
|
| 15723 |
+
}
|
| 15724 |
+
}
|
| 15725 |
+
@keyframes "loaderSpin" {
|
| 15726 |
+
0% {
|
| 15727 |
+
-webkit-transform: rotate(0deg);
|
| 15728 |
+
transform: rotate(0deg);
|
| 15729 |
+
}
|
| 15730 |
+
100% {
|
| 15731 |
+
-webkit-transform: rotate(360deg);
|
| 15732 |
+
transform: rotate(360deg);
|
| 15733 |
+
}
|
| 15734 |
+
}
|
| 15735 |
+
.eael-load-more-button-wrap {
|
| 15736 |
+
display: -webkit-box;
|
| 15737 |
+
display: -webkit-flex;
|
| 15738 |
+
display: -ms-flexbox;
|
| 15739 |
+
display: flex;
|
| 15740 |
+
}
|
| 15741 |
+
|
| 15742 |
+
.eael-load-more-button {
|
| 15743 |
+
display: -webkit-box;
|
| 15744 |
+
display: -webkit-flex;
|
| 15745 |
+
display: -ms-flexbox;
|
| 15746 |
+
display: flex;
|
| 15747 |
+
-webkit-box-align: center;
|
| 15748 |
+
-webkit-align-items: center;
|
| 15749 |
+
-ms-flex-align: center;
|
| 15750 |
+
align-items: center;
|
| 15751 |
+
-webkit-box-pack: center;
|
| 15752 |
+
-webkit-justify-content: center;
|
| 15753 |
+
-ms-flex-pack: center;
|
| 15754 |
+
justify-content: center;
|
| 15755 |
+
padding: 1em 2em;
|
| 15756 |
+
border: 0px solid;
|
| 15757 |
+
font-size: 16px;
|
| 15758 |
+
overflow: hidden;
|
| 15759 |
+
}
|
| 15760 |
+
.eael-load-more-button .button__loader {
|
| 15761 |
+
left: -100%;
|
| 15762 |
+
top: auto;
|
| 15763 |
+
margin-right: 5px;
|
| 15764 |
+
-webkit-transition: all .2s;
|
| 15765 |
+
-o-transition: all .2s;
|
| 15766 |
+
transition: all .2s;
|
| 15767 |
+
}
|
| 15768 |
+
.eael-load-more-button > span {
|
| 15769 |
+
margin-left: -20px;
|
| 15770 |
+
}
|
| 15771 |
+
|
| 15772 |
+
.eael-load-more-button.button--loading > span {
|
| 15773 |
+
margin-left: 0;
|
| 15774 |
+
}
|
| 15775 |
+
.eael-load-more-button.button--loading .button__loader {
|
| 15776 |
+
left: 0;
|
| 15777 |
+
}
|
| 15778 |
+
|
| 15779 |
+
.eael-btn-loader {
|
| 15780 |
+
border-radius: 50%;
|
| 15781 |
+
width: 20px;
|
| 15782 |
+
height: 20px;
|
| 15783 |
+
font-size: 10px;
|
| 15784 |
+
position: relative;
|
| 15785 |
+
text-indent: -9999em;
|
| 15786 |
+
border-top: 4px solid rgba(255, 255, 255, 0.2);
|
| 15787 |
+
border-right: 4px solid rgba(255, 255, 255, 0.2);
|
| 15788 |
+
border-bottom: 4px solid rgba(255, 255, 255, 0.2);
|
| 15789 |
+
border-left: 4px solid #ffffff;
|
| 15790 |
+
-webkit-transform: translateZ(0);
|
| 15791 |
+
transform: translateZ(0);
|
| 15792 |
+
-webkit-animation: loaderSpin 1.1s infinite linear;
|
| 15793 |
+
animation: loaderSpin 1.1s infinite linear;
|
| 15794 |
+
}
|
| 15795 |
+
.eael-btn-loader:after {
|
| 15796 |
+
border-radius: 50%;
|
| 15797 |
+
width: 20px;
|
| 15798 |
+
height: 20px;
|
| 15799 |
+
}
|
| 15800 |
+
|
| 15801 |
+
/*--------------------------------*/
|
| 15802 |
+
/* 11. Contact Form 7 Styles
|
| 15803 |
+
/*--------------------------------*/
|
| 15804 |
+
.eael-contact-form.eael-contact-form-align-center,
|
| 15805 |
+
.eael-contact-form-7.eael-contact-form-btn-align-center input.wpcf7-submit {
|
| 15806 |
+
margin-left: auto !important;
|
| 15807 |
+
margin-right: auto !important;
|
| 15808 |
+
display: block;
|
| 15809 |
+
float: none;
|
| 15810 |
+
}
|
| 15811 |
+
|
| 15812 |
+
.eael-contact-form.eael-contact-form-align-left,
|
| 15813 |
+
.eael-contact-form-7.eael-contact-form-btn-align-left input.wpcf7-submit {
|
| 15814 |
+
float: left;
|
| 15815 |
+
width: auto;
|
| 15816 |
+
}
|
| 15817 |
+
|
| 15818 |
+
.eael-contact-form.eael-contact-form-align-right,
|
| 15819 |
+
.eael-contact-form-7.eael-contact-form-btn-align-right input.wpcf7-submit {
|
| 15820 |
+
float: right;
|
| 15821 |
+
width: auto;
|
| 15822 |
+
}
|
| 15823 |
+
|
| 15824 |
+
.eael-contact-form-7 textarea,
|
| 15825 |
+
.eael-contact-form-7 input[type="text"],
|
| 15826 |
+
.eael-contact-form-7 input[type="password"],
|
| 15827 |
+
.eael-contact-form-7 input[type="datetime"],
|
| 15828 |
+
.eael-contact-form-7 input[type="datetime-local"],
|
| 15829 |
+
.eael-contact-form-7 input[type="date"],
|
| 15830 |
+
.eael-contact-form-7 input[type="month"],
|
| 15831 |
+
.eael-contact-form-7 input[type="time"],
|
| 15832 |
+
.eael-contact-form-7 input[type="week"],
|
| 15833 |
+
.eael-contact-form-7 input[type="number"],
|
| 15834 |
+
.eael-contact-form-7 input[type="email"],
|
| 15835 |
+
.eael-contact-form-7 input[type="url"],
|
| 15836 |
+
.eael-contact-form-7 input[type="search"],
|
| 15837 |
+
.eael-contact-form-7 input[type="tel"],
|
| 15838 |
+
.eael-contact-form-7 input[type="color"],
|
| 15839 |
+
.eael-contact-form-7 .uneditable-input {
|
| 15840 |
+
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
| 15841 |
+
-webkit-transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
|
| 15842 |
+
transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
|
| 15843 |
+
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
|
| 15844 |
+
transition: border linear 0.2s, box-shadow linear 0.2s;
|
| 15845 |
+
transition: border linear 0.2s, box-shadow linear 0.2s, -webkit-box-shadow linear 0.2s;
|
| 15846 |
+
}
|
| 15847 |
+
|
| 15848 |
+
.eael-contact-form-7 .wpcf7-form::before,
|
| 15849 |
+
.eael-contact-form-7 .wpcf7-form::after {
|
| 15850 |
+
content: " ";
|
| 15851 |
+
clear: both;
|
| 15852 |
+
display: table;
|
| 15853 |
+
}
|
| 15854 |
+
|
| 15855 |
+
.eael-contact-form-7 .wpcf7-form:after {
|
| 15856 |
+
clear: both;
|
| 15857 |
+
content: "";
|
| 15858 |
+
font-size: 0;
|
| 15859 |
+
height: 0;
|
| 15860 |
+
display: block;
|
| 15861 |
+
visibility: hidden;
|
| 15862 |
+
}
|
| 15863 |
+
|
| 15864 |
+
.eael-contact-form-7 .wpcf7-form label,
|
| 15865 |
+
.eael-contact-form-7 .wpcf7-form .wpcf7-form-control-wrap {
|
| 15866 |
+
display: block;
|
| 15867 |
+
}
|
| 15868 |
+
|
| 15869 |
+
.eael-contact-form-7 .wpcf7-form p {
|
| 15870 |
+
margin-bottom: 0;
|
| 15871 |
+
}
|
| 15872 |
+
|
| 15873 |
+
.eael-contact-form-7.labels-hide .wpcf7-form label {
|
| 15874 |
+
display: none;
|
| 15875 |
+
}
|
| 15876 |
+
|
| 15877 |
+
.eael-contact-form-7-title {
|
| 15878 |
+
margin-bottom: 10px;
|
| 15879 |
+
}
|
| 15880 |
+
|
| 15881 |
+
.eael-contact-form-7-description {
|
| 15882 |
+
margin-bottom: 20px;
|
| 15883 |
+
}
|
| 15884 |
+
|
| 15885 |
+
.eael-contact-form-7-button-full-width .wpcf7-form-control.wpcf7-submit {
|
| 15886 |
+
width: 100%;
|
| 15887 |
+
}
|
| 15888 |
+
|
| 15889 |
+
.eael-contact-form-7-wrapper .eael-contact-form-align-center form {
|
| 15890 |
+
margin: 0 auto;
|
| 15891 |
+
}
|
| 15892 |
+
|
| 15893 |
+
.eael-ticker-wrap {
|
| 15894 |
+
overflow: hidden;
|
| 15895 |
+
display: -webkit-box;
|
| 15896 |
+
display: -webkit-flex;
|
| 15897 |
+
display: -ms-flexbox;
|
| 15898 |
+
display: flex;
|
| 15899 |
+
-webkit-box-orient: horizontal;
|
| 15900 |
+
-webkit-box-direction: normal;
|
| 15901 |
+
-webkit-flex-flow: row nowrap;
|
| 15902 |
+
-ms-flex-flow: row nowrap;
|
| 15903 |
+
flex-flow: row nowrap;
|
| 15904 |
+
-webkit-box-align: center;
|
| 15905 |
+
-webkit-align-items: center;
|
| 15906 |
+
-ms-flex-align: center;
|
| 15907 |
+
align-items: center;
|
| 15908 |
+
width: 100%;
|
| 15909 |
+
}
|
| 15910 |
+
|
| 15911 |
+
.eael-ticker-wrap .ticker-badge {
|
| 15912 |
+
-webkit-box-flex: 0;
|
| 15913 |
+
-webkit-flex: 0 0 auto;
|
| 15914 |
+
-ms-flex: 0 0 auto;
|
| 15915 |
+
flex: 0 0 auto;
|
| 15916 |
+
padding: 8px 12px;
|
| 15917 |
+
}
|
| 15918 |
+
|
| 15919 |
+
.eael-ticker-wrap .eael-ticker {
|
| 15920 |
+
overflow: hidden;
|
| 15921 |
+
-webkit-box-flex: 1;
|
| 15922 |
+
-webkit-flex: 1 1 auto;
|
| 15923 |
+
-ms-flex: 1 1 auto;
|
| 15924 |
+
flex: 1 1 auto;
|
| 15925 |
+
}
|
| 15926 |
+
|
| 15927 |
+
.eael-ticker-wrap .eael-ticker .ticker-content {
|
| 15928 |
+
padding: 8px 12px;
|
| 15929 |
+
line-height: 1.8;
|
| 15930 |
+
}
|
| 15931 |
+
|
| 15932 |
+
.eael-ticker-wrap .eael-ticker .ticker-content p {
|
| 15933 |
+
margin: 0;
|
| 15934 |
+
}
|
| 15935 |
+
|
| 15936 |
+
.eael-ticker-wrap .swiper-button-prev {
|
| 15937 |
+
left: auto !important;
|
| 15938 |
+
right: 25px;
|
| 15939 |
+
}
|
| 15940 |
+
|
| 15941 |
+
.eael-ticker-wrap div.swiper-slide,
|
| 15942 |
+
.eael-ticker-wrap div.swiper-slide.swiper-slide-prev,
|
| 15943 |
+
.eael-ticker-wrap div.swiper-slide.swiper-slide-next {
|
| 15944 |
+
opacity: 0 !important;
|
| 15945 |
+
}
|
| 15946 |
+
|
| 15947 |
+
.eael-ticker-wrap div.swiper-slide.swiper-slide-active {
|
| 15948 |
+
opacity: 1 !important;
|
| 15949 |
+
}
|
| 15950 |
+
|
| 15951 |
+
.eael-ticker-wrap .eael-content-ticker.swiper-container .swiper-slide {
|
| 15952 |
+
text-align: left;
|
| 15953 |
+
}
|
| 15954 |
+
|
| 15955 |
+
@media only screen and (max-width: 767px) {
|
| 15956 |
+
.eael-ticker-wrap {
|
| 15957 |
+
-webkit-box-orient: horizontal;
|
| 15958 |
+
-webkit-box-direction: normal;
|
| 15959 |
+
-webkit-flex-flow: row wrap;
|
| 15960 |
+
-ms-flex-flow: row wrap;
|
| 15961 |
+
flex-flow: row wrap;
|
| 15962 |
+
}
|
| 15963 |
+
|
| 15964 |
+
.content-ticker-pagination {
|
| 15965 |
+
display: none;
|
| 15966 |
+
}
|
| 15967 |
+
}
|
| 15968 |
+
|
| 15969 |
+
/*---------------------------------*/
|
| 15970 |
+
/* 05. Countdown Styles
|
| 15971 |
+
/*---------------------------------*/
|
| 15972 |
+
/*--- General ---*/
|
| 15973 |
+
.eael-countdown-items {
|
| 15974 |
+
list-style: none;
|
| 15975 |
+
margin: 0;
|
| 15976 |
+
padding: 0;
|
| 15977 |
+
display: table;
|
| 15978 |
+
table-layout: fixed;
|
| 15979 |
+
width: 100%;
|
| 15980 |
+
}
|
| 15981 |
+
|
| 15982 |
+
.eael-countdown-items > li {
|
| 15983 |
+
list-style: none;
|
| 15984 |
+
margin: 0;
|
| 15985 |
+
padding: 0;
|
| 15986 |
+
display: table-cell;
|
| 15987 |
+
position: relative;
|
| 15988 |
+
}
|
| 15989 |
+
|
| 15990 |
+
.eael-countdown-item > div {
|
| 15991 |
+
text-align: center;
|
| 15992 |
+
padding: 20px;
|
| 15993 |
+
}
|
| 15994 |
+
|
| 15995 |
+
.eael-countdown-label-block .eael-countdown-digits,
|
| 15996 |
+
.eael-countdown-label-block .eael-countdown-label {
|
| 15997 |
+
display: block;
|
| 15998 |
+
text-align: center;
|
| 15999 |
+
}
|
| 16000 |
+
|
| 16001 |
+
.eael-countdown-digits {
|
| 16002 |
+
font-size: 54px;
|
| 16003 |
+
line-height: 1;
|
| 16004 |
+
}
|
| 16005 |
+
|
| 16006 |
+
.eael-countdown-label {
|
| 16007 |
+
font-size: 18px;
|
| 16008 |
+
line-height: 1;
|
| 16009 |
+
color: #ffffff;
|
| 16010 |
+
}
|
| 16011 |
+
|
| 16012 |
+
.eael-countdown-show-separator .eael-countdown-digits::after {
|
| 16013 |
+
content: ":";
|
| 16014 |
+
position: absolute;
|
| 16015 |
+
left: 98%;
|
| 16016 |
+
z-index: 9999;
|
| 16017 |
+
}
|
| 16018 |
+
|
| 16019 |
+
.eael-countdown-item:last-child .eael-countdown-digits::after {
|
| 16020 |
+
display: none;
|
| 16021 |
+
}
|
| 16022 |
+
|
| 16023 |
+
/*--- Style 1 ---*/
|
| 16024 |
+
.eael-countdown-items.style-1 .eael-countdown-item > div {
|
| 16025 |
+
background: #262625;
|
| 16026 |
+
}
|
| 16027 |
+
|
| 16028 |
+
/*--------------------------------*/
|
| 16029 |
+
/* 08. Creative Button styles
|
| 16030 |
+
/*--------------------------------*/
|
| 16031 |
+
.eael-creative-button-align-center {
|
| 16032 |
+
text-align: center;
|
| 16033 |
+
}
|
| 16034 |
+
|
| 16035 |
+
.eael-creative-button-wrapper {
|
| 16036 |
+
display: -webkit-box;
|
| 16037 |
+
display: -webkit-flex;
|
| 16038 |
+
display: -ms-flexbox;
|
| 16039 |
+
display: flex;
|
| 16040 |
+
}
|
| 16041 |
+
|
| 16042 |
+
.eael-creative-button {
|
| 16043 |
+
-webkit-box-flex: 0;
|
| 16044 |
+
-webkit-flex: 0 0 auto;
|
| 16045 |
+
-ms-flex: 0 0 auto;
|
| 16046 |
+
flex: 0 0 auto;
|
| 16047 |
+
min-width: 150px;
|
| 16048 |
+
text-align: center;
|
| 16049 |
+
vertical-align: middle;
|
| 16050 |
+
position: relative;
|
| 16051 |
+
z-index: 1;
|
| 16052 |
+
border-radius: 2px;
|
| 16053 |
+
padding: 20px 30px;
|
| 16054 |
+
font-size: 16px;
|
| 16055 |
+
line-height: 1;
|
| 16056 |
+
-webkit-backface-visibility: hidden;
|
| 16057 |
+
backface-visibility: hidden;
|
| 16058 |
+
-moz-osx-font-smoothing: grayscale;
|
| 16059 |
+
}
|
| 16060 |
+
|
| 16061 |
+
.eael-creative-button-align-center .eael-creative-button {
|
| 16062 |
+
float: none;
|
| 16063 |
+
display: inline-block;
|
| 16064 |
+
}
|
| 16065 |
+
|
| 16066 |
+
.eael-creative-button:focus {
|
| 16067 |
+
outline: none;
|
| 16068 |
+
}
|
| 16069 |
+
|
| 16070 |
+
.eael-creative-button > span {
|
| 16071 |
+
vertical-align: middle;
|
| 16072 |
+
}
|
| 16073 |
+
|
| 16074 |
+
/*--------------------------------------------*/
|
| 16075 |
+
/* 09. Individual eael-creative-button styles
|
| 16076 |
+
/*--------------------------------------------*/
|
| 16077 |
+
/*--- Winona ---*/
|
| 16078 |
+
.eael-creative-button--winona {
|
| 16079 |
+
overflow: hidden;
|
| 16080 |
+
padding: 0 !important;
|
| 16081 |
+
-webkit-transition: border-color 0.3s, background-color 0.3s;
|
| 16082 |
+
-o-transition: border-color 0.3s, background-color 0.3s;
|
| 16083 |
+
transition: border-color 0.3s, background-color 0.3s;
|
| 16084 |
+
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16085 |
+
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16086 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16087 |
+
}
|
| 16088 |
+
|
| 16089 |
+
.eael-creative-button--winona::after {
|
| 16090 |
+
content: attr(data-text);
|
| 16091 |
+
position: absolute;
|
| 16092 |
+
width: 100%;
|
| 16093 |
+
height: 100%;
|
| 16094 |
+
top: 0;
|
| 16095 |
+
left: 0;
|
| 16096 |
+
opacity: 0;
|
| 16097 |
+
-webkit-transform: translate3d(0, 25%, 0);
|
| 16098 |
+
transform: translate3d(0, 25%, 0);
|
| 16099 |
+
}
|
| 16100 |
+
|
| 16101 |
+
.eael-creative-button--winona > span {
|
| 16102 |
+
display: block;
|
| 16103 |
+
}
|
| 16104 |
+
|
| 16105 |
+
.eael-creative-button--winona::after,
|
| 16106 |
+
.eael-creative-button--winona > span {
|
| 16107 |
+
padding: 1em 2em;
|
| 16108 |
+
-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
|
| 16109 |
+
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
|
| 16110 |
+
transition: opacity 0.3s, -webkit-transform 0.3s;
|
| 16111 |
+
-o-transition: transform 0.3s, opacity 0.3s;
|
| 16112 |
+
transition: transform 0.3s, opacity 0.3s;
|
| 16113 |
+
transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
|
| 16114 |
+
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16115 |
+
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16116 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16117 |
+
}
|
| 16118 |
+
|
| 16119 |
+
.eael-creative-button--winona:hover::after {
|
| 16120 |
+
opacity: 1;
|
| 16121 |
+
-webkit-transform: translate3d(0, 0, 0);
|
| 16122 |
+
transform: translate3d(0, 0, 0);
|
| 16123 |
+
}
|
| 16124 |
+
|
| 16125 |
+
.eael-creative-button--winona:hover > span {
|
| 16126 |
+
opacity: 0;
|
| 16127 |
+
-webkit-transform: translate3d(0, -25%, 0);
|
| 16128 |
+
transform: translate3d(0, -25%, 0);
|
| 16129 |
+
}
|
| 16130 |
+
|
| 16131 |
+
/*--- Ujarak ---*/
|
| 16132 |
+
.eael-creative-button--ujarak {
|
| 16133 |
+
-webkit-transition: border-color 0.4s, color 0.4s;
|
| 16134 |
+
-o-transition: border-color 0.4s, color 0.4s;
|
| 16135 |
+
transition: border-color 0.4s, color 0.4s;
|
| 16136 |
+
}
|
| 16137 |
+
|
| 16138 |
+
.eael-creative-button--ujarak::before {
|
| 16139 |
+
content: '';
|
| 16140 |
+
position: absolute;
|
| 16141 |
+
top: 0;
|
| 16142 |
+
left: 0;
|
| 16143 |
+
width: 100%;
|
| 16144 |
+
height: 100%;
|
| 16145 |
+
z-index: -1;
|
| 16146 |
+
opacity: 0;
|
| 16147 |
+
-webkit-transform: scale3d(0.7, 1, 1);
|
| 16148 |
+
transform: scale3d(0.7, 1, 1);
|
| 16149 |
+
-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
|
| 16150 |
+
-webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
|
| 16151 |
+
transition: opacity 0.4s, -webkit-transform 0.4s;
|
| 16152 |
+
-o-transition: transform 0.4s, opacity 0.4s;
|
| 16153 |
+
transition: transform 0.4s, opacity 0.4s;
|
| 16154 |
+
transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
|
| 16155 |
+
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16156 |
+
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16157 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16158 |
+
}
|
| 16159 |
+
|
| 16160 |
+
.eael-creative-button--ujarak,
|
| 16161 |
+
.eael-creative-button--ujarak::before {
|
| 16162 |
+
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16163 |
+
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16164 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16165 |
+
}
|
| 16166 |
+
|
| 16167 |
+
.eael-creative-button--ujarak:hover::before {
|
| 16168 |
+
opacity: 1;
|
| 16169 |
+
-webkit-transform: translate3d(0, 0, 0);
|
| 16170 |
+
transform: translate3d(0, 0, 0);
|
| 16171 |
+
}
|
| 16172 |
+
|
| 16173 |
+
/*--- Wayra ---*/
|
| 16174 |
+
.eael-creative-button--wayra {
|
| 16175 |
+
overflow: hidden;
|
| 16176 |
+
-webkit-transition: border-color 0.3s, color 0.3s;
|
| 16177 |
+
-o-transition: border-color 0.3s, color 0.3s;
|
| 16178 |
+
transition: border-color 0.3s, color 0.3s;
|
| 16179 |
+
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16180 |
+
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16181 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16182 |
+
}
|
| 16183 |
+
|
| 16184 |
+
.eael-creative-button--wayra::before {
|
| 16185 |
+
content: '';
|
| 16186 |
+
position: absolute;
|
| 16187 |
+
top: 0;
|
| 16188 |
+
left: 0;
|
| 16189 |
+
width: 150%;
|
| 16190 |
+
height: 100%;
|
| 16191 |
+
z-index: -1;
|
| 16192 |
+
-webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
|
| 16193 |
+
transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
|
| 16194 |
+
-webkit-transform-origin: 0% 100%;
|
| 16195 |
+
-ms-transform-origin: 0% 100%;
|
| 16196 |
+
transform-origin: 0% 100%;
|
| 16197 |
+
-webkit-transition: -webkit-transform 0.3s, opacity 0.3s, background-color 0.3s;
|
| 16198 |
+
-webkit-transition: opacity 0.3s, background-color 0.3s, -webkit-transform 0.3s;
|
| 16199 |
+
transition: opacity 0.3s, background-color 0.3s, -webkit-transform 0.3s;
|
| 16200 |
+
-o-transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
|
| 16201 |
+
transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
|
| 16202 |
+
transition: transform 0.3s, opacity 0.3s, background-color 0.3s, -webkit-transform 0.3s;
|
| 16203 |
+
}
|
| 16204 |
+
|
| 16205 |
+
.eael-creative-button--wayra:hover::before {
|
| 16206 |
+
opacity: 1;
|
| 16207 |
+
-webkit-transform: rotate3d(0, 0, 1, 0deg);
|
| 16208 |
+
transform: rotate3d(0, 0, 1, 0deg);
|
| 16209 |
+
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16210 |
+
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16211 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16212 |
+
}
|
| 16213 |
+
|
| 16214 |
+
/*--- Tamaya ---*/
|
| 16215 |
+
.eael-creative-button--tamaya {
|
| 16216 |
+
overflow: hidden;
|
| 16217 |
+
}
|
| 16218 |
+
|
| 16219 |
+
.eael-creative-button--tamaya::before,
|
| 16220 |
+
.eael-creative-button--tamaya::after {
|
| 16221 |
+
content: attr(data-text);
|
| 16222 |
+
position: absolute;
|
| 16223 |
+
width: 100%;
|
| 16224 |
+
height: 50%;
|
| 16225 |
+
left: 0;
|
| 16226 |
+
overflow: hidden;
|
| 16227 |
+
-webkit-transition: -webkit-transform 0.3s;
|
| 16228 |
+
transition: -webkit-transform 0.3s;
|
| 16229 |
+
-o-transition: transform 0.3s;
|
| 16230 |
+
transition: transform 0.3s;
|
| 16231 |
+
transition: transform 0.3s, -webkit-transform 0.3s;
|
| 16232 |
+
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16233 |
+
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16234 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16235 |
+
}
|
| 16236 |
+
|
| 16237 |
+
.eael-creative-button--tamaya::before {
|
| 16238 |
+
top: 0;
|
| 16239 |
+
padding: 20px 30px;
|
| 16240 |
+
}
|
| 16241 |
+
|
| 16242 |
+
.eael-creative-button--tamaya::after {
|
| 16243 |
+
bottom: 0;
|
| 16244 |
+
line-height: 0;
|
| 16245 |
+
}
|
| 16246 |
+
|
| 16247 |
+
.eael-creative-button--tamaya:hover::after {
|
| 16248 |
+
bottom: -1px;
|
| 16249 |
+
}
|
| 16250 |
+
|
| 16251 |
+
.eael-creative-button--tamaya > span {
|
| 16252 |
+
display: block;
|
| 16253 |
+
-webkit-transform: scale3d(0.2, 0.2, 1);
|
| 16254 |
+
transform: scale3d(0.2, 0.2, 1);
|
| 16255 |
+
opacity: 0;
|
| 16256 |
+
-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
|
| 16257 |
+
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
|
| 16258 |
+
transition: opacity 0.3s, -webkit-transform 0.3s;
|
| 16259 |
+
-o-transition: transform 0.3s, opacity 0.3s;
|
| 16260 |
+
transition: transform 0.3s, opacity 0.3s;
|
| 16261 |
+
transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
|
| 16262 |
+
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16263 |
+
-o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16264 |
+
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
| 16265 |
+
}
|
| 16266 |
+
|
| 16267 |
+
.eael-creative-button--tamaya:hover::before {
|
| 16268 |
+
-webkit-transform: translate3d(0, -100%, 0);
|
| 16269 |
+
transform: translate3d(0, -100%, 0);
|
| 16270 |
+
}
|
| 16271 |
+
|
| 16272 |
+
.eael-creative-button--tamaya:hover::after {
|
| 16273 |
+
-webkit-transform: translate3d(0, 100%, 0);
|
| 16274 |
+
transform: translate3d(0, 100%, 0);
|
| 16275 |
+
}
|
| 16276 |
+
|
| 16277 |
+
.eael-creative-button--tamaya:hover > span {
|
| 16278 |
+
opacity: 1;
|
| 16279 |
+
-webkit-transform: scale3d(1, 1, 1);
|
| 16280 |
+
transform: scale3d(1, 1, 1);
|
| 16281 |
+
}
|
| 16282 |
+
|
| 16283 |
+
/*--- Rayen ---*/
|
| 16284 |
+
.eael-creative-button--rayen {
|
| 16285 |
+
overflow: hidden;
|
| 16286 |
+
padding: 0 !important;
|
| 16287 |
+
}
|
| 16288 |
+
|
| 16289 |
+
.eael-creative-button--rayen::before {
|
| 16290 |
+
content: attr(data-text);
|
| 16291 |
+
position: absolute;
|
| 16292 |
+
top: 0;
|
| 16293 |
+
left: 0;
|
| 16294 |
+
width: 100%;
|
| 16295 |
+
height: 100%;
|
| 16296 |
+
-webkit-transform: translate3d(-100%, 0, 0);
|
| 16297 |
+
transform: translate3d(-100%, 0, 0);
|
| 16298 |
+
}
|
| 16299 |
+
|
| 16300 |
+
.eael-creative-button--rayen > span {
|
| 16301 |
+
display: block;
|
| 16302 |
+
}
|
| 16303 |
+
|
| 16304 |
+
.eael-creative-button--rayen::before,
|
| 16305 |
+
.eael-creative-button--rayen > span {
|
| 16306 |
+
padding: 1em 2em;
|
| 16307 |
+
-webkit-transition: -webkit-transform 0.3s;
|
| 16308 |
+
transition: -webkit-transform 0.3s;
|
| 16309 |
+
-o-transition: transform 0.3s;
|
| 16310 |
+
transition: transform 0.3s;
|
| 16311 |
+
transition: transform 0.3s, -webkit-transform 0.3s;
|
| 16312 |
+
-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
|
| 16313 |
+
-o-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
|
| 16314 |
+
transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
|
| 16315 |
+
}
|
| 16316 |
+
|
| 16317 |
+
.eael-creative-button--rayen:hover::before {
|
| 16318 |
+
-webkit-transform: translate3d(0, 0, 0);
|
| 16319 |
+
transform: translate3d(0, 0, 0);
|
| 16320 |
+
}
|
| 16321 |
+
|
| 16322 |
+
.eael-creative-button--rayen:hover > span {
|
| 16323 |
+
-webkit-transform: translate3d(0, 100%, 0);
|
| 16324 |
+
transform: translate3d(0, 100%, 0);
|
| 16325 |
+
}
|
| 16326 |
+
|
| 16327 |
+
table.eael-data-table thead .sorting, table.eael-data-table thead .sorting_desc, table.eael-data-table thead .sorting_asc {
|
| 16328 |
+
position: relative;
|
| 16329 |
+
z-index: 0;
|
| 16330 |
+
outline: 0;
|
| 16331 |
+
cursor: pointer;
|
| 16332 |
+
}
|
| 16333 |
+
|
| 16334 |
+
table.eael-data-table thead .sorting:after, table.eael-data-table thead .sorting_desc:after, table.eael-data-table thead .sorting_asc:after {
|
| 16335 |
+
position: absolute;
|
| 16336 |
+
top: 50%;
|
| 16337 |
+
right: 10px;
|
| 16338 |
+
font-family: "FontAwesome";
|
| 16339 |
+
color: #fff;
|
| 16340 |
+
z-index: 1;
|
| 16341 |
+
-webkit-transform: translateY(-50%);
|
| 16342 |
+
-ms-transform: translateY(-50%);
|
| 16343 |
+
transform: translateY(-50%);
|
| 16344 |
+
}
|
| 16345 |
+
|
| 16346 |
+
.eael-data-table-wrap .eael-data-tables_wrapper {
|
| 16347 |
+
display: -webkit-box;
|
| 16348 |
+
display: -webkit-flex;
|
| 16349 |
+
display: -ms-flexbox;
|
| 16350 |
+
display: flex;
|
| 16351 |
+
-webkit-box-orient: horizontal;
|
| 16352 |
+
-webkit-box-direction: normal;
|
| 16353 |
+
-webkit-flex-flow: row wrap;
|
| 16354 |
+
-ms-flex-flow: row wrap;
|
| 16355 |
+
flex-flow: row wrap;
|
| 16356 |
+
-webkit-box-pack: start;
|
| 16357 |
+
-webkit-justify-content: flex-start;
|
| 16358 |
+
-ms-flex-pack: start;
|
| 16359 |
+
justify-content: flex-start;
|
| 16360 |
+
width: 100%;
|
| 16361 |
+
}
|
| 16362 |
+
.eael-data-table-wrap .eael-data-tables_filter {
|
| 16363 |
+
-webkit-box-flex: 1;
|
| 16364 |
+
-webkit-flex-grow: 1;
|
| 16365 |
+
-ms-flex-positive: 1;
|
| 16366 |
+
flex-grow: 1;
|
| 16367 |
+
-webkit-flex-basis: 50%;
|
| 16368 |
+
-ms-flex-preferred-size: 50%;
|
| 16369 |
+
flex-basis: 50%;
|
| 16370 |
+
text-align: right;
|
| 16371 |
+
}
|
| 16372 |
+
.eael-data-table-wrap .eael-data-tables_filter label {
|
| 16373 |
+
font-weight: 700;
|
| 16374 |
+
}
|
| 16375 |
+
.eael-data-table-wrap .eael-data-tables_filter label input[type="search"] {
|
| 16376 |
+
height: 40px;
|
| 16377 |
+
border: 1px solid rgba(0, 0, 0, 0.09);
|
| 16378 |
+
outline: 0;
|
| 16379 |
+
padding: 10px;
|
| 16380 |
+
margin-left: 10px;
|
| 16381 |
+
}
|
| 16382 |
+
.eael-data-table-wrap .eael-data-tables_length {
|
| 16383 |
+
-webkit-box-flex: 1;
|
| 16384 |
+
-webkit-flex-grow: 1;
|
| 16385 |
+
-ms-flex-positive: 1;
|
| 16386 |
+
flex-grow: 1;
|
| 16387 |
+
-webkit-flex-basis: 50%;
|
| 16388 |
+
-ms-flex-preferred-size: 50%;
|
| 16389 |
+
flex-basis: 50%;
|
| 16390 |
+
}
|
| 16391 |
+
.eael-data-table-wrap .eael-data-tables_length select {
|
| 16392 |
+
width: auto;
|
| 16393 |
+
max-width: 120px;
|
| 16394 |
+
height: 40px;
|
| 16395 |
+
border: 1px solid rgba(0, 0, 0, 0.09);
|
| 16396 |
+
outline: 0;
|
| 16397 |
+
margin-left: 10px;
|
| 16398 |
+
margin-right: 10px;
|
| 16399 |
+
}
|
| 16400 |
+
.eael-data-table-wrap .eael-data-tables_length label {
|
| 16401 |
+
font-weight: 700;
|
| 16402 |
+
}
|
| 16403 |
+
.eael-data-table-wrap .eael-data-tables_info {
|
| 16404 |
+
-webkit-box-flex: 1;
|
| 16405 |
+
-webkit-flex-grow: 1;
|
| 16406 |
+
-ms-flex-positive: 1;
|
| 16407 |
+
flex-grow: 1;
|
| 16408 |
+
-webkit-flex-basis: 50%;
|
| 16409 |
+
-ms-flex-preferred-size: 50%;
|
| 16410 |
+
flex-basis: 50%;
|
| 16411 |
+
font-weight: 700;
|
| 16412 |
+
}
|
| 16413 |
+
.eael-data-table-wrap .eael-data-tables_paginate {
|
| 16414 |
+
-webkit-box-flex: 1;
|
| 16415 |
+
-webkit-flex-grow: 1;
|
| 16416 |
+
-ms-flex-positive: 1;
|
| 16417 |
+
flex-grow: 1;
|
| 16418 |
+
-webkit-flex-basis: 50%;
|
| 16419 |
+
-ms-flex-preferred-size: 50%;
|
| 16420 |
+
flex-basis: 50%;
|
| 16421 |
+
text-align: right;
|
| 16422 |
+
}
|
| 16423 |
+
.eael-data-table-wrap .eael-data-tables_paginate .paginate_button {
|
| 16424 |
+
padding: 10px 15px;
|
| 16425 |
+
background: #f2f2f2;
|
| 16426 |
+
margin-right: 2px;
|
| 16427 |
+
cursor: pointer;
|
| 16428 |
+
-webkit-transition: all .3s;
|
| 16429 |
+
-o-transition: all .3s;
|
| 16430 |
+
transition: all .3s;
|
| 16431 |
+
}
|
| 16432 |
+
.eael-data-table-wrap .eael-data-tables_paginate .paginate_button:hover {
|
| 16433 |
+
color: #fff;
|
| 16434 |
+
background: #4a4893;
|
| 16435 |
+
}
|
| 16436 |
+
.eael-data-table-wrap .eael-data-tables_paginate .paginate_button.current {
|
| 16437 |
+
color: #fff;
|
| 16438 |
+
background: #4a4893;
|
| 16439 |
+
}
|
| 16440 |
+
.eael-data-table-wrap .eael-data-tables_paginate .paginate_button.disabled {
|
| 16441 |
+
cursor: no-drop;
|
| 16442 |
+
background: #f2f2f2;
|
| 16443 |
+
opacity: .5;
|
| 16444 |
+
color: #888;
|
| 16445 |
+
}
|
| 16446 |
+
|
| 16447 |
+
.data-header-icon {
|
| 16448 |
+
margin-right: 10px;
|
| 16449 |
+
}
|
| 16450 |
+
|
| 16451 |
+
.eael-data-table {
|
| 16452 |
+
width: 100%;
|
| 16453 |
+
height: auto;
|
| 16454 |
+
margin: 0;
|
| 16455 |
+
border-collapse: collapse;
|
| 16456 |
+
border: none;
|
| 16457 |
+
}
|
| 16458 |
+
.eael-data-table tr {
|
| 16459 |
+
border-style: none;
|
| 16460 |
+
}
|
| 16461 |
+
.eael-data-table thead tr {
|
| 16462 |
+
text-align: left;
|
| 16463 |
+
}
|
| 16464 |
+
.eael-data-table thead tr th {
|
| 16465 |
+
padding: 20px 15px;
|
| 16466 |
+
background: #4a4893;
|
| 16467 |
+
font-size: 16px;
|
| 16468 |
+
font-weight: 600;
|
| 16469 |
+
font-family: "Montserrat", "sans-serif";
|
| 16470 |
+
line-height: 1;
|
| 16471 |
+
color: #fff;
|
| 16472 |
+
border-color: #000;
|
| 16473 |
+
border-width: 2px;
|
| 16474 |
+
border-style: none;
|
| 16475 |
+
background-clip: padding-box;
|
| 16476 |
+
}
|
| 16477 |
+
.eael-data-table thead tr th:hover {
|
| 16478 |
+
border-color: #000;
|
| 16479 |
+
}
|
| 16480 |
+
.eael-data-table tbody tr.even {
|
| 16481 |
+
-webkit-transition: background 0.4s ease-in-out;
|
| 16482 |
+
-o-transition: background 0.4s ease-in-out;
|
| 16483 |
+
transition: background 0.4s ease-in-out;
|
| 16484 |
+
}
|
| 16485 |
+
.eael-data-table tbody tr.even:hover {
|
| 16486 |
+
background: rgba(242, 242, 242, 0.7);
|
| 16487 |
+
}
|
| 16488 |
+
.eael-data-table tbody tr.even:last-child {
|
| 16489 |
+
border-bottom: 1px solid rgba(0, 0, 0, 0.09);
|
| 16490 |
+
}
|
| 16491 |
+
.eael-data-table tbody tr.odd {
|
| 16492 |
+
background: rgba(242, 242, 242, 0.5);
|
| 16493 |
+
-webkit-transition: background 0.2s ease-in-out;
|
| 16494 |
+
-o-transition: background 0.2s ease-in-out;
|
| 16495 |
+
transition: background 0.2s ease-in-out;
|
| 16496 |
+
}
|
| 16497 |
+
.eael-data-table tbody tr.odd:hover {
|
| 16498 |
+
background: rgba(242, 242, 242, 0.7);
|
| 16499 |
+
}
|
| 16500 |
+
.eael-data-table tbody tr.odd:last-child {
|
| 16501 |
+
border-bottom: 1px solid rgba(0, 0, 0, 0.09);
|
| 16502 |
+
}
|
| 16503 |
+
.eael-data-table tbody tr td {
|
| 16504 |
+
padding: 20px 15px;
|
| 16505 |
+
font-size: 14px;
|
| 16506 |
+
font-family: "Montserrat", "sans-serif";
|
| 16507 |
+
line-height: 1;
|
| 16508 |
+
border-width: 2px;
|
| 16509 |
+
border-style: none;
|
| 16510 |
+
background-clip: padding-box;
|
| 16511 |
+
}
|
| 16512 |
+
|
| 16513 |
+
.eael-data-table-th-img {
|
| 16514 |
+
display: inline-block;
|
| 16515 |
+
margin: 0 15px 0 0;
|
| 16516 |
+
line-height: 1;
|
| 16517 |
+
}
|
| 16518 |
+
|
| 16519 |
+
.th-mobile-screen {
|
| 16520 |
+
display: none;
|
| 16521 |
+
}
|
| 16522 |
+
|
| 16523 |
+
@media (max-width: 39.9375em) {
|
| 16524 |
+
.eael-data-table-wrap {
|
| 16525 |
+
overflow-x: scroll !important;
|
| 16526 |
+
padding-bottom: 5px;
|
| 16527 |
+
}
|
| 16528 |
+
|
| 16529 |
+
.th-mobile-screen {
|
| 16530 |
+
display: inline-block;
|
| 16531 |
+
padding: 0 .6em;
|
| 16532 |
+
margin-right: 10px;
|
| 16533 |
+
text-align: center;
|
| 16534 |
+
-webkit-box-flex: 0;
|
| 16535 |
+
-webkit-flex-grow: 0;
|
| 16536 |
+
-ms-flex-positive: 0;
|
| 16537 |
+
flex-grow: 0;
|
| 16538 |
+
-webkit-flex-shrink: 0;
|
| 16539 |
+
-ms-flex-negative: 0;
|
| 16540 |
+
flex-shrink: 0;
|
| 16541 |
+
-webkit-flex-basis: 100px;
|
| 16542 |
+
-ms-flex-preferred-size: 100px;
|
| 16543 |
+
flex-basis: 100px;
|
| 16544 |
+
}
|
| 16545 |
+
.th-mobile-screen .eael-data-table-th-img {
|
| 16546 |
+
margin: 0 auto 15px auto;
|
| 16547 |
+
display: block;
|
| 16548 |
+
}
|
| 16549 |
+
.th-mobile-screen .data-header-icon {
|
| 16550 |
+
margin: 0 auto 15px auto;
|
| 16551 |
+
display: block;
|
| 16552 |
+
}
|
| 16553 |
+
|
| 16554 |
+
.td-content-wrapper {
|
| 16555 |
+
display: -webkit-box;
|
| 16556 |
+
display: -webkit-flex;
|
| 16557 |
+
display: -ms-flexbox;
|
| 16558 |
+
display: flex;
|
| 16559 |
+
width: 100%;
|
| 16560 |
+
}
|
| 16561 |
+
|
| 16562 |
+
.td-content {
|
| 16563 |
+
width: 100%;
|
| 16564 |
+
-webkit-box-pack: center;
|
| 16565 |
+
-webkit-justify-content: center;
|
| 16566 |
+
-ms-flex-pack: center;
|
| 16567 |
+
justify-content: center;
|
| 16568 |
+
}
|
| 16569 |
+
.td-content > p {
|
| 16570 |
+
width: 100%;
|
| 16571 |
+
-webkit-box-pack: center;
|
| 16572 |
+
-webkit-justify-content: center;
|
| 16573 |
+
-ms-flex-pack: center;
|
| 16574 |
+
justify-content: center;
|
| 16575 |
+
}
|
| 16576 |
+
|
| 16577 |
+
.custom-responsive-option-enable .eael-data-table thead {
|
| 16578 |
+
display: none;
|
| 16579 |
+
}
|
| 16580 |
+
.custom-responsive-option-enable .eael-data-table tbody tr td {
|
| 16581 |
+
float: none;
|
| 16582 |
+
clear: left;
|
| 16583 |
+
width: 100%;
|
| 16584 |
+
text-align: left;
|
| 16585 |
+
display: -webkit-box;
|
| 16586 |
+
display: -webkit-flex;
|
| 16587 |
+
display: -ms-flexbox;
|
| 16588 |
+
display: flex;
|
| 16589 |
+
-webkit-box-align: center;
|
| 16590 |
+
-webkit-align-items: center;
|
| 16591 |
+
-ms-flex-align: center;
|
| 16592 |
+
align-items: center;
|
| 16593 |
+
}
|
| 16594 |
+
|
| 16595 |
+
.eael-data-table .td-content {
|
| 16596 |
+
-webkit-box-align: center;
|
| 16597 |
+
-webkit-align-items: center;
|
| 16598 |
+
-ms-flex-align: center;
|
| 16599 |
+
align-items: center;
|
| 16600 |
+
display: -webkit-box;
|
| 16601 |
+
display: -webkit-flex;
|
| 16602 |
+
display: -ms-flexbox;
|
| 16603 |
+
display: flex;
|
| 16604 |
+
}
|
| 16605 |
+
}
|
| 16606 |
+
table.eael-data-table thead .sorting:after {
|
| 16607 |
+
content: "\f0dc";
|
| 16608 |
+
}
|
| 16609 |
+
table.eael-data-table thead .headerSortDown:after {
|
| 16610 |
+
content: "\f0dd";
|
| 16611 |
+
}
|
| 16612 |
+
table.eael-data-table thead .headerSortUp:after {
|
| 16613 |
+
content: "\f0de";
|
| 16614 |
+
}
|
| 16615 |
+
table.eael-data-table thead .sorting_disabled.sorting:after {
|
| 16616 |
+
display: none;
|
| 16617 |
+
}
|
| 16618 |
+
table.eael-data-table .sorting.sorting-none:after {
|
| 16619 |
+
display: none;
|
| 16620 |
+
}
|
| 16621 |
+
table.eael-data-table .sorting_desc.sorting-none:after {
|
| 16622 |
+
display: none;
|
| 16623 |
+
}
|
| 16624 |
+
table.eael-data-table .sorting_asc.sorting-none:after {
|
| 16625 |
+
display: none;
|
| 16626 |
+
}
|
| 16627 |
+
|
| 16628 |
+
.eael-table-align-left table.eael-data-table {
|
| 16629 |
+
float: left;
|
| 16630 |
+
}
|
| 16631 |
+
|
| 16632 |
+
.eael-table-align-center table.eael-data-table {
|
| 16633 |
+
margin: 0 auto;
|
| 16634 |
+
}
|
| 16635 |
+
|
| 16636 |
+
.eael-table-align-right table.eael-data-table {
|
| 16637 |
+
float: right;
|
| 16638 |
+
}
|
| 16639 |
+
|
| 16640 |
+
.eael-hide-elements .eael-data-tables_info {
|
| 16641 |
+
display: none;
|
| 16642 |
+
}
|
| 16643 |
+
|
| 16644 |
+
.eael-dt-th-align-left .eael-data-table thead tr th {
|
| 16645 |
+
text-align: left;
|
| 16646 |
+
}
|
| 16647 |
+
|
| 16648 |
+
.eael-dt-td-align-left .eael-data-table tbody tr td {
|
| 16649 |
+
text-align: left;
|
| 16650 |
+
}
|
| 16651 |
+
|
| 16652 |
+
.eael-dt-th-align-right .eael-data-table thead tr th {
|
| 16653 |
+
text-align: right;
|
| 16654 |
+
padding-right: 30px;
|
| 16655 |
+
}
|
| 16656 |
+
|
| 16657 |
+
.eael-dt-td-align-right .eael-data-table tbody tr td {
|
| 16658 |
+
text-align: right;
|
| 16659 |
+
padding-right: 30px;
|
| 16660 |
+
}
|
| 16661 |
+
|
| 16662 |
+
.eael-dt-th-align-center .eael-data-table thead tr th {
|
| 16663 |
+
text-align: center;
|
| 16664 |
+
}
|
| 16665 |
+
|
| 16666 |
+
.eael-dt-td-align-center .eael-data-table tbody tr td {
|
| 16667 |
+
text-align: center;
|
| 16668 |
+
}
|
| 16669 |
+
|
| 16670 |
+
/* -------------------------------- */
|
| 16671 |
+
/* 20. Dual Color Heading
|
| 16672 |
+
/* -------------------------------- */
|
| 16673 |
+
.eael-dual-header {
|
| 16674 |
+
display: block;
|
| 16675 |
+
margin-bottom: 50px;
|
| 16676 |
+
}
|
| 16677 |
+
|
| 16678 |
+
.eael-dual-header .title,
|
| 16679 |
+
.eael-dual-header .title span {
|
| 16680 |
+
font-size: 36px;
|
| 16681 |
+
font-weight: 700;
|
| 16682 |
+
text-transform: uppercase;
|
| 16683 |
+
line-height: 48px;
|
| 16684 |
+
margin: 10px 0px;
|
| 16685 |
+
}
|
| 16686 |
+
|
| 16687 |
+
.eael-dual-header .subtext {
|
| 16688 |
+
font-size: 16px;
|
| 16689 |
+
display: block;
|
| 16690 |
+
}
|
| 16691 |
+
|
| 16692 |
+
.eael-dual-header i {
|
| 16693 |
+
display: block;
|
| 16694 |
+
padding: 0px;
|
| 16695 |
+
margin: 20px 0px 10px 0px;
|
| 16696 |
+
font-size: 36px;
|
| 16697 |
+
}
|
| 16698 |
+
|
| 16699 |
+
.eael-dual-header .title span.lead {
|
| 16700 |
+
color: #1abc9c;
|
| 16701 |
+
}
|
| 16702 |
+
|
| 16703 |
+
/*--- Builder Related Css ---*/
|
| 16704 |
+
.eael-dual-header-content-align-center {
|
| 16705 |
+
text-align: center;
|
| 16706 |
+
}
|
| 16707 |
+
|
| 16708 |
+
.eael-dual-header-content-align-left {
|
| 16709 |
+
text-align: left;
|
| 16710 |
+
}
|
| 16711 |
+
|
| 16712 |
+
.eael-dual-header-content-align-right {
|
| 16713 |
+
text-align: right;
|
| 16714 |
+
}
|
| 16715 |
+
|
| 16716 |
+
.elementor-panel .pro-feature, .elementor-panel .pro-feature a {
|
| 16717 |
+
color: #a4afb7;
|
| 16718 |
+
text-transform: uppercase;
|
| 16719 |
+
letter-spacing: 1px;
|
| 16720 |
+
line-height: 1.8;
|
| 16721 |
+
font-style: normal;
|
| 16722 |
+
}
|
| 16723 |
+
|
| 16724 |
+
.elementor-panel .pro-feature a {
|
| 16725 |
+
text-decoration: underline;
|
| 16726 |
+
color: #f54 !important;
|
| 16727 |
+
}
|
| 16728 |
+
|
| 16729 |
+
.elementor-panel .elementor-control-eael_section_pro .elementor-panel-heading-title.elementor-panel-heading-title,
|
| 16730 |
+
.elementor-panel .elementor-control-eael_section_pro .elementor-panel-heading-toggle,
|
| 16731 |
+
.elementor-control-data_table_header_colspan_pro_alert .elementor-control-title,
|
| 16732 |
+
.elementor-control-data_table_header_img_pro_alert .elementor-control-title,
|
| 16733 |
+
.elementor-control-data_table_content_rowspan_pro_alert .elementor-control-title,
|
| 16734 |
+
.elementor-control-data_table_content_colspan_pro_alert .elementor-control-title,
|
| 16735 |
+
.elementor-control-data_table_content_template_pro_alert .elementor-control-title {
|
| 16736 |
+
color: #f54;
|
| 16737 |
+
}
|
| 16738 |
+
|
| 16739 |
+
.elementor-panel .elementor-control-eael_control_get_pro .elementor-control-field {
|
| 16740 |
+
display: none !important;
|
| 16741 |
+
}
|
| 16742 |
+
|
| 16743 |
+
.elementor-control-eael_pricing_table_style_pro_alert .elementor-control-title,
|
| 16744 |
+
.elementor-control-eael_section_countdown_style_pro_alert .elementor-control-title,
|
| 16745 |
+
.elementor-control-eael_fancy_text_style_pro_alert .elementor-control-title,
|
| 16746 |
+
.elementor-control-eael_section_data_table_enabled_pro_alert .elementor-control-title,
|
| 16747 |
+
.elementor-control-eael_img_accordion_type_pro_alert .elementor-control-title,
|
| 16748 |
+
.elementor-control-eael_ticker_type_pro_alert .elementor-control-title,
|
| 16749 |
+
.elementor-control-eael_team_members_preset_pro_alert .elementor-control-title {
|
| 16750 |
+
color: #f54;
|
| 16751 |
+
}
|
| 16752 |
+
|
| 16753 |
+
.eael-fancy-text-container p {
|
| 16754 |
+
margin: 0;
|
| 16755 |
+
}
|
| 16756 |
+
|
| 16757 |
+
.eael-fancy-text-strings {
|
| 16758 |
+
display: none;
|
| 16759 |
+
}
|
| 16760 |
+
|
| 16761 |
+
.eael-fancy-text-prefix,
|
| 16762 |
+
.eael-fancy-text-suffix {
|
| 16763 |
+
display: inline-block;
|
| 16764 |
+
}
|
| 16765 |
+
|
| 16766 |
+
.morphext > .animated {
|
| 16767 |
+
display: inline-block;
|
| 16768 |
+
}
|
| 16769 |
+
|
| 16770 |
+
.typed-cursor {
|
| 16771 |
+
opacity: 1;
|
| 16772 |
+
-webkit-animation: blink_cursor 0.7s infinite;
|
| 16773 |
+
animation: blink_cursor 0.7s infinite;
|
| 16774 |
+
}
|
| 16775 |
+
|
| 16776 |
+
@keyframes blink_cursor {
|
| 16777 |
+
0% {
|
| 16778 |
+
opacity: 1;
|
| 16779 |
+
}
|
| 16780 |
+
50% {
|
| 16781 |
+
opacity: 0;
|
| 16782 |
+
}
|
| 16783 |
+
100% {
|
| 16784 |
+
opacity: 1;
|
| 16785 |
+
}
|
| 16786 |
+
}
|
| 16787 |
+
@-webkit-keyframes blink_cursor {
|
| 16788 |
+
0% {
|
| 16789 |
+
opacity: 1;
|
| 16790 |
+
}
|
| 16791 |
+
50% {
|
| 16792 |
+
opacity: 0;
|
| 16793 |
+
}
|
| 16794 |
+
100% {
|
| 16795 |
+
opacity: 1;
|
| 16796 |
+
}
|
| 16797 |
+
}
|
| 16798 |
+
.eael-fancy-text-container.style-2 {
|
| 16799 |
+
font-size: 24px;
|
| 16800 |
+
}
|
| 16801 |
+
|
| 16802 |
+
.eael-fancy-text-container.style-2 .eael-fancy-text-strings {
|
| 16803 |
+
background: #ff5544;
|
| 16804 |
+
color: #fff;
|
| 16805 |
+
padding: 10px 25px;
|
| 16806 |
+
}
|
| 16807 |
+
|
| 16808 |
+
/*----------------------------*/
|
| 16809 |
+
/* 35. Feature List
|
| 16810 |
+
/*----------------------------*/
|
| 16811 |
+
.elementor-widget-eael-feature-list.-icon-position-left .connector-type-modern.rhombus .eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-top .connector-type-modern.rhombus .eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-right .connector-type-modern.rhombus .eael-feature-list-item:before {
|
| 16812 |
+
top: 3px !important;
|
| 16813 |
+
}
|
| 16814 |
+
.elementor-widget-eael-feature-list.-icon-position-left .connector-type-modern.rhombus .eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-top .connector-type-modern.rhombus .eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-right .connector-type-modern.rhombus .eael-feature-list-item:after {
|
| 16815 |
+
top: 45px !important;
|
| 16816 |
+
}
|
| 16817 |
+
.elementor-widget-eael-feature-list.-icon-position-right .connector, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .connector {
|
| 16818 |
+
right: 0;
|
| 16819 |
+
left: calc(100% - 60px);
|
| 16820 |
+
}
|
| 16821 |
+
.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item {
|
| 16822 |
+
padding: 0 50px 0 0;
|
| 16823 |
+
}
|
| 16824 |
+
@media (max-width: 767px) {
|
| 16825 |
+
.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item {
|
| 16826 |
+
padding: 0 30px 0 0;
|
| 16827 |
+
}
|
| 16828 |
+
}
|
| 16829 |
+
.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before {
|
| 16830 |
+
left: auto;
|
| 16831 |
+
right: 0;
|
| 16832 |
+
}
|
| 16833 |
+
.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after, .elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after {
|
| 16834 |
+
left: auto;
|
| 16835 |
+
right: 5px;
|
| 16836 |
+
top: 30px;
|
| 16837 |
+
}
|
| 16838 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items {
|
| 16839 |
+
list-style-type: none;
|
| 16840 |
+
margin: 0;
|
| 16841 |
+
padding: 0;
|
| 16842 |
+
}
|
| 16843 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item {
|
| 16844 |
+
position: relative;
|
| 16845 |
+
}
|
| 16846 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .connector {
|
| 16847 |
+
display: block;
|
| 16848 |
+
position: absolute;
|
| 16849 |
+
width: 0;
|
| 16850 |
+
margin: 0 auto;
|
| 16851 |
+
z-index: 1;
|
| 16852 |
+
height: 100%;
|
| 16853 |
+
top: 0.5em;
|
| 16854 |
+
font-size: 60px;
|
| 16855 |
+
left: 0;
|
| 16856 |
+
right: calc(100% - 60px);
|
| 16857 |
+
border-left: 2px solid #2ecc71;
|
| 16858 |
+
border-right: none !important;
|
| 16859 |
+
}
|
| 16860 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item:last-child .connector {
|
| 16861 |
+
display: none;
|
| 16862 |
+
}
|
| 16863 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box {
|
| 16864 |
+
z-index: 2;
|
| 16865 |
+
-webkit-transition: all 0.5s;
|
| 16866 |
+
-o-transition: all 0.5s;
|
| 16867 |
+
transition: all 0.5s;
|
| 16868 |
+
}
|
| 16869 |
+
@media (prefers-reduced-motion: reduce) {
|
| 16870 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box {
|
| 16871 |
+
-webkit-transition: none;
|
| 16872 |
+
-o-transition: none;
|
| 16873 |
+
transition: none;
|
| 16874 |
+
}
|
| 16875 |
+
}
|
| 16876 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon-inner {
|
| 16877 |
+
background-color: #37368e;
|
| 16878 |
+
-webkit-transition: all 0.5s;
|
| 16879 |
+
-o-transition: all 0.5s;
|
| 16880 |
+
transition: all 0.5s;
|
| 16881 |
+
display: -webkit-inline-box;
|
| 16882 |
+
display: -webkit-inline-flex;
|
| 16883 |
+
display: -ms-inline-flexbox;
|
| 16884 |
+
display: inline-flex;
|
| 16885 |
+
}
|
| 16886 |
+
@media (prefers-reduced-motion: reduce) {
|
| 16887 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon-inner {
|
| 16888 |
+
-webkit-transition: none;
|
| 16889 |
+
-o-transition: none;
|
| 16890 |
+
transition: none;
|
| 16891 |
+
}
|
| 16892 |
+
}
|
| 16893 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon {
|
| 16894 |
+
padding: 0.5em;
|
| 16895 |
+
-webkit-transition: all 0.5s;
|
| 16896 |
+
-o-transition: all 0.5s;
|
| 16897 |
+
transition: all 0.5s;
|
| 16898 |
+
font-size: 30px;
|
| 16899 |
+
line-height: 1;
|
| 16900 |
+
color: #37368e;
|
| 16901 |
+
text-align: center;
|
| 16902 |
+
display: -webkit-inline-box;
|
| 16903 |
+
display: -webkit-inline-flex;
|
| 16904 |
+
display: -ms-inline-flexbox;
|
| 16905 |
+
display: inline-flex;
|
| 16906 |
+
}
|
| 16907 |
+
@media (prefers-reduced-motion: reduce) {
|
| 16908 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon {
|
| 16909 |
+
-webkit-transition: none;
|
| 16910 |
+
-o-transition: none;
|
| 16911 |
+
transition: none;
|
| 16912 |
+
}
|
| 16913 |
+
}
|
| 16914 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon i {
|
| 16915 |
+
width: 1em;
|
| 16916 |
+
height: 1em;
|
| 16917 |
+
position: relative;
|
| 16918 |
+
display: block;
|
| 16919 |
+
}
|
| 16920 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon i:before {
|
| 16921 |
+
position: absolute;
|
| 16922 |
+
left: 50%;
|
| 16923 |
+
-webkit-transform: translateX(-50%);
|
| 16924 |
+
-ms-transform: translateX(-50%);
|
| 16925 |
+
transform: translateX(-50%);
|
| 16926 |
+
}
|
| 16927 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-img {
|
| 16928 |
+
font-size: 8px;
|
| 16929 |
+
line-height: 1;
|
| 16930 |
+
max-width: inherit;
|
| 16931 |
+
}
|
| 16932 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-content-box {
|
| 16933 |
+
margin: 0 0 0 20px;
|
| 16934 |
+
}
|
| 16935 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-content-box .eael-feature-list-title {
|
| 16936 |
+
margin-top: -2px;
|
| 16937 |
+
line-height: 1.5em;
|
| 16938 |
+
}
|
| 16939 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-content-box .eael-feature-list-content {
|
| 16940 |
+
padding: 0;
|
| 16941 |
+
margin: 0;
|
| 16942 |
+
font-size: 14px;
|
| 16943 |
+
line-height: 1.5em;
|
| 16944 |
+
}
|
| 16945 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items.stacked .eael-feature-list-icon-box .eael-feature-list-icon {
|
| 16946 |
+
color: #fff;
|
| 16947 |
+
}
|
| 16948 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items.framed .eael-feature-list-icon-box .eael-feature-list-icon {
|
| 16949 |
+
background-color: #fff;
|
| 16950 |
+
}
|
| 16951 |
+
.elementor-widget-eael-feature-list .eael-feature-list-items.circle .eael-feature-list-icon-box .eael-feature-list-icon-inner {
|
| 16952 |
+
border-radius: 50%;
|
| 16953 |
}
|
| 16954 |
.elementor-widget-eael-feature-list .eael-feature-list-items.circle .eael-feature-list-icon-box .eael-feature-list-icon-inner .eael-feature-list-icon {
|
| 16955 |
+
border-radius: 50%;
|
|
|
|
| 16956 |
}
|
| 16957 |
.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-icon-box .eael-feature-list-icon-inner {
|
| 16958 |
-webkit-transform: rotate(45deg);
|
| 17625 |
height: 50px;
|
| 17626 |
text-align: center;
|
| 17627 |
line-height: 50px;
|
| 17628 |
+
border-radius: 50%;
|
|
|
|
| 17629 |
margin: 0 5px;
|
| 17630 |
font-size: 20px;
|
| 17631 |
cursor: pointer;
|
| 17675 |
position: relative;
|
| 17676 |
background-repeat: no-repeat;
|
| 17677 |
background-position: center;
|
| 17678 |
+
background-size: cover;
|
|
|
|
| 17679 |
height: 220px;
|
| 17680 |
z-index: 0;
|
| 17681 |
overflow: hidden;
|
| 17766 |
width: 20%;
|
| 17767 |
}
|
| 17768 |
|
| 17769 |
+
.eael-gallery-grid-item {
|
| 17770 |
margin-left: calc(20px/2);
|
| 17771 |
margin-right: calc(20px/2);
|
| 17772 |
margin-bottom: 20px;
|
| 17795 |
z-index: 10;
|
| 17796 |
}
|
| 17797 |
|
| 17798 |
+
.eael-filterable-gallery-item-wrap .eael-gallery-grid-item .gallery-item-thumbnail-wrap > img {
|
| 17799 |
height: 100%;
|
| 17800 |
width: 100%;
|
| 17801 |
-o-object-fit: cover;
|
| 17878 |
align-items: center;
|
| 17879 |
}
|
| 17880 |
|
| 17881 |
+
.eael-gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer {
|
| 17882 |
opacity: 1;
|
| 17883 |
visibility: visible;
|
| 17884 |
}
|
| 17923 |
.gallery-item-caption-wrap .gallery-item-buttons > a {
|
| 17924 |
padding: 5px 15px;
|
| 17925 |
display: inline-block;
|
| 17926 |
+
border-radius: 50%;
|
|
|
|
| 17927 |
outline: none;
|
| 17928 |
text-decoration: none;
|
| 17929 |
}
|
| 17937 |
transition: 0.6s all ease;
|
| 17938 |
}
|
| 17939 |
|
| 17940 |
+
.eael-gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up h5,
|
| 17941 |
+
.eael-gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up .gallery-item-buttons,
|
| 17942 |
+
.eael-gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up p {
|
| 17943 |
-webkit-transform: translate(0);
|
| 17944 |
-ms-transform: translate(0);
|
| 17945 |
transform: translate(0);
|
| 17946 |
}
|
| 17947 |
|
| 17948 |
+
.eael-gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-zoom-in {
|
| 17949 |
-webkit-transform: scale(1);
|
| 17950 |
-ms-transform: scale(1);
|
| 17951 |
transform: scale(1);
|
| 18011 |
transition: 350ms;
|
| 18012 |
}
|
| 18013 |
|
| 18014 |
+
.eael-gallery-grid-item:hover .video-popup-bg {
|
| 18015 |
visibility: visible;
|
| 18016 |
opacity: 1;
|
| 18017 |
}
|
| 18413 |
}
|
| 18414 |
|
| 18415 |
.eael_flip_box_icon_border_round {
|
| 18416 |
+
border-radius: 100px;
|
|
|
|
| 18417 |
}
|
| 18418 |
|
| 18419 |
.eael_eleements_flip_front_icon_style_background,
|
| 18690 |
|
| 18691 |
.eael-flipbox-img-circle .eael-elements-flip-box-icon-image img,
|
| 18692 |
.eael-flipbox-img-circle .flipbox-back-image-icon img {
|
| 18693 |
+
border-radius: 50%;
|
|
|
|
| 18694 |
overflow: hidden;
|
| 18695 |
}
|
| 18696 |
|
| 18878 |
}
|
| 18879 |
|
| 18880 |
.eael-custom-radio-checkbox input[type=radio] {
|
| 18881 |
+
border-radius: 50%;
|
|
|
|
| 18882 |
}
|
| 18883 |
|
| 18884 |
.eael-custom-radio-checkbox input[type=radio]:before {
|
| 18885 |
+
border-radius: 50%;
|
| 18886 |
+
}
|
| 18887 |
+
|
| 18888 |
+
.eael-post-elements-readmore-btn {
|
| 18889 |
+
font-size: 12px;
|
| 18890 |
+
font-weight: 500;
|
| 18891 |
}
|
| 18892 |
|
| 18893 |
/*----------------------*/
|
| 18967 |
text-align: center;
|
| 18968 |
text-decoration: none;
|
| 18969 |
color: #fff;
|
| 18970 |
+
background-size: cover;
|
|
|
|
| 18971 |
background-position: center;
|
| 18972 |
background-repeat: no-repeat;
|
| 18973 |
-webkit-transition: -webkit-box-flex .4s, -webkit-flex .4s;
|
| 19130 |
}
|
| 19131 |
|
| 19132 |
.eael-infobox-icon-hover-bg-shape-square:hover .infobox-icon .infobox-icon-wrap {
|
| 19133 |
+
border-radius: 0;
|
|
|
|
| 19134 |
}
|
| 19135 |
|
| 19136 |
.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap,
|
| 19137 |
.eael-infobox-icon-hover-bg-shape-radius:hover .infobox-icon .infobox-icon-wrap {
|
| 19138 |
+
border-radius: 15px;
|
|
|
|
| 19139 |
}
|
| 19140 |
|
| 19141 |
.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap {
|
| 19155 |
|
| 19156 |
.eael-infobox-icon-bg-shape-circle .infobox-icon .infobox-icon-wrap,
|
| 19157 |
.eael-infobox-icon-hover-bg-shape-circle:hover .infobox-icon .infobox-icon-wrap {
|
| 19158 |
+
border-radius: 50%;
|
|
|
|
| 19159 |
}
|
| 19160 |
|
| 19161 |
.eael-infobox-icon-bg-shape-square .infobox-icon .infobox-icon-wrap i,
|
| 19328 |
}
|
| 19329 |
|
| 19330 |
.eael-infobox-hover-img-shape-square:hover .eael-infobox .infobox-icon img {
|
| 19331 |
+
border-radius: 0;
|
|
|
|
| 19332 |
}
|
| 19333 |
|
| 19334 |
.eael-infobox-shape-circle .eael-infobox .infobox-icon img,
|
| 19335 |
.eael-infobox-hover-img-shape-circle:hover .eael-infobox .infobox-icon img {
|
| 19336 |
+
border-radius: 50%;
|
|
|
|
| 19337 |
}
|
| 19338 |
|
| 19339 |
.eael-infobox-shape-radius .eael-infobox .infobox-icon img,
|
| 19340 |
.eael-infobox-hover-img-shape-radius:hover .eael-infobox .infobox-icon img {
|
| 19341 |
+
border-radius: 15px;
|
|
|
|
| 19342 |
}
|
| 19343 |
|
| 19344 |
/* ------------------------ */
|
| 19878 |
|
| 19879 |
.eael-ninja-form .submit-container input[type=button] {
|
| 19880 |
border: 0;
|
| 19881 |
+
border-radius: 0;
|
|
|
|
| 19882 |
}
|
| 19883 |
|
| 19884 |
.eael-ninja-form-button-full-width .submit-container input[type=button] {
|
| 19957 |
}
|
| 19958 |
|
| 19959 |
.eael-entry-footer .eael-author-avatar .avatar {
|
| 19960 |
+
border-radius: 50%;
|
|
|
|
| 19961 |
}
|
| 19962 |
|
| 19963 |
.eael-post-grid .eael-entry-footer .eael-entry-meta {
|
| 20315 |
.eael-timeline-bullet {
|
| 20316 |
background-color: #9fa9af;
|
| 20317 |
border: 5px solid #fff;
|
| 20318 |
+
border-radius: 50%;
|
|
|
|
| 20319 |
-webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.1);
|
| 20320 |
box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.1);
|
| 20321 |
content: "";
|
| 20331 |
.eael-timeline-post:nth-child(2n) .eael-timeline-bullet {
|
| 20332 |
background-color: #9fa9af;
|
| 20333 |
border: 5px solid #fff;
|
| 20334 |
+
border-radius: 50%;
|
|
|
|
| 20335 |
bottom: 36px;
|
| 20336 |
content: "";
|
| 20337 |
height: 20px;
|
| 20343 |
}
|
| 20344 |
|
| 20345 |
.eael-timeline-post-inner {
|
|
|
|
| 20346 |
background: -o-linear-gradient(45deg, #3f3f46 0%, #05abe0 100%) repeat scroll 0 0 transparent;
|
| 20347 |
background: linear-gradient(45deg, #3f3f46 0%, #05abe0 100%) repeat scroll 0 0 transparent;
|
| 20348 |
border: 8px solid #e5eaed;
|
| 20395 |
}
|
| 20396 |
|
| 20397 |
.eael-timeline-post-image {
|
| 20398 |
+
background-size: cover;
|
|
|
|
| 20399 |
background-position: center center;
|
| 20400 |
background-repeat: no-repeat;
|
| 20401 |
display: block;
|
| 20455 |
background-color: rgba(0, 0, 0, 0.7);
|
| 20456 |
color: #fff;
|
| 20457 |
font-size: 10px;
|
| 20458 |
+
border-radius: 20px;
|
|
|
|
| 20459 |
position: absolute;
|
| 20460 |
right: -97px;
|
| 20461 |
width: 100px;
|
| 20471 |
|
| 20472 |
.eael-timeline-post:nth-child(2n) time {
|
| 20473 |
background-color: rgba(0, 0, 0, 0.7);
|
| 20474 |
+
border-radius: 20px;
|
|
|
|
| 20475 |
color: #fff;
|
| 20476 |
font-size: 10px;
|
| 20477 |
height: 30px;
|
| 20588 |
.eael-timeline-post time,
|
| 20589 |
.eael-timeline-post:nth-child(2n) time {
|
| 20590 |
background-color: #fff;
|
| 20591 |
+
border-radius: 0;
|
|
|
|
| 20592 |
color: #444;
|
| 20593 |
font-size: 12px;
|
| 20594 |
text-transform: uppercase;
|
| 20668 |
-webkit-transition: .3s;
|
| 20669 |
-o-transition: .3s;
|
| 20670 |
transition: .3s;
|
|
|
|
| 20671 |
border-radius: 4px;
|
| 20672 |
}
|
| 20673 |
|
| 20705 |
.eael-pricing.style-1 .eael-pricing-item {
|
| 20706 |
border: 1px solid rgba(9, 9, 9, 0.1);
|
| 20707 |
padding: 30px;
|
|
|
|
| 20708 |
border-radius: 5px;
|
| 20709 |
-webkit-transition: .5s;
|
| 20710 |
-o-transition: .5s;
|
| 20730 |
left: 0px;
|
| 20731 |
right: 0px;
|
| 20732 |
z-index: 1;
|
|
|
|
| 20733 |
border-radius: 5px 5px 0px 0px;
|
| 20734 |
}
|
| 20735 |
|
| 20874 |
|
| 20875 |
.eael-pricing.style-2 .eael-pricing-item {
|
| 20876 |
padding: 30px 0px;
|
| 20877 |
+
border-radius: 5px;
|
|
|
|
| 20878 |
margin: 0px;
|
| 20879 |
border: 1px solid rgba(9, 9, 9, 0.1);
|
| 20880 |
}
|
| 20894 |
left: 0px;
|
| 20895 |
right: 0px;
|
| 20896 |
z-index: 1;
|
|
|
|
| 20897 |
border-radius: 5px 5px 0px 0px;
|
| 20898 |
}
|
| 20899 |
|
| 20946 |
width: 80px;
|
| 20947 |
height: 80px;
|
| 20948 |
background: #00c853;
|
| 20949 |
+
border-radius: 50%;
|
|
|
|
| 20950 |
margin-bottom: 30px;
|
| 20951 |
text-align: center;
|
| 20952 |
-webkit-transition: .5s;
|
| 21373 |
overflow: hidden;
|
| 21374 |
text-align: center;
|
| 21375 |
padding: 0;
|
| 21376 |
+
border-radius: 0;
|
|
|
|
| 21377 |
background-color: #fff;
|
| 21378 |
-webkit-box-shadow: none;
|
| 21379 |
box-shadow: none;
|
| 21420 |
text-transform: uppercase;
|
| 21421 |
color: #fff;
|
| 21422 |
background-color: #ff2a13;
|
| 21423 |
+
border-radius: 0;
|
|
|
|
| 21424 |
border: none;
|
| 21425 |
-webkit-box-shadow: none;
|
| 21426 |
box-shadow: none;
|
| 21477 |
background-color: #333;
|
| 21478 |
padding: 0;
|
| 21479 |
margin: 15px;
|
| 21480 |
+
border-radius: 0;
|
|
|
|
| 21481 |
}
|
| 21482 |
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button:focus,
|
| 21483 |
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus,
|
| 21530 |
overflow: hidden;
|
| 21531 |
text-align: center;
|
| 21532 |
padding: 0 0 15px 0;
|
| 21533 |
+
border-radius: 0;
|
|
|
|
| 21534 |
background-color: #fff;
|
| 21535 |
-webkit-box-shadow: none;
|
| 21536 |
box-shadow: none;
|
| 21585 |
width: 38px;
|
| 21586 |
height: 38px;
|
| 21587 |
border-style: none;
|
| 21588 |
+
border-radius: 50%;
|
|
|
|
| 21589 |
vertical-align: middle;
|
| 21590 |
padding: 0;
|
| 21591 |
margin: 0 5px;
|
| 21684 |
text-transform: uppercase;
|
| 21685 |
color: #fff;
|
| 21686 |
background-color: #ff2a13;
|
| 21687 |
+
border-radius: 0;
|
|
|
|
| 21688 |
border: none;
|
| 21689 |
-webkit-box-shadow: none;
|
| 21690 |
box-shadow: none;
|
| 21834 |
width: 220px;
|
| 21835 |
height: 220px;
|
| 21836 |
padding: 10px;
|
| 21837 |
+
border-radius: 50%;
|
|
|
|
| 21838 |
}
|
| 21839 |
|
| 21840 |
.eael-progressbar-circle-pie {
|
| 21853 |
border-width: 12px;
|
| 21854 |
border-style: solid;
|
| 21855 |
border-color: #eeeeee;
|
| 21856 |
+
border-radius: 50%;
|
|
|
|
| 21857 |
}
|
| 21858 |
|
| 21859 |
.eael-progressbar-circle-half {
|
| 21865 |
border-width: 12px;
|
| 21866 |
border-style: solid;
|
| 21867 |
border-color: #000000;
|
| 21868 |
+
border-radius: 50%;
|
|
|
|
| 21869 |
-webkit-clip-path: inset(0 50% 0 0);
|
| 21870 |
clip-path: inset(0 50% 0 0);
|
| 21871 |
}
|
| 21949 |
left: -35px;
|
| 21950 |
width: calc(100% + 70px);
|
| 21951 |
height: 100%;
|
|
|
|
| 21952 |
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
| 21953 |
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
| 21954 |
+
background-size: 35px 35px;
|
|
|
|
| 21955 |
}
|
| 21956 |
|
| 21957 |
.eael-progressbar-line-animate .eael-progressbar-line-fill:after {
|
| 21987 |
margin: 0 0 0 auto;
|
| 21988 |
}
|
| 21989 |
|
| 21990 |
+
.eael-scroll-progress {
|
| 21991 |
+
width: 100%;
|
| 21992 |
+
position: fixed;
|
| 21993 |
+
top: 0;
|
| 21994 |
+
left: 0;
|
| 21995 |
+
height: 5px;
|
| 21996 |
+
z-index: 999;
|
| 21997 |
+
}
|
| 21998 |
+
.eael-scroll-progress.eael-scroll-progress-bottom {
|
| 21999 |
+
top: unset;
|
| 22000 |
+
bottom: 0;
|
| 22001 |
+
}
|
| 22002 |
+
.eael-scroll-progress .eael-scroll-progress-fill {
|
| 22003 |
+
height: 5px;
|
| 22004 |
+
background-color: #cfdd10;
|
| 22005 |
+
width: 0%;
|
| 22006 |
+
-webkit-transition: width 50ms ease;
|
| 22007 |
+
-o-transition: width 50ms ease;
|
| 22008 |
+
transition: width 50ms ease;
|
| 22009 |
+
}
|
| 22010 |
+
|
| 22011 |
/*----------------------------*/
|
| 22012 |
/* 07. Team Members Styles
|
| 22013 |
/*----------------------------*/
|
| 22017 |
}
|
| 22018 |
|
| 22019 |
.team-avatar-rounded figure img {
|
| 22020 |
+
border-radius: 50%;
|
|
|
|
| 22021 |
height: auto;
|
| 22022 |
}
|
| 22023 |
|
| 22194 |
}
|
| 22195 |
|
| 22196 |
.testimonial-avatar-rounded figure img {
|
| 22197 |
+
border-radius: 50%;
|
|
|
|
| 22198 |
height: auto;
|
| 22199 |
}
|
| 22200 |
|
| 22536 |
background-color: black;
|
| 22537 |
color: #fff;
|
| 22538 |
text-align: center;
|
| 22539 |
+
border-radius: 4px;
|
|
|
|
| 22540 |
padding: 10px;
|
| 22541 |
position: absolute;
|
| 22542 |
z-index: 1;
|
| 22774 |
}
|
| 22775 |
}
|
| 22776 |
|
| 22777 |
+
.eael-twitter-feed::before, .eael-twitter-feed::after {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22778 |
content: "";
|
| 22779 |
clear: both;
|
| 22780 |
}
|
| 22781 |
|
| 22782 |
+
.eael-twitter-feed-masonry .eael-twitter-feed-item {
|
| 22783 |
float: left;
|
|
|
|
| 22784 |
}
|
| 22785 |
+
@media only screen and (max-width: 480px) {
|
| 22786 |
+
.eael-twitter-feed-masonry.eael-twitter-feed-col-2 .eael-twitter-feed-item {
|
| 22787 |
+
width: 100% !important;
|
| 22788 |
+
}
|
| 22789 |
}
|
| 22790 |
+
@media only screen and (max-width: 480px) {
|
| 22791 |
+
.eael-twitter-feed-masonry.eael-twitter-feed-col-3 .eael-twitter-feed-item {
|
| 22792 |
+
width: 100% !important;
|
| 22793 |
+
}
|
|
|
|
|
|
|
|
|
|
| 22794 |
}
|
| 22795 |
+
@media only screen and (max-width: 480px) {
|
| 22796 |
+
.eael-twitter-feed-masonry.eael-twitter-feed-col-4 .eael-twitter-feed-item {
|
| 22797 |
+
width: 100% !important;
|
| 22798 |
+
}
|
| 22799 |
}
|
| 22800 |
|
| 22801 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-inner {
|
| 22802 |
+
background: #fff;
|
| 22803 |
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
| 22804 |
+
}
|
| 22805 |
+
.eael-twitter-feed-item a {
|
| 22806 |
color: #0088cc;
|
| 22807 |
text-decoration: none;
|
| 22808 |
}
|
| 22809 |
+
.eael-twitter-feed-item a:hover {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22810 |
outline: 0;
|
| 22811 |
color: #005580;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22812 |
}
|
| 22813 |
+
.eael-twitter-feed-item a:focus {
|
| 22814 |
+
outline: none;
|
|
|
|
| 22815 |
}
|
| 22816 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header {
|
| 22817 |
+
padding: 20px 15px 0;
|
| 22818 |
+
margin-bottom: 10px;
|
| 22819 |
}
|
| 22820 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-avatar {
|
| 22821 |
+
float: left;
|
| 22822 |
+
width: 38px;
|
| 22823 |
+
margin-right: 10px;
|
| 22824 |
}
|
| 22825 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-avatar img {
|
| 22826 |
+
max-width: 100%;
|
| 22827 |
+
height: auto;
|
| 22828 |
+
-o-object-fit: cover;
|
| 22829 |
+
object-fit: cover;
|
|
|
|
|
|
|
|
|
|
| 22830 |
}
|
| 22831 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-avatar.avatar-circle img {
|
| 22832 |
+
border-radius: 50%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22833 |
}
|
| 22834 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-meta {
|
| 22835 |
+
float: left;
|
|
|
|
|
|
|
| 22836 |
}
|
| 22837 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-meta .eael-twitter-feed-item-icon {
|
| 22838 |
+
color: #1da1f2;
|
|
|
|
| 22839 |
margin-right: 5px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22840 |
}
|
| 22841 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-meta .eael-twitter-feed-item-author {
|
|
|
|
| 22842 |
color: #444;
|
| 22843 |
line-height: 1.5em;
|
| 22844 |
+
font-weight: 700;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22845 |
}
|
| 22846 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-date {
|
| 22847 |
+
float: right;
|
| 22848 |
+
margin-right: 10px;
|
| 22849 |
+
font-size: 90%;
|
| 22850 |
+
color: #999999;
|
| 22851 |
}
|
| 22852 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-content {
|
| 22853 |
+
padding: 0 15px 15px;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22854 |
}
|
| 22855 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-content p {
|
| 22856 |
+
color: #666666;
|
| 22857 |
+
margin: 0 0 5px;
|
| 22858 |
+
min-height: 20px;
|
| 22859 |
+
-o-text-overflow: ellipsis;
|
| 22860 |
+
text-overflow: ellipsis;
|
| 22861 |
+
-webkit-line-clamp: 5;
|
| 22862 |
+
-webkit-box-orient: vertical;
|
| 22863 |
}
|
| 22864 |
|
| 22865 |
/*----------------------*/
|
| 23118 |
-ms-flex-align: center;
|
| 23119 |
align-items: center;
|
| 23120 |
text-align: center;
|
| 23121 |
+
background-color: #f1f1f1;
|
| 23122 |
}
|
| 23123 |
|
| 23124 |
.eael-advance-tabs .eael-tabs-nav > ul li:after {
|
| 23138 |
display: none;
|
| 23139 |
}
|
| 23140 |
|
| 23141 |
+
.eael-advance-tabs .eael-tabs-nav > ul li.active,
|
| 23142 |
+
.eael-advance-tabs .eael-tabs-nav > ul li.active-default {
|
| 23143 |
+
background-color: #444;
|
| 23144 |
+
}
|
| 23145 |
+
|
| 23146 |
.eael-advance-tabs.active-caret-on .eael-tabs-nav > ul li.active:after,
|
| 23147 |
.eael-advance-tabs.active-caret-on .eael-tabs-nav > ul li.active-default:after {
|
| 23148 |
display: none;
|
| 23417 |
background-image: url("../img/bg.jpg");
|
| 23418 |
background-repeat: no-repeat;
|
| 23419 |
background-position: center;
|
| 23420 |
+
background-size: cover;
|
|
|
|
| 23421 |
position: relative;
|
| 23422 |
z-index: 0;
|
| 23423 |
color: rgba(255, 255, 255, 0.7);
|
| 23731 |
}
|
| 23732 |
|
| 23733 |
.eael-btn-loader {
|
| 23734 |
+
border-radius: 50%;
|
|
|
|
| 23735 |
width: 20px;
|
| 23736 |
height: 20px;
|
| 23737 |
font-size: 10px;
|
| 23747 |
animation: loaderSpin 1.1s infinite linear;
|
| 23748 |
}
|
| 23749 |
.eael-btn-loader:after {
|
| 23750 |
+
border-radius: 50%;
|
|
|
|
| 23751 |
width: 20px;
|
| 23752 |
height: 20px;
|
| 23753 |
}
|
| 23844 |
margin: 0 auto;
|
| 23845 |
}
|
| 23846 |
|
|
|
|
|
|
|
|
|
|
| 23847 |
.eael-ticker-wrap {
|
| 23848 |
overflow: hidden;
|
| 23849 |
display: -webkit-box;
|
| 24003 |
vertical-align: middle;
|
| 24004 |
position: relative;
|
| 24005 |
z-index: 1;
|
| 24006 |
+
border-radius: 2px;
|
|
|
|
| 24007 |
padding: 20px 30px;
|
| 24008 |
font-size: 16px;
|
| 24009 |
line-height: 1;
|
| 24704 |
color: #f54;
|
| 24705 |
}
|
| 24706 |
|
|
|
|
|
|
|
|
|
|
| 24707 |
.eael-fancy-text-container p {
|
| 24708 |
margin: 0;
|
| 24709 |
}
|
| 24710 |
|
| 24711 |
+
.eael-fancy-text-strings {
|
| 24712 |
+
display: none;
|
| 24713 |
+
}
|
| 24714 |
+
|
| 24715 |
.eael-fancy-text-prefix,
|
| 24716 |
.eael-fancy-text-suffix {
|
| 24717 |
display: inline-block;
|
| 24749 |
opacity: 1;
|
| 24750 |
}
|
| 24751 |
}
|
|
|
|
| 24752 |
.eael-fancy-text-container.style-2 {
|
| 24753 |
font-size: 24px;
|
| 24754 |
}
|
| 24903 |
background-color: #fff;
|
| 24904 |
}
|
| 24905 |
.elementor-widget-eael-feature-list .eael-feature-list-items.circle .eael-feature-list-icon-box .eael-feature-list-icon-inner {
|
| 24906 |
+
border-radius: 50%;
|
|
|
|
| 24907 |
}
|
| 24908 |
.elementor-widget-eael-feature-list .eael-feature-list-items.circle .eael-feature-list-icon-box .eael-feature-list-icon-inner .eael-feature-list-icon {
|
| 24909 |
+
border-radius: 50%;
|
|
|
|
| 24910 |
}
|
| 24911 |
.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-icon-box .eael-feature-list-icon-inner {
|
| 24912 |
-webkit-transform: rotate(45deg);
|
| 25579 |
height: 50px;
|
| 25580 |
text-align: center;
|
| 25581 |
line-height: 50px;
|
| 25582 |
+
border-radius: 50%;
|
|
|
|
| 25583 |
margin: 0 5px;
|
| 25584 |
font-size: 20px;
|
| 25585 |
cursor: pointer;
|
| 25629 |
position: relative;
|
| 25630 |
background-repeat: no-repeat;
|
| 25631 |
background-position: center;
|
| 25632 |
+
background-size: cover;
|
|
|
|
| 25633 |
height: 220px;
|
| 25634 |
z-index: 0;
|
| 25635 |
overflow: hidden;
|
| 25877 |
.gallery-item-caption-wrap .gallery-item-buttons > a {
|
| 25878 |
padding: 5px 15px;
|
| 25879 |
display: inline-block;
|
| 25880 |
+
border-radius: 50%;
|
|
|
|
| 25881 |
outline: none;
|
| 25882 |
text-decoration: none;
|
| 25883 |
}
|
| 26367 |
}
|
| 26368 |
|
| 26369 |
.eael_flip_box_icon_border_round {
|
| 26370 |
+
border-radius: 100px;
|
|
|
|
| 26371 |
}
|
| 26372 |
|
| 26373 |
.eael_eleements_flip_front_icon_style_background,
|
| 26644 |
|
| 26645 |
.eael-flipbox-img-circle .eael-elements-flip-box-icon-image img,
|
| 26646 |
.eael-flipbox-img-circle .flipbox-back-image-icon img {
|
| 26647 |
+
border-radius: 50%;
|
|
|
|
| 26648 |
overflow: hidden;
|
| 26649 |
}
|
| 26650 |
|
| 26832 |
}
|
| 26833 |
|
| 26834 |
.eael-custom-radio-checkbox input[type=radio] {
|
| 26835 |
+
border-radius: 50%;
|
|
|
|
| 26836 |
}
|
| 26837 |
|
| 26838 |
.eael-custom-radio-checkbox input[type=radio]:before {
|
| 26839 |
+
border-radius: 50%;
|
| 26840 |
+
}
|
| 26841 |
+
|
| 26842 |
+
.eael-post-elements-readmore-btn {
|
| 26843 |
+
font-size: 12px;
|
| 26844 |
+
font-weight: 500;
|
| 26845 |
}
|
| 26846 |
|
| 26847 |
/*----------------------*/
|
| 26921 |
text-align: center;
|
| 26922 |
text-decoration: none;
|
| 26923 |
color: #fff;
|
| 26924 |
+
background-size: cover;
|
|
|
|
| 26925 |
background-position: center;
|
| 26926 |
background-repeat: no-repeat;
|
| 26927 |
-webkit-transition: -webkit-box-flex .4s, -webkit-flex .4s;
|
| 27084 |
}
|
| 27085 |
|
| 27086 |
.eael-infobox-icon-hover-bg-shape-square:hover .infobox-icon .infobox-icon-wrap {
|
| 27087 |
+
border-radius: 0;
|
|
|
|
| 27088 |
}
|
| 27089 |
|
| 27090 |
.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap,
|
| 27091 |
.eael-infobox-icon-hover-bg-shape-radius:hover .infobox-icon .infobox-icon-wrap {
|
| 27092 |
+
border-radius: 15px;
|
|
|
|
| 27093 |
}
|
| 27094 |
|
| 27095 |
.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap {
|
| 27109 |
|
| 27110 |
.eael-infobox-icon-bg-shape-circle .infobox-icon .infobox-icon-wrap,
|
| 27111 |
.eael-infobox-icon-hover-bg-shape-circle:hover .infobox-icon .infobox-icon-wrap {
|
| 27112 |
+
border-radius: 50%;
|
|
|
|
| 27113 |
}
|
| 27114 |
|
| 27115 |
.eael-infobox-icon-bg-shape-square .infobox-icon .infobox-icon-wrap i,
|
| 27282 |
}
|
| 27283 |
|
| 27284 |
.eael-infobox-hover-img-shape-square:hover .eael-infobox .infobox-icon img {
|
| 27285 |
+
border-radius: 0;
|
|
|
|
| 27286 |
}
|
| 27287 |
|
| 27288 |
.eael-infobox-shape-circle .eael-infobox .infobox-icon img,
|
| 27289 |
.eael-infobox-hover-img-shape-circle:hover .eael-infobox .infobox-icon img {
|
| 27290 |
+
border-radius: 50%;
|
|
|
|
| 27291 |
}
|
| 27292 |
|
| 27293 |
.eael-infobox-shape-radius .eael-infobox .infobox-icon img,
|
| 27294 |
.eael-infobox-hover-img-shape-radius:hover .eael-infobox .infobox-icon img {
|
| 27295 |
+
border-radius: 15px;
|
|
|
|
| 27296 |
}
|
| 27297 |
|
| 27298 |
/* ------------------------ */
|
| 27832 |
|
| 27833 |
.eael-ninja-form .submit-container input[type=button] {
|
| 27834 |
border: 0;
|
| 27835 |
+
border-radius: 0;
|
|
|
|
| 27836 |
}
|
| 27837 |
|
| 27838 |
.eael-ninja-form-button-full-width .submit-container input[type=button] {
|
| 27911 |
}
|
| 27912 |
|
| 27913 |
.eael-entry-footer .eael-author-avatar .avatar {
|
| 27914 |
+
border-radius: 50%;
|
|
|
|
| 27915 |
}
|
| 27916 |
|
| 27917 |
.eael-post-grid .eael-entry-footer .eael-entry-meta {
|
| 28269 |
.eael-timeline-bullet {
|
| 28270 |
background-color: #9fa9af;
|
| 28271 |
border: 5px solid #fff;
|
| 28272 |
+
border-radius: 50%;
|
|
|
|
| 28273 |
-webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.1);
|
| 28274 |
box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.1);
|
| 28275 |
content: "";
|
| 28285 |
.eael-timeline-post:nth-child(2n) .eael-timeline-bullet {
|
| 28286 |
background-color: #9fa9af;
|
| 28287 |
border: 5px solid #fff;
|
| 28288 |
+
border-radius: 50%;
|
|
|
|
| 28289 |
bottom: 36px;
|
| 28290 |
content: "";
|
| 28291 |
height: 20px;
|
| 28297 |
}
|
| 28298 |
|
| 28299 |
.eael-timeline-post-inner {
|
|
|
|
| 28300 |
background: -o-linear-gradient(45deg, #3f3f46 0%, #05abe0 100%) repeat scroll 0 0 transparent;
|
| 28301 |
background: linear-gradient(45deg, #3f3f46 0%, #05abe0 100%) repeat scroll 0 0 transparent;
|
| 28302 |
border: 8px solid #e5eaed;
|
| 28349 |
}
|
| 28350 |
|
| 28351 |
.eael-timeline-post-image {
|
| 28352 |
+
background-size: cover;
|
|
|
|
| 28353 |
background-position: center center;
|
| 28354 |
background-repeat: no-repeat;
|
| 28355 |
display: block;
|
| 28409 |
background-color: rgba(0, 0, 0, 0.7);
|
| 28410 |
color: #fff;
|
| 28411 |
font-size: 10px;
|
| 28412 |
+
border-radius: 20px;
|
|
|
|
| 28413 |
position: absolute;
|
| 28414 |
right: -97px;
|
| 28415 |
width: 100px;
|
| 28425 |
|
| 28426 |
.eael-timeline-post:nth-child(2n) time {
|
| 28427 |
background-color: rgba(0, 0, 0, 0.7);
|
| 28428 |
+
border-radius: 20px;
|
|
|
|
| 28429 |
color: #fff;
|
| 28430 |
font-size: 10px;
|
| 28431 |
height: 30px;
|
| 28542 |
.eael-timeline-post time,
|
| 28543 |
.eael-timeline-post:nth-child(2n) time {
|
| 28544 |
background-color: #fff;
|
| 28545 |
+
border-radius: 0;
|
|
|
|
| 28546 |
color: #444;
|
| 28547 |
font-size: 12px;
|
| 28548 |
text-transform: uppercase;
|
| 28622 |
-webkit-transition: .3s;
|
| 28623 |
-o-transition: .3s;
|
| 28624 |
transition: .3s;
|
|
|
|
| 28625 |
border-radius: 4px;
|
| 28626 |
}
|
| 28627 |
|
| 28659 |
.eael-pricing.style-1 .eael-pricing-item {
|
| 28660 |
border: 1px solid rgba(9, 9, 9, 0.1);
|
| 28661 |
padding: 30px;
|
|
|
|
| 28662 |
border-radius: 5px;
|
| 28663 |
-webkit-transition: .5s;
|
| 28664 |
-o-transition: .5s;
|
| 28684 |
left: 0px;
|
| 28685 |
right: 0px;
|
| 28686 |
z-index: 1;
|
|
|
|
| 28687 |
border-radius: 5px 5px 0px 0px;
|
| 28688 |
}
|
| 28689 |
|
| 28828 |
|
| 28829 |
.eael-pricing.style-2 .eael-pricing-item {
|
| 28830 |
padding: 30px 0px;
|
| 28831 |
+
border-radius: 5px;
|
|
|
|
| 28832 |
margin: 0px;
|
| 28833 |
border: 1px solid rgba(9, 9, 9, 0.1);
|
| 28834 |
}
|
| 28848 |
left: 0px;
|
| 28849 |
right: 0px;
|
| 28850 |
z-index: 1;
|
|
|
|
| 28851 |
border-radius: 5px 5px 0px 0px;
|
| 28852 |
}
|
| 28853 |
|
| 28900 |
width: 80px;
|
| 28901 |
height: 80px;
|
| 28902 |
background: #00c853;
|
| 28903 |
+
border-radius: 50%;
|
|
|
|
| 28904 |
margin-bottom: 30px;
|
| 28905 |
text-align: center;
|
| 28906 |
-webkit-transition: .5s;
|
| 29327 |
overflow: hidden;
|
| 29328 |
text-align: center;
|
| 29329 |
padding: 0;
|
| 29330 |
+
border-radius: 0;
|
|
|
|
| 29331 |
background-color: #fff;
|
| 29332 |
-webkit-box-shadow: none;
|
| 29333 |
box-shadow: none;
|
| 29374 |
text-transform: uppercase;
|
| 29375 |
color: #fff;
|
| 29376 |
background-color: #ff2a13;
|
| 29377 |
+
border-radius: 0;
|
|
|
|
| 29378 |
border: none;
|
| 29379 |
-webkit-box-shadow: none;
|
| 29380 |
box-shadow: none;
|
| 29431 |
background-color: #333;
|
| 29432 |
padding: 0;
|
| 29433 |
margin: 15px;
|
| 29434 |
+
border-radius: 0;
|
|
|
|
| 29435 |
}
|
| 29436 |
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button:focus,
|
| 29437 |
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus,
|
| 29484 |
overflow: hidden;
|
| 29485 |
text-align: center;
|
| 29486 |
padding: 0 0 15px 0;
|
| 29487 |
+
border-radius: 0;
|
|
|
|
| 29488 |
background-color: #fff;
|
| 29489 |
-webkit-box-shadow: none;
|
| 29490 |
box-shadow: none;
|
| 29539 |
width: 38px;
|
| 29540 |
height: 38px;
|
| 29541 |
border-style: none;
|
| 29542 |
+
border-radius: 50%;
|
|
|
|
| 29543 |
vertical-align: middle;
|
| 29544 |
padding: 0;
|
| 29545 |
margin: 0 5px;
|
| 29638 |
text-transform: uppercase;
|
| 29639 |
color: #fff;
|
| 29640 |
background-color: #ff2a13;
|
| 29641 |
+
border-radius: 0;
|
|
|
|
| 29642 |
border: none;
|
| 29643 |
-webkit-box-shadow: none;
|
| 29644 |
box-shadow: none;
|
| 29788 |
width: 220px;
|
| 29789 |
height: 220px;
|
| 29790 |
padding: 10px;
|
| 29791 |
+
border-radius: 50%;
|
|
|
|
| 29792 |
}
|
| 29793 |
|
| 29794 |
.eael-progressbar-circle-pie {
|
| 29807 |
border-width: 12px;
|
| 29808 |
border-style: solid;
|
| 29809 |
border-color: #eeeeee;
|
| 29810 |
+
border-radius: 50%;
|
|
|
|
| 29811 |
}
|
| 29812 |
|
| 29813 |
.eael-progressbar-circle-half {
|
| 29819 |
border-width: 12px;
|
| 29820 |
border-style: solid;
|
| 29821 |
border-color: #000000;
|
| 29822 |
+
border-radius: 50%;
|
|
|
|
| 29823 |
-webkit-clip-path: inset(0 50% 0 0);
|
| 29824 |
clip-path: inset(0 50% 0 0);
|
| 29825 |
}
|
| 29903 |
left: -35px;
|
| 29904 |
width: calc(100% + 70px);
|
| 29905 |
height: 100%;
|
|
|
|
| 29906 |
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
| 29907 |
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
| 29908 |
+
background-size: 35px 35px;
|
|
|
|
| 29909 |
}
|
| 29910 |
|
| 29911 |
.eael-progressbar-line-animate .eael-progressbar-line-fill:after {
|
| 29941 |
margin: 0 0 0 auto;
|
| 29942 |
}
|
| 29943 |
|
| 29944 |
+
.eael-scroll-progress {
|
| 29945 |
+
width: 100%;
|
| 29946 |
+
position: fixed;
|
| 29947 |
+
top: 0;
|
| 29948 |
+
left: 0;
|
| 29949 |
+
height: 5px;
|
| 29950 |
+
z-index: 999;
|
| 29951 |
+
}
|
| 29952 |
+
.eael-scroll-progress.eael-scroll-progress-bottom {
|
| 29953 |
+
top: unset;
|
| 29954 |
+
bottom: 0;
|
| 29955 |
+
}
|
| 29956 |
+
.eael-scroll-progress .eael-scroll-progress-fill {
|
| 29957 |
+
height: 5px;
|
| 29958 |
+
background-color: #cfdd10;
|
| 29959 |
+
width: 0%;
|
| 29960 |
+
-webkit-transition: width 50ms ease;
|
| 29961 |
+
-o-transition: width 50ms ease;
|
| 29962 |
+
transition: width 50ms ease;
|
| 29963 |
+
}
|
| 29964 |
+
|
| 29965 |
/*----------------------------*/
|
| 29966 |
/* 07. Team Members Styles
|
| 29967 |
/*----------------------------*/
|
| 29971 |
}
|
| 29972 |
|
| 29973 |
.team-avatar-rounded figure img {
|
| 29974 |
+
border-radius: 50%;
|
|
|
|
| 29975 |
height: auto;
|
| 29976 |
}
|
| 29977 |
|
| 30148 |
}
|
| 30149 |
|
| 30150 |
.testimonial-avatar-rounded figure img {
|
| 30151 |
+
border-radius: 50%;
|
|
|
|
| 30152 |
height: auto;
|
| 30153 |
}
|
| 30154 |
|
| 30490 |
background-color: black;
|
| 30491 |
color: #fff;
|
| 30492 |
text-align: center;
|
| 30493 |
+
border-radius: 4px;
|
|
|
|
| 30494 |
padding: 10px;
|
| 30495 |
position: absolute;
|
| 30496 |
z-index: 1;
|
| 30728 |
}
|
| 30729 |
}
|
| 30730 |
|
| 30731 |
+
.eael-twitter-feed::before, .eael-twitter-feed::after {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30732 |
content: "";
|
| 30733 |
clear: both;
|
| 30734 |
}
|
| 30735 |
|
| 30736 |
+
.eael-twitter-feed-masonry .eael-twitter-feed-item {
|
| 30737 |
float: left;
|
|
|
|
| 30738 |
}
|
| 30739 |
+
@media only screen and (max-width: 480px) {
|
| 30740 |
+
.eael-twitter-feed-masonry.eael-twitter-feed-col-2 .eael-twitter-feed-item {
|
| 30741 |
+
width: 100% !important;
|
| 30742 |
+
}
|
| 30743 |
}
|
| 30744 |
+
@media only screen and (max-width: 480px) {
|
| 30745 |
+
.eael-twitter-feed-masonry.eael-twitter-feed-col-3 .eael-twitter-feed-item {
|
| 30746 |
+
width: 100% !important;
|
| 30747 |
+
}
|
|
|
|
|
|
|
|
|
|
| 30748 |
}
|
| 30749 |
+
@media only screen and (max-width: 480px) {
|
| 30750 |
+
.eael-twitter-feed-masonry.eael-twitter-feed-col-4 .eael-twitter-feed-item {
|
| 30751 |
+
width: 100% !important;
|
| 30752 |
+
}
|
| 30753 |
}
|
| 30754 |
|
| 30755 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-inner {
|
| 30756 |
+
background: #fff;
|
| 30757 |
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
| 30758 |
+
}
|
| 30759 |
+
.eael-twitter-feed-item a {
|
| 30760 |
color: #0088cc;
|
| 30761 |
text-decoration: none;
|
| 30762 |
}
|
| 30763 |
+
.eael-twitter-feed-item a:hover {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30764 |
outline: 0;
|
| 30765 |
color: #005580;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30766 |
}
|
| 30767 |
+
.eael-twitter-feed-item a:focus {
|
| 30768 |
+
outline: none;
|
|
|
|
| 30769 |
}
|
| 30770 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header {
|
| 30771 |
+
padding: 20px 15px 0;
|
| 30772 |
+
margin-bottom: 10px;
|
| 30773 |
}
|
| 30774 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-avatar {
|
| 30775 |
+
float: left;
|
| 30776 |
+
width: 38px;
|
| 30777 |
+
margin-right: 10px;
|
| 30778 |
}
|
| 30779 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-avatar img {
|
| 30780 |
+
max-width: 100%;
|
| 30781 |
+
height: auto;
|
| 30782 |
+
-o-object-fit: cover;
|
| 30783 |
+
object-fit: cover;
|
|
|
|
|
|
|
|
|
|
| 30784 |
}
|
| 30785 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-avatar.avatar-circle img {
|
| 30786 |
+
border-radius: 50%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30787 |
}
|
| 30788 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-meta {
|
| 30789 |
+
float: left;
|
|
|
|
|
|
|
| 30790 |
}
|
| 30791 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-meta .eael-twitter-feed-item-icon {
|
| 30792 |
+
color: #1da1f2;
|
|
|
|
| 30793 |
margin-right: 5px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30794 |
}
|
| 30795 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-meta .eael-twitter-feed-item-author {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30796 |
color: #444;
|
| 30797 |
line-height: 1.5em;
|
| 30798 |
+
font-weight: 700;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30799 |
}
|
| 30800 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-date {
|
| 30801 |
+
float: right;
|
| 30802 |
+
margin-right: 10px;
|
| 30803 |
+
font-size: 90%;
|
| 30804 |
+
color: #999999;
|
| 30805 |
}
|
| 30806 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-content {
|
| 30807 |
+
padding: 0 15px 15px;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30808 |
}
|
| 30809 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-content p {
|
| 30810 |
+
color: #666666;
|
| 30811 |
+
margin: 0 0 5px;
|
| 30812 |
+
min-height: 20px;
|
| 30813 |
+
-o-text-overflow: ellipsis;
|
| 30814 |
+
text-overflow: ellipsis;
|
| 30815 |
+
-webkit-line-clamp: 5;
|
| 30816 |
+
-webkit-box-orient: vertical;
|
| 30817 |
}
|
| 30818 |
|
| 30819 |
/*----------------------*/
|
| 31072 |
-ms-flex-align: center;
|
| 31073 |
align-items: center;
|
| 31074 |
text-align: center;
|
| 31075 |
+
background-color: #f1f1f1;
|
| 31076 |
}
|
| 31077 |
|
| 31078 |
.eael-advance-tabs .eael-tabs-nav > ul li:after {
|
| 31092 |
display: none;
|
| 31093 |
}
|
| 31094 |
|
| 31095 |
+
.eael-advance-tabs .eael-tabs-nav > ul li:hover,
|
| 31096 |
+
.eael-advance-tabs .eael-tabs-nav > ul li.active,
|
| 31097 |
+
.eael-advance-tabs .eael-tabs-nav > ul li.active-default {
|
| 31098 |
+
background-color: #444;
|
| 31099 |
+
}
|
| 31100 |
+
|
| 31101 |
.eael-advance-tabs.active-caret-on .eael-tabs-nav > ul li.active:after,
|
| 31102 |
.eael-advance-tabs.active-caret-on .eael-tabs-nav > ul li.active-default:after {
|
| 31103 |
display: none;
|
| 31799 |
margin: 0 auto;
|
| 31800 |
}
|
| 31801 |
|
|
|
|
|
|
|
|
|
|
| 31802 |
.eael-ticker-wrap {
|
| 31803 |
overflow: hidden;
|
| 31804 |
display: -webkit-box;
|
| 32659 |
color: #f54;
|
| 32660 |
}
|
| 32661 |
|
|
|
|
|
|
|
|
|
|
| 32662 |
.eael-fancy-text-container p {
|
| 32663 |
margin: 0;
|
| 32664 |
}
|
| 32665 |
|
| 32666 |
+
.eael-fancy-text-strings {
|
| 32667 |
+
display: none;
|
| 32668 |
+
}
|
| 32669 |
+
|
| 32670 |
.eael-fancy-text-prefix,
|
| 32671 |
.eael-fancy-text-suffix {
|
| 32672 |
display: inline-block;
|
| 32704 |
opacity: 1;
|
| 32705 |
}
|
| 32706 |
}
|
|
|
|
| 32707 |
.eael-fancy-text-container.style-2 {
|
| 32708 |
font-size: 24px;
|
| 32709 |
}
|
| 37896 |
margin: 0 0 0 auto;
|
| 37897 |
}
|
| 37898 |
|
| 37899 |
+
.eael-scroll-progress {
|
| 37900 |
+
width: 100%;
|
| 37901 |
+
position: fixed;
|
| 37902 |
+
top: 0;
|
| 37903 |
+
left: 0;
|
| 37904 |
+
height: 5px;
|
| 37905 |
+
z-index: 999;
|
| 37906 |
+
}
|
| 37907 |
+
.eael-scroll-progress.eael-scroll-progress-bottom {
|
| 37908 |
+
top: unset;
|
| 37909 |
+
bottom: 0;
|
| 37910 |
+
}
|
| 37911 |
+
.eael-scroll-progress .eael-scroll-progress-fill {
|
| 37912 |
+
height: 5px;
|
| 37913 |
+
background-color: #cfdd10;
|
| 37914 |
+
width: 0%;
|
| 37915 |
+
-webkit-transition: width 50ms ease;
|
| 37916 |
+
-o-transition: width 50ms ease;
|
| 37917 |
+
transition: width 50ms ease;
|
| 37918 |
+
}
|
| 37919 |
+
|
| 37920 |
/*----------------------------*/
|
| 37921 |
/* 07. Team Members Styles
|
| 37922 |
/*----------------------------*/
|
| 38683 |
}
|
| 38684 |
}
|
| 38685 |
|
| 38686 |
+
.eael-twitter-feed::before, .eael-twitter-feed::after {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38687 |
content: "";
|
| 38688 |
clear: both;
|
| 38689 |
}
|
| 38690 |
|
| 38691 |
+
.eael-twitter-feed-masonry .eael-twitter-feed-item {
|
| 38692 |
float: left;
|
|
|
|
| 38693 |
}
|
| 38694 |
+
@media only screen and (max-width: 480px) {
|
| 38695 |
+
.eael-twitter-feed-masonry.eael-twitter-feed-col-2 .eael-twitter-feed-item {
|
| 38696 |
+
width: 100% !important;
|
| 38697 |
+
}
|
| 38698 |
}
|
| 38699 |
+
@media only screen and (max-width: 480px) {
|
| 38700 |
+
.eael-twitter-feed-masonry.eael-twitter-feed-col-3 .eael-twitter-feed-item {
|
| 38701 |
+
width: 100% !important;
|
| 38702 |
+
}
|
|
|
|
|
|
|
|
|
|
| 38703 |
}
|
| 38704 |
+
@media only screen and (max-width: 480px) {
|
| 38705 |
+
.eael-twitter-feed-masonry.eael-twitter-feed-col-4 .eael-twitter-feed-item {
|
| 38706 |
+
width: 100% !important;
|
| 38707 |
+
}
|
| 38708 |
}
|
| 38709 |
|
| 38710 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-inner {
|
| 38711 |
+
background: #fff;
|
| 38712 |
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
| 38713 |
+
}
|
| 38714 |
+
.eael-twitter-feed-item a {
|
| 38715 |
color: #0088cc;
|
| 38716 |
text-decoration: none;
|
| 38717 |
}
|
| 38718 |
+
.eael-twitter-feed-item a:hover {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38719 |
outline: 0;
|
| 38720 |
color: #005580;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38721 |
}
|
| 38722 |
+
.eael-twitter-feed-item a:focus {
|
| 38723 |
+
outline: none;
|
|
|
|
|
|
|
|
|
|
| 38724 |
}
|
| 38725 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header {
|
| 38726 |
+
padding: 20px 15px 0;
|
| 38727 |
+
margin-bottom: 10px;
|
|
|
|
| 38728 |
}
|
| 38729 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-avatar {
|
| 38730 |
+
float: left;
|
| 38731 |
+
width: 38px;
|
| 38732 |
+
margin-right: 10px;
|
|
|
|
| 38733 |
}
|
| 38734 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-avatar img {
|
| 38735 |
+
max-width: 100%;
|
|
|
|
|
|
|
| 38736 |
height: auto;
|
| 38737 |
+
-o-object-fit: cover;
|
| 38738 |
+
object-fit: cover;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38739 |
}
|
| 38740 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-avatar.avatar-circle img {
|
|
|
|
|
|
|
| 38741 |
border-radius: 50%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38742 |
}
|
| 38743 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-meta {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38744 |
float: left;
|
| 38745 |
}
|
| 38746 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-meta .eael-twitter-feed-item-icon {
|
| 38747 |
+
color: #1da1f2;
|
| 38748 |
+
margin-right: 5px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38749 |
}
|
| 38750 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-meta .eael-twitter-feed-item-author {
|
| 38751 |
+
color: #444;
|
| 38752 |
+
line-height: 1.5em;
|
| 38753 |
+
font-weight: 700;
|
| 38754 |
}
|
| 38755 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-date {
|
| 38756 |
+
float: right;
|
| 38757 |
+
margin-right: 10px;
|
| 38758 |
+
font-size: 90%;
|
| 38759 |
+
color: #999999;
|
| 38760 |
}
|
| 38761 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-content {
|
| 38762 |
+
padding: 0 15px 15px;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38763 |
}
|
| 38764 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-content p {
|
| 38765 |
+
color: #666666;
|
| 38766 |
+
margin: 0 0 5px;
|
| 38767 |
+
min-height: 20px;
|
| 38768 |
+
-o-text-overflow: ellipsis;
|
| 38769 |
+
text-overflow: ellipsis;
|
| 38770 |
+
-webkit-line-clamp: 5;
|
| 38771 |
+
-webkit-box-orient: vertical;
|
| 38772 |
}
|
| 38773 |
|
| 38774 |
/*----------------------*/
|
| 38979 |
}
|
| 38980 |
}
|
| 38981 |
|
| 38982 |
+
/* ----------------------------------------- */
|
| 38983 |
+
/* 22. Caldera Contact Form Styler
|
| 38984 |
+
/* ----------------------------------------- */
|
| 38985 |
+
.eael-caldera-form-align-left,
|
| 38986 |
+
.eael-caldera-form-btn-align-left {
|
| 38987 |
+
text-align: left;
|
| 38988 |
+
}
|
| 38989 |
+
|
| 38990 |
+
.eael-caldera-form-align-right,
|
| 38991 |
+
.eael-caldera-form-btn-align-right {
|
| 38992 |
+
text-align: right;
|
| 38993 |
+
}
|
| 38994 |
+
|
| 38995 |
+
.eael-caldera-form-align-center,
|
| 38996 |
+
.eael-caldera-form-btn-align-center {
|
| 38997 |
+
text-align: center;
|
| 38998 |
+
}
|
| 38999 |
+
|
| 39000 |
+
.eael-caldera-form .control-label {
|
| 39001 |
+
display: none;
|
| 39002 |
+
}
|
| 39003 |
+
|
| 39004 |
+
.eael-caldera-form-labels-yes .control-label {
|
| 39005 |
+
display: block;
|
| 39006 |
+
}
|
| 39007 |
+
|
| 39008 |
+
.eael-caldera-form-button-center .form-group input[type=button],
|
| 39009 |
+
.eael-caldera-form-button-center .form-group input[type=submit] {
|
| 39010 |
+
display: block;
|
| 39011 |
+
margin: 0 auto;
|
| 39012 |
+
}
|
| 39013 |
+
|
| 39014 |
+
.eael-caldera-form-button-right .form-group input[type=button],
|
| 39015 |
+
.eael-caldera-form-button-right .form-group input[type=submit] {
|
| 39016 |
+
float: right;
|
| 39017 |
+
}
|
| 39018 |
+
|
| 39019 |
+
.eael-caldera-form .intl-tel-input {
|
| 39020 |
+
display: inherit;
|
| 39021 |
+
}
|
| 39022 |
+
|
| 39023 |
+
.eael-custom-radio-checkbox .caldera-grid input[type=checkbox],
|
| 39024 |
+
.eael-custom-radio-checkbox .caldera-grid input[type=radio] {
|
| 39025 |
+
border-style: solid;
|
| 39026 |
+
border-width: 0;
|
| 39027 |
+
padding: 3px;
|
| 39028 |
+
-webkit-appearance: none;
|
| 39029 |
+
}
|
| 39030 |
+
|
| 39031 |
+
.eael-caldera-form-button-full-width .form-group input[type=submit],
|
| 39032 |
+
.eael-caldera-form-button-full-width .form-group input[type=button] {
|
| 39033 |
+
width: 100%;
|
| 39034 |
+
}
|
| 39035 |
+
|
| 39036 |
/*----------------------------*/
|
| 39037 |
/* 30. Advance Tabs
|
| 39038 |
/*----------------------------*/
|
| 39081 |
-ms-flex-align: center;
|
| 39082 |
align-items: center;
|
| 39083 |
text-align: center;
|
| 39084 |
+
background-color: #f1f1f1;
|
| 39085 |
}
|
| 39086 |
|
| 39087 |
.eael-advance-tabs .eael-tabs-nav > ul li:after {
|
| 39101 |
display: none;
|
| 39102 |
}
|
| 39103 |
|
| 39104 |
+
.eael-advance-tabs .eael-tabs-nav > ul li:hover,
|
| 39105 |
+
.eael-advance-tabs .eael-tabs-nav > ul li.active,
|
| 39106 |
+
.eael-advance-tabs .eael-tabs-nav > ul li.active-default {
|
| 39107 |
+
background-color: #444;
|
| 39108 |
+
color: #fff;
|
| 39109 |
+
}
|
| 39110 |
+
.eael-advance-tabs .eael-tabs-nav > ul li:hover .fa,
|
| 39111 |
+
.eael-advance-tabs .eael-tabs-nav > ul li.active .fa,
|
| 39112 |
+
.eael-advance-tabs .eael-tabs-nav > ul li.active-default .fa {
|
| 39113 |
+
color: #fff;
|
| 39114 |
+
}
|
| 39115 |
+
|
| 39116 |
.eael-advance-tabs.active-caret-on .eael-tabs-nav > ul li.active:after,
|
| 39117 |
.eael-advance-tabs.active-caret-on .eael-tabs-nav > ul li.active-default:after {
|
| 39118 |
display: none;
|
| 39285 |
}
|
| 39286 |
}
|
| 39287 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39288 |
/*--------------------------*/
|
| 39289 |
/* 19. Call To Action
|
| 39290 |
/*-------------------------*/
|
| 39760 |
margin: 0 auto;
|
| 39761 |
}
|
| 39762 |
|
|
|
|
|
|
|
|
|
|
| 39763 |
.eael-ticker-wrap {
|
| 39764 |
overflow: hidden;
|
| 39765 |
display: -webkit-box;
|
| 40620 |
color: #f54;
|
| 40621 |
}
|
| 40622 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40623 |
/*----------------------------*/
|
| 40624 |
/* 35. Feature List
|
| 40625 |
/*----------------------------*/
|
| 42185 |
}
|
| 42186 |
}
|
| 42187 |
|
| 42188 |
+
.eael-fancy-text-container p {
|
| 42189 |
+
margin: 0;
|
| 42190 |
+
}
|
| 42191 |
+
|
| 42192 |
+
.eael-fancy-text-strings {
|
| 42193 |
+
display: none;
|
| 42194 |
+
}
|
| 42195 |
+
|
| 42196 |
+
.eael-fancy-text-prefix,
|
| 42197 |
+
.eael-fancy-text-suffix {
|
| 42198 |
+
display: inline-block;
|
| 42199 |
+
}
|
| 42200 |
+
|
| 42201 |
+
.morphext > .animated {
|
| 42202 |
+
display: inline-block;
|
| 42203 |
+
}
|
| 42204 |
+
|
| 42205 |
+
.typed-cursor {
|
| 42206 |
+
opacity: 1;
|
| 42207 |
+
-webkit-animation: blink_cursor 0.7s infinite;
|
| 42208 |
+
animation: blink_cursor 0.7s infinite;
|
| 42209 |
+
}
|
| 42210 |
+
|
| 42211 |
+
@keyframes blink_cursor {
|
| 42212 |
+
0% {
|
| 42213 |
+
opacity: 1;
|
| 42214 |
+
}
|
| 42215 |
+
50% {
|
| 42216 |
+
opacity: 0;
|
| 42217 |
+
}
|
| 42218 |
+
100% {
|
| 42219 |
+
opacity: 1;
|
| 42220 |
+
}
|
| 42221 |
+
}
|
| 42222 |
+
@-webkit-keyframes blink_cursor {
|
| 42223 |
+
0% {
|
| 42224 |
+
opacity: 1;
|
| 42225 |
+
}
|
| 42226 |
+
50% {
|
| 42227 |
+
opacity: 0;
|
| 42228 |
+
}
|
| 42229 |
+
100% {
|
| 42230 |
+
opacity: 1;
|
| 42231 |
+
}
|
| 42232 |
+
}
|
| 42233 |
+
.eael-fancy-text-container.style-2 {
|
| 42234 |
+
font-size: 24px;
|
| 42235 |
+
}
|
| 42236 |
+
|
| 42237 |
+
.eael-fancy-text-container.style-2 .eael-fancy-text-strings {
|
| 42238 |
+
background: #ff5544;
|
| 42239 |
+
color: #fff;
|
| 42240 |
+
padding: 10px 25px;
|
| 42241 |
+
}
|
| 42242 |
+
|
| 42243 |
/*---------------------------*/
|
| 42244 |
/* 18. Flipbox Style
|
| 42245 |
/*---------------------------*/
|
| 45857 |
margin: 0 0 0 auto;
|
| 45858 |
}
|
| 45859 |
|
| 45860 |
+
.eael-scroll-progress {
|
| 45861 |
+
width: 100%;
|
| 45862 |
+
position: fixed;
|
| 45863 |
+
top: 0;
|
| 45864 |
+
left: 0;
|
| 45865 |
+
height: 5px;
|
| 45866 |
+
z-index: 999;
|
| 45867 |
+
}
|
| 45868 |
+
.eael-scroll-progress.eael-scroll-progress-bottom {
|
| 45869 |
+
top: unset;
|
| 45870 |
+
bottom: 0;
|
| 45871 |
+
}
|
| 45872 |
+
.eael-scroll-progress .eael-scroll-progress-fill {
|
| 45873 |
+
height: 5px;
|
| 45874 |
+
background-color: #cfdd10;
|
| 45875 |
+
width: 0%;
|
| 45876 |
+
-webkit-transition: width 50ms ease;
|
| 45877 |
+
-o-transition: width 50ms ease;
|
| 45878 |
+
transition: width 50ms ease;
|
| 45879 |
+
}
|
| 45880 |
+
|
| 45881 |
/*----------------------------*/
|
| 45882 |
/* 07. Team Members Styles
|
| 45883 |
/*----------------------------*/
|
| 46644 |
}
|
| 46645 |
}
|
| 46646 |
|
| 46647 |
+
.eael-twitter-feed::before, .eael-twitter-feed::after {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46648 |
content: "";
|
| 46649 |
clear: both;
|
| 46650 |
}
|
| 46651 |
|
| 46652 |
+
.eael-twitter-feed-masonry .eael-twitter-feed-item {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46653 |
float: left;
|
|
|
|
| 46654 |
}
|
| 46655 |
+
@media only screen and (max-width: 480px) {
|
| 46656 |
+
.eael-twitter-feed-masonry.eael-twitter-feed-col-2 .eael-twitter-feed-item {
|
| 46657 |
+
width: 100% !important;
|
| 46658 |
+
}
|
| 46659 |
}
|
| 46660 |
+
@media only screen and (max-width: 480px) {
|
| 46661 |
+
.eael-twitter-feed-masonry.eael-twitter-feed-col-3 .eael-twitter-feed-item {
|
| 46662 |
+
width: 100% !important;
|
| 46663 |
+
}
|
|
|
|
|
|
|
| 46664 |
}
|
| 46665 |
+
@media only screen and (max-width: 480px) {
|
| 46666 |
+
.eael-twitter-feed-masonry.eael-twitter-feed-col-4 .eael-twitter-feed-item {
|
| 46667 |
+
width: 100% !important;
|
| 46668 |
+
}
|
| 46669 |
}
|
| 46670 |
+
|
| 46671 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-inner {
|
| 46672 |
+
background: #fff;
|
| 46673 |
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
| 46674 |
+
}
|
| 46675 |
+
.eael-twitter-feed-item a {
|
| 46676 |
color: #0088cc;
|
| 46677 |
text-decoration: none;
|
| 46678 |
}
|
| 46679 |
+
.eael-twitter-feed-item a:hover {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46680 |
outline: 0;
|
| 46681 |
color: #005580;
|
|
|
|
| 46682 |
}
|
| 46683 |
+
.eael-twitter-feed-item a:focus {
|
| 46684 |
+
outline: none;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46685 |
}
|
| 46686 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header {
|
| 46687 |
+
padding: 20px 15px 0;
|
| 46688 |
+
margin-bottom: 10px;
|
|
|
|
| 46689 |
}
|
| 46690 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-avatar {
|
| 46691 |
+
float: left;
|
| 46692 |
+
width: 38px;
|
| 46693 |
+
margin-right: 10px;
|
| 46694 |
}
|
| 46695 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-avatar img {
|
| 46696 |
+
max-width: 100%;
|
| 46697 |
+
height: auto;
|
| 46698 |
+
-o-object-fit: cover;
|
| 46699 |
+
object-fit: cover;
|
| 46700 |
}
|
| 46701 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-avatar.avatar-circle img {
|
|
|
|
|
|
|
| 46702 |
border-radius: 50%;
|
| 46703 |
}
|
| 46704 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-meta {
|
| 46705 |
+
float: left;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46706 |
}
|
| 46707 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-meta .eael-twitter-feed-item-icon {
|
| 46708 |
+
color: #1da1f2;
|
| 46709 |
+
margin-right: 5px;
|
| 46710 |
}
|
| 46711 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-meta .eael-twitter-feed-item-author {
|
| 46712 |
color: #444;
|
| 46713 |
line-height: 1.5em;
|
| 46714 |
+
font-weight: 700;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46715 |
}
|
| 46716 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-header .eael-twitter-feed-item-date {
|
| 46717 |
+
float: right;
|
| 46718 |
+
margin-right: 10px;
|
| 46719 |
+
font-size: 90%;
|
| 46720 |
+
color: #999999;
|
|
|
|
|
|
|
|
|
|
| 46721 |
}
|
| 46722 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-content {
|
| 46723 |
+
padding: 0 15px 15px;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46724 |
}
|
| 46725 |
+
.eael-twitter-feed-item .eael-twitter-feed-item-content p {
|
| 46726 |
+
color: #666666;
|
| 46727 |
+
margin: 0 0 5px;
|
| 46728 |
+
min-height: 20px;
|
| 46729 |
+
-o-text-overflow: ellipsis;
|
| 46730 |
+
text-overflow: ellipsis;
|
| 46731 |
+
-webkit-line-clamp: 5;
|
| 46732 |
+
-webkit-box-orient: vertical;
|
| 46733 |
}
|
| 46734 |
|
| 46735 |
/*----------------------*/
|
| 46988 |
-ms-flex-align: center;
|
| 46989 |
align-items: center;
|
| 46990 |
text-align: center;
|
| 46991 |
+
background-color: #f1f1f1;
|
| 46992 |
}
|
| 46993 |
|
| 46994 |
.eael-advance-tabs .eael-tabs-nav > ul li:after {
|
| 47008 |
display: none;
|
| 47009 |
}
|
| 47010 |
|
| 47011 |
+
.eael-advance-tabs .eael-tabs-nav > ul li:hover,
|
| 47012 |
+
.eael-advance-tabs .eael-tabs-nav > ul li.active,
|
| 47013 |
+
.eael-advance-tabs .eael-tabs-nav > ul li.active-default {
|
| 47014 |
+
background-color: #444;
|
| 47015 |
+
}
|
| 47016 |
+
|
| 47017 |
.eael-advance-tabs.active-caret-on .eael-tabs-nav > ul li.active:after,
|
| 47018 |
.eael-advance-tabs.active-caret-on .eael-tabs-nav > ul li.active-default:after {
|
| 47019 |
display: none;
|
| 47715 |
margin: 0 auto;
|
| 47716 |
}
|
| 47717 |
|
|
|
|
|
|
|
|
|
|
| 47718 |
.eael-ticker-wrap {
|
| 47719 |
overflow: hidden;
|
| 47720 |
display: -webkit-box;
|
| 48575 |
color: #f54;
|
| 48576 |
}
|
| 48577 |
|
|
|
|
|
|
|
|
|
|
| 48578 |
.eael-fancy-text-container p {
|
| 48579 |
margin: 0;
|
| 48580 |
}
|
| 48581 |
|
| 48582 |
+
.eael-fancy-text-strings {
|
| 48583 |
+
display: none;
|
| 48584 |
+
}
|
| 48585 |
+
|
| 48586 |
.eael-fancy-text-prefix,
|
| 48587 |
.eael-fancy-text-suffix {
|
| 48588 |
display: inline-block;
|
| 48620 |
opacity: 1;
|
| 48621 |
}
|
| 48622 |
}
|
|
|
|
| 48623 |
.eael-fancy-text-container.style-2 {
|
| 48624 |
font-size: 24px;
|
| 48625 |
}
|
| 53812 |
margin: 0 0 0 auto;
|
| 53813 |
}
|
| 53814 |
|
| 53815 |
+
.eael-scroll-progress {
|
| 53816 |
+
width: 100%;
|
| 53817 |
+
position: fixed;
|
| 53818 |
+
top: 0;
|
| 53819 |
+
left: 0;
|
| 53820 |
+
height: 5px;
|
| 53821 |
+
z-index: 999;
|
| 53822 |
+
}
|
| 53823 |
+
.eael-scroll-progress.eael-scroll-progress-bottom {
|
| 53824 |
+
top: unset;
|
| 53825 |
+
bottom: 0;
|
| 53826 |
+
}
|
| 53827 |
+
.eael-scroll-progress .eael-scroll-progress-fill {
|
| 53828 |
+
height: 5px;
|
| 53829 |
+
background-color: #cfdd10;
|
| 53830 |
+
width: 0%;
|
| 53831 |
+
-webkit-transition: width 50ms ease;
|
| 53832 |
+
-o-transition: width 50ms ease;
|
| 53833 |
+
transition: width 50ms ease;
|
| 53834 |
+
}
|
| 53835 |
+
|
| 53836 |
/*----------------------------*/
|
| 53837 |
/* 07. Team Members Styles
|
| 53838 |
/*----------------------------*/
|
assets/front-end/css/eael.min.css
CHANGED
|
@@ -1,35 +1,36 @@
|
|
| 1 |
-
.eael-adv-accordion{width:auto;height:auto;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.eael-adv-accordion .eael-accordion-list .eael-accordion-header{padding:15px;border:1px solid rgba(0,0,0,.02);font-size:1rem;font-weight:600;line-height:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;cursor:pointer}.eael-adv-accordion .eael-accordion-list .eael-accordion-header .fa-toggle{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);z-index:10;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.eael-adv-accordion .eael-accordion-list .eael-accordion-header.active .fa-toggle{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);z-index:10;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.fa-accordion-icon{display:inline-block;margin-right:10px}.eael-adv-accordion .eael-accordion-list .eael-accordion-content{display:none;border:1px solid #eee;padding:15px;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:1rem;line-height:1.7}.eael-adv-accordion .eael-accordion-list .eael-accordion-content p{margin:0}.eael-adv-accordion .eael-accordion-list .eael-accordion-content.active{display:block}@-webkit-keyframes rotate-90{0%{-webkit-transform:rotateY(0);transform:rotateY(0)}100%{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}}@keyframes rotate-90{0%{-webkit-transform:rotateY(0);transform:rotateY(0)}100%{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}}@-webkit-keyframes fadeIn{0%{opacity:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}100%{opacity:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}}@keyframes fadeIn{0%{opacity:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}100%{opacity:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}}.eael-advance-tabs{display:block}.eael-advance-tabs .eael-tabs-nav>ul{position:relative;padding:0;margin:0;list-style-type:none;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;z-index:1}.eael-advance-tabs .eael-tabs-nav>ul li{position:relative;padding:1em 1.5em;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;text-align:center}.eael-advance-tabs .eael-tabs-nav>ul li:after{content:"";position:absolute;bottom:-10px;left:0;right:0;margin:0 auto;z-index:1;width:0;height:0;border-left:10px solid transparent;border-right:10px solid transparent;border-top:10px solid #444;border-bottom:0;display:none}.eael-advance-tabs.active-caret-on .eael-tabs-nav>ul li.active-default:after,.eael-advance-tabs.active-caret-on .eael-tabs-nav>ul li.active:after{display:none}.eael-advance-tabs .eael-tabs-nav>ul li.active-default:after,.eael-advance-tabs .eael-tabs-nav>ul li.active:after{display:block}.eael-tabs-content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}.eael-advance-tabs .eael-tabs-content>div{display:none;opacity:0}.eael-advance-tabs .eael-tabs-content>div.active,.eael-advance-tabs .eael-tabs-content>div.active-default{display:block;width:100%;padding:1em;opacity:1;-webkit-animation:fadeIn linear .3s;animation:fadeIn linear .3s}.eael-tab-inline-icon li a .fa{margin-right:10px;line-height:1}.eael-tab-top-icon li{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;text-align:center}.eael-tab-top-icon li a{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;text-align:center}.eael-tab-top-icon li .eael-tab-title,.eael-tab-top-icon li .fa{-webkit-box-flex:1;-webkit-flex:1 1 100%;-ms-flex:1 1 100%;flex:1 1 100%;line-height:1}.eael-tab-top-icon li a .eael-tab-title{margin-top:10px}.eael-advance-tabs.eael-tabs-vertical{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto}.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav>ul{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-flow:column wrap;-ms-flex-flow:column wrap;flex-flow:column wrap}.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav>ul>li{width:100%;-webkit-box-pack:start;-webkit-justify-content:start;-ms-flex-pack:start;justify-content:start}.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav>ul li::after{bottom:auto!important;right:-10px;top:calc(50% - 10px);left:auto!important;border-left:10px solid #444;border-right:0;border-top:10px solid transparent;border-bottom:10px solid transparent}@media only screen and (max-width:767px){.eael-advance-tabs .eael-tabs-nav>ul{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.eael-advance-tabs .eael-tabs-nav>ul li{-webkit-box-flex:1;-webkit-flex:1 100%;-ms-flex:1 100%;flex:1 100%}.eael-advance-tabs.eael-tabs-vertical{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.eael-advance-tabs.eael-tabs-vertical div.eael-tabs-nav{-webkit-box-flex:1;-webkit-flex:1 100%;-ms-flex:1 100%;flex:1 100%}.eael-advance-tabs.eael-tabs-vertical ul{-webkit-box-flex:1;-webkit-flex:1 100%;-ms-flex:1 100%;flex:1 100%}.eael-advance-tabs.eael-tabs-vertical ul li{-webkit-box-flex:1;-webkit-flex:1 100%;-ms-flex:1 100%;flex:1 100%}div.eael-advance-tabs.eael-tabs-vertical div.eael-tabs-nav>ul li::after{border-left-color:transparent!important;bottom:-20px!important;left:0!important;right:0!important;top:auto!important;border-left:10px solid transparent;border-right:10px solid transparent;border-top-color:#444!important}}.eael-caldera-form-align-left,.eael-caldera-form-btn-align-left{text-align:left}.eael-caldera-form-align-right,.eael-caldera-form-btn-align-right{text-align:right}.eael-caldera-form-align-center,.eael-caldera-form-btn-align-center{text-align:center}.eael-caldera-form .control-label{display:none}.eael-caldera-form-labels-yes .control-label{display:block}.eael-caldera-form-button-center .form-group input[type=button],.eael-caldera-form-button-center .form-group input[type=submit]{display:block;margin:0 auto}.eael-caldera-form-button-right .form-group input[type=button],.eael-caldera-form-button-right .form-group input[type=submit]{float:right}.eael-caldera-form .intl-tel-input{display:inherit}.eael-custom-radio-checkbox .caldera-grid input[type=checkbox],.eael-custom-radio-checkbox .caldera-grid input[type=radio]{border-style:solid;border-width:0;padding:3px;-webkit-appearance:none}.eael-caldera-form-button-full-width .form-group input[type=button],.eael-caldera-form-button-full-width .form-group input[type=submit]{width:100%}.eael-call-to-action{width:100%;height:auto;display:block;padding:30px;font-size:16px;color:#4d4d4d;font-weight:400;line-height:27px;margin:0 auto}.eael-call-to-action p{margin-bottom:10px}.eael-call-to-action .title{font-size:36px;font-weight:600;line-height:36px;margin-bottom:10px;text-transform:capitalize;font-style:normal}.eael-call-to-action.cta-center{text-align:center}.eael-call-to-action.cta-right{text-align:right}.eael-call-to-action.cta-left{text-align:left}.eael-call-to-action.bg-lite{background:#f4f4f4}.eael-call-to-action.bg-img{background-image:url(../img/bg.jpg);background-repeat:no-repeat;background-position:center;-webkit-background-size:cover;background-size:cover;position:relative;z-index:0;color:rgba(255,255,255,.7)}.eael-call-to-action.bg-img .icon{color:#fff}.eael-call-to-action.bg-img:after{content:"";position:absolute;width:100%;height:100%;top:0;left:0;z-index:-1;background:rgba(0,0,0,.8)}.eael-call-to-action.bg-img.bg-fixed{background-attachment:fixed;background-position:center center}.eael-call-to-action.bg-img .title{color:rgba(255,255,255,.9)}.eael-call-to-action.cta-flex,.eael-call-to-action.cta-icon-flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}.eael-call-to-action.cta-icon-flex .icon{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;font-size:80px;text-align:left;line-height:130px}.eael-call-to-action.cta-icon-flex .action{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;text-align:right;padding-top:22px;-webkit-flex-basis:22%;-ms-flex-preferred-size:22%;flex-basis:22%}.eael-call-to-action.cta-icon-flex .content{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;padding:0 30px}.eael-call-to-action.cta-flex .content{padding:0 15px;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.eael-call-to-action.cta-flex .action{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;text-align:right;padding-top:25px;-webkit-flex-basis:23%;-ms-flex-preferred-size:23%;flex-basis:23%}.eael-call-to-action .cta-button{position:relative;display:inline-block;padding:12px 30px;background:#f9f9f9;font-size:16px;text-decoration:none;color:#4d4d4d;-webkit-transition:.5s;-o-transition:.5s;transition:.5s;-webkit-box-shadow:0 0 3px -1px rgba(0,0,0,.2);-ms-box-shadow:0 0 3px -1px rgba(0,0,0,.2);box-shadow:0 0 3px -1px rgba(0,0,0,.2);margin-right:10px;margin-top:10px;z-index:0;overflow:hidden}.eael-call-to-action .cta-button:last-child{margin-right:0}.eael-call-to-action .cta-button:focus{outline:0}.eael-call-to-action .cta-button:hover{color:#fff;background:#3f51b5;-webkit-box-shadow:0 1px 12px 1px rgba(0,0,0,.1);-ms-box-shadow:0 1px 12px 1px rgba(0,0,0,.1);box-shadow:0 1px 12px 1px rgba(0,0,0,.1)}.eael-call-to-action .cta-button.effect-1:after{content:"";position:absolute;width:100%;height:100%;background:#3f51b5;top:0;left:0;transform:translateY(-100%);-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);z-index:-1;-webkit-transition:.5s;-o-transition:.5s;transition:.5s;color:#fff}.eael-call-to-action .cta-button.effect-1:hover::after{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-call-to-action .cta-button.effect-2:after{content:"";position:absolute;width:100%;height:100%;background:#3f51b5;top:0;left:0;z-index:-1;-webkit-transition:.5s;-o-transition:.5s;transition:.5s;color:#fff;-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%)}.eael-call-to-action .cta-button.effect-2:hover::after{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}@media only screen and (max-width:768px){.eael-call-to-action.cta-flex,.eael-call-to-action.cta-icon-flex{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.eael-call-to-action .title{font-size:28px;line-height:36px;margin-top:0}.eael-call-to-action.cta-icon-flex .icon{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;font-size:48px;line-height:90px;text-align:center}.eael-call-to-action.cta-flex .content,.eael-call-to-action.cta-icon-flex .content{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;text-align:center;padding:0}.eael-call-to-action.cta-flex .action,.eael-call-to-action.cta-icon-flex .action{text-align:center;padding-top:0}.eael-call-to-action .cta-button{padding:12px 25px}}@media only screen and (max-width:360px){.eael-call-to-action{font-size:14px;line-height:26px}.eael-call-to-action .cta-button{padding:4px 20px;font-size:12px}.eael-call-to-action .title{font-size:20px;line-height:30px}}@-webkit-keyframes loaderSpin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes loaderSpin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.eael-load-more-button-wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.eael-load-more-button{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding:1em 2em;border:0 solid;font-size:16px;overflow:hidden}.eael-load-more-button .button__loader{left:-100%;top:auto;margin-right:5px;-webkit-transition:all .2s;-o-transition:all .2s;transition:all .2s}.eael-load-more-button>span{margin-left:-20px}.eael-load-more-button.button--loading>span{margin-left:0}.eael-load-more-button.button--loading .button__loader{left:0}.eael-btn-loader{-webkit-border-radius:50%;border-radius:50%;width:20px;height:20px;font-size:10px;position:relative;text-indent:-9999em;border-top:4px solid rgba(255,255,255,.2);border-right:4px solid rgba(255,255,255,.2);border-bottom:4px solid rgba(255,255,255,.2);border-left:4px solid #fff;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-animation:loaderSpin 1.1s infinite linear;animation:loaderSpin 1.1s infinite linear}.eael-btn-loader:after{-webkit-border-radius:50%;border-radius:50%;width:20px;height:20px}.eael-contact-form-7.eael-contact-form-btn-align-center input.wpcf7-submit,.eael-contact-form.eael-contact-form-align-center{margin-left:auto!important;margin-right:auto!important;display:block;float:none}.eael-contact-form-7.eael-contact-form-btn-align-left input.wpcf7-submit,.eael-contact-form.eael-contact-form-align-left{float:left;width:auto}.eael-contact-form-7.eael-contact-form-btn-align-right input.wpcf7-submit,.eael-contact-form.eael-contact-form-align-right{float:right;width:auto}.eael-contact-form-7 .uneditable-input,.eael-contact-form-7 input[type=color],.eael-contact-form-7 input[type=date],.eael-contact-form-7 input[type=datetime-local],.eael-contact-form-7 input[type=datetime],.eael-contact-form-7 input[type=email],.eael-contact-form-7 input[type=month],.eael-contact-form-7 input[type=number],.eael-contact-form-7 input[type=password],.eael-contact-form-7 input[type=search],.eael-contact-form-7 input[type=tel],.eael-contact-form-7 input[type=text],.eael-contact-form-7 input[type=time],.eael-contact-form-7 input[type=url],.eael-contact-form-7 input[type=week],.eael-contact-form-7 textarea{-webkit-transition:border linear .2s,box-shadow linear .2s;-webkit-transition:border linear .2s,-webkit-box-shadow linear .2s;transition:border linear .2s,-webkit-box-shadow linear .2s;-o-transition:border linear .2s,box-shadow linear .2s;transition:border linear .2s,box-shadow linear .2s;transition:border linear .2s,box-shadow linear .2s,-webkit-box-shadow linear .2s}.eael-contact-form-7 .wpcf7-form::after,.eael-contact-form-7 .wpcf7-form::before{content:" ";clear:both;display:table}.eael-contact-form-7 .wpcf7-form:after{clear:both;content:"";font-size:0;height:0;display:block;visibility:hidden}.eael-contact-form-7 .wpcf7-form .wpcf7-form-control-wrap,.eael-contact-form-7 .wpcf7-form label{display:block}.eael-contact-form-7 .wpcf7-form p{margin-bottom:0}.eael-contact-form-7.labels-hide .wpcf7-form label{display:none}.eael-contact-form-7-title{margin-bottom:10px}.eael-contact-form-7-description{margin-bottom:20px}.eael-contact-form-7-button-full-width .wpcf7-form-control.wpcf7-submit{width:100%}.eael-contact-form-7-wrapper .eael-contact-form-align-center form{margin:0 auto}.eael-ticker-wrap{overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row nowrap;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;width:100%}.eael-ticker-wrap .ticker-badge{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;padding:8px 12px}.eael-ticker-wrap .eael-ticker{overflow:hidden;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}.eael-ticker-wrap .eael-ticker .ticker-content{padding:8px 12px;line-height:1.8}.eael-ticker-wrap .eael-ticker .ticker-content p{margin:0}.eael-ticker-wrap .swiper-button-prev{left:auto!important;right:25px}.eael-ticker-wrap div.swiper-slide,.eael-ticker-wrap div.swiper-slide.swiper-slide-next,.eael-ticker-wrap div.swiper-slide.swiper-slide-prev{opacity:0!important}.eael-ticker-wrap div.swiper-slide.swiper-slide-active{opacity:1!important}.eael-ticker-wrap .eael-content-ticker.swiper-container .swiper-slide{text-align:left}@media only screen and (max-width:767px){.eael-ticker-wrap{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap}.content-ticker-pagination{display:none}}.eael-countdown-items{list-style:none;margin:0;padding:0;display:table;table-layout:fixed;width:100%}.eael-countdown-items>li{list-style:none;margin:0;padding:0;display:table-cell;position:relative}.eael-countdown-item>div{text-align:center;padding:20px}.eael-countdown-label-block .eael-countdown-digits,.eael-countdown-label-block .eael-countdown-label{display:block;text-align:center}.eael-countdown-digits{font-size:54px;line-height:1}.eael-countdown-label{font-size:18px;line-height:1;color:#fff}.eael-countdown-show-separator .eael-countdown-digits::after{content:":";position:absolute;left:98%;z-index:9999}.eael-countdown-item:last-child .eael-countdown-digits::after{display:none}.eael-countdown-items.style-1 .eael-countdown-item>div{background:#262625}.eael-creative-button-align-center{text-align:center}.eael-creative-button-wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.eael-creative-button{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;min-width:150px;text-align:center;vertical-align:middle;position:relative;z-index:1;-webkit-border-radius:2px;border-radius:2px;padding:20px 30px;font-size:16px;line-height:1;-webkit-backface-visibility:hidden;backface-visibility:hidden;-moz-osx-font-smoothing:grayscale}.eael-creative-button-align-center .eael-creative-button{float:none;display:inline-block}.eael-creative-button:focus{outline:0}.eael-creative-button>span{vertical-align:middle}.eael-creative-button--winona{overflow:hidden;padding:0!important;-webkit-transition:border-color .3s,background-color .3s;-o-transition:border-color .3s,background-color .3s;transition:border-color .3s,background-color .3s;-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--winona::after{content:attr(data-text);position:absolute;width:100%;height:100%;top:0;left:0;opacity:0;-webkit-transform:translate3d(0,25%,0);transform:translate3d(0,25%,0)}.eael-creative-button--winona>span{display:block}.eael-creative-button--winona::after,.eael-creative-button--winona>span{padding:1em 2em;-webkit-transition:-webkit-transform .3s,opacity .3s;-webkit-transition:opacity .3s,-webkit-transform .3s;transition:opacity .3s,-webkit-transform .3s;-o-transition:transform .3s,opacity .3s;transition:transform .3s,opacity .3s;transition:transform .3s,opacity .3s,-webkit-transform .3s;-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--winona:hover::after{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.eael-creative-button--winona:hover>span{opacity:0;-webkit-transform:translate3d(0,-25%,0);transform:translate3d(0,-25%,0)}.eael-creative-button--ujarak{-webkit-transition:border-color .4s,color .4s;-o-transition:border-color .4s,color .4s;transition:border-color .4s,color .4s}.eael-creative-button--ujarak::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1;opacity:0;-webkit-transform:scale3d(.7,1,1);transform:scale3d(.7,1,1);-webkit-transition:-webkit-transform .4s,opacity .4s;-webkit-transition:opacity .4s,-webkit-transform .4s;transition:opacity .4s,-webkit-transform .4s;-o-transition:transform .4s,opacity .4s;transition:transform .4s,opacity .4s;transition:transform .4s,opacity .4s,-webkit-transform .4s;-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--ujarak,.eael-creative-button--ujarak::before{-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--ujarak:hover::before{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.eael-creative-button--wayra{overflow:hidden;-webkit-transition:border-color .3s,color .3s;-o-transition:border-color .3s,color .3s;transition:border-color .3s,color .3s;-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--wayra::before{content:'';position:absolute;top:0;left:0;width:150%;height:100%;z-index:-1;-webkit-transform:rotate3d(0,0,1,-45deg) translate3d(0,-3em,0);transform:rotate3d(0,0,1,-45deg) translate3d(0,-3em,0);-webkit-transform-origin:0 100%;-ms-transform-origin:0 100%;transform-origin:0 100%;-webkit-transition:-webkit-transform .3s,opacity .3s,background-color .3s;-webkit-transition:opacity .3s,background-color .3s,-webkit-transform .3s;transition:opacity .3s,background-color .3s,-webkit-transform .3s;-o-transition:transform .3s,opacity .3s,background-color .3s;transition:transform .3s,opacity .3s,background-color .3s;transition:transform .3s,opacity .3s,background-color .3s,-webkit-transform .3s}.eael-creative-button--wayra:hover::before{opacity:1;-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg);-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--tamaya{overflow:hidden}.eael-creative-button--tamaya::after,.eael-creative-button--tamaya::before{content:attr(data-text);position:absolute;width:100%;height:50%;left:0;overflow:hidden;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;-o-transition:transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--tamaya::before{top:0;padding:20px 30px}.eael-creative-button--tamaya::after{bottom:0;line-height:0}.eael-creative-button--tamaya:hover::after{bottom:-1px}.eael-creative-button--tamaya>span{display:block;-webkit-transform:scale3d(.2,.2,1);transform:scale3d(.2,.2,1);opacity:0;-webkit-transition:-webkit-transform .3s,opacity .3s;-webkit-transition:opacity .3s,-webkit-transform .3s;transition:opacity .3s,-webkit-transform .3s;-o-transition:transform .3s,opacity .3s;transition:transform .3s,opacity .3s;transition:transform .3s,opacity .3s,-webkit-transform .3s;-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--tamaya:hover::before{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.eael-creative-button--tamaya:hover::after{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.eael-creative-button--tamaya:hover>span{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}.eael-creative-button--rayen{overflow:hidden;padding:0!important}.eael-creative-button--rayen::before{content:attr(data-text);position:absolute;top:0;left:0;width:100%;height:100%;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.eael-creative-button--rayen>span{display:block}.eael-creative-button--rayen::before,.eael-creative-button--rayen>span{padding:1em 2em;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;-o-transition:transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;-webkit-transition-timing-function:cubic-bezier(.75,0,.125,1);-o-transition-timing-function:cubic-bezier(.75,0,.125,1);transition-timing-function:cubic-bezier(.75,0,.125,1)}.eael-creative-button--rayen:hover::before{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.eael-creative-button--rayen:hover>span{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}table.eael-data-table thead .sorting,table.eael-data-table thead .sorting_asc,table.eael-data-table thead .sorting_desc{position:relative;z-index:0;outline:0;cursor:pointer}table.eael-data-table thead .sorting:after,table.eael-data-table thead .sorting_asc:after,table.eael-data-table thead .sorting_desc:after{position:absolute;top:50%;right:10px;font-family:FontAwesome;color:#fff;z-index:1;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.eael-data-table-wrap .eael-data-tables_wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;width:100%}.eael-data-table-wrap .eael-data-tables_filter{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;text-align:right}.eael-data-table-wrap .eael-data-tables_filter label{font-weight:700}.eael-data-table-wrap .eael-data-tables_filter label input[type=search]{height:40px;border:1px solid rgba(0,0,0,.09);outline:0;padding:10px;margin-left:10px}.eael-data-table-wrap .eael-data-tables_length{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%}.eael-data-table-wrap .eael-data-tables_length select{width:auto;max-width:120px;height:40px;border:1px solid rgba(0,0,0,.09);outline:0;margin-left:10px;margin-right:10px}.eael-data-table-wrap .eael-data-tables_length label{font-weight:700}.eael-data-table-wrap .eael-data-tables_info{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;font-weight:700}.eael-data-table-wrap .eael-data-tables_paginate{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;text-align:right}.eael-data-table-wrap .eael-data-tables_paginate .paginate_button{padding:10px 15px;background:#f2f2f2;margin-right:2px;cursor:pointer;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.eael-data-table-wrap .eael-data-tables_paginate .paginate_button:hover{color:#fff;background:#4a4893}.eael-data-table-wrap .eael-data-tables_paginate .paginate_button.current{color:#fff;background:#4a4893}.eael-data-table-wrap .eael-data-tables_paginate .paginate_button.disabled{cursor:no-drop;background:#f2f2f2;opacity:.5;color:#888}.data-header-icon{margin-right:10px}.eael-data-table{width:100%;height:auto;margin:0;border-collapse:collapse;border:none}.eael-data-table tr{border-style:none}.eael-data-table thead tr{text-align:left}.eael-data-table thead tr th{padding:20px 15px;background:#4a4893;font-size:16px;font-weight:600;font-family:Montserrat,sans-serif;line-height:1;color:#fff;border-color:#000;border-width:2px;border-style:none;background-clip:padding-box}.eael-data-table thead tr th:hover{border-color:#000}.eael-data-table tbody tr.even{-webkit-transition:background .4s ease-in-out;-o-transition:background .4s ease-in-out;transition:background .4s ease-in-out}.eael-data-table tbody tr.even:hover{background:rgba(242,242,242,.7)}.eael-data-table tbody tr.even:last-child{border-bottom:1px solid rgba(0,0,0,.09)}.eael-data-table tbody tr.odd{background:rgba(242,242,242,.5);-webkit-transition:background .2s ease-in-out;-o-transition:background .2s ease-in-out;transition:background .2s ease-in-out}.eael-data-table tbody tr.odd:hover{background:rgba(242,242,242,.7)}.eael-data-table tbody tr.odd:last-child{border-bottom:1px solid rgba(0,0,0,.09)}.eael-data-table tbody tr td{padding:20px 15px;font-size:14px;font-family:Montserrat,sans-serif;line-height:1;border-width:2px;border-style:none;background-clip:padding-box}.eael-data-table-th-img{display:inline-block;margin:0 15px 0 0;line-height:1}.th-mobile-screen{display:none}@media (max-width:39.9375em){.eael-data-table-wrap{overflow-x:scroll!important;padding-bottom:5px}.th-mobile-screen{display:inline-block;padding:0 .6em;margin-right:10px;text-align:center;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-flex-basis:100px;-ms-flex-preferred-size:100px;flex-basis:100px}.th-mobile-screen .eael-data-table-th-img{margin:0 auto 15px auto;display:block}.th-mobile-screen .data-header-icon{margin:0 auto 15px auto;display:block}.td-content-wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%}.td-content{width:100%;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.td-content>p{width:100%;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.custom-responsive-option-enable .eael-data-table thead{display:none}.custom-responsive-option-enable .eael-data-table tbody tr td{float:none;clear:left;width:100%;text-align:left;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.eael-data-table .td-content{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}}table.eael-data-table thead .sorting:after{content:"\f0dc"}table.eael-data-table thead .headerSortDown:after{content:"\f0dd"}table.eael-data-table thead .headerSortUp:after{content:"\f0de"}table.eael-data-table thead .sorting_disabled.sorting:after{display:none}table.eael-data-table .sorting.sorting-none:after{display:none}table.eael-data-table .sorting_desc.sorting-none:after{display:none}table.eael-data-table .sorting_asc.sorting-none:after{display:none}.eael-table-align-left table.eael-data-table{float:left}.eael-table-align-center table.eael-data-table{margin:0 auto}.eael-table-align-right table.eael-data-table{float:right}.eael-hide-elements .eael-data-tables_info{display:none}.eael-dt-th-align-left .eael-data-table thead tr th{text-align:left}.eael-dt-td-align-left .eael-data-table tbody tr td{text-align:left}.eael-dt-th-align-right .eael-data-table thead tr th{text-align:right;padding-right:30px}.eael-dt-td-align-right .eael-data-table tbody tr td{text-align:right;padding-right:30px}.eael-dt-th-align-center .eael-data-table thead tr th{text-align:center}.eael-dt-td-align-center .eael-data-table tbody tr td{text-align:center}.eael-dual-header{display:block;margin-bottom:50px}.eael-dual-header .title,.eael-dual-header .title span{font-size:36px;font-weight:700;text-transform:uppercase;line-height:48px;margin:10px 0}.eael-dual-header .subtext{font-size:16px;display:block}.eael-dual-header i{display:block;padding:0;margin:20px 0 10px 0;font-size:36px}.eael-dual-header .title span.lead{color:#1abc9c}.eael-dual-header-content-align-center{text-align:center}.eael-dual-header-content-align-left{text-align:left}.eael-dual-header-content-align-right{text-align:right}.elementor-panel .pro-feature,.elementor-panel .pro-feature a{color:#a4afb7;text-transform:uppercase;letter-spacing:1px;line-height:1.8;font-style:normal}.elementor-panel .pro-feature a{text-decoration:underline;color:#f54!important}.elementor-control-data_table_content_colspan_pro_alert .elementor-control-title,.elementor-control-data_table_content_rowspan_pro_alert .elementor-control-title,.elementor-control-data_table_content_template_pro_alert .elementor-control-title,.elementor-control-data_table_header_colspan_pro_alert .elementor-control-title,.elementor-control-data_table_header_img_pro_alert .elementor-control-title,.elementor-panel .elementor-control-eael_section_pro .elementor-panel-heading-title.elementor-panel-heading-title,.elementor-panel .elementor-control-eael_section_pro .elementor-panel-heading-toggle{color:#f54}.elementor-panel .elementor-control-eael_control_get_pro .elementor-control-field{display:none!important}.elementor-control-eael_fancy_text_style_pro_alert .elementor-control-title,.elementor-control-eael_img_accordion_type_pro_alert .elementor-control-title,.elementor-control-eael_pricing_table_style_pro_alert .elementor-control-title,.elementor-control-eael_section_countdown_style_pro_alert .elementor-control-title,.elementor-control-eael_section_data_table_enabled_pro_alert .elementor-control-title,.elementor-control-eael_team_members_preset_pro_alert .elementor-control-title,.elementor-control-eael_ticker_type_pro_alert .elementor-control-title{color:#f54}.eael-fancy-text-container p{margin:0}.eael-fancy-text-prefix,.eael-fancy-text-strings,.eael-fancy-text-suffix{display:inline-block}.morphext>.animated{display:inline-block}.typed-cursor{opacity:1;-webkit-animation:blink_cursor .7s infinite;animation:blink_cursor .7s infinite}@keyframes blink_cursor{0%{opacity:1}50%{opacity:0}100%{opacity:1}}@-webkit-keyframes blink_cursor{0%{opacity:1}50%{opacity:0}100%{opacity:1}}.eael-fancy-text-container.style-2{font-size:24px}.eael-fancy-text-container.style-2 .eael-fancy-text-strings{background:#f54;color:#fff;padding:10px 25px}.elementor-widget-eael-feature-list.-icon-position-left .connector-type-modern.rhombus .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right .connector-type-modern.rhombus .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top .connector-type-modern.rhombus .eael-feature-list-item:before{top:3px!important}.elementor-widget-eael-feature-list.-icon-position-left .connector-type-modern.rhombus .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right .connector-type-modern.rhombus .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top .connector-type-modern.rhombus .eael-feature-list-item:after{top:45px!important}.elementor-widget-eael-feature-list.-icon-position-right .connector,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .connector{right:0;left:calc(100% - 60px)}.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 50px 0 0}@media (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 30px 0 0}}.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{left:auto;right:0}.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:auto;right:5px;top:30px}.elementor-widget-eael-feature-list .eael-feature-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item{position:relative}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .connector{display:block;position:absolute;width:0;margin:0 auto;z-index:1;height:100%;top:.5em;font-size:60px;left:0;right:calc(100% - 60px);border-left:2px solid #2ecc71;border-right:none!important}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item:last-child .connector{display:none}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box{z-index:2;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}@media (prefers-reduced-motion:reduce){.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box{-webkit-transition:none;-o-transition:none;transition:none}}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon-inner{background-color:#37368e;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex}@media (prefers-reduced-motion:reduce){.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon-inner{-webkit-transition:none;-o-transition:none;transition:none}}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon{padding:.5em;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s;font-size:30px;line-height:1;color:#37368e;text-align:center;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex}@media (prefers-reduced-motion:reduce){.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon{-webkit-transition:none;-o-transition:none;transition:none}}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon i{width:1em;height:1em;position:relative;display:block}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon i:before{position:absolute;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-img{font-size:8px;line-height:1;max-width:inherit}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-content-box{margin:0 0 0 20px}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-content-box .eael-feature-list-title{margin-top:-2px;line-height:1.5em}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-content-box .eael-feature-list-content{padding:0;margin:0;font-size:14px;line-height:1.5em}.elementor-widget-eael-feature-list .eael-feature-list-items.stacked .eael-feature-list-icon-box .eael-feature-list-icon{color:#fff}.elementor-widget-eael-feature-list .eael-feature-list-items.framed .eael-feature-list-icon-box .eael-feature-list-icon{background-color:#fff}.elementor-widget-eael-feature-list .eael-feature-list-items.circle .eael-feature-list-icon-box .eael-feature-list-icon-inner{-webkit-border-radius:50%;border-radius:50%}.elementor-widget-eael-feature-list .eael-feature-list-items.circle .eael-feature-list-icon-box .eael-feature-list-icon-inner .eael-feature-list-icon{-webkit-border-radius:50%;border-radius:50%}.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-icon-box .eael-feature-list-icon-inner{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);margin:15px}.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-icon-box .eael-feature-list-icon i{-ms-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-icon-box .eael-feature-list-icon img{-ms-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-content-box .eael-feature-list-title{margin-top:15px}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 50px;position:relative}@media (max-width:767px){.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 30px;display:block}}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{content:"";position:absolute;display:block}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{left:0;top:0;z-index:1;border-left:1px solid #000;border-right:none!important;height:100%}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:5px;top:30px;width:23px;display:block;z-index:2;border-bottom:1px dashed #000;border-top:none!important}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item .connector{display:none}@media (min-width:768px){.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern.-icon-position-right .eael-feature-list-item{padding:0 50px 0 0}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern.-icon-position-right .eael-feature-list-item:before{left:auto;right:0}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern.-icon-position-right .eael-feature-list-item:after{left:auto;right:5px;top:30px}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern.-icon-position-right .eael-feature-list-item .connector{display:none}}@media (min-width:1025px){.elementor-widget-eael-feature-list.-icon-position-left .eael-feature-list-content-box{margin-right:0!important;margin-top:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-content-box{margin-left:0!important;margin-top:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-top .eael-feature-list-content-box{margin-left:0!important;margin-right:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-left .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.elementor-widget-eael-feature-list.-icon-position-left .eael-feature-list-item{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-item{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media (max-width:1024px){.elementor-widget-eael-feature-list.-tablet-icon-position-left .eael-feature-list-item,.elementor-widget-eael-feature-list.-tablet-icon-position-right .eael-feature-list-item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.elementor-widget-eael-feature-list.-tablet-icon-position-left .eael-feature-list-item{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.elementor-widget-eael-feature-list.-tablet-icon-position-right .eael-feature-list-item{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media (min-width:768px) and (max-width:1024px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left .eael-feature-list-content-box{margin-right:0!important;margin-top:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 50px}}@media (min-width:768px) and (max-width:1024px) and (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 30px}}@media (min-width:768px) and (max-width:1024px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{left:0;right:auto}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:5px;top:30px}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top .eael-feature-list-content-box{margin-left:0!important;margin-right:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 50px}}@media (min-width:768px) and (max-width:1024px) and (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 30px}}@media (min-width:768px) and (max-width:1024px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{left:0;right:auto}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:5px}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right .eael-feature-list-content-box{margin-left:0!important;margin-top:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 50px 0 0}}@media (min-width:768px) and (max-width:1024px) and (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 30px 0 0}}@media (min-width:768px) and (max-width:1024px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{right:0;left:auto}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:auto;right:5px}}@media (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-item,.elementor-widget-eael-feature-list.-tablet-icon-position-left .eael-feature-list-item,.elementor-widget-eael-feature-list.-tablet-icon-position-right .eael-feature-list-item{display:block;text-align:left}.elementor-widget-eael-feature-list.-mobile-icon-position-left .eael-feature-list-item,.elementor-widget-eael-feature-list.-mobile-icon-position-right .eael-feature-list-item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.elementor-widget-eael-feature-list.-mobile-icon-position-left .eael-feature-list-item{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.elementor-widget-eael-feature-list.-mobile-icon-position-right .eael-feature-list-item{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-content-box{margin-right:0!important;margin-top:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 50px}}@media (max-width:767px) and (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 30px}}@media (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{left:0;right:auto}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:5px}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-content-box{margin-left:0!important;margin-right:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 50px}}@media (max-width:767px) and (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 30px}}@media (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{left:0;right:auto}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:5px}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-content-box{margin-left:0!important;margin-top:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 50px 0 0}}@media (max-width:767px) and (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 30px 0 0}}@media (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{right:0;left:auto}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:auto;right:5px}}.eael-filter-gallery-control{width:100%}.eael-filter-gallery-control ul,.eael-filter-gallery-control ul li{text-align:center}.eael-filter-gallery-control ul{margin:0 0 20px 0;padding:0;text-align:center}.eael-filter-gallery-control{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-flow:1 1 auto;-ms-flex-flow:1 1 auto;flex-flow:1 1 auto;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;padding:0;margin:0}.eael-filter-gallery-control ul li{list-style:none;font-size:24px;display:inline-block;text-align:center}.eael-filter-gallery-control ul li a.control{font-family:Montserrat,sans-serif;font-size:16px;font-weight:600;padding:10px 25px;margin:10px 6px}.eael-filter-gallery-container{text-align:justify;font-size:.1px}.eael-filter-gallery-container:after{content:'';display:inline-block;width:100%}.eael-filter-gallery-container:not(.eael-cards) .item:before{content:'';display:inline-block;padding-top:56.25%}.eael-filter-gallery-container .item .caption{position:absolute;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-flow:1 1 100%;-ms-flex-flow:1 1 100%;flex-flow:1 1 100%;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;z-index:1;top:0;left:0;right:0;bottom:0;-webkit-transition:-webkit-transform .4s;transition:-webkit-transform .4s;-o-transition:transform .4s;transition:transform .4s;transition:transform .4s,-webkit-transform .4s}.eael-filter-gallery-container.eael-cards .item .caption{display:none}.eael-filter-gallery-container.eael-cards .item .item-img .caption{position:absolute;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-flow:1 1 100%;-ms-flex-flow:1 1 100%;flex-flow:1 1 100%;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;z-index:10;top:0;left:0;right:0;bottom:0;-webkit-transition:-webkit-transform .4s;transition:-webkit-transform .4s;-o-transition:transform .4s;transition:transform .4s;transition:transform .4s,-webkit-transform .4s}.gallery-item-caption-over{width:100%;height:auto}a.eael-gallery-load-more,a.eael-gallery-load-more:hover{text-decoration:none}.eael-filter-gallery-container .item .caption.eael-zoom-in,.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-zoom-in{-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0)}.eael-filter-gallery-container .item:hover .caption.eael-zoom-in,.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-zoom-in{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.eael-filter-gallery-container .item .caption.eael-slide-left,.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-left{-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%)}.eael-filter-gallery-container .item:hover .caption.eael-slide-left,.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-left{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}.eael-filter-gallery-container .item .caption.eael-slide-right,.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-right{-webkit-transform:translateX(100%);-ms-transform:translateX(100%);transform:translateX(100%)}.eael-filter-gallery-container .item:hover .caption.eael-slide-right,.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-right{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}.eael-filter-gallery-container .item .caption.eael-slide-top,.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-top{-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}.eael-filter-gallery-container .item:hover .caption.eael-slide-top,.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-top{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-filter-gallery-container .item .caption.eael-slide-bottom,.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-bottom{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%)}.eael-filter-gallery-container .item:hover .caption.eael-slide-bottom,.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-bottom{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-filter-gallery-container .item .caption a{display:inline-block;width:50px;height:50px;text-align:center;line-height:50px;-webkit-border-radius:50%;border-radius:50%;margin:0 5px;font-size:20px;cursor:pointer;-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.eael-container .item .caption a:nth-child(2),.eael-filter-gallery-container .item .caption a:nth-child(1){-webkit-transition:.6s;-o-transition:.6s;transition:.6s;opacity:0}.eael-filter-gallery-container .item .caption a:nth-child(1){-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}.eael-filter-gallery-container .item .caption a:nth-child(2){-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%)}.eael-filter-gallery-container .item .caption:hover a:nth-child(1),.eael-filter-gallery-container .item .caption:hover a:nth-child(2){-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:1}.eael-filter-gallery-container .item .caption .eael-popup-link{outline:0}.eael-filter-gallery-container.eael-cards .item:before{padding-top:0}.eael-filter-gallery-container.eael-cards .item-img{position:relative;background-repeat:no-repeat;background-position:center;-webkit-background-size:cover;background-size:cover;height:220px;z-index:0;overflow:hidden}.eael-filter-gallery-container.eael-cards .item-content{padding:15px}.eael-filter-gallery-container.eael-cards .item-content .title,.eael-filter-gallery-container.eael-cards .item-content .title a{font-size:20px;line-height:1;margin-bottom:0;-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.eael-filter-gallery-container.eael-cards .item-content p{font-size:14px;line-height:26px}.eael-fg-card-content-align-center .eael-filterable-gallery-item-wrap .gallery-item-caption-wrap .gallery-item-caption-over{text-align:center}.eael-fg-card-content-align-right .eael-filterable-gallery-item-wrap .gallery-item-caption-wrap .gallery-item-caption-over{text-align:right}.eael-fg-hoverer-content-align-center .eael-filterable-gallery-item-wrap .gallery-item-caption-wrap .gallery-item-caption-over{text-align:center}.eael-fg-hoverer-content-align-right .eael-filterable-gallery-item-wrap .gallery-item-caption-wrap .gallery-item-caption-over{text-align:right}.eael-fg-content-align-left .eael-cards .item .item-content{text-align:left}.eael-fg-content-align-center .eael-cards .item .item-content{text-align:center}.eael-fg-content-align-right .eael-cards .item .item-content{text-align:right}.mfp-wrap~div.dialog-widget{display:none!important}.eael-filterable-gallery-item-wrap{float:left;width:33.33%}.eael-filter-gallery-container.eael-col-1 .eael-filterable-gallery-item-wrap{width:100%}.eael-filter-gallery-control>ul li{font-size:13px;line-height:1.8;text-transform:uppercase;letter-spacing:1px;padding:6px 15px;cursor:pointer;margin:0 5px;font-weight:400}.eael-filter-gallery-container.eael-col-2 .eael-filterable-gallery-item-wrap{width:50%}.eael-filter-gallery-container.eael-col-4 .eael-filterable-gallery-item-wrap{width:25%}.eael-filter-gallery-container.eael-col-5 .eael-filterable-gallery-item-wrap{width:20%}.gallery-grid-item{margin-left:calc(20px/2);margin-right:calc(20px/2);margin-bottom:20px;position:relative;overflow:hidden}.gallery-item-caption-wrap,.media-content-wrap{font-size:14px;text-align:left}.gallery-item-thumbnail-wrap.caption-style-card img{max-height:100%;width:100%}.gallery-item-caption-wrap.caption-style-hoverer{position:absolute;left:0;top:0;height:100%;width:100%;padding:15px;z-index:10}.eael-filterable-gallery-item-wrap .gallery-grid-item .gallery-item-thumbnail-wrap>img{height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.fg-item-content,.fg-item-title{color:#fff;font-family:inherit}.gallery-item-caption-wrap.caption-style-card .fg-item-title{font-size:18px;margin:15px 0 15px;line-height:1}.gallery-item-caption-wrap.caption-style-card{background:#f7f7f7}.gallery-item-caption-wrap.caption-style-card .fg-item-title{margin:10px 0 15px;color:#000}.gallery-item-caption-wrap.caption-style-card .fg-item-content{color:#212529;line-height:1.5;font-weight:400}.gallery-item-buttons>a{display:inline-block;font-size:16px;color:#000;margin-right:15px}.gallery-item-buttons>a:visited{color:#000}.gallery-item-caption-wrap.caption-style-card{padding:10px;-webkit-box-sizing:border-box;box-sizing:border-box;font-family:inherit}.gallery-item-caption-wrap .gallery-item-hoverer-bg{position:absolute;left:0;top:0;height:100%;width:100%;content:'';background:#000;z-index:-1;opacity:.7}.gallery-item-caption-wrap.caption-style-hoverer{visibility:hidden;opacity:0;-webkit-transition:.6s all ease;-o-transition:.6s all ease;transition:.6s all ease;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer{opacity:1;visibility:visible}.gallery-item-caption-wrap.caption-style-hoverer h5{font-size:20px;margin-bottom:5px;line-height:1}.gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up h5{-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px);-webkit-transition:.6s all ease;-o-transition:.6s all ease;transition:.6s all ease}.gallery-item-caption-wrap.caption-style-hoverer p{margin-bottom:5px}.gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up p{-webkit-transform:translateY(40px);-ms-transform:translateY(40px);transform:translateY(40px);-webkit-transition:.6s all ease;-o-transition:.6s all ease;transition:.6s all ease}.gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up .gallery-item-buttons{-webkit-transform:translateY(40px);-ms-transform:translateY(40px);transform:translateY(40px);-webkit-transition:.6s all ease;-o-transition:.6s all ease;transition:.6s all ease}.gallery-item-caption-wrap .gallery-item-buttons>a{padding:5px 15px;display:inline-block;-webkit-border-radius:50%;border-radius:50%;outline:0;text-decoration:none}.gallery-item-caption-wrap.caption-style-hoverer.eael-zoom-in{-webkit-transform:scale(.8);-ms-transform:scale(.8);transform:scale(.8);-webkit-transition:.6s all ease;-o-transition:.6s all ease;transition:.6s all ease}.gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up .gallery-item-buttons,.gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up h5,.gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up p{-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0)}.gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-zoom-in{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);visibility:visible;opacity:1}.gallery-item-caption-wrap.caption-style-hoverer.eael-none{-webkit-transition:none;-o-transition:none;transition:none}.gallery-item-thumbnail-wrap{position:relative}.video-popup,.video-popup-bg{position:absolute;left:0;top:0;height:100%;width:100%}.video-popup>img{width:62px;position:relative;z-index:1;-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.video-popup{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.video-popup:hover>img{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}.video-popup-bg{visibility:hidden;opacity:0;-webkit-transition:350ms;-o-transition:350ms;transition:350ms}.gallery-grid-item:hover .video-popup-bg{visibility:visible;opacity:1}.gallery-item-thumbnail-wrap>.gallery-item-caption-wrap{position:absolute;left:0;top:0;height:100%;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.gallery-item-caption-wrap.card-hover-bg{visibility:hidden;opacity:0;-webkit-transition:.8s;-o-transition:.8s;transition:.8s}.gallery-item-thumbnail-wrap:hover .gallery-item-caption-wrap.card-hover-bg{visibility:visible;opacity:1}.gallery-item-caption-wrap .gallery-item-buttons>a>i{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;height:100%}@media only screen and (min-width:1025px){.elementor-element.elementor-grid-1{position:relative}.elementor-element.elementor-grid-1 .eael-filterable-gallery-item-wrap{width:100%;float:left}.elementor-element.elementor-grid-2{position:relative}.elementor-element.elementor-grid-2 .eael-filterable-gallery-item-wrap{width:50%;float:left}.elementor-element.elementor-grid-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n){margin-right:0!important}.elementor-element.elementor-grid-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n+1){clear:left}.elementor-element.elementor-grid-3{position:relative}.elementor-element.elementor-grid-3 .eael-filterable-gallery-item-wrap{width:33.3333%;float:left}.elementor-element.elementor-grid-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n){margin-right:0!important}.elementor-element.elementor-grid-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n+1){clear:left}.elementor-element.elementor-grid-4{position:relative}.elementor-element.elementor-grid-4 .eael-filterable-gallery-item-wrap{width:25%;float:left}.elementor-element.elementor-grid-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n){margin-right:0!important}.elementor-element.elementor-grid-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n+1){clear:left}.elementor-element.elementor-grid-5{position:relative}.elementor-element.elementor-grid-5 .pp-logo-grid{margin-right:-5px}.elementor-element.elementor-grid-5 .eael-filterable-gallery-item-wrap{width:20%;float:left}.elementor-element.elementor-grid-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n){margin-right:0!important}.elementor-element.elementor-grid-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n+1){clear:left}.elementor-element.elementor-grid-6{position:relative}.elementor-element.elementor-grid-6 .pp-logo-grid{margin-right:-6px}.elementor-element.elementor-grid-6 .eael-filterable-gallery-item-wrap{width:16.6667%;float:left}.elementor-element.elementor-grid-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n){margin-right:0!important}.elementor-element.elementor-grid-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n+1){clear:left}}@media only screen and (max-width:1024px) and (min-width:766px){.elementor-element.elementor-grid-tablet-1{position:relative}.elementor-element.elementor-grid-tablet-1 .eael-filterable-gallery-item-wrap{width:100%;float:left}.elementor-element.elementor-grid-tablet-2{position:relative}.elementor-element.elementor-grid-tablet-2 .eael-filterable-gallery-item-wrap{width:50%;float:left}.elementor-element.elementor-grid-tablet-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n){margin-right:0!important}.elementor-element.elementor-grid-tablet-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n+1){clear:left}.elementor-element.elementor-grid-tablet-3{position:relative}.elementor-element.elementor-grid-tablet-3 .eael-filterable-gallery-item-wrap{width:33.3333%;float:left}.elementor-element.elementor-grid-tablet-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n){margin-right:0!important}.elementor-element.elementor-grid-tablet-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n+1){clear:left}.elementor-element.elementor-grid-tablet-4{position:relative}.elementor-element.elementor-grid-tablet-4 .eael-filterable-gallery-item-wrap{width:25%;float:left}.elementor-element.elementor-grid-tablet-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n){margin-right:0!important}.elementor-element.elementor-grid-tablet-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n+1){clear:left}.elementor-element.elementor-grid-tablet-5{position:relative}.elementor-element.elementor-grid-tablet-5 .eael-filterable-gallery-item-wrap{width:20%;float:left}.elementor-element.elementor-grid-tablet-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n){margin-right:0!important}.elementor-element.elementor-grid-tablet-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n+1){clear:left}.elementor-element.elementor-grid-tablet-6{position:relative}.elementor-element.elementor-grid-tablet-6 .pp-logo-grid{margin-right:-6px}.elementor-element.elementor-grid-tablet-6 .eael-filterable-gallery-item-wrap{width:16.6667%;float:left}.elementor-element.elementor-grid-tablet-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n){margin-right:0!important}.elementor-element.elementor-grid-tablet-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n+1){clear:left}}@media only screen and (max-width:767px){.elementor-element.elementor-grid-mobile-1{position:relative}.elementor-element.elementor-grid-mobile-1 .eael-filterable-gallery-item-wrap{width:100%;float:left}.elementor-element.elementor-grid-mobile-2{position:relative}.elementor-element.elementor-grid-mobile-2 .eael-filterable-gallery-item-wrap{width:50%;float:left}.elementor-element.elementor-grid-mobile-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n){margin-right:0!important}.elementor-element.elementor-grid-mobile-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n+1){clear:left}.elementor-element.elementor-grid-mobile-3{position:relative}.elementor-element.elementor-grid-mobile-3 .eael-filterable-gallery-item-wrap{width:33.3333%;float:left}.elementor-element.elementor-grid-mobile-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n){margin-right:0!important}.elementor-element.elementor-grid-mobile-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n+1){clear:left}.elementor-element.elementor-grid-mobile-4{position:relative}.elementor-element.elementor-grid-mobile-4 .eael-filterable-gallery-item-wrap{width:25%;float:left}.elementor-element.elementor-grid-mobile-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n){margin-right:0!important}.elementor-element.elementor-grid-mobile-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n+1){clear:left}.elementor-element.elementor-grid-mobile-5{position:relative}.elementor-element.elementor-grid-mobile-5 .eael-filterable-gallery-item-wrap{width:20%;float:left}.elementor-element.elementor-grid-mobile-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n){margin-right:0!important}.elementor-element.elementor-grid-mobile-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n+1){clear:left}.elementor-element.elementor-grid-mobile-6{position:relative}.elementor-element.elementor-grid-mobile-6 .pp-logo-grid{margin-right:-6px}.elementor-element.elementor-grid-mobile-6 .eael-filterable-gallery-item-wrap{width:16.6667%;float:left}.elementor-element.elementor-grid-mobile-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n){margin-right:0!important}.elementor-element.elementor-grid-mobile-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n+1){clear:left}}.eael-elements-flip-box-container{position:relative;height:300px;width:100%}.eael-elements-flip-box-container .flipbox-button{display:inline-block;-webkit-transition:all .4s;-o-transition:all .4s;transition:all .4s}.eael-elements-flip-box-container a{display:block}.eael-elements-flip-box-vertical-align{width:100%}.eael-elements-flip-box-padding{padding:0 30px 5px 30px}.eael-elements-flip-box-icon-image{display:inline-block;margin:0 auto 0 auto;line-height:1}.eael-elements-flip-box-icon-image.eael_eleements_flip_front_icon_style_background{background:#ccc}.eael_eleements_flip_front_icon_style_bordered{border:2px solid #fff}.eael_flip_box_icon_border_round{-webkit-border-radius:100px;border-radius:100px}.eael_eleements_flip_front_icon_style_background,.eael_eleements_flip_front_icon_style_bordered{padding:15px}.eael-elements-flip-box-icon-image i{font-size:40px;line-height:40px;width:40px}.eael-elements-slider-display-table{width:100%}.eael-elements-flip-box-front-container{text-align:center;position:absolute;top:0;left:0;z-index:2;width:100%;height:100%;background:#0e9dd2;color:#fff;border-color:#000;-webkit-display:flex;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-elements-flip-box-content,.eael-elements-flip-box-heading{color:#fff}.eael-elements-flip-box-heading.flipbox-linked-title{color:#fff;font-size:1.5em;font-weight:700}.eael-elements-flip-box-rear-container{text-align:center;position:absolute;top:0;left:0;width:100%;height:100%;background:#444;color:#fff;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-color:#000}.eael-elements-button-floating-container{position:fixed;z-index:100}.eael-elements-button-floating-container .eael-elements-button{margin-top:0;font-size:14px;position:relative;padding:14px 20px}.eael-elements-button{cursor:pointer;display:inline-block;background:#077bbe;color:#fff;line-height:1;padding:16px 25px;margin-top:15px}.eael-elements-button:hover{background:#077bbe;color:#fff}.eael-elements-flip-box-container{-webkit-perspective:1000px;perspective:1000px}.eael-elements-flip-box-front-container,.eael-elements-flip-box-rear-container{-webkit-transition-duration:.5s;-o-transition-duration:.5s;transition-duration:.5s;-webkit-transition-property:all;-o-transition-property:all;transition-property:all;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.eael-elements-flip-box-flip-card{width:100%;height:100%;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transition:all .5s ease;-o-transition:all .5s ease;transition:all .5s ease}.eael-elements-flip-box-front-container,.eael-elements-flip-box-rear-container{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:rotateX(0);transform:rotateX(0);-webkit-transform:rotateY(0);transform:rotateY(0)}.eael-animate-flip.eael-animate-up .eael-elements-flip-box-rear-container,.eael-animate-flip.eael-animate-up.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.eael-animate-flip.eael-animate-down .eael-elements-flip-box-rear-container,.eael-animate-flip.eael-animate-down.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card{-webkit-transform:rotateX(-180deg);transform:rotateX(-180deg)}.eael-animate-flip.eael-animate-left .eael-elements-flip-box-rear-container,.eael-animate-flip.eael-animate-left.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}.eael-animate-flip.eael-animate-right .eael-elements-flip-box-rear-container,.eael-animate-flip.eael-animate-right.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card{-webkit-transform:rotateY(180deg);transform:rotateY(180deg)}.eael-animate-push.eael-elements-flip-box-container,.eael-animate-slide.eael-elements-flip-box-container{overflow:hidden}.eael-animate-push .eael-elements-flip-box-rear-container,.eael-animate-slide .eael-elements-flip-box-rear-container{z-index:3}.eael-animate-push.eael-animate-up .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-up .eael-elements-flip-box-rear-container{top:100%}.eael-animate-push.eael-animate-up.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-up.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container{top:0}.eael-animate-push.eael-animate-down .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-down .eael-elements-flip-box-rear-container{top:auto;bottom:100%}.eael-animate-push.eael-animate-down.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-down.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container{top:auto;bottom:0}.eael-animate-push.eael-animate-left .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-left .eael-elements-flip-box-rear-container{left:100%}.eael-animate-push.eael-animate-left.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-left.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container{left:0}.eael-animate-push.eael-animate-right .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-right .eael-elements-flip-box-rear-container{left:auto;right:100%}.eael-animate-push.eael-animate-right.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-right.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container{left:auto;right:0}.eael-animate-push.eael-animate-up.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container{top:-100%}.eael-animate-push.eael-animate-down.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container{top:100%}.eael-animate-push.eael-animate-left.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container{left:-100%}.eael-animate-push.eael-animate-right.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container{left:100%}.eael-animate-zoom-in .eael-elements-flip-box-rear-container{opacity:0;-webkit-transform:scale(.75);-ms-transform:scale(.75);transform:scale(.75);z-index:3}.eael-animate-zoom-in.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.eael-animate-zoom-out.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container{opacity:0;-webkit-transform:scale(.75);-ms-transform:scale(.75);transform:scale(.75)}.eael-animate-fade.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container{opacity:0}.eael-flipbox-content-align-right .eael-elements-flip-box-padding{text-align:right}.eael-flipbox-content-align-left .eael-elements-flip-box-padding{text-align:left}.eael-flipbox-content-align-center .eael-elements-flip-box-padding{text-align:center}.eael-flipbox-img-circle .eael-elements-flip-box-icon-image img,.eael-flipbox-img-circle .flipbox-back-image-icon img{-webkit-border-radius:50%;border-radius:50%;overflow:hidden}.clearfix::after,.clearfix::before{content:" ";display:table;clear:both}.eael-logo-carousel.nav-top-left,.eael-logo-carousel.nav-top-right,.eael-post-carousel.nav-top-left,.eael-post-carousel.nav-top-right,.eael-product-carousel.nav-top-left,.eael-product-carousel.nav-top-right,.eael-team-slider.nav-top-left,.eael-team-slider.nav-top-right,.eael-testimonial-slider.nav-top-left,.eael-testimonial-slider.nav-top-right{padding-top:40px}.swiper-container .swiper-slide,.swiper-container-wrap .swiper-slide{text-align:center}.swiper-container .swiper-slide img,.swiper-container-wrap .swiper-slide img{width:auto}.swiper-container-dots-outside .swiper-pagination,.swiper-container-wrap-dots-outside .swiper-pagination{position:static}.swiper-container .swiper-button-next,.swiper-container .swiper-button-prev,.swiper-container-wrap .swiper-button-next,.swiper-container-wrap .swiper-button-prev{background:0 0;font-size:20px;height:auto;line-height:1;margin:0;text-align:center;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);width:auto}.swiper-container .swiper-button-next .fa,.swiper-container .swiper-button-prev .fa,.swiper-container-wrap .swiper-button-next .fa,.swiper-container-wrap .swiper-button-prev .fa{vertical-align:top}.swiper-container-wrap .swiper-pagination{bottom:10px;left:0;width:100%}.swiper-container-wrap-dots-outside .swiper-pagination{position:static}.swiper-container-wrap .swiper-pagination-bullet{background:#ccc;margin:0 4px;opacity:1;height:8px;width:8px}.swiper-container-wrap .swiper-pagination-bullet-active{background:#000}.swiper-container-3d .swiper-slide{-o-transition-property:all;transition-property:all;-webkit-transition-property:all}.eael-contact-form input[type=date],.eael-contact-form input[type=email],.eael-contact-form input[type=number],.eael-contact-form input[type=tel],.eael-contact-form input[type=text],.eael-contact-form input[type=url],.eael-contact-form textarea{background:#fff;box-shadow:none;-webkit-box-shadow:none;float:none;height:auto;margin:0;outline:0;width:100%}.eael-contact-form input[type=submit]{border:0;float:none;height:auto;margin:0;padding:10px 20px;width:auto;-webkit-transition:all .25s linear 0s;-o-transition:all .25s linear 0s;transition:all .25s linear 0s}.eael-contact-form.placeholder-hide input::-webkit-input-placeholder,.eael-contact-form.placeholder-hide textarea::-webkit-input-placeholder{opacity:0;visibility:hidden}.eael-contact-form.placeholder-hide input::-moz-placeholder,.eael-contact-form.placeholder-hide textarea::-moz-placeholder{opacity:0;visibility:hidden}.eael-contact-form.placeholder-hide input:-ms-input-placeholder,.eael-contact-form.placeholder-hide textarea:-ms-input-placeholder{opacity:0;visibility:hidden}.eael-contact-form.placeholder-hide input:-moz-placeholder,.eael-contact-form.placeholder-hide textarea:-moz-placeholder{opacity:0;visibility:hidden}.eael-custom-radio-checkbox input[type=checkbox],.eael-custom-radio-checkbox input[type=radio]{-webkit-appearance:none;-moz-appearance:none;border-style:solid;border-width:0;outline:0;min-width:1px;width:15px;height:15px;background:#ddd;padding:3px}.eael-custom-radio-checkbox input[type=checkbox]:before,.eael-custom-radio-checkbox input[type=radio]:before{content:"";width:100%;height:100%;padding:0;margin:0;display:block}.eael-custom-radio-checkbox input[type=checkbox]:checked:before,.eael-custom-radio-checkbox input[type=radio]:checked:before{background:#999;-webkit-transition:all .25s linear 0s;-o-transition:all .25s linear 0s;transition:all .25s linear 0s}.eael-custom-radio-checkbox input[type=radio]{-webkit-border-radius:50%;border-radius:50%}.eael-custom-radio-checkbox input[type=radio]:before{-webkit-border-radius:50%;border-radius:50%}.eael-gravity-form-align-default,.eael-gravity-form-align-left,.eael-gravity-form-btn-align-left{text-align:left}.eael-gravity-form-align-right,.eael-gravity-form-btn-align-right{text-align:right}.eael-gravity-form-align-center,.eael-gravity-form-btn-align-center{text-align:center}.eael-gravity-form .gform_wrapper .gform_footer{margin:0;padding:0}.gform_wrapper form li,.gform_wrapper li{list-style:none}.eael-gravity-form .gform_wrapper ul.gform_fields li.gfield{padding:0}.eael-gravity-form .gform_wrapper textarea{padding:0}.eael-gravity-form .gform_wrapper .gform_footer input.button,.eael-gravity-form .gform_wrapper .gform_footer input[type=submit],.eael-gravity-form .gform_wrapper .gform_page_footer input.button,.eael-gravity-form .gform_wrapper .gform_page_footer input[type=submit]{margin:0}.eael-gravity-form.title-description-hide .gform_heading{display:none}.eael-gravity-form.labels-hide .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label,.eael-gravity-form.labels-hide .gform_wrapper .top_label .gfield_label{display:none}.eael-gravity-form-button-full-width .gform_wrapper .gform_footer input[type=submit]{width:100%}.eael-img-accordion{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:50vh}.eael-img-accordion a{position:relative;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;text-align:center;text-decoration:none;color:#fff;-webkit-background-size:cover;background-size:cover;background-position:center;background-repeat:no-repeat;-webkit-transition:-webkit-box-flex .4s,-webkit-flex .4s;transition:-webkit-box-flex .4s,-webkit-flex .4s;-o-transition:flex .4s;transition:flex .4s;transition:flex .4s,-webkit-box-flex .4s,-webkit-flex .4s,-ms-flex .4s}.eael-grow-accordion{-webkit-box-flex:3;-webkit-flex:3;-ms-flex:3;flex:3}.eael-img-accordion .overlay{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding:0 10px;position:absolute;top:0;right:0;bottom:0;left:0;-webkit-transition:background-color .4s;-o-transition:background-color .4s;transition:background-color .4s}.eael-img-accordion .overlay .overlay-inner{z-index:1}.eael-img-accordion a:after{content:"";position:absolute;width:100%;height:100%;z-index:0;top:0;left:0;bottom:0;right:0;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.eael-img-accordion .overlay-inner *{visibility:hidden;opacity:0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.eael-img-accordion .overlay h2{color:#fff;-webkit-transform:translate3d(0,-60px,0);transform:translate3d(0,-60px,0)}.eael-img-accordion .overlay p{color:#fff;-webkit-transform:translate3d(0,60px,0);transform:translate3d(0,60px,0)}.eael-img-accordion .overlay-inner-show *{opacity:1;visibility:visible;-webkit-transform:none!important;-ms-transform:none!important;transform:none!important;-webkit-transition:all .3s .3s;-o-transition:all .3s .3s;transition:all .3s .3s}@media screen and (max-width:800px){.eael-img-accordion{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.eael-img-accordion a:hover{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.eael-img-accordion a:hover .overlay{background-color:transparent}}.eael-infobox .infobox-icon{height:auto}.eael-infobox .infobox-icon .infobox-icon-wrap{display:block;width:100%;height:auto;-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.eael-infobox .infobox-icon .infobox-icon-wrap i{-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.eael-infobox-content-align-left .eael-infobox .infobox-button,.eael-infobox-content-align-left .eael-infobox .infobox-content,.eael-infobox-content-align-left .eael-infobox .infobox-icon{text-align:left}.eael-infobox-content-align-right .eael-infobox .infobox-button,.eael-infobox-content-align-right .eael-infobox .infobox-content,.eael-infobox-content-align-right .eael-infobox .infobox-icon{text-align:right}.eael-infobox-content-align-center .eael-infobox .infobox-button,.eael-infobox-content-align-center .eael-infobox .infobox-content,.eael-infobox-content-align-center .eael-infobox .infobox-icon{text-align:center}.eael-infobox-icon-bg-shape-circle .infobox-icon .infobox-icon-wrap,.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap,.eael-infobox-icon-bg-shape-square .infobox-icon .infobox-icon-wrap{width:90px;height:90px;text-align:center}.eael-infobox-icon-hover-bg-shape-square:hover .infobox-icon .infobox-icon-wrap{-webkit-border-radius:0;border-radius:0}.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap,.eael-infobox-icon-hover-bg-shape-radius:hover .infobox-icon .infobox-icon-wrap{-webkit-border-radius:15px;border-radius:15px}.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.eael-infobox-icon-bg-shape-circle .infobox-icon .infobox-icon-wrap,.eael-infobox-icon-hover-bg-shape-circle:hover .infobox-icon .infobox-icon-wrap{-webkit-border-radius:50%;border-radius:50%}.eael-infobox-icon-bg-shape-circle .infobox-icon .infobox-icon-wrap i,.eael-infobox-icon-bg-shape-square .infobox-icon .infobox-icon-wrap i{margin-top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.eael-infobox .infobox-button a.eael-infobox-button{display:inline-block;padding:5px 10px;-webkit-transition:all .3s ease-in-out 0s;-o-transition:all .3s ease-in-out 0s;transition:all .3s ease-in-out 0s}.eael-infobox-content-align-left.eael-infobox-icon-bg-shape-circle .infobox-icon,.eael-infobox-content-align-left.eael-infobox-icon-bg-shape-radius .infobox-icon,.eael-infobox-content-align-left.eael-infobox-icon-bg-shape-square .infobox-icon{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.eael-infobox-content-align-center.eael-infobox-icon-bg-shape-circle .infobox-icon,.eael-infobox-content-align-center.eael-infobox-icon-bg-shape-radius .infobox-icon,.eael-infobox-content-align-center.eael-infobox-icon-bg-shape-square .infobox-icon{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.eael-infobox-content-align-right.eael-infobox-icon-bg-shape-circle .infobox-icon,.eael-infobox-content-align-right.eael-infobox-icon-bg-shape-radius .infobox-icon,.eael-infobox-content-align-right.eael-infobox-icon-bg-shape-square .infobox-icon{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}.eael-infobox.icon-on-left{position:relative;z-index:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.eael-infobox.icon-on-left .infobox-icon-wrap,.eael-infobox.icon-on-right .infobox-icon-wrap{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.eael-infobox.icon-on-left .infobox-icon .infobox-icon-wrap{background:0 0;border:0;text-align:left;height:auto;display:block}.eael-infobox .infobox-content p{margin:0 0 15px}.eael-infobox.icon-on-left .infobox-icon .infobox-icon-wrap i{margin-top:0;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-infobox.icon-on-left .infobox-content{padding-left:15px;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}.eael-infobox.icon-on-left .infobox-content .title{line-height:1;margin:0 0 10px 0}.eael-infobox.icon-on-right{position:relative;z-index:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.eael-infobox.icon-on-right .infobox-icon .infobox-icon-wrap{background:0 0;border:0;text-align:right;width:auto;height:auto;display:block}.eael-infobox.icon-on-right .infobox-icon .infobox-icon-wrap i{margin-top:0;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-infobox.icon-on-right .infobox-content{padding-right:15px;text-align:right;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-sizing:border-box;box-sizing:border-box}.eael-infobox.icon-on-right .infobox-content .title{line-height:1;margin:0 0 10px 0}.eael-infobox .infobox-icon img{-webkit-transition:all .3s ease-in-out 0s;-o-transition:all .3s ease-in-out 0s;transition:all .3s ease-in-out 0s}.eael-infobox-hover-img-shape-square:hover .eael-infobox .infobox-icon img{-webkit-border-radius:0;border-radius:0}.eael-infobox-hover-img-shape-circle:hover .eael-infobox .infobox-icon img,.eael-infobox-shape-circle .eael-infobox .infobox-icon img{-webkit-border-radius:50%;border-radius:50%}.eael-infobox-hover-img-shape-radius:hover .eael-infobox .infobox-icon img,.eael-infobox-shape-radius .eael-infobox .infobox-icon img{-webkit-border-radius:15px;border-radius:15px}.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:0!important;-webkit-backface-visibility:hidden;backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none;-ms-touch-action:manipulation;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow:after,.mfp-arrow:before{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;-webkit-box-sizing:border-box;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}button.mfp-close,button.mfp-close:hover{display:inline-block!important;background:0 0;width:auto!important}.mfp-arrow,.mfp-arrow:hover{background:0 0}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);-ms-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;-ms-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;-ms-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.eael-ninja-container input,.eael-ninja-container textarea{height:auto;padding:10px}.eael-contact-form-align-center .eael-ninja-container,.eael-contact-form-btn-align-center .eael-ninja-container .nf-field .nf-field-element input[type=button]{margin-left:auto!important;margin-right:auto!important;display:block;float:none}.eael-contact-form-align-left .eael-ninja-container,.eael-contact-form-btn-align-left .eael-ninja-container .nf-field .nf-field-element input[type=button]{float:left;width:auto}.eael-contact-form-align-right .eael-ninja-container,.eael-contact-form-btn-align-right .eael-ninja-container .nf-field .nf-field-element input[type=button]{float:right;width:auto}.eael-ninja-container .nf-field .nf-field-element input[type=password],.eael-ninja-container .nf-field .nf-field-element input[type=url],.eael-ninja-container .nf-field .nf-field-element textarea,.eael-ninja-container ul.wpuf-form li .wpuf-fields input[type=email],.eael-ninja-container ul.wpuf-form li .wpuf-fields input[type=number],.eael-ninja-container ul.wpuf-form li .wpuf-fields input[type=text]{max-width:100%}.eael-ninja-form .nf-form-title{display:none}.eael-ninja-form-title-yes .nf-form-title{display:block}.eael-ninja-form .title-description-hide .nf-form-title{display:none}.eael-ninja-form.title-description-hide .nf-form-title{display:none}.eael-ninja-form .nf-field-label{display:none}.eael-ninja-form-labels-yes .nf-field-label{display:block}.eael-ninja-form .submit-container input[type=button]{border:0;-webkit-border-radius:0;border-radius:0}.eael-ninja-form-button-full-width .submit-container input[type=button]{width:100%}.eael-post-grid{margin:0 -10px}.eael-grid-post{float:left;padding:10px}.eael-post-carousel .eael-grid-post{float:none;padding:0}.eael-grid-post-holder{border:1px solid rgba(0,0,0,.1)}.eael-grid-post-holder-inner{height:100%}.eael-entry-media{position:relative}.eael-entry-overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:2;-webkit-transition:opacity .2s ease-in-out,-webkit-transform .25s cubic-bezier(.19,1,.22,1);transition:opacity .2s ease-in-out,-webkit-transform .25s cubic-bezier(.19,1,.22,1);-o-transition:opacity .2s ease-in-out,transform .25s cubic-bezier(.19,1,.22,1);transition:opacity .2s ease-in-out,transform .25s cubic-bezier(.19,1,.22,1);transition:opacity .2s ease-in-out,transform .25s cubic-bezier(.19,1,.22,1),-webkit-transform .25s cubic-bezier(.19,1,.22,1)}.eael-entry-overlay>a{position:absolute;top:0;left:0;width:100%;height:100%;z-index:3}.eael-entry-title{margin:10px 0 5px;font-size:1.2em}.eael-entry-thumbnail img{width:100%;max-width:100%;vertical-align:middle}.eael-entry-thumbnail>img{height:100%}.eael-entry-footer .eael-author-avatar{width:50px}.eael-entry-footer .eael-author-avatar .avatar{-webkit-border-radius:50%;border-radius:50%}.eael-post-grid .eael-entry-footer .eael-entry-meta{padding-left:8px;text-align:left}.eael-grid-post .eael-entry-meta{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.eael-grid-post .eael-entry-footer .eael-entry-meta{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.eael-entry-meta>div{font-size:12px;line-height:1.2;padding-bottom:5px}.eael-grid-post-excerpt p{margin:0;font-size:14px}.eael-entry-meta .eael-entry-footer .eael-posted-by{display:block}.eael-grid-post .eael-entry-footer,.eael-grid-post .eael-entry-wrapper{padding:15px}.eael-post-grid .eael-entry-header .eael-entry-meta span.eael-posted-on{padding-left:5px}.eael-post-grid .eael-entry-header .eael-entry-meta span.eael-posted-on::before{content:'\f111';font-family:FontAwesome;color:inherit;opacity:.4;font-size:.8em;padding-right:7px}.eael-entry-medianone{position:relative}.eael-entry-overlay{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.eael-entry-overlay>i{color:#fff}.eael-entry-overlay.fade-in{visibility:hidden;opacity:0;-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.eael-entry-medianone:hover .eael-entry-overlay.fade-in{visibility:visible;opacity:1}.eael-entry-medianone:hover .eael-entry-overlay.fade-in>i{-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0);opacity:1}.eael-entry-overlay.zoom-in{-webkit-transform:scale(.9);-ms-transform:scale(.9);transform:scale(.9);visibility:hidden;opacity:0;-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.eael-entry-medianone:hover .eael-entry-overlay.zoom-in{visibility:visible;opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.eael-entry-overlay.slide-up{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);visibility:hidden;opacity:0;-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.eael-entry-medianone:hover .eael-entry-overlay.slide-up{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);visibility:visible;opacity:1}.eael-entry-medianone{overflow:hidden}.eael-entry-media.grid-hover-style-fade-in .eael-entry-overlay{opacity:0}.eael-entry-media.grid-hover-style-fade-in:hover .eael-entry-overlay{opacity:1}.eael-entry-media.grid-hover-style-none .eael-entry-overlay{display:none}.eael-entry-media.grid-hover-style-zoom-in .eael-entry-overlay{-webkit-transform:scale(.4);-ms-transform:scale(.4);transform:scale(.4);opacity:0}.eael-entry-media.grid-hover-style-zoom-in:hover .eael-entry-overlay{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}.eael-entry-media.grid-hover-style-animate-down .eael-entry-overlay{-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}.eael-entry-media.grid-hover-style-animate-down .eael-entry-overlay>i{-webkit-transform:translateY(-100px);-ms-transform:translateY(-100px);transform:translateY(-100px);-webkit-transition-delay:.1s;-o-transition-delay:.1s;transition-delay:.1s;-webkit-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s}.eael-entry-media.grid-hover-style-animate-down:hover .eael-entry-overlay{-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0)}.eael-entry-media.grid-hover-style-animate-down:hover .eael-entry-overlay>i{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-entry-media.grid-hover-style-animate-up .eael-entry-overlay{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);visibility:hidden;opacity:0}.eael-entry-media.grid-hover-style-animate-up .eael-entry-overlay>i{-webkit-transform:translateY(100px);-ms-transform:translateY(100px);transform:translateY(100px);-webkit-transition-delay:.1s;-o-transition-delay:.1s;transition-delay:.1s;-webkit-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s}.eael-entry-media.grid-hover-style-animate-up:hover .eael-entry-overlay{-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0);visibility:visible;opacity:1}.eael-entry-media.grid-hover-style-animate-up:hover .eael-entry-overlay>i{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-col-1 .eael-post-grid-column{float:none;width:100%}.eael-col-2 .eael-post-grid-column{float:left;width:50%}.eael-col-3 .eael-post-grid-column{float:left;width:33.3333%}.eael-col-4 .eael-post-grid-column{float:left;width:25%}.eael-col-5 .eael-post-grid-column{float:left;width:20%}.eael-col-6 .eael-post-grid-column{float:left;width:16.6666%}@media only screen and (max-width:979px){.eael-col-1 .eael-post-grid-column,.eael-col-2 .eael-post-grid-column,.eael-col-3 .eael-post-grid-column,.eael-col-4 .eael-post-grid-column,.eael-col-5 .eael-post-grid-column,.eael-col-6 .eael-post-grid-column{width:33.3333%}}@media only screen and (max-width:767px){.eael-col-1 .eael-post-grid-column,.eael-col-2 .eael-post-grid-column,.eael-col-3 .eael-post-grid-column,.eael-col-4 .eael-post-grid-column,.eael-col-5 .eael-post-grid-column,.eael-col-6 .eael-post-grid-column{width:50%}}@media only screen and (max-width:480px){.eael-col-1 .eael-post-grid-column,.eael-col-2 .eael-post-grid-column,.eael-col-3 .eael-post-grid-column,.eael-col-4 .eael-post-grid-column,.eael-col-5 .eael-post-grid-column,.eael-col-6 .eael-post-grid-column{float:none;width:100%}}.eael-author-avatar>a{display:block}.eael-entry-footer{overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.eael-entry-footer>div{display:inline-block;float:left}.eael-post-timeline{margin-bottom:0;min-height:100%;overflow:hidden;position:relative}.eael-timeline-column{width:50%;margin-left:0;float:left;margin-top:0!important}.eael-timeline-post{position:relative}.eael-timeline-post:after{background-color:rgba(83,85,86,.2);content:"";width:2px;height:245px;position:absolute;right:0;top:70px}.eael-timeline-post:nth-child(2n):after{display:none}.eael-timeline-bullet{background-color:#9fa9af;border:5px solid #fff;-webkit-border-radius:50%;border-radius:50%;-webkit-box-shadow:0 1px 0 1px rgba(0,0,0,.1);box-shadow:0 1px 0 1px rgba(0,0,0,.1);content:"";height:20px;position:absolute;right:-9px;top:60px;width:20px;z-index:3;cursor:pointer}.eael-timeline-post:nth-child(2n) .eael-timeline-bullet{background-color:#9fa9af;border:5px solid #fff;-webkit-border-radius:50%;border-radius:50%;bottom:36px;content:"";height:20px;left:-11px;position:absolute;top:300px;width:20px;z-index:3}.eael-timeline-post-inner{background:-webkit-linear-gradient(45deg,#3f3f46 0,#05abe0 100%) repeat scroll 0 0 transparent;background:-o-linear-gradient(45deg,#3f3f46 0,#05abe0 100%) repeat scroll 0 0 transparent;background:linear-gradient(45deg,#3f3f46 0,#05abe0 100%) repeat scroll 0 0 transparent;border:8px solid #e5eaed;-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.15);box-shadow:0 1px 3px 0 rgba(0,0,0,.15);float:right;margin:30px 40px 30px auto;position:relative;height:320px;width:calc(100% - 40px)}.eael-timeline-post:nth-child(even) .eael-timeline-post-inner{float:left;margin-left:40px}.eael-timeline-post-inner:after{border-color:transparent transparent transparent #e5eaed;border-style:solid;border-width:15px;content:"";height:0;position:absolute;right:-36px;top:17px;width:0}.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner:after{border-color:transparent #e5eaed transparent transparent;border-style:solid;border-width:15px;content:"";height:0;left:-36px;position:absolute;top:257px;width:0}.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner::after{border-left-color:transparent!important}.eael-timeline-post p{margin:1.6rem 0 0 0;font-size:.9em;line-height:1.6em}.eael-timeline-post-image{-webkit-background-size:cover;background-size:cover;background-position:center center;background-repeat:no-repeat;display:block;height:100%;overflow:hidden;position:relative;opacity:.6;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.eael-timeline-post-title{bottom:40px;position:absolute;width:100%}.eael-timeline-post-title h2{color:#fff;font-size:20px;font-weight:700;letter-spacing:1px;line-height:24px;padding:0 25px;text-align:left;text-transform:uppercase}.eael-timeline-post-excerpt{opacity:0;position:absolute;top:0;left:0;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.eael-timeline-post-excerpt p{color:#fff;font-size:14px;padding:25px}.eael-timeline-post-inner:hover .eael-timeline-post-excerpt{opacity:1;top:10px}.eael-timeline-post-inner:hover .eael-timeline-post-image{opacity:.3}.eael-timeline-post time{opacity:0;background-color:rgba(0,0,0,.7);color:#fff;font-size:10px;-webkit-border-radius:20px;border-radius:20px;position:absolute;right:-97px;width:100px;height:30px;line-height:30px;text-align:center;top:50px;z-index:99;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.eael-timeline-post:nth-child(2n) time{background-color:rgba(0,0,0,.7);-webkit-border-radius:20px;border-radius:20px;color:#fff;font-size:10px;height:30px;left:-99px;line-height:30px;position:absolute;text-align:center;top:290px;width:100px;z-index:99}.eael-timeline-post time:before{border-bottom:5px solid rgba(0,0,0,.7);border-left:5px solid transparent;border-right:5px solid transparent;content:"";height:0;left:45px;position:absolute;top:-5px;width:0}.eael-timeline-post:hover time{opacity:1}.eael-timeline-post::after{height:100%}.eael-post-timeline .eael-timeline-post:nth-last-child(2)::after{height:245px}.eael-post-timeline .eael-timeline-post:last-child::after{display:none}.eael-load-more-button-wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}@media only screen and (max-width:1366px){.eael-timeline-post-title h2{font-size:.8em}.eael-timeline-post-excerpt p{font-size:13px}}@media only screen and (max-width:1169px){.eael-timeline-post-inner{height:320px}}@media only screen and (max-width:992px){.eael-post-timeline{margin-left:0}.eael-timeline-bullet,.eael-timeline-post-inner:after,.eael-timeline-post:after,.eael-timeline-post:before{display:none}.eael-timeline-post{display:inline-block;float:left!important;width:50%!important;margin:15px auto}.eael-timeline-post-inner{height:320px;padding-bottom:30px}.eael-timeline-post-title{bottom:50px}.eael-timeline-post-title h2{font-size:.8em;line-height:1.2em}.eael-timeline-post .eael-timeline-post-inner{margin:0 10px auto 0;width:90%}.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner{margin:0 auto 0 10px;width:90%}.eael-timeline-post-excerpt{opacity:0!important}.eael-timeline-post-image{opacity:.3}.eael-timeline-post time,.eael-timeline-post:nth-child(2n) time{background-color:#fff;-webkit-border-radius:0;border-radius:0;color:#444;font-size:12px;text-transform:uppercase;left:0;opacity:1;padding-top:3px;top:275px;width:100%}time:before{display:none}}@media only screen and (max-width:767px){.eael-timeline-post{display:block;float:none!important;margin:20px auto;width:100%!important}.eael-timeline-post .eael-timeline-post-inner,.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner{display:block;float:none;margin:0 auto}}@media only screen and (max-width:479px){.eael-timeline-post .eael-timeline-post-inner,.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner{height:250px;margin:0 auto;width:95%}.eael-timeline-post time,.eael-timeline-post:nth-child(2n) time{top:205px}}.eael-pricing{-webkit-display:flex;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-pricing .eael-pricing-item{width:100%;height:auto;margin:0}.eael-pricing .eael-pricing-button{display:inline-block;padding:12px 25px;background:#00c853;font-size:14px;font-weight:600;color:#fff;text-transform:uppercase;text-decoration:none;-webkit-transition:.3s;-o-transition:.3s;transition:.3s;-webkit-border-radius:4px;border-radius:4px}.eael-pricing .eael-pricing-button:hover{background:#03b048}.eael-pricing .eael-pricing-item ul{padding:0;margin:0;list-style:none}.eael-pricing .eael-pricing-item ul li.disable-item{text-decoration:line-through;opacity:.5}.eael-pricing .eael-pricing-item ul li span.li-icon{color:#00c853;margin-right:6px}.eael-pricing .eael-pricing-item ul li.disable-item span.li-icon{color:#ef5350}.eael-pricing.style-1{position:relative;z-index:0;text-align:center}.eael-pricing.style-1 .eael-pricing-item{border:1px solid rgba(9,9,9,.1);padding:30px;-webkit-border-radius:5px;border-radius:5px;-webkit-transition:.5s;-o-transition:.5s;transition:.5s}.eael-pricing.style-1 .eael-pricing-item:hover{-webkit-box-shadow:0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22);box-shadow:0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22)}.eael-pricing.style-1 .eael-pricing-item.featured{position:relative}.eael-pricing.style-1 .eael-pricing-item.ribbon-1:before{content:"";position:absolute;width:100%;height:3px;background:#00c853;top:0;left:0;right:0;z-index:1;-webkit-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.eael-pricing.style-1 .eael-pricing-item.ribbon-2:before{content:"Featured";position:absolute;width:auto;background:#00c853;color:#fff;top:35px;right:-15px;z-index:10;font-size:10px;font-weight:600;text-transform:uppercase;padding:5px 10px}.eael-pricing.style-1 .eael-pricing-item.ribbon-2:after{content:"";position:absolute;top:20px;right:-15px;width:0;height:0;border-bottom:15px solid #00c853;border-right:15px solid transparent;z-index:9;opacity:.9}.eael-pricing.style-1 .eael-pricing-item.ribbon-3:before{content:"Featured";position:absolute;width:auto;background:rgba(0,0,0,.6);color:#fff;top:15px;right:15px;z-index:10;font-size:11px;font-weight:600;text-transform:uppercase;padding:5px 15px}.eael-pricing.style-1 .eael-pricing-item .header{display:block;position:relative;z-index:0;padding-bottom:15px;margin-bottom:15px}.eael-pricing.style-1 .eael-pricing-item .header:after{content:"";position:absolute;width:140px;height:1px;bottom:0;left:0;right:0;margin:0 auto;z-index:1;background:rgba(9,9,9,.1)}.eael-pricing.style-1 .eael-pricing-item .header .title{font-weight:700;line-height:30px;margin:0}.eael-pricing.style-1 .eael-pricing-item .eael-pricing-tag{position:relative;z-index:0;padding:15px 0;margin-bottom:15px}.eael-pricing.style-1 .eael-pricing-item .eael-pricing-tag:after{content:"";position:absolute;width:140px;height:1px;bottom:0;left:0;right:0;margin:0 auto;z-index:1;background:rgba(9,9,9,.04)}.eael-pricing.style-1 .eael-pricing-item .price-tag{position:relative;display:inline-block;font-size:28px;font-weight:500;line-height:0;margin:0 auto}.eael-pricing.style-1 .eael-pricing-item .price-tag .price-currency{font-size:24px;font-weight:700}.eael-pricing.style-1 .eael-pricing-item .price-period{color:#999}.eael-pricing.style-1 .eael-pricing-item .body ul{display:block;width:100%;margin-bottom:15px}.eael-pricing.style-1 .eael-pricing-item .body ul li{display:block;width:100%;height:auto;padding:10px 0;font-size:14px;color:#6d6d6d;border-bottom:1px solid rgba(9,9,9,.04)}.eael-pricing.style-1 .eael-pricing-item .body ul li:last-child{border:none}.eael-pricing.style-1 .eael-pricing-item.featured-large{padding:60px 0}.eael-pricing.style-2{position:relative;z-index:0;text-align:center}.eael-pricing.style-2 .eael-pricing-item{padding:30px 0;-webkit-border-radius:5px;border-radius:5px;margin:0;border:1px solid rgba(9,9,9,.1)}.eael-pricing.style-2 .eael-pricing-item.featured{-webkit-box-shadow:0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22);box-shadow:0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22)}.eael-pricing.style-2 .eael-pricing-item.ribbon-1:before{content:"";position:absolute;width:100%;height:3px;background:#00c853;top:0;left:0;right:0;z-index:1;-webkit-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.eael-pricing.style-2 .eael-pricing-item.ribbon-2:before{content:"Featured";position:absolute;width:auto;background:#00c853;color:#fff;top:35px;right:-15px;z-index:10;font-size:10px;font-weight:600;text-transform:uppercase;padding:5px 10px}.eael-pricing.style-2 .eael-pricing-item.ribbon-2:after{content:"";position:absolute;top:20px;right:-15px;width:0;height:0;border-bottom:15px solid #00c853;border-right:15px solid transparent;z-index:9;opacity:.9}.eael-pricing.style-2 .eael-pricing-item.ribbon-3:before{content:"Featured";position:absolute;width:auto;background:rgba(0,0,0,.6);color:#fff;top:15px;right:15px;z-index:10;font-size:11px;font-weight:600;text-transform:uppercase;padding:5px 15px}.eael-pricing.style-2 .eael-pricing-item .eael-pricing-icon .icon{display:inline-block;position:relative;width:80px;height:80px;background:#00c853;-webkit-border-radius:50%;border-radius:50%;margin-bottom:30px;text-align:center;-webkit-transition:.5s;-o-transition:.5s;transition:.5s;overflow:hidden}.eael-pricing.style-2 .eael-pricing-item .eael-pricing-icon .icon i{font-size:30px;color:#fff;line-height:80px;-webkit-transition:.5s;-o-transition:.5s;transition:.5s}.eael-pricing.style-2 .eael-pricing-item:hover .eael-pricing-icon .icon{background:#43a047}.eael-pricing.style-2 .eael-pricing-item:hover .eael-pricing-icon .icon i{color:#fff}.eael-pricing.style-2 .eael-pricing-item .header{background:#c8e6c9;padding:25px 30px;margin-bottom:15px;position:relative;z-index:0}.eael-pricing.style-2 .eael-pricing-item.featured .header:after{content:"";position:absolute;width:100%;height:100%;top:0;left:0;right:0;bottom:0;z-index:-1;background:rgba(255,255,255,.4)}.eael-pricing.style-2 .eael-pricing-item .header .title{font-size:28px;font-weight:700;line-height:40px;margin:0}.eael-pricing.style-2 .eael-pricing-item .header .subititle{font-size:14px;font-weight:600;color:#6d6d6d}.eael-pricing.style-2 .eael-pricing-item .eael-pricing-tag{position:relative;z-index:0;padding:15px 0;margin-bottom:15px}.eael-pricing.style-2 .eael-pricing-item .eael-pricing-tag:after{content:"";position:absolute;width:140px;height:1px;bottom:0;left:0;right:0;margin:0 auto;z-index:1;background:rgba(9,9,9,.04)}.eael-pricing.style-2 .eael-pricing-item .price-tag{position:relative;display:inline-block;font-size:28px;font-weight:500;line-height:0;margin:0 auto}.eael-pricing.style-2 .eael-pricing-item .price-tag .price-currency{font-size:24px;font-weight:700;color:#00c853}.eael-pricing.style-2 .eael-pricing-item .price-period{color:#999}.eael-pricing.style-2 .eael-pricing-item .body ul{display:block;width:100%;margin-bottom:15px}.eael-pricing.style-2 .eael-pricing-item .body ul li{display:block;width:100%;height:auto;padding:10px 15px;font-size:14px;color:#6d6d6d;border-bottom:1px solid rgba(9,9,9,.04)}.eael-pricing.style-2 .eael-pricing-item .body ul li:last-child{border:none}@media only screen and (min-width:768px) and (max-width:992px){.eael-pricing{display:block}.eael-pricing .eael-pricing-item,.eael-pricing.style-2 .eael-pricing-item,.eael-pricing.style-4 .eael-pricing-item{width:100%;margin:0 auto 30px auto}}@media only screen and (max-width:480px){.eael-pricing{display:block}.eael-pricing .eael-pricing-item{width:100%}.eael-pricing .eael-pricing-item,.eael-pricing.style-2 .eael-pricing-item,.eael-pricing.style-4 .eael-pricing-item{margin:0 auto 30px auto}}.eael-pricing-content-align-center .eael-pricing{text-align:center}.eael-pricing-content-align-left .eael-pricing{text-align:left}.eael-pricing-content-align-right .eael-pricing{text-align:right}.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .price-tag{padding-left:45px}.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .price-tag:before{left:30px}.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .eael-pricing-tag{padding-right:30px}.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .eael-pricing-icon,.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .footer,.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .header,.eael-pricing-content-align-left .eael-pricing.style-4 .eael-pricing-item .footer,.eael-pricing-content-align-left .eael-pricing.style-4 .eael-pricing-item .header{padding-left:30px;padding-right:30px}.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .eael-pricing-icon,.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .footer,.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .header,.eael-pricing-content-align-right .eael-pricing.style-4 .eael-pricing-item .footer,.eael-pricing-content-align-right .eael-pricing.style-4 .eael-pricing-item .header{padding-right:30px;padding-left:30px}.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .body ul li,.eael-pricing-content-align-left .eael-pricing.style-4 .eael-pricing-item .body ul li{padding-left:30px}.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .body ul li,.eael-pricing-content-align-right .eael-pricing.style-4 .eael-pricing-item .body ul li{padding-right:30px}.eael-pricing-content-align-left .eael-pricing.style-3 .eael-pricing-item .header:after{-webkit-transform:translateX(-80%);-ms-transform:translateX(-80%);transform:translateX(-80%)}.eael-pricing-content-align-right .eael-pricing.style-3 .eael-pricing-item .header:after{-webkit-transform:translateX(80%);-ms-transform:translateX(80%);transform:translateX(80%)}.eael-pricing-content-align-left .eael-pricing.style-3 .eael-pricing-item:hover .header:after,.eael-pricing-content-align-right .eael-pricing.style-3 .eael-pricing-item:hover .header:after{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}.eael-pricing-content-align-left .eael-pricing.style-1 .eael-pricing-item .eael-pricing-tag:after,.eael-pricing-content-align-left .eael-pricing.style-1 .eael-pricing-item .header:after,.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .eael-pricing-tag:after,.eael-pricing-content-align-right .eael-pricing.style-1 .eael-pricing-item .eael-pricing-tag:after,.eael-pricing-content-align-right .eael-pricing.style-1 .eael-pricing-item .header:after,.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .eael-pricing-tag:after{margin:0;width:100%}.eael-pricing-button-align-right .eael-pricing.style-1 .footer,.eael-pricing-button-align-right .eael-pricing.style-2 .footer,.eael-pricing-button-align-right .eael-pricing.style-3 .footer,.eael-pricing-button-align-right .eael-pricing.style-4 .footer{text-align:right}.eael-pricing-button-align-center .eael-pricing.style-1 .footer,.eael-pricing-button-align-center .eael-pricing.style-2 .footer,.eael-pricing-button-align-center .eael-pricing.style-3 .footer,.eael-pricing-button-align-center .eael-pricing.style-4 .footer{text-align:center}.eael-pricing-button-align-left .eael-pricing.style-1 .footer,.eael-pricing-button-align-left .eael-pricing.style-2 .footer,.eael-pricing-button-align-left .eael-pricing.style-3 .footer,.eael-pricing-button-align-left .eael-pricing.style-4 .footer{text-align:left}.eael-pricing-content-align-center.eael-pricing-button-align-right .eael-pricing.style-2 .footer,.eael-pricing-content-align-center.eael-pricing-button-align-right .eael-pricing.style-4 .footer{padding-right:30px}.eael-pricing-content-align-center.eael-pricing-button-align-left .eael-pricing.style-2 .footer,.eael-pricing-content-align-center.eael-pricing-button-align-left .eael-pricing.style-4 .footer{padding-left:30px}.only-in-pro{width:100%;-webkit-display:flex;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:15px;min-width:200px;background:#ef5350;color:#fff;text-align:center}.only-in-pro .title{font-family:Roboto,sans-serif;font-size:24px;line-height:40px;margin:0}div.tooltipster-sidetip.tooltipster-base.tooltipster-right .tooltipster-arrow{position:absolute;top:50%}div.tooltipster-sidetip.tooltipster-top div.tooltipster-box{margin-bottom:0!important}div.tooltipster-sidetip.tooltipster-bottom div.tooltipster-box{margin-top:0!important}.tooltipster-base.tooltipster-sidetip.tooltipster-top .tooltipster-arrow{top:auto;bottom:-8px}div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow{top:-8px;bottom:auto}.eael-post-grid .woocommerce ul.products,.eael-product-grid .woocommerce ul.products{display:grid;grid-gap:25px;margin:0!important;padding:0!important}.eael-post-grid .woocommerce ul.products:after,.eael-post-grid .woocommerce ul.products:before,.eael-product-grid .woocommerce ul.products:after,.eael-product-grid .woocommerce ul.products:before{display:none}.eael-post-grid .woocommerce ul.products .product,.eael-product-grid .woocommerce ul.products .product{width:100%;margin:0;padding:0}.eael-post-grid .woocommerce ul.products.eael-product-columns-1,.eael-product-grid .woocommerce ul.products.eael-product-columns-1{grid-template-columns:100%}.eael-post-grid .woocommerce ul.products.eael-product-columns-2,.eael-product-grid .woocommerce ul.products.eael-product-columns-2{grid-template-columns:repeat(2,1fr)}@media screen and (max-width:480px){.eael-post-grid .woocommerce ul.products.eael-product-columns-2,.eael-product-grid .woocommerce ul.products.eael-product-columns-2{grid-template-columns:repeat(1,1fr)}}.eael-post-grid .woocommerce ul.products.eael-product-columns-3,.eael-product-grid .woocommerce ul.products.eael-product-columns-3{grid-template-columns:repeat(3,1fr)}@media screen and (max-width:767px){.eael-post-grid .woocommerce ul.products.eael-product-columns-3,.eael-product-grid .woocommerce ul.products.eael-product-columns-3{grid-template-columns:repeat(2,1fr)}}@media screen and (max-width:480px){.eael-post-grid .woocommerce ul.products.eael-product-columns-3,.eael-product-grid .woocommerce ul.products.eael-product-columns-3{grid-template-columns:repeat(1,1fr)}}.eael-post-grid .woocommerce ul.products.eael-product-columns-4,.eael-product-grid .woocommerce ul.products.eael-product-columns-4{grid-template-columns:repeat(4,1fr)}@media screen and (max-width:767px){.eael-post-grid .woocommerce ul.products.eael-product-columns-4,.eael-product-grid .woocommerce ul.products.eael-product-columns-4{grid-template-columns:repeat(2,1fr)}}@media screen and (max-width:480px){.eael-post-grid .woocommerce ul.products.eael-product-columns-4,.eael-product-grid .woocommerce ul.products.eael-product-columns-4{grid-template-columns:repeat(1,1fr)}}.eael-post-grid .woocommerce ul.products.eael-product-columns-5,.eael-product-grid .woocommerce ul.products.eael-product-columns-5{grid-template-columns:repeat(5,1fr)}@media screen and (max-width:767px){.eael-post-grid .woocommerce ul.products.eael-product-columns-5,.eael-product-grid .woocommerce ul.products.eael-product-columns-5{grid-template-columns:repeat(2,1fr)}}@media screen and (max-width:480px){.eael-post-grid .woocommerce ul.products.eael-product-columns-5,.eael-product-grid .woocommerce ul.products.eael-product-columns-5{grid-template-columns:repeat(1,1fr)}}.eael-post-grid .woocommerce ul.products.eael-product-columns-6,.eael-product-grid .woocommerce ul.products.eael-product-columns-6{grid-template-columns:repeat(6,1fr)}@media screen and (max-width:767px){.eael-post-grid .woocommerce ul.products.eael-product-columns-6,.eael-product-grid .woocommerce ul.products.eael-product-columns-6{grid-template-columns:repeat(2,1fr)}}@media screen and (max-width:480px){.eael-post-grid .woocommerce ul.products.eael-product-columns-6,.eael-product-grid .woocommerce ul.products.eael-product-columns-6{grid-template-columns:repeat(1,1fr)}}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product{position:relative;float:left;overflow:hidden;text-align:center;padding:0;-webkit-border-radius:0;border-radius:0;background-color:#fff;-webkit-box-shadow:none;box-shadow:none}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a{text-decoration:none}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a:hover,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a:hover,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a:hover,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a:hover{outline:0;-webkit-box-shadow:none;box-shadow:none}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product img,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product img,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product img,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product img{width:100%;height:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .woocommerce-loop-product__title{font-size:16px;font-weight:700;line-height:1;color:#333;margin:25px 0 12px;padding:0}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .onsale,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .onsale,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .onsale,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .onsale{display:block;line-height:170px;font-size:13px;text-align:center;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;-webkit-border-radius:0;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-100px;top:-50px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .price,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price{font-size:14px;margin-bottom:0}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .price del,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price del,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price del,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price del{opacity:.5;display:inline-block}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .price ins,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price ins,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price ins,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price ins{font-weight:400;background-color:transparent;color:#ff2a13}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .star-rating,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .star-rating,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .star-rating,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .star-rating{display:block;float:none;font-size:14px;margin:10px auto}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button{display:block;font-size:14px;font-weight:400;line-height:38px;text-align:center;text-transform:uppercase;color:#fff;background-color:#333;padding:0;margin:15px;-webkit-border-radius:0;border-radius:0}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button:focus,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button:focus,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus{outline:0}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a.added_to_cart,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a.added_to_cart{display:block;margin:0 0 15px 0;padding:0;font-size:14px;line-height:1;text-transform:capitalize;color:#333;background-color:transparent}.eael-post-grid.eael-product-simple .woocommerce ul.products li.product,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product{border:1px solid #eee}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product{border:1px solid transparent}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart{visibility:hidden;-webkit-transition:none;-o-transition:none;transition:none}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover{border:1px solid #eee}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button.add_to_cart_button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover a.added_to_cart,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button.add_to_cart_button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover a.added_to_cart{visibility:visible}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product{position:relative;float:left;overflow:hidden;text-align:center;padding:0 0 15px 0;-webkit-border-radius:0;border-radius:0;background-color:#fff;-webkit-box-shadow:none;box-shadow:none}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product a,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product a{text-decoration:none}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product a:hover,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product a:hover{outline:0;-webkit-box-shadow:none;box-shadow:none}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product img,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product img{width:100%;height:auto;margin:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay{position:relative;overflow:hidden;line-height:0}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .button-wrap,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .button-wrap{position:absolute;top:50%;left:0;right:0;text-align:center;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link{display:inline-block;font-size:14px;line-height:38px;text-align:center;color:#fff;background-color:#333;width:38px;height:38px;border-style:none;-webkit-border-radius:50%;border-radius:50%;vertical-align:middle;padding:0;margin:0 5px;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px);opacity:0;-webkit-transition:opacity .3s,-webkit-transform .2s;transition:opacity .3s,-webkit-transform .2s;-o-transition:transform .2s,opacity .3s;transition:transform .2s,opacity .3s;transition:transform .2s,opacity .3s,-webkit-transform .2s}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:focus,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:focus,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link:focus,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:focus,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:focus,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link:focus{outline:0}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button{font-size:0}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:before,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:before{display:none}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:after,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:after{content:"\f217";font:normal normal normal 14px/1 FontAwesome;font-size:14px;line-height:38px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:before,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:before{display:none}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:after,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:after{content:"\f110";display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:14px;line-height:38px;color:#fff;height:auto;width:auto;position:relative;top:0;left:0;margin:0;padding:0}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart{font-size:0}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:after,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:after{content:"\f06e";font:normal normal normal 14px/1 FontAwesome;font-size:14px;line-height:38px;color:#fff;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .woocommerce-loop-product__title{font-size:16px;font-weight:700;line-height:1;color:#333;margin:25px 0 12px;padding:0}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .onsale,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .onsale{display:block;line-height:170px;font-size:13px;text-align:center;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;-webkit-border-radius:0;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-100px;top:-50px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price{font-size:14px;margin-bottom:0}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price del,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price del{opacity:.5;display:inline-block}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price ins,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price ins{font-weight:400;background-color:transparent;color:#ff2a13}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .star-rating,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .star-rating{display:block;float:none;font-size:14px;margin:10px auto}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .add_to_cart_button,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay a,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .add_to_cart_button,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay a{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}@-webkit-keyframes animateStripe{0%{-webkit-transform:translate(0,0);transform:translate(0,0)}100%{-webkit-transform:translate(35px,0);transform:translate(35px,0)}}@keyframes animateStripe{0%{-webkit-transform:translate(0,0);transform:translate(0,0)}100%{-webkit-transform:translate(35px,0);transform:translate(35px,0)}}@-webkit-keyframes animateStripeRTL{0%{-webkit-transform:translate(0,0);transform:translate(0,0)}100%{-webkit-transform:translate(-35px,0);transform:translate(-35px,0)}}@keyframes animateStripeRTL{0%{-webkit-transform:translate(0,0);transform:translate(0,0)}100%{-webkit-transform:translate(-35px,0);transform:translate(-35px,0)}}.eael-progressbar{position:relative}.eael-progressbar-title{font-size:20px;font-weight:400}.eael-progressbar-line{position:relative;display:block;width:100%;height:12px;background-color:#eee}.eael-progressbar-line .eael-progressbar-count-wrap{position:absolute;right:0;bottom:calc(100% + 5px);font-size:16px;font-weight:400;line-height:1}.eael-progressbar-line-fill{display:inline-block;position:absolute;top:50%;left:0;width:0;height:12px;background-color:#000;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);-webkit-transition:width 1.5s linear;-o-transition:width 1.5s linear;transition:width 1.5s linear;overflow:hidden}.eael-progressbar-circle{position:relative;width:200px;height:200px}.eael-progressbar-circle .eael-progressbar-title{font-size:16px;font-weight:400}.eael-progressbar-circle .eael-progressbar-count-wrap{font-size:28px;font-weight:700}.eael-progressbar-circle-shadow{width:220px;height:220px;padding:10px;-webkit-border-radius:50%;border-radius:50%}.eael-progressbar-circle-pie{position:absolute;top:0;left:0;width:100%;height:100%;-webkit-clip-path:inset(0 0 0 50%);clip-path:inset(0 0 0 50%)}.eael-progressbar-circle-inner{height:100%;width:100%;border-width:12px;border-style:solid;border-color:#eee;-webkit-border-radius:50%;border-radius:50%}.eael-progressbar-circle-half{position:absolute;left:0;top:0;height:100%;width:100%;border-width:12px;border-style:solid;border-color:#000;-webkit-border-radius:50%;border-radius:50%;-webkit-clip-path:inset(0 50% 0 0);clip-path:inset(0 50% 0 0)}.eael-progressbar-circle-half-left{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.eael-progressbar-circle-half-right{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);visibility:hidden}.eael-progressbar-circle-inner-content{position:absolute;top:50%;width:100%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);text-align:center}.eael-progressbar-half-circle{position:relative;width:200px;height:100px;overflow:hidden}.eael-progressbar-half-circle .eael-progressbar-circle-pie{-webkit-clip-path:inset(0 0 50% 0);clip-path:inset(0 0 50% 0)}.eael-progressbar-half-circle .eael-progressbar-circle-half{-webkit-clip-path:inset(50% 0 0 0);clip-path:inset(50% 0 0 0);-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);-webkit-transition:-webkit-transform 1.5s linear;transition:-webkit-transform 1.5s linear;-o-transition:transform 1.5s linear;transition:transform 1.5s linear;transition:transform 1.5s linear,-webkit-transform 1.5s linear}.eael-progressbar-half-circle .eael-progressbar-circle-inner-content{top:initial;bottom:0;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-progressbar-half-circle .eael-progressbar-title{font-size:16px;font-weight:400}.eael-progressbar-half-circle .eael-progressbar-count-wrap{font-size:28px;font-weight:700}.eael-progressbar-half-circle-after{position:relative;font-size:12px;font-weight:400;clear:both}.eael-progressbar-postfix-label{float:right}.eael-progressbar-line-stripe .eael-progressbar-line-fill:after{content:'';position:absolute;top:0;left:-35px;width:calc(100% + 70px);height:100%;background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:35px 35px;background-size:35px 35px}.eael-progressbar-line-animate .eael-progressbar-line-fill:after{-webkit-animation:animateStripe 2s linear infinite;animation:animateStripe 2s linear infinite}.eael-progressbar-line-animate-rtl .eael-progressbar-line-fill:after{-webkit-animation:animateStripeRTL 2s linear infinite;animation:animateStripeRTL 2s linear infinite}.eael-progressbar-circle-wrap>div{margin:0 auto}.eael-progressbar-box-container.left>div,.eael-progressbar-circle-container.left>div,.eael-progressbar-line-container.left{margin:0 auto 0 0}.eael-progressbar-box-container.center>div,.eael-progressbar-circle-container.center>div,.eael-progressbar-line-container.center{margin:0 auto}.eael-progressbar-box-container.right>div,.eael-progressbar-circle-container.right>div,.eael-progressbar-line-container.right{margin:0 0 0 auto}.eael-team-item{overflow:hidden;position:relative}.team-avatar-rounded figure img{-webkit-border-radius:50%;border-radius:50%;height:auto}.eael-team-image>figure{margin:0;padding:0}.eael-team-image>figure img{display:block;margin:0 auto}.eael-team-item .eael-team-content{padding:10px}.eael-team-item .eael-team-member-name{font-size:20px;font-weight:700;letter-spacing:.05em;margin:5px 0;text-transform:uppercase}.eael-team-item .eael-team-member-position{font-size:14px;font-weight:400;letter-spacing:.05em;margin:5px 0 10px;text-transform:uppercase}.eael-team-item .eael-team-content,.eael-team-item .eael-team-content .eael-team-text{font-size:14px;line-height:1.5}.eael-team-content>ul{margin:0;padding:0}.eael-team-content li{display:inline-block;list-style:outside none none;margin-right:10px;text-align:center}.eael-team-content li a{font-size:2.5rem}.eael-team-align-left .eael-team-item .eael-team-content li,.eael-team-align-left .eael-team-item .eael-team-content p,.eael-team-align-left .eael-team-item .eael-team-content ul,.eael-team-align-left .eael-team-item .eael-team-member-name,.eael-team-align-left .eael-team-item .eael-team-member-position,.eael-team-align-left .eael-team-item .eael-team-text{text-align:left}.eael-team-align-right .eael-team-item .eael-team-content li,.eael-team-align-right .eael-team-item .eael-team-content p,.eael-team-align-right .eael-team-item .eael-team-content ul,.eael-team-align-right .eael-team-item .eael-team-member-name,.eael-team-align-right .eael-team-item .eael-team-member-position,.eael-team-align-right .eael-team-item .eael-team-text{text-align:right}.eael-team-align-centered .eael-team-item .eael-team-content li,.eael-team-align-centered .eael-team-item .eael-team-content p,.eael-team-align-centered .eael-team-item .eael-team-content ul,.eael-team-align-centered .eael-team-item .eael-team-member-name,.eael-team-align-centered .eael-team-item .eael-team-member-position,.eael-team-align-centered .eael-team-item .eael-team-text{text-align:center}.eael-team-item.eael-team-members-overlay .eael-team-content{bottom:10px;left:10px;margin-bottom:0;padding-top:15%;opacity:0;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;position:absolute;right:10px;top:10px;-webkit-transition:all 615ms cubic-bezier(.19,1,.22,1) 0s;-o-transition:all 615ms cubic-bezier(.19,1,.22,1) 0s;transition:all 615ms cubic-bezier(.19,1,.22,1) 0s}.eael-team-item.eael-team-members-overlay:hover .eael-team-content{opacity:1}.eael-team-member-social-link>a{display:inline-block;-webkit-transition:all .3s cubic-bezier(.19,1,.22,1) 0s;-o-transition:all .3s cubic-bezier(.19,1,.22,1) 0s;transition:all .3s cubic-bezier(.19,1,.22,1) 0s}.eael-team-member-social-link>a:focus{outline:0}.eael-testimonial-slider{position:relative}.testimonial-star-rating{padding:0;margin:0}.testimonial-star-rating li{list-style:none;display:inline-block}.testimonial-star-rating li i{color:#d8d8d8}.rating-five .testimonial-star-rating li i{color:#f2b01e}.rating-one .testimonial-star-rating li:first-child i{color:#f2b01e}.rating-two .testimonial-star-rating li:nth-child(1) i,.rating-two .testimonial-star-rating li:nth-child(2) i{color:#f2b01e}.rating-three .testimonial-star-rating li:nth-child(1) i,.rating-three .testimonial-star-rating li:nth-child(2) i,.rating-three .testimonial-star-rating li:nth-child(3) i{color:#f2b01e}.rating-four .testimonial-star-rating li:nth-child(1) i,.rating-four .testimonial-star-rating li:nth-child(2) i,.rating-four .testimonial-star-rating li:nth-child(3) i,.rating-four .testimonial-star-rating li:nth-child(4) i{color:#f2b01e}.eael-testimonial-image img{max-width:100%}.eael-testimonial-image{padding:10px 0 0 0}.eael-testimonial-image>figure{display:block;margin:0}.testimonial-avatar-rounded figure img{-webkit-border-radius:50%;border-radius:50%;height:auto}.eael-testimonial-content{margin:0;padding:10px}.eael-testimonial-item>figure{margin:0 auto;padding:0 20px}.eael-testimonial-item .center-text{text-align:center}.eael-testimonial-item .right-text{text-align:right}.eael-testimonial-item .left-text{text-align:left}.eael-testimonial-item .justify-text{text-align:justify}.eael-testimonial-content .eael-testimonial-text{font-size:100%;font-style:italic;line-height:1.5;margin-top:0;margin-bottom:10px;word-wrap:break-word}.eael-testimonial-content .eael-testimonial-user{display:inline-block;font-family:inherit;font-size:105%;font-style:italic;font-weight:400;line-height:1.5;margin-top:0;margin-bottom:0;margin-right:5px}.eael-testimonial-content .eael-testimonial-user-company{display:inline-block;font-family:inherit;font-size:90%;font-style:italic;font-weight:lighter;line-height:1.75;margin-bottom:0;margin-top:1px}.eael-testimonial-image{position:relative}.eael-testimonial-item .eael-testimonial-quote::after{color:inherit!important;content:"\f10e";font-family:FontAwesome;font-size:200%}.eael-testimonial-slider.default-style .eael-testimonial-align-centered .eael-testimonial-image figure img{margin:0 auto}.eael-testimonial-slider.classic-style .eael-testimonial-align-left .eael-testimonial-image figure img,.eael-testimonial-slider.classic-style .eael-testimonial-align-right .eael-testimonial-image figure img,.eael-testimonial-slider.default-style .eael-testimonial-align-left .eael-testimonial-image figure img,.eael-testimonial-slider.default-style .eael-testimonial-align-right .eael-testimonial-image figure img,.eael-testimonial-slider.middle-style .eael-testimonial-align-left .eael-testimonial-image figure img,.eael-testimonial-slider.middle-style .eael-testimonial-align-right .eael-testimonial-image figure img{margin:0}.eael-testimonial-slider.classic-style .eael-testimonial-align-right .eael-testimonial-image figure,.eael-testimonial-slider.default-style .eael-testimonial-align-right .eael-testimonial-image figure,.eael-testimonial-slider.middle-style .eael-testimonial-align-right .eael-testimonial-image figure{text-align:right}.eael-testimonial-slider.classic-style .eael-testimonial-align-left .eael-testimonial-image figure,.eael-testimonial-slider.default-style .eael-testimonial-align-left .eael-testimonial-image figure,.eael-testimonial-slider.middle-style .eael-testimonial-align-left .eael-testimonial-image figure{text-align:left}.eael-testimonial-slider.classic-style .eael-testimonial-align-right .testimonial-classic-style-content,.eael-testimonial-slider.default-style .eael-testimonial-align-right .default-style-testimonial-content,.eael-testimonial-slider.middle-style .eael-testimonial-align-right .eael-testimonial-text,.eael-testimonial-slider.middle-style .eael-testimonial-align-right .middle-style-content{text-align:right}.eael-testimonial-slider.classic-style .eael-testimonial-align-center .testimonial-classic-style-content,.eael-testimonial-slider.default-style .eael-testimonial-align-center .default-style-testimonial-content,.eael-testimonial-slider.middle-style .eael-testimonial-align-center .eael-testimonial-text,.eael-testimonial-slider.middle-style .eael-testimonial-align-center .middle-style-content{text-align:center}.eael-testimonial-slider.classic-style .eael-testimonial-align-left .testimonial-classic-style-content,.eael-testimonial-slider.default-style .eael-testimonial-align-left .default-style-testimonial-content,.eael-testimonial-slider.middle-style .eael-testimonial-align-left .eael-testimonial-text,.eael-testimonial-slider.middle-style .eael-testimonial-align-left .middle-style-content{text-align:left}.eael-testimonial-slider.icon-img-left-content .eael-testimonial-text>p,.eael-testimonial-slider.icon-img-right-content .eael-testimonial-text>p{margin:0}.icon-img-left-content .eael-testimonial-image{float:left;width:30%}.icon-img-left-content .eael-testimonial-content{float:left;width:70%;text-align:left}.icon-img-left-content.eael-testimonial-item{overflow:hidden;position:relative}.icon-img-left-content .eael-testimonial-quote{position:absolute;right:0}.icon-img-left-content .eael-testimonial-text{margin-top:0}.eael-testimonial-align-centered .eael-testimonial-user,.eael-testimonial-align-centered .eael-testimonial-user-company{float:none;text-align:center}.eael-testimonial-align-centered .eael-testimonial-image>figure img{display:block;margin-left:auto!important;margin-right:auto!important}.icon-img-right-content .eael-testimonial-image{float:right;width:30%}.icon-img-right-content .eael-testimonial-content{float:right;width:70%;text-align:right}.icon-img-right-content.eael-testimonial-item{overflow:hidden;position:relative}.icon-img-right-content .eael-testimonial-quote{position:absolute}.icon-img-right-content .eael-testimonial-text{margin-top:0}.eael-testimonial-item{position:relative}.classic-style.testimonial-alignment-center .eael-testimonial-image,.default-style.testimonial-alignment-center .eael-testimonial-image{text-align:center}.classic-style.testimonial-alignment-right .eael-testimonial-image,.default-style.testimonial-alignment-right .eael-testimonial-image{text-align:right}.classic-style.testimonial-alignment-center .eael-testimonial-image>figure,.default-style.testimonial-alignment-center .eael-testimonial-image>figure{text-align:center}.eael-testimonial-slider.icon-img-left-content .eael-testimonial-align-centered .eael-testimonial-content{text-align:center}.eael-testimonial-slider.icon-img-left-content .eael-testimonial-align-left .eael-testimonial-content{text-align:left}.eael-testimonial-slider.icon-img-left-content .eael-testimonial-align-right .eael-testimonial-content{text-align:right}.eael-testimonial-slider.icon-img-right-content .eael-testimonial-align-centered .eael-testimonial-content{text-align:center}.eael-testimonial-slider.icon-img-right-content .eael-testimonial-align-left .eael-testimonial-content{text-align:left}.eael-testimonial-slider.icon-img-right-content .eael-testimonial-align-right .eael-testimonial-content{text-align:right}span.eael-testimonial-quote{position:absolute;right:10px;top:10px}.eael-testimonial-item.left .eael-testimonial-image{text-align:left}.eael-testimonial-item.center .eael-testimonial-image{text-align:center}.eael-testimonial-item.right .eael-testimonial-image{text-align:right}.eael-testimonial-inline-bio .eael-testimonial-image{float:left}.eael-testimonial-inline-bio .bio-text{padding-top:10px}.eael-testimonial-content.eael-testimonial-inline-bio{overflow:hidden;margin-bottom:0;padding-bottom:0}.eael-testimonial-inline-bio .bio-text,.eael-testimonial-inline-bio .testimonial-star-rating{float:left;width:65%}.eael-testimonial-content.eael-testimonial-inline-bio{text-align:left!important}.testimonial-inline-style .eael-testimonial-image{float:left;max-width:100%;padding:0;margin-right:15px}.testimonial-inline-style{overflow:hidden;text-align:left}.content-top-icon-title-inline .eael-testimonial-align-left .eael-testimonial-text,.content-top-icon-title-inline .eael-testimonial-text{text-align:left}.content-top-icon-title-inline .eael-testimonial-align-centered .eael-testimonial-text{text-align:center}.content-top-icon-title-inline .eael-testimonial-align-right .eael-testimonial-text{text-align:right}.content-bottom-icon-title-inline .eael-testimonial-align-left .eael-testimonial-text,.content-bottom-icon-title-inline .eael-testimonial-text{text-align:left}.content-bottom-icon-title-inline .eael-testimonial-align-centered .eael-testimonial-text{text-align:center}.content-bottom-icon-title-inline .eael-testimonial-align-right .eael-testimonial-text{text-align:right}.eael-tooltip{position:relative;display:inline-block;min-width:150px;text-align:center;padding:12px 24px;font-size:.93rem;color:#333;line-height:1;cursor:pointer;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.eael-tooltip .eael-tooltip-text{display:block;width:100%;visibility:hidden;background-color:#000;color:#fff;text-align:center;-webkit-border-radius:4px;border-radius:4px;padding:10px;position:absolute;z-index:1;font-size:.93rem;line-height:1.3}.eael-tooltip .eael-tooltip-text::after{content:"";position:absolute;border-width:5px;border-style:solid}.eael-tooltip:hover .eael-tooltip-text{visibility:visible}.eael-tooltip .eael-tooltip-text.eael-tooltip-left{top:50%;right:100%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin-right:10px}.eael-tooltip:hover .eael-tooltip-text.eael-tooltip-left{-webkit-animation:tooltipLeftIn .3s ease-in-out;animation:tooltipLeftIn .3s ease-in-out}.eael-tooltip .eael-tooltip-text.eael-tooltip-left::after{top:calc(50% - 5px);left:100%;border-color:transparent transparent transparent #000}.eael-tooltip .eael-tooltip-text.eael-tooltip-right{top:50%;left:100%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out;margin-left:10px}.eael-tooltip:hover .eael-tooltip-text.eael-tooltip-right{-webkit-animation:tooltipRightIn .3s linear;animation:tooltipRightIn .3s linear}.eael-tooltip .eael-tooltip-text.eael-tooltip-right::after{top:calc(50% - 5px);right:100%;border-color:transparent #000 transparent transparent}.eael-tooltip .eael-tooltip-text.eael-tooltip-top{bottom:calc(100%);left:0;right:0;margin:0 auto 10px auto}.eael-tooltip .eael-tooltip-text.eael-tooltip-top::after{margin-top:0;top:100%;left:calc(50% - 5px);border-color:#000 transparent transparent transparent}.eael-tooltip:hover .eael-tooltip-text.eael-tooltip-top{-webkit-animation:tooltipTopIn .3s linear;animation:tooltipTopIn .3s linear}.eael-tooltip .eael-tooltip-text.eael-tooltip-bottom{top:100%;left:0;right:0;margin:10px auto 0 auto}.eael-tooltip .eael-tooltip-text.eael-tooltip-bottom::after{margin-top:0;bottom:100%;left:calc(50% - 5px);border-color:transparent transparent #000 transparent}.eael-tooltip:hover .eael-tooltip-text.eael-tooltip-bottom{-webkit-animation:tooltipBottomIn .3s linear;animation:tooltipBottomIn .3s linear}.eael-tooltip-align-left{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.eael-tooltip-align-right{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}.eael-tooltip-align-center{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.eael-tooltip-align-justify .eael-tooltip{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}@-webkit-keyframes tooltipRightIn{0%{opacity:0;left:105%}100%{opacity:1;left:100%}}@keyframes tooltipRightIn{0%{opacity:0;left:105%}100%{opacity:1;left:100%}}@-webkit-keyframes tooltipLeftIn{0%{opacity:0;right:105%}100%{opacity:1;right:100%}}@keyframes tooltipLeftIn{0%{opacity:0;right:105%}100%{opacity:1;right:100%}}@-webkit-keyframes tooltipTopIn{0%{opacity:0;bottom:110%}100%{opacity:1;bottom:100%}}@keyframes tooltipTopIn{0%{opacity:0;bottom:110%}100%{opacity:1;bottom:100%}}@-webkit-keyframes tooltipBottomIn{0%{opacity:0;top:110%}100%{opacity:1;top:100%}}@keyframes tooltipBottomIn{0%{opacity:0;top:110%}100%{opacity:1;top:100%}}.swiper-container-wrap .swiper-slide .eael-social-feed-element img{width:100%}.eael-social-feed-element.hidden{background-color:red!important}.eael-twitter-feed-container::after,.eael-twitter-feed-container::before,.eael-twitter-feed-wrapper::after,.eael-twitter-feed-wrapper::before{content:"";clear:both}.eael-social-feed-element .pull-left{float:left;margin-right:10px}.eael-social-feed-element .pull-right{margin-left:10px}.eael-social-feed-element img{width:100%;height:auto;border:0;vertical-align:middle;-ms-interpolation-mode:bicubic}.eael-social-feed-element .attachment{vertical-align:middle;-ms-interpolation-mode:bicubic}.eael-social-feed-element a{color:#08c;text-decoration:none}.eael-social-feed-element a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.eael-social-feed-element a:active,.eael-social-feed-element a:hover{outline:0;color:#005580;text-decoration:underline}.eael-social-feed-element small{font-size:85%}.eael-social-feed-element strong{font-weight:700}.eael-social-feed-element em{font-style:italic}.eael-social-feed-element p{margin:0 0 10px}.eael-social-feed-element .media-body>p{margin-bottom:4px;min-height:20px}.eael-social-feed-element p.social-feed-text{margin:0;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;-webkit-line-clamp:5;-webkit-box-orient:vertical}.eael-social-feed-element,.eael-social-feed-element .media-body{overflow:hidden;zoom:1;overflow:visible}.eael-social-feed-element{padding:10px;background:0 0}.eael-social-feed-element .media-body .social-network-icon{margin-top:-3px;margin-right:5px;width:16px}.eael-social-feed-element .media-body div{color:#666;line-height:20px;clear:both}.eael-social-feed-element:first-child{margin-top:0}.eael-social-feed-element .media-object{display:block;width:48px;-webkit-border-radius:50%;border-radius:50%}.eael-social-feed-element .media-heading{margin:0 0 5px}.eael-social-feed-element .media-list{margin-left:0;list-style:none}.eael-social-feed-element .muted{color:#999}.eael-social-feed-element a.muted:focus,.eael-social-feed-element a.muted:hover{color:grey}.eael-social-feed-element{-webkit-transition:.25s;-o-transition:.25s;transition:.25s;-webkit-backface-visibility:hidden;backface-visibility:hidden;margin:-1px;margin-top:25px;color:#333;text-align:left;font-size:14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;line-height:16px}.eael-social-feed-element .eael-content{padding:20px 15px 15px;-webkit-transition:.4s;-o-transition:.4s;transition:.4s;background:#fff}.eael-social-feed-element .social-network-icon{opacity:.7}.eael-social-feed-element .author-title{color:#444;line-height:1.5em;font-weight:500}.media-body .fa-twitter{color:#1da1f2;margin-right:8px}.media-body .fa-facebook{color:#3b5998;margin-right:8px}.text-wrapper p .read-more-link{margin-top:9px;display:block}.eael-social-feed-wrapper{width:100%;height:auto;position:relative;z-index:0}.eael-loading-feed{display:none;position:absolute;width:100%;height:100%;top:0;left:0;bottom:0;right:0}.eael-loading-feed.show-loading{display:block;text-align:center;z-index:10;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-transition:.5s;-o-transition:.5s;transition:.5s}.eael-loading-feed .loader{border:3px solid #f3f3f3;-webkit-border-radius:50%;border-radius:50%;border-top:3px solid #3498db;width:30px;height:30px;-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite;margin:0 auto}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0)}100%{-webkit-transform:rotate(360deg)}}@keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.eael-social-feed-container.list-view .eael-social-feed-element{margin:15px;border:1px solid rgba(0,0,0,.1);background:0 0}.eael-social-feed-container.carousel-view{width:100%;height:auto}.eael-twitter-feed-container.masonry-view .eael-social-feed-element{width:33.33%;margin-top:0;float:left}.eael-social-feed-element .eael-content{border:1px solid rgba(0,0,0,.1)}.eael-social-feed-avatar-circle .eael-social-feed-element .media-object{-webkit-border-radius:50%;border-radius:50%}.eael-social-feed-avatar-square .eael-social-feed-element .media-object{-webkit-border-radius:0;border-radius:0}.eael-social-feed-masonry-col-4 .eael-social-feed-element .social-feed-date .eael-social-feed-masonry-col-4 .eael-social-feed-element .social-feed-date{text-align:left!important}@media only screen and (min-width:768px) and (max-width:992px){.eael-twitter-feed-container.masonry-view .eael-social-feed-element{width:50%!important}}@media only screen and (max-width:480px){.eael-twitter-feed-container.masonry-view .eael-social-feed-element{width:100%!important}}.eael-weform-container input,.eael-weform-container textarea{height:auto;padding:10px}.eael-contact-form-align-center .eael-weform-container,.eael-contact-form-btn-align-center .eael-weform-container ul.wpuf-form .wpuf-submit input[type=submit]{margin-left:auto!important;margin-right:auto!important;display:block;float:none}.eael-contact-form-align-left .eael-weform-container,.eael-contact-form-btn-align-left .eael-weform-container ul.wpuf-form .wpuf-submit input[type=submit]{float:left;width:auto}.eael-contact-form-align-right .eael-weform-container,.eael-contact-form-btn-align-right .eael-weform-container ul.wpuf-form .wpuf-submit input[type=submit]{float:right;width:auto}.eael-weform-container ul.wpuf-form li .wpuf-fields input[type=email],.eael-weform-container ul.wpuf-form li .wpuf-fields input[type=number],.eael-weform-container ul.wpuf-form li .wpuf-fields input[type=password],.eael-weform-container ul.wpuf-form li .wpuf-fields input[type=text],.eael-weform-container ul.wpuf-form li .wpuf-fields input[type=url],.eael-weform-container ul.wpuf-form li .wpuf-fields textarea{max-width:100%}.eael-wpforms .wpforms-container .wpforms-form .wpforms-page-button,.eael-wpforms .wpforms-container .wpforms-form button[type=submit],.eael-wpforms .wpforms-container .wpforms-form input[type=submit]{border:0}.eael-wpforms .wpforms-container .wpforms-form .wpforms-page-button:hover,.eael-wpforms .wpforms-container .wpforms-form button[type=submit]:hover,.eael-wpforms .wpforms-container .wpforms-form input[type=submit]:hover{border:0}.eael-wpforms .wpforms-container .wpforms-form input[type=checkbox],.eael-wpforms .wpforms-container .wpforms-form input[type=radio]{padding:3px}.eael-wpforms .wpforms-container .wpforms-form .wpforms-field-label{display:none}.eael-wpforms .wpforms-container .wpforms-form .wpforms-field-name .wpforms-field-row{max-width:100%}.eael-wpforms .wpforms-container .wpforms-field input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),.eael-wpforms .wpforms-container .wpforms-field select,.eael-wpforms .wpforms-container .wpforms-field textarea{max-width:100%!important}.eael-wpforms-labels-yes .wpforms-container .wpforms-form .wpforms-field-label{display:block}.eael-wpforms-form-button-full-width .wpforms-submit-container .wpforms-submit{width:100%}.eael-adv-accordion{width:auto;height:auto;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.eael-adv-accordion .eael-accordion-list .eael-accordion-header{padding:15px;border:1px solid rgba(0,0,0,.02);font-size:1rem;font-weight:600;line-height:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;cursor:pointer}.eael-adv-accordion .eael-accordion-list .eael-accordion-header .fa-toggle{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);z-index:10;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.eael-adv-accordion .eael-accordion-list .eael-accordion-header.active .fa-toggle{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);z-index:10;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.fa-accordion-icon{display:inline-block;margin-right:10px}.eael-adv-accordion .eael-accordion-list .eael-accordion-content{display:none;border:1px solid #eee;padding:15px;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:1rem;line-height:1.7}.eael-adv-accordion .eael-accordion-list .eael-accordion-content p{margin:0}.eael-adv-accordion .eael-accordion-list .eael-accordion-content.active{display:block}@-webkit-keyframes rotate-90{0%{-webkit-transform:rotateY(0);transform:rotateY(0)}100%{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}}@keyframes rotate-90{0%{-webkit-transform:rotateY(0);transform:rotateY(0)}100%{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}}@-webkit-keyframes fadeIn{0%{opacity:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}100%{opacity:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}}@keyframes fadeIn{0%{opacity:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}100%{opacity:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}}.eael-advance-tabs{display:block}.eael-advance-tabs .eael-tabs-nav>ul{position:relative;padding:0;margin:0;list-style-type:none;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;z-index:1}.eael-advance-tabs .eael-tabs-nav>ul li{position:relative;padding:1em 1.5em;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;text-align:center}.eael-advance-tabs .eael-tabs-nav>ul li:after{content:"";position:absolute;bottom:-10px;left:0;right:0;margin:0 auto;z-index:1;width:0;height:0;border-left:10px solid transparent;border-right:10px solid transparent;border-top:10px solid #444;border-bottom:0;display:none}.eael-advance-tabs.active-caret-on .eael-tabs-nav>ul li.active-default:after,.eael-advance-tabs.active-caret-on .eael-tabs-nav>ul li.active:after{display:none}.eael-advance-tabs .eael-tabs-nav>ul li.active-default:after,.eael-advance-tabs .eael-tabs-nav>ul li.active:after{display:block}.eael-tabs-content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}.eael-advance-tabs .eael-tabs-content>div{display:none;opacity:0}.eael-advance-tabs .eael-tabs-content>div.active,.eael-advance-tabs .eael-tabs-content>div.active-default{display:block;width:100%;padding:1em;opacity:1;-webkit-animation:fadeIn linear .3s;animation:fadeIn linear .3s}.eael-tab-inline-icon li a .fa{margin-right:10px;line-height:1}.eael-tab-top-icon li{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;text-align:center}.eael-tab-top-icon li a{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;text-align:center}.eael-tab-top-icon li .eael-tab-title,.eael-tab-top-icon li .fa{-webkit-box-flex:1;-webkit-flex:1 1 100%;-ms-flex:1 1 100%;flex:1 1 100%;line-height:1}.eael-tab-top-icon li a .eael-tab-title{margin-top:10px}.eael-advance-tabs.eael-tabs-vertical{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto}.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav>ul{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-flow:column wrap;-ms-flex-flow:column wrap;flex-flow:column wrap}.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav>ul>li{width:100%;-webkit-box-pack:start;-webkit-justify-content:start;-ms-flex-pack:start;justify-content:start}.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav>ul li::after{bottom:auto!important;right:-10px;top:calc(50% - 10px);left:auto!important;border-left:10px solid #444;border-right:0;border-top:10px solid transparent;border-bottom:10px solid transparent}@media only screen and (max-width:767px){.eael-advance-tabs .eael-tabs-nav>ul{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.eael-advance-tabs .eael-tabs-nav>ul li{-webkit-box-flex:1;-webkit-flex:1 100%;-ms-flex:1 100%;flex:1 100%}.eael-advance-tabs.eael-tabs-vertical{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.eael-advance-tabs.eael-tabs-vertical div.eael-tabs-nav{-webkit-box-flex:1;-webkit-flex:1 100%;-ms-flex:1 100%;flex:1 100%}.eael-advance-tabs.eael-tabs-vertical ul{-webkit-box-flex:1;-webkit-flex:1 100%;-ms-flex:1 100%;flex:1 100%}.eael-advance-tabs.eael-tabs-vertical ul li{-webkit-box-flex:1;-webkit-flex:1 100%;-ms-flex:1 100%;flex:1 100%}div.eael-advance-tabs.eael-tabs-vertical div.eael-tabs-nav>ul li::after{border-left-color:transparent!important;bottom:-20px!important;left:0!important;right:0!important;top:auto!important;border-left:10px solid transparent;border-right:10px solid transparent;border-top-color:#444!important}}.eael-caldera-form-align-left,.eael-caldera-form-btn-align-left{text-align:left}.eael-caldera-form-align-right,.eael-caldera-form-btn-align-right{text-align:right}.eael-caldera-form-align-center,.eael-caldera-form-btn-align-center{text-align:center}.eael-caldera-form .control-label{display:none}.eael-caldera-form-labels-yes .control-label{display:block}.eael-caldera-form-button-center .form-group input[type=button],.eael-caldera-form-button-center .form-group input[type=submit]{display:block;margin:0 auto}.eael-caldera-form-button-right .form-group input[type=button],.eael-caldera-form-button-right .form-group input[type=submit]{float:right}.eael-caldera-form .intl-tel-input{display:inherit}.eael-custom-radio-checkbox .caldera-grid input[type=checkbox],.eael-custom-radio-checkbox .caldera-grid input[type=radio]{border-style:solid;border-width:0;padding:3px;-webkit-appearance:none}.eael-caldera-form-button-full-width .form-group input[type=button],.eael-caldera-form-button-full-width .form-group input[type=submit]{width:100%}.eael-call-to-action{width:100%;height:auto;display:block;padding:30px;font-size:16px;color:#4d4d4d;font-weight:400;line-height:27px;margin:0 auto}.eael-call-to-action p{margin-bottom:10px}.eael-call-to-action .title{font-size:36px;font-weight:600;line-height:36px;margin-bottom:10px;text-transform:capitalize;font-style:normal}.eael-call-to-action.cta-center{text-align:center}.eael-call-to-action.cta-right{text-align:right}.eael-call-to-action.cta-left{text-align:left}.eael-call-to-action.bg-lite{background:#f4f4f4}.eael-call-to-action.bg-img{background-image:url(../img/bg.jpg);background-repeat:no-repeat;background-position:center;-webkit-background-size:cover;background-size:cover;position:relative;z-index:0;color:rgba(255,255,255,.7)}.eael-call-to-action.bg-img .icon{color:#fff}.eael-call-to-action.bg-img:after{content:"";position:absolute;width:100%;height:100%;top:0;left:0;z-index:-1;background:rgba(0,0,0,.8)}.eael-call-to-action.bg-img.bg-fixed{background-attachment:fixed;background-position:center center}.eael-call-to-action.bg-img .title{color:rgba(255,255,255,.9)}.eael-call-to-action.cta-flex,.eael-call-to-action.cta-icon-flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}.eael-call-to-action.cta-icon-flex .icon{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;font-size:80px;text-align:left;line-height:130px}.eael-call-to-action.cta-icon-flex .action{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;text-align:right;padding-top:22px;-webkit-flex-basis:22%;-ms-flex-preferred-size:22%;flex-basis:22%}.eael-call-to-action.cta-icon-flex .content{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;padding:0 30px}.eael-call-to-action.cta-flex .content{padding:0 15px;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.eael-call-to-action.cta-flex .action{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;text-align:right;padding-top:25px;-webkit-flex-basis:23%;-ms-flex-preferred-size:23%;flex-basis:23%}.eael-call-to-action .cta-button{position:relative;display:inline-block;padding:12px 30px;background:#f9f9f9;font-size:16px;text-decoration:none;color:#4d4d4d;-webkit-transition:.5s;-o-transition:.5s;transition:.5s;-webkit-box-shadow:0 0 3px -1px rgba(0,0,0,.2);-ms-box-shadow:0 0 3px -1px rgba(0,0,0,.2);box-shadow:0 0 3px -1px rgba(0,0,0,.2);margin-right:10px;margin-top:10px;z-index:0;overflow:hidden}.eael-call-to-action .cta-button:last-child{margin-right:0}.eael-call-to-action .cta-button:focus{outline:0}.eael-call-to-action .cta-button:hover{color:#fff;background:#3f51b5;-webkit-box-shadow:0 1px 12px 1px rgba(0,0,0,.1);-ms-box-shadow:0 1px 12px 1px rgba(0,0,0,.1);box-shadow:0 1px 12px 1px rgba(0,0,0,.1)}.eael-call-to-action .cta-button.effect-1:after{content:"";position:absolute;width:100%;height:100%;background:#3f51b5;top:0;left:0;transform:translateY(-100%);-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);z-index:-1;-webkit-transition:.5s;-o-transition:.5s;transition:.5s;color:#fff}.eael-call-to-action .cta-button.effect-1:hover::after{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-call-to-action .cta-button.effect-2:after{content:"";position:absolute;width:100%;height:100%;background:#3f51b5;top:0;left:0;z-index:-1;-webkit-transition:.5s;-o-transition:.5s;transition:.5s;color:#fff;-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%)}.eael-call-to-action .cta-button.effect-2:hover::after{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}@media only screen and (max-width:768px){.eael-call-to-action.cta-flex,.eael-call-to-action.cta-icon-flex{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.eael-call-to-action .title{font-size:28px;line-height:36px;margin-top:0}.eael-call-to-action.cta-icon-flex .icon{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;font-size:48px;line-height:90px;text-align:center}.eael-call-to-action.cta-flex .content,.eael-call-to-action.cta-icon-flex .content{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;text-align:center;padding:0}.eael-call-to-action.cta-flex .action,.eael-call-to-action.cta-icon-flex .action{text-align:center;padding-top:0}.eael-call-to-action .cta-button{padding:12px 25px}}@media only screen and (max-width:360px){.eael-call-to-action{font-size:14px;line-height:26px}.eael-call-to-action .cta-button{padding:4px 20px;font-size:12px}.eael-call-to-action .title{font-size:20px;line-height:30px}}@-webkit-keyframes loaderSpin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes loaderSpin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.eael-load-more-button-wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.eael-load-more-button{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding:1em 2em;border:0 solid;font-size:16px;overflow:hidden}.eael-load-more-button .button__loader{left:-100%;top:auto;margin-right:5px;-webkit-transition:all .2s;-o-transition:all .2s;transition:all .2s}.eael-load-more-button>span{margin-left:-20px}.eael-load-more-button.button--loading>span{margin-left:0}.eael-load-more-button.button--loading .button__loader{left:0}.eael-btn-loader{-webkit-border-radius:50%;border-radius:50%;width:20px;height:20px;font-size:10px;position:relative;text-indent:-9999em;border-top:4px solid rgba(255,255,255,.2);border-right:4px solid rgba(255,255,255,.2);border-bottom:4px solid rgba(255,255,255,.2);border-left:4px solid #fff;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-animation:loaderSpin 1.1s infinite linear;animation:loaderSpin 1.1s infinite linear}.eael-btn-loader:after{-webkit-border-radius:50%;border-radius:50%;width:20px;height:20px}.eael-contact-form-7.eael-contact-form-btn-align-center input.wpcf7-submit,.eael-contact-form.eael-contact-form-align-center{margin-left:auto!important;margin-right:auto!important;display:block;float:none}.eael-contact-form-7.eael-contact-form-btn-align-left input.wpcf7-submit,.eael-contact-form.eael-contact-form-align-left{float:left;width:auto}.eael-contact-form-7.eael-contact-form-btn-align-right input.wpcf7-submit,.eael-contact-form.eael-contact-form-align-right{float:right;width:auto}.eael-contact-form-7 .uneditable-input,.eael-contact-form-7 input[type=color],.eael-contact-form-7 input[type=date],.eael-contact-form-7 input[type=datetime-local],.eael-contact-form-7 input[type=datetime],.eael-contact-form-7 input[type=email],.eael-contact-form-7 input[type=month],.eael-contact-form-7 input[type=number],.eael-contact-form-7 input[type=password],.eael-contact-form-7 input[type=search],.eael-contact-form-7 input[type=tel],.eael-contact-form-7 input[type=text],.eael-contact-form-7 input[type=time],.eael-contact-form-7 input[type=url],.eael-contact-form-7 input[type=week],.eael-contact-form-7 textarea{-webkit-transition:border linear .2s,box-shadow linear .2s;-webkit-transition:border linear .2s,-webkit-box-shadow linear .2s;transition:border linear .2s,-webkit-box-shadow linear .2s;-o-transition:border linear .2s,box-shadow linear .2s;transition:border linear .2s,box-shadow linear .2s;transition:border linear .2s,box-shadow linear .2s,-webkit-box-shadow linear .2s}.eael-contact-form-7 .wpcf7-form::after,.eael-contact-form-7 .wpcf7-form::before{content:" ";clear:both;display:table}.eael-contact-form-7 .wpcf7-form:after{clear:both;content:"";font-size:0;height:0;display:block;visibility:hidden}.eael-contact-form-7 .wpcf7-form .wpcf7-form-control-wrap,.eael-contact-form-7 .wpcf7-form label{display:block}.eael-contact-form-7 .wpcf7-form p{margin-bottom:0}.eael-contact-form-7.labels-hide .wpcf7-form label{display:none}.eael-contact-form-7-title{margin-bottom:10px}.eael-contact-form-7-description{margin-bottom:20px}.eael-contact-form-7-button-full-width .wpcf7-form-control.wpcf7-submit{width:100%}.eael-contact-form-7-wrapper .eael-contact-form-align-center form{margin:0 auto}.eael-ticker-wrap{overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row nowrap;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;width:100%}.eael-ticker-wrap .ticker-badge{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;padding:8px 12px}.eael-ticker-wrap .eael-ticker{overflow:hidden;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}.eael-ticker-wrap .eael-ticker .ticker-content{padding:8px 12px;line-height:1.8}.eael-ticker-wrap .eael-ticker .ticker-content p{margin:0}.eael-ticker-wrap .swiper-button-prev{left:auto!important;right:25px}.eael-ticker-wrap div.swiper-slide,.eael-ticker-wrap div.swiper-slide.swiper-slide-next,.eael-ticker-wrap div.swiper-slide.swiper-slide-prev{opacity:0!important}.eael-ticker-wrap div.swiper-slide.swiper-slide-active{opacity:1!important}.eael-ticker-wrap .eael-content-ticker.swiper-container .swiper-slide{text-align:left}@media only screen and (max-width:767px){.eael-ticker-wrap{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap}.content-ticker-pagination{display:none}}.eael-countdown-items{list-style:none;margin:0;padding:0;display:table;table-layout:fixed;width:100%}.eael-countdown-items>li{list-style:none;margin:0;padding:0;display:table-cell;position:relative}.eael-countdown-item>div{text-align:center;padding:20px}.eael-countdown-label-block .eael-countdown-digits,.eael-countdown-label-block .eael-countdown-label{display:block;text-align:center}.eael-countdown-digits{font-size:54px;line-height:1}.eael-countdown-label{font-size:18px;line-height:1;color:#fff}.eael-countdown-show-separator .eael-countdown-digits::after{content:":";position:absolute;left:98%;z-index:9999}.eael-countdown-item:last-child .eael-countdown-digits::after{display:none}.eael-countdown-items.style-1 .eael-countdown-item>div{background:#262625}.eael-creative-button-align-center{text-align:center}.eael-creative-button-wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.eael-creative-button{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;min-width:150px;text-align:center;vertical-align:middle;position:relative;z-index:1;-webkit-border-radius:2px;border-radius:2px;padding:20px 30px;font-size:16px;line-height:1;-webkit-backface-visibility:hidden;backface-visibility:hidden;-moz-osx-font-smoothing:grayscale}.eael-creative-button-align-center .eael-creative-button{float:none;display:inline-block}.eael-creative-button:focus{outline:0}.eael-creative-button>span{vertical-align:middle}.eael-creative-button--winona{overflow:hidden;padding:0!important;-webkit-transition:border-color .3s,background-color .3s;-o-transition:border-color .3s,background-color .3s;transition:border-color .3s,background-color .3s;-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--winona::after{content:attr(data-text);position:absolute;width:100%;height:100%;top:0;left:0;opacity:0;-webkit-transform:translate3d(0,25%,0);transform:translate3d(0,25%,0)}.eael-creative-button--winona>span{display:block}.eael-creative-button--winona::after,.eael-creative-button--winona>span{padding:1em 2em;-webkit-transition:-webkit-transform .3s,opacity .3s;-webkit-transition:opacity .3s,-webkit-transform .3s;transition:opacity .3s,-webkit-transform .3s;-o-transition:transform .3s,opacity .3s;transition:transform .3s,opacity .3s;transition:transform .3s,opacity .3s,-webkit-transform .3s;-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--winona:hover::after{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.eael-creative-button--winona:hover>span{opacity:0;-webkit-transform:translate3d(0,-25%,0);transform:translate3d(0,-25%,0)}.eael-creative-button--ujarak{-webkit-transition:border-color .4s,color .4s;-o-transition:border-color .4s,color .4s;transition:border-color .4s,color .4s}.eael-creative-button--ujarak::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1;opacity:0;-webkit-transform:scale3d(.7,1,1);transform:scale3d(.7,1,1);-webkit-transition:-webkit-transform .4s,opacity .4s;-webkit-transition:opacity .4s,-webkit-transform .4s;transition:opacity .4s,-webkit-transform .4s;-o-transition:transform .4s,opacity .4s;transition:transform .4s,opacity .4s;transition:transform .4s,opacity .4s,-webkit-transform .4s;-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--ujarak,.eael-creative-button--ujarak::before{-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--ujarak:hover::before{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.eael-creative-button--wayra{overflow:hidden;-webkit-transition:border-color .3s,color .3s;-o-transition:border-color .3s,color .3s;transition:border-color .3s,color .3s;-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--wayra::before{content:'';position:absolute;top:0;left:0;width:150%;height:100%;z-index:-1;-webkit-transform:rotate3d(0,0,1,-45deg) translate3d(0,-3em,0);transform:rotate3d(0,0,1,-45deg) translate3d(0,-3em,0);-webkit-transform-origin:0 100%;-ms-transform-origin:0 100%;transform-origin:0 100%;-webkit-transition:-webkit-transform .3s,opacity .3s,background-color .3s;-webkit-transition:opacity .3s,background-color .3s,-webkit-transform .3s;transition:opacity .3s,background-color .3s,-webkit-transform .3s;-o-transition:transform .3s,opacity .3s,background-color .3s;transition:transform .3s,opacity .3s,background-color .3s;transition:transform .3s,opacity .3s,background-color .3s,-webkit-transform .3s}.eael-creative-button--wayra:hover::before{opacity:1;-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg);-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--tamaya{overflow:hidden}.eael-creative-button--tamaya::after,.eael-creative-button--tamaya::before{content:attr(data-text);position:absolute;width:100%;height:50%;left:0;overflow:hidden;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;-o-transition:transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--tamaya::before{top:0;padding:20px 30px}.eael-creative-button--tamaya::after{bottom:0;line-height:0}.eael-creative-button--tamaya:hover::after{bottom:-1px}.eael-creative-button--tamaya>span{display:block;-webkit-transform:scale3d(.2,.2,1);transform:scale3d(.2,.2,1);opacity:0;-webkit-transition:-webkit-transform .3s,opacity .3s;-webkit-transition:opacity .3s,-webkit-transform .3s;transition:opacity .3s,-webkit-transform .3s;-o-transition:transform .3s,opacity .3s;transition:transform .3s,opacity .3s;transition:transform .3s,opacity .3s,-webkit-transform .3s;-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--tamaya:hover::before{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.eael-creative-button--tamaya:hover::after{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.eael-creative-button--tamaya:hover>span{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}.eael-creative-button--rayen{overflow:hidden;padding:0!important}.eael-creative-button--rayen::before{content:attr(data-text);position:absolute;top:0;left:0;width:100%;height:100%;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.eael-creative-button--rayen>span{display:block}.eael-creative-button--rayen::before,.eael-creative-button--rayen>span{padding:1em 2em;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;-o-transition:transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;-webkit-transition-timing-function:cubic-bezier(.75,0,.125,1);-o-transition-timing-function:cubic-bezier(.75,0,.125,1);transition-timing-function:cubic-bezier(.75,0,.125,1)}.eael-creative-button--rayen:hover::before{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.eael-creative-button--rayen:hover>span{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}table.eael-data-table thead .sorting,table.eael-data-table thead .sorting_asc,table.eael-data-table thead .sorting_desc{position:relative;z-index:0;outline:0;cursor:pointer}table.eael-data-table thead .sorting:after,table.eael-data-table thead .sorting_asc:after,table.eael-data-table thead .sorting_desc:after{position:absolute;top:50%;right:10px;font-family:FontAwesome;color:#fff;z-index:1;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.eael-data-table-wrap .eael-data-tables_wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;width:100%}.eael-data-table-wrap .eael-data-tables_filter{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;text-align:right}.eael-data-table-wrap .eael-data-tables_filter label{font-weight:700}.eael-data-table-wrap .eael-data-tables_filter label input[type=search]{height:40px;border:1px solid rgba(0,0,0,.09);outline:0;padding:10px;margin-left:10px}.eael-data-table-wrap .eael-data-tables_length{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%}.eael-data-table-wrap .eael-data-tables_length select{width:auto;max-width:120px;height:40px;border:1px solid rgba(0,0,0,.09);outline:0;margin-left:10px;margin-right:10px}.eael-data-table-wrap .eael-data-tables_length label{font-weight:700}.eael-data-table-wrap .eael-data-tables_info{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;font-weight:700}.eael-data-table-wrap .eael-data-tables_paginate{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;text-align:right}.eael-data-table-wrap .eael-data-tables_paginate .paginate_button{padding:10px 15px;background:#f2f2f2;margin-right:2px;cursor:pointer;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.eael-data-table-wrap .eael-data-tables_paginate .paginate_button:hover{color:#fff;background:#4a4893}.eael-data-table-wrap .eael-data-tables_paginate .paginate_button.current{color:#fff;background:#4a4893}.eael-data-table-wrap .eael-data-tables_paginate .paginate_button.disabled{cursor:no-drop;background:#f2f2f2;opacity:.5;color:#888}.data-header-icon{margin-right:10px}.eael-data-table{width:100%;height:auto;margin:0;border-collapse:collapse;border:none}.eael-data-table tr{border-style:none}.eael-data-table thead tr{text-align:left}.eael-data-table thead tr th{padding:20px 15px;background:#4a4893;font-size:16px;font-weight:600;font-family:Montserrat,sans-serif;line-height:1;color:#fff;border-color:#000;border-width:2px;border-style:none;background-clip:padding-box}.eael-data-table thead tr th:hover{border-color:#000}.eael-data-table tbody tr.even{-webkit-transition:background .4s ease-in-out;-o-transition:background .4s ease-in-out;transition:background .4s ease-in-out}.eael-data-table tbody tr.even:hover{background:rgba(242,242,242,.7)}.eael-data-table tbody tr.even:last-child{border-bottom:1px solid rgba(0,0,0,.09)}.eael-data-table tbody tr.odd{background:rgba(242,242,242,.5);-webkit-transition:background .2s ease-in-out;-o-transition:background .2s ease-in-out;transition:background .2s ease-in-out}.eael-data-table tbody tr.odd:hover{background:rgba(242,242,242,.7)}.eael-data-table tbody tr.odd:last-child{border-bottom:1px solid rgba(0,0,0,.09)}.eael-data-table tbody tr td{padding:20px 15px;font-size:14px;font-family:Montserrat,sans-serif;line-height:1;border-width:2px;border-style:none;background-clip:padding-box}.eael-data-table-th-img{display:inline-block;margin:0 15px 0 0;line-height:1}.th-mobile-screen{display:none}@media (max-width:39.9375em){.eael-data-table-wrap{overflow-x:scroll!important;padding-bottom:5px}.th-mobile-screen{display:inline-block;padding:0 .6em;margin-right:10px;text-align:center;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-flex-basis:100px;-ms-flex-preferred-size:100px;flex-basis:100px}.th-mobile-screen .eael-data-table-th-img{margin:0 auto 15px auto;display:block}.th-mobile-screen .data-header-icon{margin:0 auto 15px auto;display:block}.td-content-wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%}.td-content{width:100%;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.td-content>p{width:100%;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.custom-responsive-option-enable .eael-data-table thead{display:none}.custom-responsive-option-enable .eael-data-table tbody tr td{float:none;clear:left;width:100%;text-align:left;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.eael-data-table .td-content{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}}table.eael-data-table thead .sorting:after{content:"\f0dc"}table.eael-data-table thead .headerSortDown:after{content:"\f0dd"}table.eael-data-table thead .headerSortUp:after{content:"\f0de"}table.eael-data-table thead .sorting_disabled.sorting:after{display:none}table.eael-data-table .sorting.sorting-none:after{display:none}table.eael-data-table .sorting_desc.sorting-none:after{display:none}table.eael-data-table .sorting_asc.sorting-none:after{display:none}.eael-table-align-left table.eael-data-table{float:left}.eael-table-align-center table.eael-data-table{margin:0 auto}.eael-table-align-right table.eael-data-table{float:right}.eael-hide-elements .eael-data-tables_info{display:none}.eael-dt-th-align-left .eael-data-table thead tr th{text-align:left}.eael-dt-td-align-left .eael-data-table tbody tr td{text-align:left}.eael-dt-th-align-right .eael-data-table thead tr th{text-align:right;padding-right:30px}.eael-dt-td-align-right .eael-data-table tbody tr td{text-align:right;padding-right:30px}.eael-dt-th-align-center .eael-data-table thead tr th{text-align:center}.eael-dt-td-align-center .eael-data-table tbody tr td{text-align:center}.eael-dual-header{display:block;margin-bottom:50px}.eael-dual-header .title,.eael-dual-header .title span{font-size:36px;font-weight:700;text-transform:uppercase;line-height:48px;margin:10px 0}.eael-dual-header .subtext{font-size:16px;display:block}.eael-dual-header i{display:block;padding:0;margin:20px 0 10px 0;font-size:36px}.eael-dual-header .title span.lead{color:#1abc9c}.eael-dual-header-content-align-center{text-align:center}.eael-dual-header-content-align-left{text-align:left}.eael-dual-header-content-align-right{text-align:right}.elementor-panel .pro-feature,.elementor-panel .pro-feature a{color:#a4afb7;text-transform:uppercase;letter-spacing:1px;line-height:1.8;font-style:normal}.elementor-panel .pro-feature a{text-decoration:underline;color:#f54!important}.elementor-control-data_table_content_colspan_pro_alert .elementor-control-title,.elementor-control-data_table_content_rowspan_pro_alert .elementor-control-title,.elementor-control-data_table_content_template_pro_alert .elementor-control-title,.elementor-control-data_table_header_colspan_pro_alert .elementor-control-title,.elementor-control-data_table_header_img_pro_alert .elementor-control-title,.elementor-panel .elementor-control-eael_section_pro .elementor-panel-heading-title.elementor-panel-heading-title,.elementor-panel .elementor-control-eael_section_pro .elementor-panel-heading-toggle{color:#f54}.elementor-panel .elementor-control-eael_control_get_pro .elementor-control-field{display:none!important}.elementor-control-eael_fancy_text_style_pro_alert .elementor-control-title,.elementor-control-eael_img_accordion_type_pro_alert .elementor-control-title,.elementor-control-eael_pricing_table_style_pro_alert .elementor-control-title,.elementor-control-eael_section_countdown_style_pro_alert .elementor-control-title,.elementor-control-eael_section_data_table_enabled_pro_alert .elementor-control-title,.elementor-control-eael_team_members_preset_pro_alert .elementor-control-title,.elementor-control-eael_ticker_type_pro_alert .elementor-control-title{color:#f54}.eael-fancy-text-container p{margin:0}.eael-fancy-text-prefix,.eael-fancy-text-strings,.eael-fancy-text-suffix{display:inline-block}.morphext>.animated{display:inline-block}.typed-cursor{opacity:1;-webkit-animation:blink_cursor .7s infinite;animation:blink_cursor .7s infinite}@keyframes blink_cursor{0%{opacity:1}50%{opacity:0}100%{opacity:1}}@-webkit-keyframes blink_cursor{0%{opacity:1}50%{opacity:0}100%{opacity:1}}.eael-fancy-text-container.style-2{font-size:24px}.eael-fancy-text-container.style-2 .eael-fancy-text-strings{background:#f54;color:#fff;padding:10px 25px}.elementor-widget-eael-feature-list.-icon-position-left .connector-type-modern.rhombus .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right .connector-type-modern.rhombus .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top .connector-type-modern.rhombus .eael-feature-list-item:before{top:3px!important}.elementor-widget-eael-feature-list.-icon-position-left .connector-type-modern.rhombus .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right .connector-type-modern.rhombus .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top .connector-type-modern.rhombus .eael-feature-list-item:after{top:45px!important}.elementor-widget-eael-feature-list.-icon-position-right .connector,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .connector{right:0;left:calc(100% - 60px)}.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 50px 0 0}@media (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 30px 0 0}}.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{left:auto;right:0}.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:auto;right:5px;top:30px}.elementor-widget-eael-feature-list .eael-feature-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item{position:relative}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .connector{display:block;position:absolute;width:0;margin:0 auto;z-index:1;height:100%;top:.5em;font-size:60px;left:0;right:calc(100% - 60px);border-left:2px solid #2ecc71;border-right:none!important}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item:last-child .connector{display:none}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box{z-index:2;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}@media (prefers-reduced-motion:reduce){.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box{-webkit-transition:none;-o-transition:none;transition:none}}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon-inner{background-color:#37368e;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex}@media (prefers-reduced-motion:reduce){.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon-inner{-webkit-transition:none;-o-transition:none;transition:none}}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon{padding:.5em;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s;font-size:30px;line-height:1;color:#37368e;text-align:center;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex}@media (prefers-reduced-motion:reduce){.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon{-webkit-transition:none;-o-transition:none;transition:none}}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon i{width:1em;height:1em;position:relative;display:block}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon i:before{position:absolute;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-img{font-size:8px;line-height:1;max-width:inherit}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-content-box{margin:0 0 0 20px}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-content-box .eael-feature-list-title{margin-top:-2px;line-height:1.5em}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-content-box .eael-feature-list-content{padding:0;margin:0;font-size:14px;line-height:1.5em}.elementor-widget-eael-feature-list .eael-feature-list-items.stacked .eael-feature-list-icon-box .eael-feature-list-icon{color:#fff}.elementor-widget-eael-feature-list .eael-feature-list-items.framed .eael-feature-list-icon-box .eael-feature-list-icon{background-color:#fff}.elementor-widget-eael-feature-list .eael-feature-list-items.circle .eael-feature-list-icon-box .eael-feature-list-icon-inner{-webkit-border-radius:50%;border-radius:50%}.elementor-widget-eael-feature-list .eael-feature-list-items.circle .eael-feature-list-icon-box .eael-feature-list-icon-inner .eael-feature-list-icon{-webkit-border-radius:50%;border-radius:50%}.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-icon-box .eael-feature-list-icon-inner{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);margin:15px}.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-icon-box .eael-feature-list-icon i{-ms-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-icon-box .eael-feature-list-icon img{-ms-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-content-box .eael-feature-list-title{margin-top:15px}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 50px;position:relative}@media (max-width:767px){.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 30px;display:block}}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{content:"";position:absolute;display:block}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{left:0;top:0;z-index:1;border-left:1px solid #000;border-right:none!important;height:100%}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:5px;top:30px;width:23px;display:block;z-index:2;border-bottom:1px dashed #000;border-top:none!important}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item .connector{display:none}@media (min-width:768px){.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern.-icon-position-right .eael-feature-list-item{padding:0 50px 0 0}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern.-icon-position-right .eael-feature-list-item:before{left:auto;right:0}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern.-icon-position-right .eael-feature-list-item:after{left:auto;right:5px;top:30px}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern.-icon-position-right .eael-feature-list-item .connector{display:none}}@media (min-width:1025px){.elementor-widget-eael-feature-list.-icon-position-left .eael-feature-list-content-box{margin-right:0!important;margin-top:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-content-box{margin-left:0!important;margin-top:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-top .eael-feature-list-content-box{margin-left:0!important;margin-right:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-left .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.elementor-widget-eael-feature-list.-icon-position-left .eael-feature-list-item{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-item{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media (max-width:1024px){.elementor-widget-eael-feature-list.-tablet-icon-position-left .eael-feature-list-item,.elementor-widget-eael-feature-list.-tablet-icon-position-right .eael-feature-list-item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.elementor-widget-eael-feature-list.-tablet-icon-position-left .eael-feature-list-item{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.elementor-widget-eael-feature-list.-tablet-icon-position-right .eael-feature-list-item{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media (min-width:768px) and (max-width:1024px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left .eael-feature-list-content-box{margin-right:0!important;margin-top:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 50px}}@media (min-width:768px) and (max-width:1024px) and (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 30px}}@media (min-width:768px) and (max-width:1024px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{left:0;right:auto}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:5px;top:30px}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top .eael-feature-list-content-box{margin-left:0!important;margin-right:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 50px}}@media (min-width:768px) and (max-width:1024px) and (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 30px}}@media (min-width:768px) and (max-width:1024px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{left:0;right:auto}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:5px}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right .eael-feature-list-content-box{margin-left:0!important;margin-top:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 50px 0 0}}@media (min-width:768px) and (max-width:1024px) and (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 30px 0 0}}@media (min-width:768px) and (max-width:1024px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{right:0;left:auto}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:auto;right:5px}}@media (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-item,.elementor-widget-eael-feature-list.-tablet-icon-position-left .eael-feature-list-item,.elementor-widget-eael-feature-list.-tablet-icon-position-right .eael-feature-list-item{display:block;text-align:left}.elementor-widget-eael-feature-list.-mobile-icon-position-left .eael-feature-list-item,.elementor-widget-eael-feature-list.-mobile-icon-position-right .eael-feature-list-item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.elementor-widget-eael-feature-list.-mobile-icon-position-left .eael-feature-list-item{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.elementor-widget-eael-feature-list.-mobile-icon-position-right .eael-feature-list-item{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-content-box{margin-right:0!important;margin-top:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 50px}}@media (max-width:767px) and (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 30px}}@media (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{left:0;right:auto}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:5px}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-content-box{margin-left:0!important;margin-right:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 50px}}@media (max-width:767px) and (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 30px}}@media (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{left:0;right:auto}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:5px}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-content-box{margin-left:0!important;margin-top:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 50px 0 0}}@media (max-width:767px) and (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 30px 0 0}}@media (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{right:0;left:auto}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:auto;right:5px}}.eael-filter-gallery-control{width:100%}.eael-filter-gallery-control ul,.eael-filter-gallery-control ul li{text-align:center}.eael-filter-gallery-control ul{margin:0 0 20px 0;padding:0;text-align:center}.eael-filter-gallery-control{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-flow:1 1 auto;-ms-flex-flow:1 1 auto;flex-flow:1 1 auto;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;padding:0;margin:0}.eael-filter-gallery-control ul li{list-style:none;font-size:24px;display:inline-block;text-align:center}.eael-filter-gallery-control ul li a.control{font-family:Montserrat,sans-serif;font-size:16px;font-weight:600;padding:10px 25px;margin:10px 6px}.eael-filter-gallery-container{text-align:justify;font-size:.1px}.eael-filter-gallery-container:after{content:'';display:inline-block;width:100%}.eael-filter-gallery-container:not(.eael-cards) .item:before{content:'';display:inline-block;padding-top:56.25%}.eael-filter-gallery-container .item .caption{position:absolute;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-flow:1 1 100%;-ms-flex-flow:1 1 100%;flex-flow:1 1 100%;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;z-index:1;top:0;left:0;right:0;bottom:0;-webkit-transition:-webkit-transform .4s;transition:-webkit-transform .4s;-o-transition:transform .4s;transition:transform .4s;transition:transform .4s,-webkit-transform .4s}.eael-filter-gallery-container.eael-cards .item .caption{display:none}.eael-filter-gallery-container.eael-cards .item .item-img .caption{position:absolute;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-flow:1 1 100%;-ms-flex-flow:1 1 100%;flex-flow:1 1 100%;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;z-index:10;top:0;left:0;right:0;bottom:0;-webkit-transition:-webkit-transform .4s;transition:-webkit-transform .4s;-o-transition:transform .4s;transition:transform .4s;transition:transform .4s,-webkit-transform .4s}.gallery-item-caption-over{width:100%;height:auto}a.eael-gallery-load-more,a.eael-gallery-load-more:hover{text-decoration:none}.eael-filter-gallery-container .item .caption.eael-zoom-in,.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-zoom-in{-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0)}.eael-filter-gallery-container .item:hover .caption.eael-zoom-in,.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-zoom-in{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.eael-filter-gallery-container .item .caption.eael-slide-left,.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-left{-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%)}.eael-filter-gallery-container .item:hover .caption.eael-slide-left,.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-left{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}.eael-filter-gallery-container .item .caption.eael-slide-right,.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-right{-webkit-transform:translateX(100%);-ms-transform:translateX(100%);transform:translateX(100%)}.eael-filter-gallery-container .item:hover .caption.eael-slide-right,.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-right{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}.eael-filter-gallery-container .item .caption.eael-slide-top,.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-top{-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}.eael-filter-gallery-container .item:hover .caption.eael-slide-top,.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-top{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-filter-gallery-container .item .caption.eael-slide-bottom,.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-bottom{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%)}.eael-filter-gallery-container .item:hover .caption.eael-slide-bottom,.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-bottom{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-filter-gallery-container .item .caption a{display:inline-block;width:50px;height:50px;text-align:center;line-height:50px;-webkit-border-radius:50%;border-radius:50%;margin:0 5px;font-size:20px;cursor:pointer;-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.eael-container .item .caption a:nth-child(2),.eael-filter-gallery-container .item .caption a:nth-child(1){-webkit-transition:.6s;-o-transition:.6s;transition:.6s;opacity:0}.eael-filter-gallery-container .item .caption a:nth-child(1){-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}.eael-filter-gallery-container .item .caption a:nth-child(2){-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%)}.eael-filter-gallery-container .item .caption:hover a:nth-child(1),.eael-filter-gallery-container .item .caption:hover a:nth-child(2){-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:1}.eael-filter-gallery-container .item .caption .eael-popup-link{outline:0}.eael-filter-gallery-container.eael-cards .item:before{padding-top:0}.eael-filter-gallery-container.eael-cards .item-img{position:relative;background-repeat:no-repeat;background-position:center;-webkit-background-size:cover;background-size:cover;height:220px;z-index:0;overflow:hidden}.eael-filter-gallery-container.eael-cards .item-content{padding:15px}.eael-filter-gallery-container.eael-cards .item-content .title,.eael-filter-gallery-container.eael-cards .item-content .title a{font-size:20px;line-height:1;margin-bottom:0;-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.eael-filter-gallery-container.eael-cards .item-content p{font-size:14px;line-height:26px}.eael-fg-card-content-align-center .eael-filterable-gallery-item-wrap .gallery-item-caption-wrap .gallery-item-caption-over{text-align:center}.eael-fg-card-content-align-right .eael-filterable-gallery-item-wrap .gallery-item-caption-wrap .gallery-item-caption-over{text-align:right}.eael-fg-hoverer-content-align-center .eael-filterable-gallery-item-wrap .gallery-item-caption-wrap .gallery-item-caption-over{text-align:center}.eael-fg-hoverer-content-align-right .eael-filterable-gallery-item-wrap .gallery-item-caption-wrap .gallery-item-caption-over{text-align:right}.eael-fg-content-align-left .eael-cards .item .item-content{text-align:left}.eael-fg-content-align-center .eael-cards .item .item-content{text-align:center}.eael-fg-content-align-right .eael-cards .item .item-content{text-align:right}.mfp-wrap~div.dialog-widget{display:none!important}.eael-filterable-gallery-item-wrap{float:left;width:33.33%}.eael-filter-gallery-container.eael-col-1 .eael-filterable-gallery-item-wrap{width:100%}.eael-filter-gallery-control>ul li{font-size:13px;line-height:1.8;text-transform:uppercase;letter-spacing:1px;padding:6px 15px;cursor:pointer;margin:0 5px;font-weight:400}.eael-filter-gallery-container.eael-col-2 .eael-filterable-gallery-item-wrap{width:50%}.eael-filter-gallery-container.eael-col-4 .eael-filterable-gallery-item-wrap{width:25%}.eael-filter-gallery-container.eael-col-5 .eael-filterable-gallery-item-wrap{width:20%}.gallery-grid-item{margin-left:calc(20px/2);margin-right:calc(20px/2);margin-bottom:20px;position:relative;overflow:hidden}.gallery-item-caption-wrap,.media-content-wrap{font-size:14px;text-align:left}.gallery-item-thumbnail-wrap.caption-style-card img{max-height:100%;width:100%}.gallery-item-caption-wrap.caption-style-hoverer{position:absolute;left:0;top:0;height:100%;width:100%;padding:15px;z-index:10}.eael-filterable-gallery-item-wrap .gallery-grid-item .gallery-item-thumbnail-wrap>img{height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.fg-item-content,.fg-item-title{color:#fff;font-family:inherit}.gallery-item-caption-wrap.caption-style-card .fg-item-title{font-size:18px;margin:15px 0 15px;line-height:1}.gallery-item-caption-wrap.caption-style-card{background:#f7f7f7}.gallery-item-caption-wrap.caption-style-card .fg-item-title{margin:10px 0 15px;color:#000}.gallery-item-caption-wrap.caption-style-card .fg-item-content{color:#212529;line-height:1.5;font-weight:400}.gallery-item-buttons>a{display:inline-block;font-size:16px;color:#000;margin-right:15px}.gallery-item-buttons>a:visited{color:#000}.gallery-item-caption-wrap.caption-style-card{padding:10px;-webkit-box-sizing:border-box;box-sizing:border-box;font-family:inherit}.gallery-item-caption-wrap .gallery-item-hoverer-bg{position:absolute;left:0;top:0;height:100%;width:100%;content:'';background:#000;z-index:-1;opacity:.7}.gallery-item-caption-wrap.caption-style-hoverer{visibility:hidden;opacity:0;-webkit-transition:.6s all ease;-o-transition:.6s all ease;transition:.6s all ease;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer{opacity:1;visibility:visible}.gallery-item-caption-wrap.caption-style-hoverer h5{font-size:20px;margin-bottom:5px;line-height:1}.gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up h5{-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px);-webkit-transition:.6s all ease;-o-transition:.6s all ease;transition:.6s all ease}.gallery-item-caption-wrap.caption-style-hoverer p{margin-bottom:5px}.gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up p{-webkit-transform:translateY(40px);-ms-transform:translateY(40px);transform:translateY(40px);-webkit-transition:.6s all ease;-o-transition:.6s all ease;transition:.6s all ease}.gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up .gallery-item-buttons{-webkit-transform:translateY(40px);-ms-transform:translateY(40px);transform:translateY(40px);-webkit-transition:.6s all ease;-o-transition:.6s all ease;transition:.6s all ease}.gallery-item-caption-wrap .gallery-item-buttons>a{padding:5px 15px;display:inline-block;-webkit-border-radius:50%;border-radius:50%;outline:0;text-decoration:none}.gallery-item-caption-wrap.caption-style-hoverer.eael-zoom-in{-webkit-transform:scale(.8);-ms-transform:scale(.8);transform:scale(.8);-webkit-transition:.6s all ease;-o-transition:.6s all ease;transition:.6s all ease}.gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up .gallery-item-buttons,.gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up h5,.gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up p{-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0)}.gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-zoom-in{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);visibility:visible;opacity:1}.gallery-item-caption-wrap.caption-style-hoverer.eael-none{-webkit-transition:none;-o-transition:none;transition:none}.gallery-item-thumbnail-wrap{position:relative}.video-popup,.video-popup-bg{position:absolute;left:0;top:0;height:100%;width:100%}.video-popup>img{width:62px;position:relative;z-index:1;-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.video-popup{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.video-popup:hover>img{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}.video-popup-bg{visibility:hidden;opacity:0;-webkit-transition:350ms;-o-transition:350ms;transition:350ms}.gallery-grid-item:hover .video-popup-bg{visibility:visible;opacity:1}.gallery-item-thumbnail-wrap>.gallery-item-caption-wrap{position:absolute;left:0;top:0;height:100%;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.gallery-item-caption-wrap.card-hover-bg{visibility:hidden;opacity:0;-webkit-transition:.8s;-o-transition:.8s;transition:.8s}.gallery-item-thumbnail-wrap:hover .gallery-item-caption-wrap.card-hover-bg{visibility:visible;opacity:1}.gallery-item-caption-wrap .gallery-item-buttons>a>i{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;height:100%}@media only screen and (min-width:1025px){.elementor-element.elementor-grid-1{position:relative}.elementor-element.elementor-grid-1 .eael-filterable-gallery-item-wrap{width:100%;float:left}.elementor-element.elementor-grid-2{position:relative}.elementor-element.elementor-grid-2 .eael-filterable-gallery-item-wrap{width:50%;float:left}.elementor-element.elementor-grid-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n){margin-right:0!important}.elementor-element.elementor-grid-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n+1){clear:left}.elementor-element.elementor-grid-3{position:relative}.elementor-element.elementor-grid-3 .eael-filterable-gallery-item-wrap{width:33.3333%;float:left}.elementor-element.elementor-grid-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n){margin-right:0!important}.elementor-element.elementor-grid-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n+1){clear:left}.elementor-element.elementor-grid-4{position:relative}.elementor-element.elementor-grid-4 .eael-filterable-gallery-item-wrap{width:25%;float:left}.elementor-element.elementor-grid-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n){margin-right:0!important}.elementor-element.elementor-grid-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n+1){clear:left}.elementor-element.elementor-grid-5{position:relative}.elementor-element.elementor-grid-5 .pp-logo-grid{margin-right:-5px}.elementor-element.elementor-grid-5 .eael-filterable-gallery-item-wrap{width:20%;float:left}.elementor-element.elementor-grid-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n){margin-right:0!important}.elementor-element.elementor-grid-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n+1){clear:left}.elementor-element.elementor-grid-6{position:relative}.elementor-element.elementor-grid-6 .pp-logo-grid{margin-right:-6px}.elementor-element.elementor-grid-6 .eael-filterable-gallery-item-wrap{width:16.6667%;float:left}.elementor-element.elementor-grid-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n){margin-right:0!important}.elementor-element.elementor-grid-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n+1){clear:left}}@media only screen and (max-width:1024px) and (min-width:766px){.elementor-element.elementor-grid-tablet-1{position:relative}.elementor-element.elementor-grid-tablet-1 .eael-filterable-gallery-item-wrap{width:100%;float:left}.elementor-element.elementor-grid-tablet-2{position:relative}.elementor-element.elementor-grid-tablet-2 .eael-filterable-gallery-item-wrap{width:50%;float:left}.elementor-element.elementor-grid-tablet-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n){margin-right:0!important}.elementor-element.elementor-grid-tablet-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n+1){clear:left}.elementor-element.elementor-grid-tablet-3{position:relative}.elementor-element.elementor-grid-tablet-3 .eael-filterable-gallery-item-wrap{width:33.3333%;float:left}.elementor-element.elementor-grid-tablet-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n){margin-right:0!important}.elementor-element.elementor-grid-tablet-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n+1){clear:left}.elementor-element.elementor-grid-tablet-4{position:relative}.elementor-element.elementor-grid-tablet-4 .eael-filterable-gallery-item-wrap{width:25%;float:left}.elementor-element.elementor-grid-tablet-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n){margin-right:0!important}.elementor-element.elementor-grid-tablet-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n+1){clear:left}.elementor-element.elementor-grid-tablet-5{position:relative}.elementor-element.elementor-grid-tablet-5 .eael-filterable-gallery-item-wrap{width:20%;float:left}.elementor-element.elementor-grid-tablet-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n){margin-right:0!important}.elementor-element.elementor-grid-tablet-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n+1){clear:left}.elementor-element.elementor-grid-tablet-6{position:relative}.elementor-element.elementor-grid-tablet-6 .pp-logo-grid{margin-right:-6px}.elementor-element.elementor-grid-tablet-6 .eael-filterable-gallery-item-wrap{width:16.6667%;float:left}.elementor-element.elementor-grid-tablet-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n){margin-right:0!important}.elementor-element.elementor-grid-tablet-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n+1){clear:left}}@media only screen and (max-width:767px){.elementor-element.elementor-grid-mobile-1{position:relative}.elementor-element.elementor-grid-mobile-1 .eael-filterable-gallery-item-wrap{width:100%;float:left}.elementor-element.elementor-grid-mobile-2{position:relative}.elementor-element.elementor-grid-mobile-2 .eael-filterable-gallery-item-wrap{width:50%;float:left}.elementor-element.elementor-grid-mobile-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n){margin-right:0!important}.elementor-element.elementor-grid-mobile-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n+1){clear:left}.elementor-element.elementor-grid-mobile-3{position:relative}.elementor-element.elementor-grid-mobile-3 .eael-filterable-gallery-item-wrap{width:33.3333%;float:left}.elementor-element.elementor-grid-mobile-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n){margin-right:0!important}.elementor-element.elementor-grid-mobile-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n+1){clear:left}.elementor-element.elementor-grid-mobile-4{position:relative}.elementor-element.elementor-grid-mobile-4 .eael-filterable-gallery-item-wrap{width:25%;float:left}.elementor-element.elementor-grid-mobile-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n){margin-right:0!important}.elementor-element.elementor-grid-mobile-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n+1){clear:left}.elementor-element.elementor-grid-mobile-5{position:relative}.elementor-element.elementor-grid-mobile-5 .eael-filterable-gallery-item-wrap{width:20%;float:left}.elementor-element.elementor-grid-mobile-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n){margin-right:0!important}.elementor-element.elementor-grid-mobile-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n+1){clear:left}.elementor-element.elementor-grid-mobile-6{position:relative}.elementor-element.elementor-grid-mobile-6 .pp-logo-grid{margin-right:-6px}.elementor-element.elementor-grid-mobile-6 .eael-filterable-gallery-item-wrap{width:16.6667%;float:left}.elementor-element.elementor-grid-mobile-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n){margin-right:0!important}.elementor-element.elementor-grid-mobile-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n+1){clear:left}}.eael-elements-flip-box-container{position:relative;height:300px;width:100%}.eael-elements-flip-box-container .flipbox-button{display:inline-block;-webkit-transition:all .4s;-o-transition:all .4s;transition:all .4s}.eael-elements-flip-box-container a{display:block}.eael-elements-flip-box-vertical-align{width:100%}.eael-elements-flip-box-padding{padding:0 30px 5px 30px}.eael-elements-flip-box-icon-image{display:inline-block;margin:0 auto 0 auto;line-height:1}.eael-elements-flip-box-icon-image.eael_eleements_flip_front_icon_style_background{background:#ccc}.eael_eleements_flip_front_icon_style_bordered{border:2px solid #fff}.eael_flip_box_icon_border_round{-webkit-border-radius:100px;border-radius:100px}.eael_eleements_flip_front_icon_style_background,.eael_eleements_flip_front_icon_style_bordered{padding:15px}.eael-elements-flip-box-icon-image i{font-size:40px;line-height:40px;width:40px}.eael-elements-slider-display-table{width:100%}.eael-elements-flip-box-front-container{text-align:center;position:absolute;top:0;left:0;z-index:2;width:100%;height:100%;background:#0e9dd2;color:#fff;border-color:#000;-webkit-display:flex;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-elements-flip-box-content,.eael-elements-flip-box-heading{color:#fff}.eael-elements-flip-box-heading.flipbox-linked-title{color:#fff;font-size:1.5em;font-weight:700}.eael-elements-flip-box-rear-container{text-align:center;position:absolute;top:0;left:0;width:100%;height:100%;background:#444;color:#fff;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-color:#000}.eael-elements-button-floating-container{position:fixed;z-index:100}.eael-elements-button-floating-container .eael-elements-button{margin-top:0;font-size:14px;position:relative;padding:14px 20px}.eael-elements-button{cursor:pointer;display:inline-block;background:#077bbe;color:#fff;line-height:1;padding:16px 25px;margin-top:15px}.eael-elements-button:hover{background:#077bbe;color:#fff}.eael-elements-flip-box-container{-webkit-perspective:1000px;perspective:1000px}.eael-elements-flip-box-front-container,.eael-elements-flip-box-rear-container{-webkit-transition-duration:.5s;-o-transition-duration:.5s;transition-duration:.5s;-webkit-transition-property:all;-o-transition-property:all;transition-property:all;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.eael-elements-flip-box-flip-card{width:100%;height:100%;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transition:all .5s ease;-o-transition:all .5s ease;transition:all .5s ease}.eael-elements-flip-box-front-container,.eael-elements-flip-box-rear-container{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:rotateX(0);transform:rotateX(0);-webkit-transform:rotateY(0);transform:rotateY(0)}.eael-animate-flip.eael-animate-up .eael-elements-flip-box-rear-container,.eael-animate-flip.eael-animate-up.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.eael-animate-flip.eael-animate-down .eael-elements-flip-box-rear-container,.eael-animate-flip.eael-animate-down.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card{-webkit-transform:rotateX(-180deg);transform:rotateX(-180deg)}.eael-animate-flip.eael-animate-left .eael-elements-flip-box-rear-container,.eael-animate-flip.eael-animate-left.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}.eael-animate-flip.eael-animate-right .eael-elements-flip-box-rear-container,.eael-animate-flip.eael-animate-right.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card{-webkit-transform:rotateY(180deg);transform:rotateY(180deg)}.eael-animate-push.eael-elements-flip-box-container,.eael-animate-slide.eael-elements-flip-box-container{overflow:hidden}.eael-animate-push .eael-elements-flip-box-rear-container,.eael-animate-slide .eael-elements-flip-box-rear-container{z-index:3}.eael-animate-push.eael-animate-up .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-up .eael-elements-flip-box-rear-container{top:100%}.eael-animate-push.eael-animate-up.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-up.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container{top:0}.eael-animate-push.eael-animate-down .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-down .eael-elements-flip-box-rear-container{top:auto;bottom:100%}.eael-animate-push.eael-animate-down.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-down.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container{top:auto;bottom:0}.eael-animate-push.eael-animate-left .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-left .eael-elements-flip-box-rear-container{left:100%}.eael-animate-push.eael-animate-left.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-left.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container{left:0}.eael-animate-push.eael-animate-right .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-right .eael-elements-flip-box-rear-container{left:auto;right:100%}.eael-animate-push.eael-animate-right.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-right.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container{left:auto;right:0}.eael-animate-push.eael-animate-up.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container{top:-100%}.eael-animate-push.eael-animate-down.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container{top:100%}.eael-animate-push.eael-animate-left.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container{left:-100%}.eael-animate-push.eael-animate-right.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container{left:100%}.eael-animate-zoom-in .eael-elements-flip-box-rear-container{opacity:0;-webkit-transform:scale(.75);-ms-transform:scale(.75);transform:scale(.75);z-index:3}.eael-animate-zoom-in.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.eael-animate-zoom-out.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container{opacity:0;-webkit-transform:scale(.75);-ms-transform:scale(.75);transform:scale(.75)}.eael-animate-fade.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container{opacity:0}.eael-flipbox-content-align-right .eael-elements-flip-box-padding{text-align:right}.eael-flipbox-content-align-left .eael-elements-flip-box-padding{text-align:left}.eael-flipbox-content-align-center .eael-elements-flip-box-padding{text-align:center}.eael-flipbox-img-circle .eael-elements-flip-box-icon-image img,.eael-flipbox-img-circle .flipbox-back-image-icon img{-webkit-border-radius:50%;border-radius:50%;overflow:hidden}.clearfix::after,.clearfix::before{content:" ";display:table;clear:both}.eael-logo-carousel.nav-top-left,.eael-logo-carousel.nav-top-right,.eael-post-carousel.nav-top-left,.eael-post-carousel.nav-top-right,.eael-product-carousel.nav-top-left,.eael-product-carousel.nav-top-right,.eael-team-slider.nav-top-left,.eael-team-slider.nav-top-right,.eael-testimonial-slider.nav-top-left,.eael-testimonial-slider.nav-top-right{padding-top:40px}.swiper-container .swiper-slide,.swiper-container-wrap .swiper-slide{text-align:center}.swiper-container .swiper-slide img,.swiper-container-wrap .swiper-slide img{width:auto}.swiper-container-dots-outside .swiper-pagination,.swiper-container-wrap-dots-outside .swiper-pagination{position:static}.swiper-container .swiper-button-next,.swiper-container .swiper-button-prev,.swiper-container-wrap .swiper-button-next,.swiper-container-wrap .swiper-button-prev{background:0 0;font-size:20px;height:auto;line-height:1;margin:0;text-align:center;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);width:auto}.swiper-container .swiper-button-next .fa,.swiper-container .swiper-button-prev .fa,.swiper-container-wrap .swiper-button-next .fa,.swiper-container-wrap .swiper-button-prev .fa{vertical-align:top}.swiper-container-wrap .swiper-pagination{bottom:10px;left:0;width:100%}.swiper-container-wrap-dots-outside .swiper-pagination{position:static}.swiper-container-wrap .swiper-pagination-bullet{background:#ccc;margin:0 4px;opacity:1;height:8px;width:8px}.swiper-container-wrap .swiper-pagination-bullet-active{background:#000}.swiper-container-3d .swiper-slide{-o-transition-property:all;transition-property:all;-webkit-transition-property:all}.eael-contact-form input[type=date],.eael-contact-form input[type=email],.eael-contact-form input[type=number],.eael-contact-form input[type=tel],.eael-contact-form input[type=text],.eael-contact-form input[type=url],.eael-contact-form textarea{background:#fff;box-shadow:none;-webkit-box-shadow:none;float:none;height:auto;margin:0;outline:0;width:100%}.eael-contact-form input[type=submit]{border:0;float:none;height:auto;margin:0;padding:10px 20px;width:auto;-webkit-transition:all .25s linear 0s;-o-transition:all .25s linear 0s;transition:all .25s linear 0s}.eael-contact-form.placeholder-hide input::-webkit-input-placeholder,.eael-contact-form.placeholder-hide textarea::-webkit-input-placeholder{opacity:0;visibility:hidden}.eael-contact-form.placeholder-hide input::-moz-placeholder,.eael-contact-form.placeholder-hide textarea::-moz-placeholder{opacity:0;visibility:hidden}.eael-contact-form.placeholder-hide input:-ms-input-placeholder,.eael-contact-form.placeholder-hide textarea:-ms-input-placeholder{opacity:0;visibility:hidden}.eael-contact-form.placeholder-hide input:-moz-placeholder,.eael-contact-form.placeholder-hide textarea:-moz-placeholder{opacity:0;visibility:hidden}.eael-custom-radio-checkbox input[type=checkbox],.eael-custom-radio-checkbox input[type=radio]{-webkit-appearance:none;-moz-appearance:none;border-style:solid;border-width:0;outline:0;min-width:1px;width:15px;height:15px;background:#ddd;padding:3px}.eael-custom-radio-checkbox input[type=checkbox]:before,.eael-custom-radio-checkbox input[type=radio]:before{content:"";width:100%;height:100%;padding:0;margin:0;display:block}.eael-custom-radio-checkbox input[type=checkbox]:checked:before,.eael-custom-radio-checkbox input[type=radio]:checked:before{background:#999;-webkit-transition:all .25s linear 0s;-o-transition:all .25s linear 0s;transition:all .25s linear 0s}.eael-custom-radio-checkbox input[type=radio]{-webkit-border-radius:50%;border-radius:50%}.eael-custom-radio-checkbox input[type=radio]:before{-webkit-border-radius:50%;border-radius:50%}.eael-gravity-form-align-default,.eael-gravity-form-align-left,.eael-gravity-form-btn-align-left{text-align:left}.eael-gravity-form-align-right,.eael-gravity-form-btn-align-right{text-align:right}.eael-gravity-form-align-center,.eael-gravity-form-btn-align-center{text-align:center}.eael-gravity-form .gform_wrapper .gform_footer{margin:0;padding:0}.gform_wrapper form li,.gform_wrapper li{list-style:none}.eael-gravity-form .gform_wrapper ul.gform_fields li.gfield{padding:0}.eael-gravity-form .gform_wrapper textarea{padding:0}.eael-gravity-form .gform_wrapper .gform_footer input.button,.eael-gravity-form .gform_wrapper .gform_footer input[type=submit],.eael-gravity-form .gform_wrapper .gform_page_footer input.button,.eael-gravity-form .gform_wrapper .gform_page_footer input[type=submit]{margin:0}.eael-gravity-form.title-description-hide .gform_heading{display:none}.eael-gravity-form.labels-hide .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label,.eael-gravity-form.labels-hide .gform_wrapper .top_label .gfield_label{display:none}.eael-gravity-form-button-full-width .gform_wrapper .gform_footer input[type=submit]{width:100%}.eael-img-accordion{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:50vh}.eael-img-accordion a{position:relative;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;text-align:center;text-decoration:none;color:#fff;-webkit-background-size:cover;background-size:cover;background-position:center;background-repeat:no-repeat;-webkit-transition:-webkit-box-flex .4s,-webkit-flex .4s;transition:-webkit-box-flex .4s,-webkit-flex .4s;-o-transition:flex .4s;transition:flex .4s;transition:flex .4s,-webkit-box-flex .4s,-webkit-flex .4s,-ms-flex .4s}.eael-grow-accordion{-webkit-box-flex:3;-webkit-flex:3;-ms-flex:3;flex:3}.eael-img-accordion .overlay{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding:0 10px;position:absolute;top:0;right:0;bottom:0;left:0;-webkit-transition:background-color .4s;-o-transition:background-color .4s;transition:background-color .4s}.eael-img-accordion .overlay .overlay-inner{z-index:1}.eael-img-accordion a:after{content:"";position:absolute;width:100%;height:100%;z-index:0;top:0;left:0;bottom:0;right:0;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.eael-img-accordion .overlay-inner *{visibility:hidden;opacity:0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.eael-img-accordion .overlay h2{color:#fff;-webkit-transform:translate3d(0,-60px,0);transform:translate3d(0,-60px,0)}.eael-img-accordion .overlay p{color:#fff;-webkit-transform:translate3d(0,60px,0);transform:translate3d(0,60px,0)}.eael-img-accordion .overlay-inner-show *{opacity:1;visibility:visible;-webkit-transform:none!important;-ms-transform:none!important;transform:none!important;-webkit-transition:all .3s .3s;-o-transition:all .3s .3s;transition:all .3s .3s}@media screen and (max-width:800px){.eael-img-accordion{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.eael-img-accordion a:hover{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.eael-img-accordion a:hover .overlay{background-color:transparent}}.eael-infobox .infobox-icon{height:auto}.eael-infobox .infobox-icon .infobox-icon-wrap{display:block;width:100%;height:auto;-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.eael-infobox .infobox-icon .infobox-icon-wrap i{-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.eael-infobox-content-align-left .eael-infobox .infobox-button,.eael-infobox-content-align-left .eael-infobox .infobox-content,.eael-infobox-content-align-left .eael-infobox .infobox-icon{text-align:left}.eael-infobox-content-align-right .eael-infobox .infobox-button,.eael-infobox-content-align-right .eael-infobox .infobox-content,.eael-infobox-content-align-right .eael-infobox .infobox-icon{text-align:right}.eael-infobox-content-align-center .eael-infobox .infobox-button,.eael-infobox-content-align-center .eael-infobox .infobox-content,.eael-infobox-content-align-center .eael-infobox .infobox-icon{text-align:center}.eael-infobox-icon-bg-shape-circle .infobox-icon .infobox-icon-wrap,.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap,.eael-infobox-icon-bg-shape-square .infobox-icon .infobox-icon-wrap{width:90px;height:90px;text-align:center}.eael-infobox-icon-hover-bg-shape-square:hover .infobox-icon .infobox-icon-wrap{-webkit-border-radius:0;border-radius:0}.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap,.eael-infobox-icon-hover-bg-shape-radius:hover .infobox-icon .infobox-icon-wrap{-webkit-border-radius:15px;border-radius:15px}.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.eael-infobox-icon-bg-shape-circle .infobox-icon .infobox-icon-wrap,.eael-infobox-icon-hover-bg-shape-circle:hover .infobox-icon .infobox-icon-wrap{-webkit-border-radius:50%;border-radius:50%}.eael-infobox-icon-bg-shape-circle .infobox-icon .infobox-icon-wrap i,.eael-infobox-icon-bg-shape-square .infobox-icon .infobox-icon-wrap i{margin-top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.eael-infobox .infobox-button a.eael-infobox-button{display:inline-block;padding:5px 10px;-webkit-transition:all .3s ease-in-out 0s;-o-transition:all .3s ease-in-out 0s;transition:all .3s ease-in-out 0s}.eael-infobox-content-align-left.eael-infobox-icon-bg-shape-circle .infobox-icon,.eael-infobox-content-align-left.eael-infobox-icon-bg-shape-radius .infobox-icon,.eael-infobox-content-align-left.eael-infobox-icon-bg-shape-square .infobox-icon{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.eael-infobox-content-align-center.eael-infobox-icon-bg-shape-circle .infobox-icon,.eael-infobox-content-align-center.eael-infobox-icon-bg-shape-radius .infobox-icon,.eael-infobox-content-align-center.eael-infobox-icon-bg-shape-square .infobox-icon{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.eael-infobox-content-align-right.eael-infobox-icon-bg-shape-circle .infobox-icon,.eael-infobox-content-align-right.eael-infobox-icon-bg-shape-radius .infobox-icon,.eael-infobox-content-align-right.eael-infobox-icon-bg-shape-square .infobox-icon{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}.eael-infobox.icon-on-left{position:relative;z-index:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.eael-infobox.icon-on-left .infobox-icon-wrap,.eael-infobox.icon-on-right .infobox-icon-wrap{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.eael-infobox.icon-on-left .infobox-icon .infobox-icon-wrap{background:0 0;border:0;text-align:left;height:auto;display:block}.eael-infobox .infobox-content p{margin:0 0 15px}.eael-infobox.icon-on-left .infobox-icon .infobox-icon-wrap i{margin-top:0;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-infobox.icon-on-left .infobox-content{padding-left:15px;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}.eael-infobox.icon-on-left .infobox-content .title{line-height:1;margin:0 0 10px 0}.eael-infobox.icon-on-right{position:relative;z-index:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.eael-infobox.icon-on-right .infobox-icon .infobox-icon-wrap{background:0 0;border:0;text-align:right;width:auto;height:auto;display:block}.eael-infobox.icon-on-right .infobox-icon .infobox-icon-wrap i{margin-top:0;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-infobox.icon-on-right .infobox-content{padding-right:15px;text-align:right;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-sizing:border-box;box-sizing:border-box}.eael-infobox.icon-on-right .infobox-content .title{line-height:1;margin:0 0 10px 0}.eael-infobox .infobox-icon img{-webkit-transition:all .3s ease-in-out 0s;-o-transition:all .3s ease-in-out 0s;transition:all .3s ease-in-out 0s}.eael-infobox-hover-img-shape-square:hover .eael-infobox .infobox-icon img{-webkit-border-radius:0;border-radius:0}.eael-infobox-hover-img-shape-circle:hover .eael-infobox .infobox-icon img,.eael-infobox-shape-circle .eael-infobox .infobox-icon img{-webkit-border-radius:50%;border-radius:50%}.eael-infobox-hover-img-shape-radius:hover .eael-infobox .infobox-icon img,.eael-infobox-shape-radius .eael-infobox .infobox-icon img{-webkit-border-radius:15px;border-radius:15px}.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:0!important;-webkit-backface-visibility:hidden;backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none;-ms-touch-action:manipulation;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow:after,.mfp-arrow:before{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;-webkit-box-sizing:border-box;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}button.mfp-close,button.mfp-close:hover{display:inline-block!important;background:0 0;width:auto!important}.mfp-arrow,.mfp-arrow:hover{background:0 0}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);-ms-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;-ms-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;-ms-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.eael-ninja-container input,.eael-ninja-container textarea{height:auto;padding:10px}.eael-contact-form-align-center .eael-ninja-container,.eael-contact-form-btn-align-center .eael-ninja-container .nf-field .nf-field-element input[type=button]{margin-left:auto!important;margin-right:auto!important;display:block;float:none}.eael-contact-form-align-left .eael-ninja-container,.eael-contact-form-btn-align-left .eael-ninja-container .nf-field .nf-field-element input[type=button]{float:left;width:auto}.eael-contact-form-align-right .eael-ninja-container,.eael-contact-form-btn-align-right .eael-ninja-container .nf-field .nf-field-element input[type=button]{float:right;width:auto}.eael-ninja-container .nf-field .nf-field-element input[type=password],.eael-ninja-container .nf-field .nf-field-element input[type=url],.eael-ninja-container .nf-field .nf-field-element textarea,.eael-ninja-container ul.wpuf-form li .wpuf-fields input[type=email],.eael-ninja-container ul.wpuf-form li .wpuf-fields input[type=number],.eael-ninja-container ul.wpuf-form li .wpuf-fields input[type=text]{max-width:100%}.eael-ninja-form .nf-form-title{display:none}.eael-ninja-form-title-yes .nf-form-title{display:block}.eael-ninja-form .title-description-hide .nf-form-title{display:none}.eael-ninja-form.title-description-hide .nf-form-title{display:none}.eael-ninja-form .nf-field-label{display:none}.eael-ninja-form-labels-yes .nf-field-label{display:block}.eael-ninja-form .submit-container input[type=button]{border:0;-webkit-border-radius:0;border-radius:0}.eael-ninja-form-button-full-width .submit-container input[type=button]{width:100%}.eael-post-grid{margin:0 -10px}.eael-grid-post{float:left;padding:10px}.eael-post-carousel .eael-grid-post{float:none;padding:0}.eael-grid-post-holder{border:1px solid rgba(0,0,0,.1)}.eael-grid-post-holder-inner{height:100%}.eael-entry-media{position:relative}.eael-entry-overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:2;-webkit-transition:opacity .2s ease-in-out,-webkit-transform .25s cubic-bezier(.19,1,.22,1);transition:opacity .2s ease-in-out,-webkit-transform .25s cubic-bezier(.19,1,.22,1);-o-transition:opacity .2s ease-in-out,transform .25s cubic-bezier(.19,1,.22,1);transition:opacity .2s ease-in-out,transform .25s cubic-bezier(.19,1,.22,1);transition:opacity .2s ease-in-out,transform .25s cubic-bezier(.19,1,.22,1),-webkit-transform .25s cubic-bezier(.19,1,.22,1)}.eael-entry-overlay>a{position:absolute;top:0;left:0;width:100%;height:100%;z-index:3}.eael-entry-title{margin:10px 0 5px;font-size:1.2em}.eael-entry-thumbnail img{width:100%;max-width:100%;vertical-align:middle}.eael-entry-thumbnail>img{height:100%}.eael-entry-footer .eael-author-avatar{width:50px}.eael-entry-footer .eael-author-avatar .avatar{-webkit-border-radius:50%;border-radius:50%}.eael-post-grid .eael-entry-footer .eael-entry-meta{padding-left:8px;text-align:left}.eael-grid-post .eael-entry-meta{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.eael-grid-post .eael-entry-footer .eael-entry-meta{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.eael-entry-meta>div{font-size:12px;line-height:1.2;padding-bottom:5px}.eael-grid-post-excerpt p{margin:0;font-size:14px}.eael-entry-meta .eael-entry-footer .eael-posted-by{display:block}.eael-grid-post .eael-entry-footer,.eael-grid-post .eael-entry-wrapper{padding:15px}.eael-post-grid .eael-entry-header .eael-entry-meta span.eael-posted-on{padding-left:5px}.eael-post-grid .eael-entry-header .eael-entry-meta span.eael-posted-on::before{content:'\f111';font-family:FontAwesome;color:inherit;opacity:.4;font-size:.8em;padding-right:7px}.eael-entry-medianone{position:relative}.eael-entry-overlay{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.eael-entry-overlay>i{color:#fff}.eael-entry-overlay.fade-in{visibility:hidden;opacity:0;-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.eael-entry-medianone:hover .eael-entry-overlay.fade-in{visibility:visible;opacity:1}.eael-entry-medianone:hover .eael-entry-overlay.fade-in>i{-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0);opacity:1}.eael-entry-overlay.zoom-in{-webkit-transform:scale(.9);-ms-transform:scale(.9);transform:scale(.9);visibility:hidden;opacity:0;-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.eael-entry-medianone:hover .eael-entry-overlay.zoom-in{visibility:visible;opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.eael-entry-overlay.slide-up{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);visibility:hidden;opacity:0;-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.eael-entry-medianone:hover .eael-entry-overlay.slide-up{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);visibility:visible;opacity:1}.eael-entry-medianone{overflow:hidden}.eael-entry-media.grid-hover-style-fade-in .eael-entry-overlay{opacity:0}.eael-entry-media.grid-hover-style-fade-in:hover .eael-entry-overlay{opacity:1}.eael-entry-media.grid-hover-style-none .eael-entry-overlay{display:none}.eael-entry-media.grid-hover-style-zoom-in .eael-entry-overlay{-webkit-transform:scale(.4);-ms-transform:scale(.4);transform:scale(.4);opacity:0}.eael-entry-media.grid-hover-style-zoom-in:hover .eael-entry-overlay{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}.eael-entry-media.grid-hover-style-animate-down .eael-entry-overlay{-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}.eael-entry-media.grid-hover-style-animate-down .eael-entry-overlay>i{-webkit-transform:translateY(-100px);-ms-transform:translateY(-100px);transform:translateY(-100px);-webkit-transition-delay:.1s;-o-transition-delay:.1s;transition-delay:.1s;-webkit-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s}.eael-entry-media.grid-hover-style-animate-down:hover .eael-entry-overlay{-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0)}.eael-entry-media.grid-hover-style-animate-down:hover .eael-entry-overlay>i{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-entry-media.grid-hover-style-animate-up .eael-entry-overlay{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);visibility:hidden;opacity:0}.eael-entry-media.grid-hover-style-animate-up .eael-entry-overlay>i{-webkit-transform:translateY(100px);-ms-transform:translateY(100px);transform:translateY(100px);-webkit-transition-delay:.1s;-o-transition-delay:.1s;transition-delay:.1s;-webkit-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s}.eael-entry-media.grid-hover-style-animate-up:hover .eael-entry-overlay{-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0);visibility:visible;opacity:1}.eael-entry-media.grid-hover-style-animate-up:hover .eael-entry-overlay>i{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-col-1 .eael-post-grid-column{float:none;width:100%}.eael-col-2 .eael-post-grid-column{float:left;width:50%}.eael-col-3 .eael-post-grid-column{float:left;width:33.3333%}.eael-col-4 .eael-post-grid-column{float:left;width:25%}.eael-col-5 .eael-post-grid-column{float:left;width:20%}.eael-col-6 .eael-post-grid-column{float:left;width:16.6666%}@media only screen and (max-width:979px){.eael-col-1 .eael-post-grid-column,.eael-col-2 .eael-post-grid-column,.eael-col-3 .eael-post-grid-column,.eael-col-4 .eael-post-grid-column,.eael-col-5 .eael-post-grid-column,.eael-col-6 .eael-post-grid-column{width:33.3333%}}@media only screen and (max-width:767px){.eael-col-1 .eael-post-grid-column,.eael-col-2 .eael-post-grid-column,.eael-col-3 .eael-post-grid-column,.eael-col-4 .eael-post-grid-column,.eael-col-5 .eael-post-grid-column,.eael-col-6 .eael-post-grid-column{width:50%}}@media only screen and (max-width:480px){.eael-col-1 .eael-post-grid-column,.eael-col-2 .eael-post-grid-column,.eael-col-3 .eael-post-grid-column,.eael-col-4 .eael-post-grid-column,.eael-col-5 .eael-post-grid-column,.eael-col-6 .eael-post-grid-column{float:none;width:100%}}.eael-author-avatar>a{display:block}.eael-entry-footer{overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.eael-entry-footer>div{display:inline-block;float:left}.eael-post-timeline{margin-bottom:0;min-height:100%;overflow:hidden;position:relative}.eael-timeline-column{width:50%;margin-left:0;float:left;margin-top:0!important}.eael-timeline-post{position:relative}.eael-timeline-post:after{background-color:rgba(83,85,86,.2);content:"";width:2px;height:245px;position:absolute;right:0;top:70px}.eael-timeline-post:nth-child(2n):after{display:none}.eael-timeline-bullet{background-color:#9fa9af;border:5px solid #fff;-webkit-border-radius:50%;border-radius:50%;-webkit-box-shadow:0 1px 0 1px rgba(0,0,0,.1);box-shadow:0 1px 0 1px rgba(0,0,0,.1);content:"";height:20px;position:absolute;right:-9px;top:60px;width:20px;z-index:3;cursor:pointer}.eael-timeline-post:nth-child(2n) .eael-timeline-bullet{background-color:#9fa9af;border:5px solid #fff;-webkit-border-radius:50%;border-radius:50%;bottom:36px;content:"";height:20px;left:-11px;position:absolute;top:300px;width:20px;z-index:3}.eael-timeline-post-inner{background:-webkit-linear-gradient(45deg,#3f3f46 0,#05abe0 100%) repeat scroll 0 0 transparent;background:-o-linear-gradient(45deg,#3f3f46 0,#05abe0 100%) repeat scroll 0 0 transparent;background:linear-gradient(45deg,#3f3f46 0,#05abe0 100%) repeat scroll 0 0 transparent;border:8px solid #e5eaed;-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.15);box-shadow:0 1px 3px 0 rgba(0,0,0,.15);float:right;margin:30px 40px 30px auto;position:relative;height:320px;width:calc(100% - 40px)}.eael-timeline-post:nth-child(even) .eael-timeline-post-inner{float:left;margin-left:40px}.eael-timeline-post-inner:after{border-color:transparent transparent transparent #e5eaed;border-style:solid;border-width:15px;content:"";height:0;position:absolute;right:-36px;top:17px;width:0}.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner:after{border-color:transparent #e5eaed transparent transparent;border-style:solid;border-width:15px;content:"";height:0;left:-36px;position:absolute;top:257px;width:0}.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner::after{border-left-color:transparent!important}.eael-timeline-post p{margin:1.6rem 0 0 0;font-size:.9em;line-height:1.6em}.eael-timeline-post-image{-webkit-background-size:cover;background-size:cover;background-position:center center;background-repeat:no-repeat;display:block;height:100%;overflow:hidden;position:relative;opacity:.6;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.eael-timeline-post-title{bottom:40px;position:absolute;width:100%}.eael-timeline-post-title h2{color:#fff;font-size:20px;font-weight:700;letter-spacing:1px;line-height:24px;padding:0 25px;text-align:left;text-transform:uppercase}.eael-timeline-post-excerpt{opacity:0;position:absolute;top:0;left:0;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.eael-timeline-post-excerpt p{color:#fff;font-size:14px;padding:25px}.eael-timeline-post-inner:hover .eael-timeline-post-excerpt{opacity:1;top:10px}.eael-timeline-post-inner:hover .eael-timeline-post-image{opacity:.3}.eael-timeline-post time{opacity:0;background-color:rgba(0,0,0,.7);color:#fff;font-size:10px;-webkit-border-radius:20px;border-radius:20px;position:absolute;right:-97px;width:100px;height:30px;line-height:30px;text-align:center;top:50px;z-index:99;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.eael-timeline-post:nth-child(2n) time{background-color:rgba(0,0,0,.7);-webkit-border-radius:20px;border-radius:20px;color:#fff;font-size:10px;height:30px;left:-99px;line-height:30px;position:absolute;text-align:center;top:290px;width:100px;z-index:99}.eael-timeline-post time:before{border-bottom:5px solid rgba(0,0,0,.7);border-left:5px solid transparent;border-right:5px solid transparent;content:"";height:0;left:45px;position:absolute;top:-5px;width:0}.eael-timeline-post:hover time{opacity:1}.eael-timeline-post::after{height:100%}.eael-post-timeline .eael-timeline-post:nth-last-child(2)::after{height:245px}.eael-post-timeline .eael-timeline-post:last-child::after{display:none}.eael-load-more-button-wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}@media only screen and (max-width:1366px){.eael-timeline-post-title h2{font-size:.8em}.eael-timeline-post-excerpt p{font-size:13px}}@media only screen and (max-width:1169px){.eael-timeline-post-inner{height:320px}}@media only screen and (max-width:992px){.eael-post-timeline{margin-left:0}.eael-timeline-bullet,.eael-timeline-post-inner:after,.eael-timeline-post:after,.eael-timeline-post:before{display:none}.eael-timeline-post{display:inline-block;float:left!important;width:50%!important;margin:15px auto}.eael-timeline-post-inner{height:320px;padding-bottom:30px}.eael-timeline-post-title{bottom:50px}.eael-timeline-post-title h2{font-size:.8em;line-height:1.2em}.eael-timeline-post .eael-timeline-post-inner{margin:0 10px auto 0;width:90%}.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner{margin:0 auto 0 10px;width:90%}.eael-timeline-post-excerpt{opacity:0!important}.eael-timeline-post-image{opacity:.3}.eael-timeline-post time,.eael-timeline-post:nth-child(2n) time{background-color:#fff;-webkit-border-radius:0;border-radius:0;color:#444;font-size:12px;text-transform:uppercase;left:0;opacity:1;padding-top:3px;top:275px;width:100%}time:before{display:none}}@media only screen and (max-width:767px){.eael-timeline-post{display:block;float:none!important;margin:20px auto;width:100%!important}.eael-timeline-post .eael-timeline-post-inner,.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner{display:block;float:none;margin:0 auto}}@media only screen and (max-width:479px){.eael-timeline-post .eael-timeline-post-inner,.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner{height:250px;margin:0 auto;width:95%}.eael-timeline-post time,.eael-timeline-post:nth-child(2n) time{top:205px}}.eael-pricing{-webkit-display:flex;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-pricing .eael-pricing-item{width:100%;height:auto;margin:0}.eael-pricing .eael-pricing-button{display:inline-block;padding:12px 25px;background:#00c853;font-size:14px;font-weight:600;color:#fff;text-transform:uppercase;text-decoration:none;-webkit-transition:.3s;-o-transition:.3s;transition:.3s;-webkit-border-radius:4px;border-radius:4px}.eael-pricing .eael-pricing-button:hover{background:#03b048}.eael-pricing .eael-pricing-item ul{padding:0;margin:0;list-style:none}.eael-pricing .eael-pricing-item ul li.disable-item{text-decoration:line-through;opacity:.5}.eael-pricing .eael-pricing-item ul li span.li-icon{color:#00c853;margin-right:6px}.eael-pricing .eael-pricing-item ul li.disable-item span.li-icon{color:#ef5350}.eael-pricing.style-1{position:relative;z-index:0;text-align:center}.eael-pricing.style-1 .eael-pricing-item{border:1px solid rgba(9,9,9,.1);padding:30px;-webkit-border-radius:5px;border-radius:5px;-webkit-transition:.5s;-o-transition:.5s;transition:.5s}.eael-pricing.style-1 .eael-pricing-item:hover{-webkit-box-shadow:0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22);box-shadow:0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22)}.eael-pricing.style-1 .eael-pricing-item.featured{position:relative}.eael-pricing.style-1 .eael-pricing-item.ribbon-1:before{content:"";position:absolute;width:100%;height:3px;background:#00c853;top:0;left:0;right:0;z-index:1;-webkit-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.eael-pricing.style-1 .eael-pricing-item.ribbon-2:before{content:"Featured";position:absolute;width:auto;background:#00c853;color:#fff;top:35px;right:-15px;z-index:10;font-size:10px;font-weight:600;text-transform:uppercase;padding:5px 10px}.eael-pricing.style-1 .eael-pricing-item.ribbon-2:after{content:"";position:absolute;top:20px;right:-15px;width:0;height:0;border-bottom:15px solid #00c853;border-right:15px solid transparent;z-index:9;opacity:.9}.eael-pricing.style-1 .eael-pricing-item.ribbon-3:before{content:"Featured";position:absolute;width:auto;background:rgba(0,0,0,.6);color:#fff;top:15px;right:15px;z-index:10;font-size:11px;font-weight:600;text-transform:uppercase;padding:5px 15px}.eael-pricing.style-1 .eael-pricing-item .header{display:block;position:relative;z-index:0;padding-bottom:15px;margin-bottom:15px}.eael-pricing.style-1 .eael-pricing-item .header:after{content:"";position:absolute;width:140px;height:1px;bottom:0;left:0;right:0;margin:0 auto;z-index:1;background:rgba(9,9,9,.1)}.eael-pricing.style-1 .eael-pricing-item .header .title{font-weight:700;line-height:30px;margin:0}.eael-pricing.style-1 .eael-pricing-item .eael-pricing-tag{position:relative;z-index:0;padding:15px 0;margin-bottom:15px}.eael-pricing.style-1 .eael-pricing-item .eael-pricing-tag:after{content:"";position:absolute;width:140px;height:1px;bottom:0;left:0;right:0;margin:0 auto;z-index:1;background:rgba(9,9,9,.04)}.eael-pricing.style-1 .eael-pricing-item .price-tag{position:relative;display:inline-block;font-size:28px;font-weight:500;line-height:0;margin:0 auto}.eael-pricing.style-1 .eael-pricing-item .price-tag .price-currency{font-size:24px;font-weight:700}.eael-pricing.style-1 .eael-pricing-item .price-period{color:#999}.eael-pricing.style-1 .eael-pricing-item .body ul{display:block;width:100%;margin-bottom:15px}.eael-pricing.style-1 .eael-pricing-item .body ul li{display:block;width:100%;height:auto;padding:10px 0;font-size:14px;color:#6d6d6d;border-bottom:1px solid rgba(9,9,9,.04)}.eael-pricing.style-1 .eael-pricing-item .body ul li:last-child{border:none}.eael-pricing.style-1 .eael-pricing-item.featured-large{padding:60px 0}.eael-pricing.style-2{position:relative;z-index:0;text-align:center}.eael-pricing.style-2 .eael-pricing-item{padding:30px 0;-webkit-border-radius:5px;border-radius:5px;margin:0;border:1px solid rgba(9,9,9,.1)}.eael-pricing.style-2 .eael-pricing-item.featured{-webkit-box-shadow:0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22);box-shadow:0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22)}.eael-pricing.style-2 .eael-pricing-item.ribbon-1:before{content:"";position:absolute;width:100%;height:3px;background:#00c853;top:0;left:0;right:0;z-index:1;-webkit-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.eael-pricing.style-2 .eael-pricing-item.ribbon-2:before{content:"Featured";position:absolute;width:auto;background:#00c853;color:#fff;top:35px;right:-15px;z-index:10;font-size:10px;font-weight:600;text-transform:uppercase;padding:5px 10px}.eael-pricing.style-2 .eael-pricing-item.ribbon-2:after{content:"";position:absolute;top:20px;right:-15px;width:0;height:0;border-bottom:15px solid #00c853;border-right:15px solid transparent;z-index:9;opacity:.9}.eael-pricing.style-2 .eael-pricing-item.ribbon-3:before{content:"Featured";position:absolute;width:auto;background:rgba(0,0,0,.6);color:#fff;top:15px;right:15px;z-index:10;font-size:11px;font-weight:600;text-transform:uppercase;padding:5px 15px}.eael-pricing.style-2 .eael-pricing-item .eael-pricing-icon .icon{display:inline-block;position:relative;width:80px;height:80px;background:#00c853;-webkit-border-radius:50%;border-radius:50%;margin-bottom:30px;text-align:center;-webkit-transition:.5s;-o-transition:.5s;transition:.5s;overflow:hidden}.eael-pricing.style-2 .eael-pricing-item .eael-pricing-icon .icon i{font-size:30px;color:#fff;line-height:80px;-webkit-transition:.5s;-o-transition:.5s;transition:.5s}.eael-pricing.style-2 .eael-pricing-item:hover .eael-pricing-icon .icon{background:#43a047}.eael-pricing.style-2 .eael-pricing-item:hover .eael-pricing-icon .icon i{color:#fff}.eael-pricing.style-2 .eael-pricing-item .header{background:#c8e6c9;padding:25px 30px;margin-bottom:15px;position:relative;z-index:0}.eael-pricing.style-2 .eael-pricing-item.featured .header:after{content:"";position:absolute;width:100%;height:100%;top:0;left:0;right:0;bottom:0;z-index:-1;background:rgba(255,255,255,.4)}.eael-pricing.style-2 .eael-pricing-item .header .title{font-size:28px;font-weight:700;line-height:40px;margin:0}.eael-pricing.style-2 .eael-pricing-item .header .subititle{font-size:14px;font-weight:600;color:#6d6d6d}.eael-pricing.style-2 .eael-pricing-item .eael-pricing-tag{position:relative;z-index:0;padding:15px 0;margin-bottom:15px}.eael-pricing.style-2 .eael-pricing-item .eael-pricing-tag:after{content:"";position:absolute;width:140px;height:1px;bottom:0;left:0;right:0;margin:0 auto;z-index:1;background:rgba(9,9,9,.04)}.eael-pricing.style-2 .eael-pricing-item .price-tag{position:relative;display:inline-block;font-size:28px;font-weight:500;line-height:0;margin:0 auto}.eael-pricing.style-2 .eael-pricing-item .price-tag .price-currency{font-size:24px;font-weight:700;color:#00c853}.eael-pricing.style-2 .eael-pricing-item .price-period{color:#999}.eael-pricing.style-2 .eael-pricing-item .body ul{display:block;width:100%;margin-bottom:15px}.eael-pricing.style-2 .eael-pricing-item .body ul li{display:block;width:100%;height:auto;padding:10px 15px;font-size:14px;color:#6d6d6d;border-bottom:1px solid rgba(9,9,9,.04)}.eael-pricing.style-2 .eael-pricing-item .body ul li:last-child{border:none}@media only screen and (min-width:768px) and (max-width:992px){.eael-pricing{display:block}.eael-pricing .eael-pricing-item,.eael-pricing.style-2 .eael-pricing-item,.eael-pricing.style-4 .eael-pricing-item{width:100%;margin:0 auto 30px auto}}@media only screen and (max-width:480px){.eael-pricing{display:block}.eael-pricing .eael-pricing-item{width:100%}.eael-pricing .eael-pricing-item,.eael-pricing.style-2 .eael-pricing-item,.eael-pricing.style-4 .eael-pricing-item{margin:0 auto 30px auto}}.eael-pricing-content-align-center .eael-pricing{text-align:center}.eael-pricing-content-align-left .eael-pricing{text-align:left}.eael-pricing-content-align-right .eael-pricing{text-align:right}.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .price-tag{padding-left:45px}.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .price-tag:before{left:30px}.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .eael-pricing-tag{padding-right:30px}.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .eael-pricing-icon,.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .footer,.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .header,.eael-pricing-content-align-left .eael-pricing.style-4 .eael-pricing-item .footer,.eael-pricing-content-align-left .eael-pricing.style-4 .eael-pricing-item .header{padding-left:30px;padding-right:30px}.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .eael-pricing-icon,.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .footer,.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .header,.eael-pricing-content-align-right .eael-pricing.style-4 .eael-pricing-item .footer,.eael-pricing-content-align-right .eael-pricing.style-4 .eael-pricing-item .header{padding-right:30px;padding-left:30px}.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .body ul li,.eael-pricing-content-align-left .eael-pricing.style-4 .eael-pricing-item .body ul li{padding-left:30px}.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .body ul li,.eael-pricing-content-align-right .eael-pricing.style-4 .eael-pricing-item .body ul li{padding-right:30px}.eael-pricing-content-align-left .eael-pricing.style-3 .eael-pricing-item .header:after{-webkit-transform:translateX(-80%);-ms-transform:translateX(-80%);transform:translateX(-80%)}.eael-pricing-content-align-right .eael-pricing.style-3 .eael-pricing-item .header:after{-webkit-transform:translateX(80%);-ms-transform:translateX(80%);transform:translateX(80%)}.eael-pricing-content-align-left .eael-pricing.style-3 .eael-pricing-item:hover .header:after,.eael-pricing-content-align-right .eael-pricing.style-3 .eael-pricing-item:hover .header:after{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}.eael-pricing-content-align-left .eael-pricing.style-1 .eael-pricing-item .eael-pricing-tag:after,.eael-pricing-content-align-left .eael-pricing.style-1 .eael-pricing-item .header:after,.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .eael-pricing-tag:after,.eael-pricing-content-align-right .eael-pricing.style-1 .eael-pricing-item .eael-pricing-tag:after,.eael-pricing-content-align-right .eael-pricing.style-1 .eael-pricing-item .header:after,.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .eael-pricing-tag:after{margin:0;width:100%}.eael-pricing-button-align-right .eael-pricing.style-1 .footer,.eael-pricing-button-align-right .eael-pricing.style-2 .footer,.eael-pricing-button-align-right .eael-pricing.style-3 .footer,.eael-pricing-button-align-right .eael-pricing.style-4 .footer{text-align:right}.eael-pricing-button-align-center .eael-pricing.style-1 .footer,.eael-pricing-button-align-center .eael-pricing.style-2 .footer,.eael-pricing-button-align-center .eael-pricing.style-3 .footer,.eael-pricing-button-align-center .eael-pricing.style-4 .footer{text-align:center}.eael-pricing-button-align-left .eael-pricing.style-1 .footer,.eael-pricing-button-align-left .eael-pricing.style-2 .footer,.eael-pricing-button-align-left .eael-pricing.style-3 .footer,.eael-pricing-button-align-left .eael-pricing.style-4 .footer{text-align:left}.eael-pricing-content-align-center.eael-pricing-button-align-right .eael-pricing.style-2 .footer,.eael-pricing-content-align-center.eael-pricing-button-align-right .eael-pricing.style-4 .footer{padding-right:30px}.eael-pricing-content-align-center.eael-pricing-button-align-left .eael-pricing.style-2 .footer,.eael-pricing-content-align-center.eael-pricing-button-align-left .eael-pricing.style-4 .footer{padding-left:30px}.only-in-pro{width:100%;-webkit-display:flex;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:15px;min-width:200px;background:#ef5350;color:#fff;text-align:center}.only-in-pro .title{font-family:Roboto,sans-serif;font-size:24px;line-height:40px;margin:0}div.tooltipster-sidetip.tooltipster-base.tooltipster-right .tooltipster-arrow{position:absolute;top:50%}div.tooltipster-sidetip.tooltipster-top div.tooltipster-box{margin-bottom:0!important}div.tooltipster-sidetip.tooltipster-bottom div.tooltipster-box{margin-top:0!important}.tooltipster-base.tooltipster-sidetip.tooltipster-top .tooltipster-arrow{top:auto;bottom:-8px}div.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow{top:-8px;bottom:auto}@media only screen and (max-width:480px){.eael-pricing.style-1 .eael-pricing-item .price-tag{display:block}}.eael-post-grid .woocommerce ul.products,.eael-product-grid .woocommerce ul.products{display:grid;grid-gap:25px;margin:0!important;padding:0!important}.eael-post-grid .woocommerce ul.products:after,.eael-post-grid .woocommerce ul.products:before,.eael-product-grid .woocommerce ul.products:after,.eael-product-grid .woocommerce ul.products:before{display:none}.eael-post-grid .woocommerce ul.products .product,.eael-product-grid .woocommerce ul.products .product{width:100%;margin:0;padding:0}.eael-post-grid .woocommerce ul.products.eael-product-columns-1,.eael-product-grid .woocommerce ul.products.eael-product-columns-1{grid-template-columns:100%}.eael-post-grid .woocommerce ul.products.eael-product-columns-2,.eael-product-grid .woocommerce ul.products.eael-product-columns-2{grid-template-columns:repeat(2,1fr)}@media screen and (max-width:480px){.eael-post-grid .woocommerce ul.products.eael-product-columns-2,.eael-product-grid .woocommerce ul.products.eael-product-columns-2{grid-template-columns:repeat(1,1fr)}}.eael-post-grid .woocommerce ul.products.eael-product-columns-3,.eael-product-grid .woocommerce ul.products.eael-product-columns-3{grid-template-columns:repeat(3,1fr)}@media screen and (max-width:767px){.eael-post-grid .woocommerce ul.products.eael-product-columns-3,.eael-product-grid .woocommerce ul.products.eael-product-columns-3{grid-template-columns:repeat(2,1fr)}}@media screen and (max-width:480px){.eael-post-grid .woocommerce ul.products.eael-product-columns-3,.eael-product-grid .woocommerce ul.products.eael-product-columns-3{grid-template-columns:repeat(1,1fr)}}.eael-post-grid .woocommerce ul.products.eael-product-columns-4,.eael-product-grid .woocommerce ul.products.eael-product-columns-4{grid-template-columns:repeat(4,1fr)}@media screen and (max-width:767px){.eael-post-grid .woocommerce ul.products.eael-product-columns-4,.eael-product-grid .woocommerce ul.products.eael-product-columns-4{grid-template-columns:repeat(2,1fr)}}@media screen and (max-width:480px){.eael-post-grid .woocommerce ul.products.eael-product-columns-4,.eael-product-grid .woocommerce ul.products.eael-product-columns-4{grid-template-columns:repeat(1,1fr)}}.eael-post-grid .woocommerce ul.products.eael-product-columns-5,.eael-product-grid .woocommerce ul.products.eael-product-columns-5{grid-template-columns:repeat(5,1fr)}@media screen and (max-width:767px){.eael-post-grid .woocommerce ul.products.eael-product-columns-5,.eael-product-grid .woocommerce ul.products.eael-product-columns-5{grid-template-columns:repeat(2,1fr)}}@media screen and (max-width:480px){.eael-post-grid .woocommerce ul.products.eael-product-columns-5,.eael-product-grid .woocommerce ul.products.eael-product-columns-5{grid-template-columns:repeat(1,1fr)}}.eael-post-grid .woocommerce ul.products.eael-product-columns-6,.eael-product-grid .woocommerce ul.products.eael-product-columns-6{grid-template-columns:repeat(6,1fr)}@media screen and (max-width:767px){.eael-post-grid .woocommerce ul.products.eael-product-columns-6,.eael-product-grid .woocommerce ul.products.eael-product-columns-6{grid-template-columns:repeat(2,1fr)}}@media screen and (max-width:480px){.eael-post-grid .woocommerce ul.products.eael-product-columns-6,.eael-product-grid .woocommerce ul.products.eael-product-columns-6{grid-template-columns:repeat(1,1fr)}}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product{position:relative;float:left;overflow:hidden;text-align:center;padding:0;-webkit-border-radius:0;border-radius:0;background-color:#fff;-webkit-box-shadow:none;box-shadow:none}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a{text-decoration:none}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a:hover,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a:hover,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a:hover,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a:hover{outline:0;-webkit-box-shadow:none;box-shadow:none}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product img,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product img,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product img,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product img{width:100%;height:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .woocommerce-loop-product__title{font-size:16px;font-weight:700;line-height:1;color:#333;margin:25px 0 12px;padding:0}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .onsale,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .onsale,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .onsale,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .onsale{display:block;line-height:170px;font-size:13px;text-align:center;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;-webkit-border-radius:0;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-100px;top:-50px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .price,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price{font-size:14px;margin-bottom:0}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .price del,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price del,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price del,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price del{opacity:.5;display:inline-block}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .price ins,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price ins,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price ins,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price ins{font-weight:400;background-color:transparent;color:#ff2a13}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .star-rating,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .star-rating,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .star-rating,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .star-rating{display:block;float:none;font-size:14px;margin:10px auto}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button{display:block;font-size:14px;font-weight:400;line-height:38px;text-align:center;text-transform:uppercase;color:#fff;background-color:#333;padding:0;margin:15px;-webkit-border-radius:0;border-radius:0}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button:focus,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button:focus,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus{outline:0}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a.added_to_cart,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a.added_to_cart{display:block;margin:0 0 15px 0;padding:0;font-size:14px;line-height:1;text-transform:capitalize;color:#333;background-color:transparent}.eael-post-grid.eael-product-simple .woocommerce ul.products li.product,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product{border:1px solid #eee}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product{border:1px solid transparent}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart{visibility:hidden;-webkit-transition:none;-o-transition:none;transition:none}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover{border:1px solid #eee}.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button.add_to_cart_button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover a.added_to_cart,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button.add_to_cart_button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover a.added_to_cart{visibility:visible}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product{position:relative;float:left;overflow:hidden;text-align:center;padding:0 0 15px 0;-webkit-border-radius:0;border-radius:0;background-color:#fff;-webkit-box-shadow:none;box-shadow:none}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product a,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product a{text-decoration:none}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product a:hover,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product a:hover{outline:0;-webkit-box-shadow:none;box-shadow:none}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product img,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product img{width:100%;height:auto;margin:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay{position:relative;overflow:hidden;line-height:0}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .button-wrap,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .button-wrap{position:absolute;top:50%;left:0;right:0;text-align:center;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link{display:inline-block;font-size:14px;line-height:38px;text-align:center;color:#fff;background-color:#333;width:38px;height:38px;border-style:none;-webkit-border-radius:50%;border-radius:50%;vertical-align:middle;padding:0;margin:0 5px;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px);opacity:0;-webkit-transition:opacity .3s,-webkit-transform .2s;transition:opacity .3s,-webkit-transform .2s;-o-transition:transform .2s,opacity .3s;transition:transform .2s,opacity .3s;transition:transform .2s,opacity .3s,-webkit-transform .2s}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:focus,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:focus,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link:focus,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:focus,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:focus,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link:focus{outline:0}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button{font-size:0}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:before,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:before{display:none}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:after,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:after{content:"\f217";font:normal normal normal 14px/1 FontAwesome;font-size:14px;line-height:38px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:before,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:before{display:none}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:after,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:after{content:"\f110";display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:14px;line-height:38px;color:#fff;height:auto;width:auto;position:relative;top:0;left:0;margin:0;padding:0}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart{font-size:0}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:after,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:after{content:"\f06e";font:normal normal normal 14px/1 FontAwesome;font-size:14px;line-height:38px;color:#fff;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .woocommerce-loop-product__title{font-size:16px;font-weight:700;line-height:1;color:#333;margin:25px 0 12px;padding:0}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .onsale,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .onsale{display:block;line-height:170px;font-size:13px;text-align:center;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;-webkit-border-radius:0;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-100px;top:-50px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price{font-size:14px;margin-bottom:0}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price del,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price del{opacity:.5;display:inline-block}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price ins,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price ins{font-weight:400;background-color:transparent;color:#ff2a13}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .star-rating,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .star-rating{display:block;float:none;font-size:14px;margin:10px auto}.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .add_to_cart_button,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay a,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .add_to_cart_button,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay a{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}@-webkit-keyframes animateStripe{0%{-webkit-transform:translate(0,0);transform:translate(0,0)}100%{-webkit-transform:translate(35px,0);transform:translate(35px,0)}}@keyframes animateStripe{0%{-webkit-transform:translate(0,0);transform:translate(0,0)}100%{-webkit-transform:translate(35px,0);transform:translate(35px,0)}}@-webkit-keyframes animateStripeRTL{0%{-webkit-transform:translate(0,0);transform:translate(0,0)}100%{-webkit-transform:translate(-35px,0);transform:translate(-35px,0)}}@keyframes animateStripeRTL{0%{-webkit-transform:translate(0,0);transform:translate(0,0)}100%{-webkit-transform:translate(-35px,0);transform:translate(-35px,0)}}.eael-progressbar{position:relative}.eael-progressbar-title{font-size:20px;font-weight:400}.eael-progressbar-line{position:relative;display:block;width:100%;height:12px;background-color:#eee}.eael-progressbar-line .eael-progressbar-count-wrap{position:absolute;right:0;bottom:calc(100% + 5px);font-size:16px;font-weight:400;line-height:1}.eael-progressbar-line-fill{display:inline-block;position:absolute;top:50%;left:0;width:0;height:12px;background-color:#000;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);-webkit-transition:width 1.5s linear;-o-transition:width 1.5s linear;transition:width 1.5s linear;overflow:hidden}.eael-progressbar-circle{position:relative;width:200px;height:200px}.eael-progressbar-circle .eael-progressbar-title{font-size:16px;font-weight:400}.eael-progressbar-circle .eael-progressbar-count-wrap{font-size:28px;font-weight:700}.eael-progressbar-circle-shadow{width:220px;height:220px;padding:10px;-webkit-border-radius:50%;border-radius:50%}.eael-progressbar-circle-pie{position:absolute;top:0;left:0;width:100%;height:100%;-webkit-clip-path:inset(0 0 0 50%);clip-path:inset(0 0 0 50%)}.eael-progressbar-circle-inner{height:100%;width:100%;border-width:12px;border-style:solid;border-color:#eee;-webkit-border-radius:50%;border-radius:50%}.eael-progressbar-circle-half{position:absolute;left:0;top:0;height:100%;width:100%;border-width:12px;border-style:solid;border-color:#000;-webkit-border-radius:50%;border-radius:50%;-webkit-clip-path:inset(0 50% 0 0);clip-path:inset(0 50% 0 0)}.eael-progressbar-circle-half-left{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.eael-progressbar-circle-half-right{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);visibility:hidden}.eael-progressbar-circle-inner-content{position:absolute;top:50%;width:100%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);text-align:center}.eael-progressbar-half-circle{position:relative;width:200px;height:100px;overflow:hidden}.eael-progressbar-half-circle .eael-progressbar-circle-pie{-webkit-clip-path:inset(0 0 50% 0);clip-path:inset(0 0 50% 0)}.eael-progressbar-half-circle .eael-progressbar-circle-half{-webkit-clip-path:inset(50% 0 0 0);clip-path:inset(50% 0 0 0);-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);-webkit-transition:-webkit-transform 1.5s linear;transition:-webkit-transform 1.5s linear;-o-transition:transform 1.5s linear;transition:transform 1.5s linear;transition:transform 1.5s linear,-webkit-transform 1.5s linear}.eael-progressbar-half-circle .eael-progressbar-circle-inner-content{top:initial;bottom:0;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-progressbar-half-circle .eael-progressbar-title{font-size:16px;font-weight:400}.eael-progressbar-half-circle .eael-progressbar-count-wrap{font-size:28px;font-weight:700}.eael-progressbar-half-circle-after{position:relative;font-size:12px;font-weight:400;clear:both}.eael-progressbar-postfix-label{float:right}.eael-progressbar-line-stripe .eael-progressbar-line-fill:after{content:'';position:absolute;top:0;left:-35px;width:calc(100% + 70px);height:100%;background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:35px 35px;background-size:35px 35px}.eael-progressbar-line-animate .eael-progressbar-line-fill:after{-webkit-animation:animateStripe 2s linear infinite;animation:animateStripe 2s linear infinite}.eael-progressbar-line-animate-rtl .eael-progressbar-line-fill:after{-webkit-animation:animateStripeRTL 2s linear infinite;animation:animateStripeRTL 2s linear infinite}.eael-progressbar-circle-wrap>div{margin:0 auto}.eael-progressbar-box-container.left>div,.eael-progressbar-circle-container.left>div,.eael-progressbar-line-container.left{margin:0 auto 0 0}.eael-progressbar-box-container.center>div,.eael-progressbar-circle-container.center>div,.eael-progressbar-line-container.center{margin:0 auto}.eael-progressbar-box-container.right>div,.eael-progressbar-circle-container.right>div,.eael-progressbar-line-container.right{margin:0 0 0 auto}.eael-team-item{overflow:hidden;position:relative}.team-avatar-rounded figure img{-webkit-border-radius:50%;border-radius:50%;height:auto}.eael-team-image>figure{margin:0;padding:0}.eael-team-image>figure img{display:block;margin:0 auto}.eael-team-item .eael-team-content{padding:10px}.eael-team-item .eael-team-member-name{font-size:20px;font-weight:700;letter-spacing:.05em;margin:5px 0;text-transform:uppercase}.eael-team-item .eael-team-member-position{font-size:14px;font-weight:400;letter-spacing:.05em;margin:5px 0 10px;text-transform:uppercase}.eael-team-item .eael-team-content,.eael-team-item .eael-team-content .eael-team-text{font-size:14px;line-height:1.5}.eael-team-content>ul{margin:0;padding:0}.eael-team-content li{display:inline-block;list-style:outside none none;margin-right:10px;text-align:center}.eael-team-content li a{font-size:2.5rem}.eael-team-align-left .eael-team-item .eael-team-content li,.eael-team-align-left .eael-team-item .eael-team-content p,.eael-team-align-left .eael-team-item .eael-team-content ul,.eael-team-align-left .eael-team-item .eael-team-member-name,.eael-team-align-left .eael-team-item .eael-team-member-position,.eael-team-align-left .eael-team-item .eael-team-text{text-align:left}.eael-team-align-right .eael-team-item .eael-team-content li,.eael-team-align-right .eael-team-item .eael-team-content p,.eael-team-align-right .eael-team-item .eael-team-content ul,.eael-team-align-right .eael-team-item .eael-team-member-name,.eael-team-align-right .eael-team-item .eael-team-member-position,.eael-team-align-right .eael-team-item .eael-team-text{text-align:right}.eael-team-align-centered .eael-team-item .eael-team-content li,.eael-team-align-centered .eael-team-item .eael-team-content p,.eael-team-align-centered .eael-team-item .eael-team-content ul,.eael-team-align-centered .eael-team-item .eael-team-member-name,.eael-team-align-centered .eael-team-item .eael-team-member-position,.eael-team-align-centered .eael-team-item .eael-team-text{text-align:center}.eael-team-item.eael-team-members-overlay .eael-team-content{bottom:10px;left:10px;margin-bottom:0;padding-top:15%;opacity:0;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;position:absolute;right:10px;top:10px;-webkit-transition:all 615ms cubic-bezier(.19,1,.22,1) 0s;-o-transition:all 615ms cubic-bezier(.19,1,.22,1) 0s;transition:all 615ms cubic-bezier(.19,1,.22,1) 0s}.eael-team-item.eael-team-members-overlay:hover .eael-team-content{opacity:1}.eael-team-member-social-link>a{display:inline-block;-webkit-transition:all .3s cubic-bezier(.19,1,.22,1) 0s;-o-transition:all .3s cubic-bezier(.19,1,.22,1) 0s;transition:all .3s cubic-bezier(.19,1,.22,1) 0s}.eael-team-member-social-link>a:focus{outline:0}.eael-testimonial-slider{position:relative}.testimonial-star-rating{padding:0;margin:0}.testimonial-star-rating li{list-style:none;display:inline-block}.testimonial-star-rating li i{color:#d8d8d8}.rating-five .testimonial-star-rating li i{color:#f2b01e}.rating-one .testimonial-star-rating li:first-child i{color:#f2b01e}.rating-two .testimonial-star-rating li:nth-child(1) i,.rating-two .testimonial-star-rating li:nth-child(2) i{color:#f2b01e}.rating-three .testimonial-star-rating li:nth-child(1) i,.rating-three .testimonial-star-rating li:nth-child(2) i,.rating-three .testimonial-star-rating li:nth-child(3) i{color:#f2b01e}.rating-four .testimonial-star-rating li:nth-child(1) i,.rating-four .testimonial-star-rating li:nth-child(2) i,.rating-four .testimonial-star-rating li:nth-child(3) i,.rating-four .testimonial-star-rating li:nth-child(4) i{color:#f2b01e}.eael-testimonial-image img{max-width:100%}.eael-testimonial-image{padding:10px 0 0 0}.eael-testimonial-image>figure{display:block;margin:0}.testimonial-avatar-rounded figure img{-webkit-border-radius:50%;border-radius:50%;height:auto}.eael-testimonial-content{margin:0;padding:10px}.eael-testimonial-item>figure{margin:0 auto;padding:0 20px}.eael-testimonial-item .center-text{text-align:center}.eael-testimonial-item .right-text{text-align:right}.eael-testimonial-item .left-text{text-align:left}.eael-testimonial-item .justify-text{text-align:justify}.eael-testimonial-content .eael-testimonial-text{font-size:100%;font-style:italic;line-height:1.5;margin-top:0;margin-bottom:10px;word-wrap:break-word}.eael-testimonial-content .eael-testimonial-user{display:inline-block;font-family:inherit;font-size:105%;font-style:italic;font-weight:400;line-height:1.5;margin-top:0;margin-bottom:0;margin-right:5px}.eael-testimonial-content .eael-testimonial-user-company{display:inline-block;font-family:inherit;font-size:90%;font-style:italic;font-weight:lighter;line-height:1.75;margin-bottom:0;margin-top:1px}.eael-testimonial-image{position:relative}.eael-testimonial-item .eael-testimonial-quote::after{color:inherit!important;content:"\f10e";font-family:FontAwesome;font-size:200%}.eael-testimonial-slider.default-style .eael-testimonial-align-centered .eael-testimonial-image figure img{margin:0 auto}.eael-testimonial-slider.classic-style .eael-testimonial-align-left .eael-testimonial-image figure img,.eael-testimonial-slider.classic-style .eael-testimonial-align-right .eael-testimonial-image figure img,.eael-testimonial-slider.default-style .eael-testimonial-align-left .eael-testimonial-image figure img,.eael-testimonial-slider.default-style .eael-testimonial-align-right .eael-testimonial-image figure img,.eael-testimonial-slider.middle-style .eael-testimonial-align-left .eael-testimonial-image figure img,.eael-testimonial-slider.middle-style .eael-testimonial-align-right .eael-testimonial-image figure img{margin:0}.eael-testimonial-slider.classic-style .eael-testimonial-align-right .eael-testimonial-image figure,.eael-testimonial-slider.default-style .eael-testimonial-align-right .eael-testimonial-image figure,.eael-testimonial-slider.middle-style .eael-testimonial-align-right .eael-testimonial-image figure{text-align:right}.eael-testimonial-slider.classic-style .eael-testimonial-align-left .eael-testimonial-image figure,.eael-testimonial-slider.default-style .eael-testimonial-align-left .eael-testimonial-image figure,.eael-testimonial-slider.middle-style .eael-testimonial-align-left .eael-testimonial-image figure{text-align:left}.eael-testimonial-slider.classic-style .eael-testimonial-align-right .testimonial-classic-style-content,.eael-testimonial-slider.default-style .eael-testimonial-align-right .default-style-testimonial-content,.eael-testimonial-slider.middle-style .eael-testimonial-align-right .eael-testimonial-text,.eael-testimonial-slider.middle-style .eael-testimonial-align-right .middle-style-content{text-align:right}.eael-testimonial-slider.classic-style .eael-testimonial-align-center .testimonial-classic-style-content,.eael-testimonial-slider.default-style .eael-testimonial-align-center .default-style-testimonial-content,.eael-testimonial-slider.middle-style .eael-testimonial-align-center .eael-testimonial-text,.eael-testimonial-slider.middle-style .eael-testimonial-align-center .middle-style-content{text-align:center}.eael-testimonial-slider.classic-style .eael-testimonial-align-left .testimonial-classic-style-content,.eael-testimonial-slider.default-style .eael-testimonial-align-left .default-style-testimonial-content,.eael-testimonial-slider.middle-style .eael-testimonial-align-left .eael-testimonial-text,.eael-testimonial-slider.middle-style .eael-testimonial-align-left .middle-style-content{text-align:left}.eael-testimonial-slider.icon-img-left-content .eael-testimonial-text>p,.eael-testimonial-slider.icon-img-right-content .eael-testimonial-text>p{margin:0}.icon-img-left-content .eael-testimonial-image{float:left;width:30%}.icon-img-left-content .eael-testimonial-content{float:left;width:70%;text-align:left}.icon-img-left-content.eael-testimonial-item{overflow:hidden;position:relative}.icon-img-left-content .eael-testimonial-quote{position:absolute;right:0}.icon-img-left-content .eael-testimonial-text{margin-top:0}.eael-testimonial-align-centered .eael-testimonial-user,.eael-testimonial-align-centered .eael-testimonial-user-company{float:none;text-align:center}.eael-testimonial-align-centered .eael-testimonial-image>figure img{display:block;margin-left:auto!important;margin-right:auto!important}.icon-img-right-content .eael-testimonial-image{float:right;width:30%}.icon-img-right-content .eael-testimonial-content{float:right;width:70%;text-align:right}.icon-img-right-content.eael-testimonial-item{overflow:hidden;position:relative}.icon-img-right-content .eael-testimonial-quote{position:absolute}.icon-img-right-content .eael-testimonial-text{margin-top:0}.eael-testimonial-item{position:relative}.classic-style.testimonial-alignment-center .eael-testimonial-image,.default-style.testimonial-alignment-center .eael-testimonial-image{text-align:center}.classic-style.testimonial-alignment-right .eael-testimonial-image,.default-style.testimonial-alignment-right .eael-testimonial-image{text-align:right}.classic-style.testimonial-alignment-center .eael-testimonial-image>figure,.default-style.testimonial-alignment-center .eael-testimonial-image>figure{text-align:center}.eael-testimonial-slider.icon-img-left-content .eael-testimonial-align-centered .eael-testimonial-content{text-align:center}.eael-testimonial-slider.icon-img-left-content .eael-testimonial-align-left .eael-testimonial-content{text-align:left}.eael-testimonial-slider.icon-img-left-content .eael-testimonial-align-right .eael-testimonial-content{text-align:right}.eael-testimonial-slider.icon-img-right-content .eael-testimonial-align-centered .eael-testimonial-content{text-align:center}.eael-testimonial-slider.icon-img-right-content .eael-testimonial-align-left .eael-testimonial-content{text-align:left}.eael-testimonial-slider.icon-img-right-content .eael-testimonial-align-right .eael-testimonial-content{text-align:right}span.eael-testimonial-quote{position:absolute;right:10px;top:10px}.eael-testimonial-item.left .eael-testimonial-image{text-align:left}.eael-testimonial-item.center .eael-testimonial-image{text-align:center}.eael-testimonial-item.right .eael-testimonial-image{text-align:right}.eael-testimonial-inline-bio .eael-testimonial-image{float:left}.eael-testimonial-inline-bio .bio-text{padding-top:10px}.eael-testimonial-content.eael-testimonial-inline-bio{overflow:hidden;margin-bottom:0;padding-bottom:0}.eael-testimonial-inline-bio .bio-text,.eael-testimonial-inline-bio .testimonial-star-rating{float:left;width:65%}.eael-testimonial-content.eael-testimonial-inline-bio{text-align:left!important}.testimonial-inline-style .eael-testimonial-image{float:left;max-width:100%;padding:0;margin-right:15px}.testimonial-inline-style{overflow:hidden;text-align:left}.content-top-icon-title-inline .eael-testimonial-align-left .eael-testimonial-text,.content-top-icon-title-inline .eael-testimonial-text{text-align:left}.content-top-icon-title-inline .eael-testimonial-align-centered .eael-testimonial-text{text-align:center}.content-top-icon-title-inline .eael-testimonial-align-right .eael-testimonial-text{text-align:right}.content-bottom-icon-title-inline .eael-testimonial-align-left .eael-testimonial-text,.content-bottom-icon-title-inline .eael-testimonial-text{text-align:left}.content-bottom-icon-title-inline .eael-testimonial-align-centered .eael-testimonial-text{text-align:center}.content-bottom-icon-title-inline .eael-testimonial-align-right .eael-testimonial-text{text-align:right}.eael-tooltip{position:relative;display:inline-block;min-width:150px;text-align:center;padding:12px 24px;font-size:.93rem;color:#333;line-height:1;cursor:pointer;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.eael-tooltip .eael-tooltip-text{display:block;width:100%;visibility:hidden;background-color:#000;color:#fff;text-align:center;-webkit-border-radius:4px;border-radius:4px;padding:10px;position:absolute;z-index:1;font-size:.93rem;line-height:1.3}.eael-tooltip .eael-tooltip-text::after{content:"";position:absolute;border-width:5px;border-style:solid}.eael-tooltip:hover .eael-tooltip-text{visibility:visible}.eael-tooltip .eael-tooltip-text.eael-tooltip-left{top:50%;right:100%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin-right:10px}.eael-tooltip:hover .eael-tooltip-text.eael-tooltip-left{-webkit-animation:tooltipLeftIn .3s ease-in-out;animation:tooltipLeftIn .3s ease-in-out}.eael-tooltip .eael-tooltip-text.eael-tooltip-left::after{top:calc(50% - 5px);left:100%;border-color:transparent transparent transparent #000}.eael-tooltip .eael-tooltip-text.eael-tooltip-right{top:50%;left:100%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out;margin-left:10px}.eael-tooltip:hover .eael-tooltip-text.eael-tooltip-right{-webkit-animation:tooltipRightIn .3s linear;animation:tooltipRightIn .3s linear}.eael-tooltip .eael-tooltip-text.eael-tooltip-right::after{top:calc(50% - 5px);right:100%;border-color:transparent #000 transparent transparent}.eael-tooltip .eael-tooltip-text.eael-tooltip-top{bottom:calc(100%);left:0;right:0;margin:0 auto 10px auto}.eael-tooltip .eael-tooltip-text.eael-tooltip-top::after{margin-top:0;top:100%;left:calc(50% - 5px);border-color:#000 transparent transparent transparent}.eael-tooltip:hover .eael-tooltip-text.eael-tooltip-top{-webkit-animation:tooltipTopIn .3s linear;animation:tooltipTopIn .3s linear}.eael-tooltip .eael-tooltip-text.eael-tooltip-bottom{top:100%;left:0;right:0;margin:10px auto 0 auto}.eael-tooltip .eael-tooltip-text.eael-tooltip-bottom::after{margin-top:0;bottom:100%;left:calc(50% - 5px);border-color:transparent transparent #000 transparent}.eael-tooltip:hover .eael-tooltip-text.eael-tooltip-bottom{-webkit-animation:tooltipBottomIn .3s linear;animation:tooltipBottomIn .3s linear}.eael-tooltip-align-left{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.eael-tooltip-align-right{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}.eael-tooltip-align-center{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.eael-tooltip-align-justify .eael-tooltip{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}@-webkit-keyframes tooltipRightIn{0%{opacity:0;left:105%}100%{opacity:1;left:100%}}@keyframes tooltipRightIn{0%{opacity:0;left:105%}100%{opacity:1;left:100%}}@-webkit-keyframes tooltipLeftIn{0%{opacity:0;right:105%}100%{opacity:1;right:100%}}@keyframes tooltipLeftIn{0%{opacity:0;right:105%}100%{opacity:1;right:100%}}@-webkit-keyframes tooltipTopIn{0%{opacity:0;bottom:110%}100%{opacity:1;bottom:100%}}@keyframes tooltipTopIn{0%{opacity:0;bottom:110%}100%{opacity:1;bottom:100%}}@-webkit-keyframes tooltipBottomIn{0%{opacity:0;top:110%}100%{opacity:1;top:100%}}@keyframes tooltipBottomIn{0%{opacity:0;top:110%}100%{opacity:1;top:100%}}.swiper-container-wrap .swiper-slide .eael-social-feed-element img{width:100%}.eael-social-feed-element.hidden{background-color:red!important}.eael-twitter-feed-container::after,.eael-twitter-feed-container::before,.eael-twitter-feed-wrapper::after,.eael-twitter-feed-wrapper::before{content:"";clear:both}.eael-social-feed-element .pull-left{float:left;margin-right:10px}.eael-social-feed-element .pull-right{margin-left:10px}.eael-social-feed-element img{width:100%;height:auto;border:0;vertical-align:middle;-ms-interpolation-mode:bicubic}.eael-social-feed-element .attachment{vertical-align:middle;-ms-interpolation-mode:bicubic}.eael-social-feed-element a{color:#08c;text-decoration:none}.eael-social-feed-element a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.eael-social-feed-element a:active,.eael-social-feed-element a:hover{outline:0;color:#005580;text-decoration:underline}.eael-social-feed-element small{font-size:85%}.eael-social-feed-element strong{font-weight:700}.eael-social-feed-element em{font-style:italic}.eael-social-feed-element p{margin:0 0 10px}.eael-social-feed-element .media-body>p{margin-bottom:4px;min-height:20px}.eael-social-feed-element p.social-feed-text{margin:0;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;-webkit-line-clamp:5;-webkit-box-orient:vertical}.eael-social-feed-element,.eael-social-feed-element .media-body{overflow:hidden;zoom:1;overflow:visible}.eael-social-feed-element{padding:10px;background:0 0}.eael-social-feed-element .media-body .social-network-icon{margin-top:-3px;margin-right:5px;width:16px}.eael-social-feed-element .media-body div{color:#666;line-height:20px;clear:both}.eael-social-feed-element:first-child{margin-top:0}.eael-social-feed-element .media-object{display:block;width:48px;-webkit-border-radius:50%;border-radius:50%}.eael-social-feed-element .media-heading{margin:0 0 5px}.eael-social-feed-element .media-list{margin-left:0;list-style:none}.eael-social-feed-element .muted{color:#999}.eael-social-feed-element a.muted:focus,.eael-social-feed-element a.muted:hover{color:grey}.eael-social-feed-element{-webkit-transition:.25s;-o-transition:.25s;transition:.25s;-webkit-backface-visibility:hidden;backface-visibility:hidden;margin:-1px;margin-top:25px;color:#333;text-align:left;font-size:14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;line-height:16px}.eael-social-feed-element .eael-content{padding:20px 15px 15px;-webkit-transition:.4s;-o-transition:.4s;transition:.4s;background:#fff}.eael-social-feed-element .social-network-icon{opacity:.7}.eael-social-feed-element .author-title{color:#444;line-height:1.5em;font-weight:500}.media-body .fa-twitter{color:#1da1f2;margin-right:8px}.media-body .fa-facebook{color:#3b5998;margin-right:8px}.text-wrapper p .read-more-link{margin-top:9px;display:block}.eael-social-feed-wrapper{width:100%;height:auto;position:relative;z-index:0}.eael-loading-feed{display:none;position:absolute;width:100%;height:100%;top:0;left:0;bottom:0;right:0}.eael-loading-feed.show-loading{display:block;text-align:center;z-index:10;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-transition:.5s;-o-transition:.5s;transition:.5s}.eael-loading-feed .loader{border:3px solid #f3f3f3;-webkit-border-radius:50%;border-radius:50%;border-top:3px solid #3498db;width:30px;height:30px;-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite;margin:0 auto}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0)}100%{-webkit-transform:rotate(360deg)}}@keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.eael-social-feed-container.list-view .eael-social-feed-element{margin:15px;border:1px solid rgba(0,0,0,.1);background:0 0}.eael-social-feed-container.carousel-view{width:100%;height:auto}.eael-twitter-feed-container.masonry-view .eael-social-feed-element{width:33.33%;margin-top:0;float:left}.eael-social-feed-element .eael-content{border:1px solid rgba(0,0,0,.1)}.eael-social-feed-avatar-circle .eael-social-feed-element .media-object{-webkit-border-radius:50%;border-radius:50%}.eael-social-feed-avatar-square .eael-social-feed-element .media-object{-webkit-border-radius:0;border-radius:0}.eael-social-feed-masonry-col-4 .eael-social-feed-element .social-feed-date .eael-social-feed-masonry-col-4 .eael-social-feed-element .social-feed-date{text-align:left!important}@media only screen and (min-width:768px) and (max-width:992px){.eael-twitter-feed-container.masonry-view .eael-social-feed-element{width:50%!important}}@media only screen and (max-width:480px){.eael-twitter-feed-container.masonry-view .eael-social-feed-element{width:100%!important}}.eael-weform-container input,.eael-weform-container textarea{height:auto;padding:10px}.eael-contact-form-align-center .eael-weform-container,.eael-contact-form-btn-align-center .eael-weform-container ul.wpuf-form .wpuf-submit input[type=submit]{margin-left:auto!important;margin-right:auto!important;display:block;float:none}.eael-contact-form-align-left .eael-weform-container,.eael-contact-form-btn-align-left .eael-weform-container ul.wpuf-form .wpuf-submit input[type=submit]{float:left;width:auto}.eael-contact-form-align-right .eael-weform-container,.eael-contact-form-btn-align-right .eael-weform-container ul.wpuf-form .wpuf-submit input[type=submit]{float:right;width:auto}.eael-weform-container ul.wpuf-form li .wpuf-fields input[type=email],.eael-weform-container ul.wpuf-form li .wpuf-fields input[type=number],.eael-weform-container ul.wpuf-form li .wpuf-fields input[type=password],.eael-weform-container ul.wpuf-form li .wpuf-fields input[type=text],.eael-weform-container ul.wpuf-form li .wpuf-fields input[type=url],.eael-weform-container ul.wpuf-form li .wpuf-fields textarea{max-width:100%}.eael-wpforms .wpforms-container .wpforms-form .wpforms-page-button,.eael-wpforms .wpforms-container .wpforms-form button[type=submit],.eael-wpforms .wpforms-container .wpforms-form input[type=submit]{border:0}.eael-wpforms .wpforms-container .wpforms-form .wpforms-page-button:hover,.eael-wpforms .wpforms-container .wpforms-form button[type=submit]:hover,.eael-wpforms .wpforms-container .wpforms-form input[type=submit]:hover{border:0}.eael-wpforms .wpforms-container .wpforms-form input[type=checkbox],.eael-wpforms .wpforms-container .wpforms-form input[type=radio]{padding:3px}.eael-wpforms .wpforms-container .wpforms-form .wpforms-field-label{display:none}.eael-wpforms .wpforms-container .wpforms-form .wpforms-field-name .wpforms-field-row{max-width:100%}.eael-wpforms .wpforms-container .wpforms-field input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),.eael-wpforms .wpforms-container .wpforms-field select,.eael-wpforms .wpforms-container .wpforms-field textarea{max-width:100%!important}.eael-wpforms-labels-yes .wpforms-container .wpforms-form .wpforms-field-label{display:block}.eael-wpforms-form-button-full-width .wpforms-submit-container .wpforms-submit{width:100%}.eael-adv-accordion{width:auto;height:auto;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.eael-adv-accordion .eael-accordion-list .eael-accordion-header{padding:15px;border:1px solid rgba(0,0,0,.02);font-size:1rem;font-weight:600;line-height:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;cursor:pointer}.eael-adv-accordion .eael-accordion-list .eael-accordion-header .fa-toggle{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);z-index:10;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.eael-adv-accordion .eael-accordion-list .eael-accordion-header.active .fa-toggle{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);z-index:10;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.fa-accordion-icon{display:inline-block;margin-right:10px}.eael-adv-accordion .eael-accordion-list .eael-accordion-content{display:none;border:1px solid #eee;padding:15px;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:1rem;line-height:1.7}.eael-adv-accordion .eael-accordion-list .eael-accordion-content p{margin:0}.eael-adv-accordion .eael-accordion-list .eael-accordion-content.active{display:block}@-webkit-keyframes rotate-90{0%{-webkit-transform:rotateY(0);transform:rotateY(0)}100%{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}}@keyframes rotate-90{0%{-webkit-transform:rotateY(0);transform:rotateY(0)}100%{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}}@-webkit-keyframes fadeIn{0%{opacity:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}100%{opacity:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}}@keyframes fadeIn{0%{opacity:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}100%{opacity:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}}.eael-advance-tabs{display:block}.eael-advance-tabs .eael-tabs-nav>ul{position:relative;padding:0;margin:0;list-style-type:none;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;z-index:1}.eael-advance-tabs .eael-tabs-nav>ul li{position:relative;padding:1em 1.5em;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;text-align:center}.eael-advance-tabs .eael-tabs-nav>ul li:after{content:"";position:absolute;bottom:-10px;left:0;right:0;margin:0 auto;z-index:1;width:0;height:0;border-left:10px solid transparent;border-right:10px solid transparent;border-top:10px solid #444;border-bottom:0;display:none}.eael-advance-tabs.active-caret-on .eael-tabs-nav>ul li.active-default:after,.eael-advance-tabs.active-caret-on .eael-tabs-nav>ul li.active:after{display:none}.eael-advance-tabs .eael-tabs-nav>ul li.active-default:after,.eael-advance-tabs .eael-tabs-nav>ul li.active:after{display:block}.eael-tabs-content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}.eael-advance-tabs .eael-tabs-content>div{display:none;opacity:0}.eael-advance-tabs .eael-tabs-content>div.active,.eael-advance-tabs .eael-tabs-content>div.active-default{display:block;width:100%;padding:1em;opacity:1;-webkit-animation:fadeIn linear .3s;animation:fadeIn linear .3s}.eael-tab-inline-icon li a .fa{margin-right:10px;line-height:1}.eael-tab-top-icon li{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;text-align:center}.eael-tab-top-icon li a{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;text-align:center}.eael-tab-top-icon li .eael-tab-title,.eael-tab-top-icon li .fa{-webkit-box-flex:1;-webkit-flex:1 1 100%;-ms-flex:1 1 100%;flex:1 1 100%;line-height:1}.eael-tab-top-icon li a .eael-tab-title{margin-top:10px}.eael-advance-tabs.eael-tabs-vertical{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto}.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav>ul{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-flow:column wrap;-ms-flex-flow:column wrap;flex-flow:column wrap}.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav>ul>li{width:100%;-webkit-box-pack:start;-webkit-justify-content:start;-ms-flex-pack:start;justify-content:start}.eael-advance-tabs.eael-tabs-vertical .eael-tabs-nav>ul li::after{bottom:auto!important;right:-10px;top:calc(50% - 10px);left:auto!important;border-left:10px solid #444;border-right:0;border-top:10px solid transparent;border-bottom:10px solid transparent}@media only screen and (max-width:767px){.eael-advance-tabs .eael-tabs-nav>ul{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.eael-advance-tabs .eael-tabs-nav>ul li{-webkit-box-flex:1;-webkit-flex:1 100%;-ms-flex:1 100%;flex:1 100%}.eael-advance-tabs.eael-tabs-vertical{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.eael-advance-tabs.eael-tabs-vertical div.eael-tabs-nav{-webkit-box-flex:1;-webkit-flex:1 100%;-ms-flex:1 100%;flex:1 100%}.eael-advance-tabs.eael-tabs-vertical ul{-webkit-box-flex:1;-webkit-flex:1 100%;-ms-flex:1 100%;flex:1 100%}.eael-advance-tabs.eael-tabs-vertical ul li{-webkit-box-flex:1;-webkit-flex:1 100%;-ms-flex:1 100%;flex:1 100%}div.eael-advance-tabs.eael-tabs-vertical div.eael-tabs-nav>ul li::after{border-left-color:transparent!important;bottom:-20px!important;left:0!important;right:0!important;top:auto!important;border-left:10px solid transparent;border-right:10px solid transparent;border-top-color:#444!important}}.eael-caldera-form-align-left,.eael-caldera-form-btn-align-left{text-align:left}.eael-caldera-form-align-right,.eael-caldera-form-btn-align-right{text-align:right}.eael-caldera-form-align-center,.eael-caldera-form-btn-align-center{text-align:center}.eael-caldera-form .control-label{display:none}.eael-caldera-form-labels-yes .control-label{display:block}.eael-caldera-form-button-center .form-group input[type=button],.eael-caldera-form-button-center .form-group input[type=submit]{display:block;margin:0 auto}.eael-caldera-form-button-right .form-group input[type=button],.eael-caldera-form-button-right .form-group input[type=submit]{float:right}.eael-caldera-form .intl-tel-input{display:inherit}.eael-custom-radio-checkbox .caldera-grid input[type=checkbox],.eael-custom-radio-checkbox .caldera-grid input[type=radio]{border-style:solid;border-width:0;padding:3px;-webkit-appearance:none}.eael-caldera-form-button-full-width .form-group input[type=button],.eael-caldera-form-button-full-width .form-group input[type=submit]{width:100%}.eael-call-to-action{width:100%;height:auto;display:block;padding:30px;font-size:16px;color:#4d4d4d;font-weight:400;line-height:27px;margin:0 auto}.eael-call-to-action p{margin-bottom:10px}.eael-call-to-action .title{font-size:36px;font-weight:600;line-height:36px;margin-bottom:10px;text-transform:capitalize;font-style:normal}.eael-call-to-action.cta-center{text-align:center}.eael-call-to-action.cta-right{text-align:right}.eael-call-to-action.cta-left{text-align:left}.eael-call-to-action.bg-lite{background:#f4f4f4}.eael-call-to-action.bg-img{background-image:url(../img/bg.jpg);background-repeat:no-repeat;background-position:center;-webkit-background-size:cover;background-size:cover;position:relative;z-index:0;color:rgba(255,255,255,.7)}.eael-call-to-action.bg-img .icon{color:#fff}.eael-call-to-action.bg-img:after{content:"";position:absolute;width:100%;height:100%;top:0;left:0;z-index:-1;background:rgba(0,0,0,.8)}.eael-call-to-action.bg-img.bg-fixed{background-attachment:fixed;background-position:center center}.eael-call-to-action.bg-img .title{color:rgba(255,255,255,.9)}.eael-call-to-action.cta-flex,.eael-call-to-action.cta-icon-flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}.eael-call-to-action.cta-icon-flex .icon{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;font-size:80px;text-align:left;line-height:130px}.eael-call-to-action.cta-icon-flex .action{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;text-align:right;padding-top:22px;-webkit-flex-basis:22%;-ms-flex-preferred-size:22%;flex-basis:22%}.eael-call-to-action.cta-icon-flex .content{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;padding:0 30px}.eael-call-to-action.cta-flex .content{padding:0 15px;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.eael-call-to-action.cta-flex .action{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;text-align:right;padding-top:25px;-webkit-flex-basis:23%;-ms-flex-preferred-size:23%;flex-basis:23%}.eael-call-to-action .cta-button{position:relative;display:inline-block;padding:12px 30px;background:#f9f9f9;font-size:16px;text-decoration:none;color:#4d4d4d;-webkit-transition:.5s;-o-transition:.5s;transition:.5s;-webkit-box-shadow:0 0 3px -1px rgba(0,0,0,.2);-ms-box-shadow:0 0 3px -1px rgba(0,0,0,.2);box-shadow:0 0 3px -1px rgba(0,0,0,.2);margin-right:10px;margin-top:10px;z-index:0;overflow:hidden}.eael-call-to-action .cta-button:last-child{margin-right:0}.eael-call-to-action .cta-button:focus{outline:0}.eael-call-to-action .cta-button:hover{color:#fff;background:#3f51b5;-webkit-box-shadow:0 1px 12px 1px rgba(0,0,0,.1);-ms-box-shadow:0 1px 12px 1px rgba(0,0,0,.1);box-shadow:0 1px 12px 1px rgba(0,0,0,.1)}.eael-call-to-action .cta-button.effect-1:after{content:"";position:absolute;width:100%;height:100%;background:#3f51b5;top:0;left:0;transform:translateY(-100%);-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);z-index:-1;-webkit-transition:.5s;-o-transition:.5s;transition:.5s;color:#fff}.eael-call-to-action .cta-button.effect-1:hover::after{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-call-to-action .cta-button.effect-2:after{content:"";position:absolute;width:100%;height:100%;background:#3f51b5;top:0;left:0;z-index:-1;-webkit-transition:.5s;-o-transition:.5s;transition:.5s;color:#fff;-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%)}.eael-call-to-action .cta-button.effect-2:hover::after{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}@media only screen and (max-width:768px){.eael-call-to-action.cta-flex,.eael-call-to-action.cta-icon-flex{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.eael-call-to-action .title{font-size:28px;line-height:36px;margin-top:0}.eael-call-to-action.cta-icon-flex .icon{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;font-size:48px;line-height:90px;text-align:center}.eael-call-to-action.cta-flex .content,.eael-call-to-action.cta-icon-flex .content{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;text-align:center;padding:0}.eael-call-to-action.cta-flex .action,.eael-call-to-action.cta-icon-flex .action{text-align:center;padding-top:0}.eael-call-to-action .cta-button{padding:12px 25px}}@media only screen and (max-width:360px){.eael-call-to-action{font-size:14px;line-height:26px}.eael-call-to-action .cta-button{padding:4px 20px;font-size:12px}.eael-call-to-action .title{font-size:20px;line-height:30px}}@-webkit-keyframes loaderSpin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes loaderSpin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.eael-load-more-button-wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.eael-load-more-button{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding:1em 2em;border:0 solid;font-size:16px;overflow:hidden}.eael-load-more-button .button__loader{left:-100%;top:auto;margin-right:5px;-webkit-transition:all .2s;-o-transition:all .2s;transition:all .2s}.eael-load-more-button>span{margin-left:-20px}.eael-load-more-button.button--loading>span{margin-left:0}.eael-load-more-button.button--loading .button__loader{left:0}.eael-btn-loader{-webkit-border-radius:50%;border-radius:50%;width:20px;height:20px;font-size:10px;position:relative;text-indent:-9999em;border-top:4px solid rgba(255,255,255,.2);border-right:4px solid rgba(255,255,255,.2);border-bottom:4px solid rgba(255,255,255,.2);border-left:4px solid #fff;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-animation:loaderSpin 1.1s infinite linear;animation:loaderSpin 1.1s infinite linear}.eael-btn-loader:after{-webkit-border-radius:50%;border-radius:50%;width:20px;height:20px}.eael-contact-form-7.eael-contact-form-btn-align-center input.wpcf7-submit,.eael-contact-form.eael-contact-form-align-center{margin-left:auto!important;margin-right:auto!important;display:block;float:none}.eael-contact-form-7.eael-contact-form-btn-align-left input.wpcf7-submit,.eael-contact-form.eael-contact-form-align-left{float:left;width:auto}.eael-contact-form-7.eael-contact-form-btn-align-right input.wpcf7-submit,.eael-contact-form.eael-contact-form-align-right{float:right;width:auto}.eael-contact-form-7 .uneditable-input,.eael-contact-form-7 input[type=color],.eael-contact-form-7 input[type=date],.eael-contact-form-7 input[type=datetime-local],.eael-contact-form-7 input[type=datetime],.eael-contact-form-7 input[type=email],.eael-contact-form-7 input[type=month],.eael-contact-form-7 input[type=number],.eael-contact-form-7 input[type=password],.eael-contact-form-7 input[type=search],.eael-contact-form-7 input[type=tel],.eael-contact-form-7 input[type=text],.eael-contact-form-7 input[type=time],.eael-contact-form-7 input[type=url],.eael-contact-form-7 input[type=week],.eael-contact-form-7 textarea{-webkit-transition:border linear .2s,box-shadow linear .2s;-webkit-transition:border linear .2s,-webkit-box-shadow linear .2s;transition:border linear .2s,-webkit-box-shadow linear .2s;-o-transition:border linear .2s,box-shadow linear .2s;transition:border linear .2s,box-shadow linear .2s;transition:border linear .2s,box-shadow linear .2s,-webkit-box-shadow linear .2s}.eael-contact-form-7 .wpcf7-form::after,.eael-contact-form-7 .wpcf7-form::before{content:" ";clear:both;display:table}.eael-contact-form-7 .wpcf7-form:after{clear:both;content:"";font-size:0;height:0;display:block;visibility:hidden}.eael-contact-form-7 .wpcf7-form .wpcf7-form-control-wrap,.eael-contact-form-7 .wpcf7-form label{display:block}.eael-contact-form-7 .wpcf7-form p{margin-bottom:0}.eael-contact-form-7.labels-hide .wpcf7-form label{display:none}.eael-contact-form-7-title{margin-bottom:10px}.eael-contact-form-7-description{margin-bottom:20px}.eael-contact-form-7-button-full-width .wpcf7-form-control.wpcf7-submit{width:100%}.eael-contact-form-7-wrapper .eael-contact-form-align-center form{margin:0 auto}.eael-ticker-wrap{overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row nowrap;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;width:100%}.eael-ticker-wrap .ticker-badge{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;padding:8px 12px}.eael-ticker-wrap .eael-ticker{overflow:hidden;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}.eael-ticker-wrap .eael-ticker .ticker-content{padding:8px 12px;line-height:1.8}.eael-ticker-wrap .eael-ticker .ticker-content p{margin:0}.eael-ticker-wrap .swiper-button-prev{left:auto!important;right:25px}.eael-ticker-wrap div.swiper-slide,.eael-ticker-wrap div.swiper-slide.swiper-slide-next,.eael-ticker-wrap div.swiper-slide.swiper-slide-prev{opacity:0!important}.eael-ticker-wrap div.swiper-slide.swiper-slide-active{opacity:1!important}.eael-ticker-wrap .eael-content-ticker.swiper-container .swiper-slide{text-align:left}@media only screen and (max-width:767px){.eael-ticker-wrap{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap}.content-ticker-pagination{display:none}}.eael-countdown-items{list-style:none;margin:0;padding:0;display:table;table-layout:fixed;width:100%}.eael-countdown-items>li{list-style:none;margin:0;padding:0;display:table-cell;position:relative}.eael-countdown-item>div{text-align:center;padding:20px}.eael-countdown-label-block .eael-countdown-digits,.eael-countdown-label-block .eael-countdown-label{display:block;text-align:center}.eael-countdown-digits{font-size:54px;line-height:1}.eael-countdown-label{font-size:18px;line-height:1;color:#fff}.eael-countdown-show-separator .eael-countdown-digits::after{content:":";position:absolute;left:98%;z-index:9999}.eael-countdown-item:last-child .eael-countdown-digits::after{display:none}.eael-countdown-items.style-1 .eael-countdown-item>div{background:#262625}.eael-creative-button-align-center{text-align:center}.eael-creative-button-wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.eael-creative-button{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;min-width:150px;text-align:center;vertical-align:middle;position:relative;z-index:1;-webkit-border-radius:2px;border-radius:2px;padding:20px 30px;font-size:16px;line-height:1;-webkit-backface-visibility:hidden;backface-visibility:hidden;-moz-osx-font-smoothing:grayscale}.eael-creative-button-align-center .eael-creative-button{float:none;display:inline-block}.eael-creative-button:focus{outline:0}.eael-creative-button>span{vertical-align:middle}.eael-creative-button--winona{overflow:hidden;padding:0!important;-webkit-transition:border-color .3s,background-color .3s;-o-transition:border-color .3s,background-color .3s;transition:border-color .3s,background-color .3s;-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--winona::after{content:attr(data-text);position:absolute;width:100%;height:100%;top:0;left:0;opacity:0;-webkit-transform:translate3d(0,25%,0);transform:translate3d(0,25%,0)}.eael-creative-button--winona>span{display:block}.eael-creative-button--winona::after,.eael-creative-button--winona>span{padding:1em 2em;-webkit-transition:-webkit-transform .3s,opacity .3s;-webkit-transition:opacity .3s,-webkit-transform .3s;transition:opacity .3s,-webkit-transform .3s;-o-transition:transform .3s,opacity .3s;transition:transform .3s,opacity .3s;transition:transform .3s,opacity .3s,-webkit-transform .3s;-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--winona:hover::after{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.eael-creative-button--winona:hover>span{opacity:0;-webkit-transform:translate3d(0,-25%,0);transform:translate3d(0,-25%,0)}.eael-creative-button--ujarak{-webkit-transition:border-color .4s,color .4s;-o-transition:border-color .4s,color .4s;transition:border-color .4s,color .4s}.eael-creative-button--ujarak::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1;opacity:0;-webkit-transform:scale3d(.7,1,1);transform:scale3d(.7,1,1);-webkit-transition:-webkit-transform .4s,opacity .4s;-webkit-transition:opacity .4s,-webkit-transform .4s;transition:opacity .4s,-webkit-transform .4s;-o-transition:transform .4s,opacity .4s;transition:transform .4s,opacity .4s;transition:transform .4s,opacity .4s,-webkit-transform .4s;-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--ujarak,.eael-creative-button--ujarak::before{-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--ujarak:hover::before{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.eael-creative-button--wayra{overflow:hidden;-webkit-transition:border-color .3s,color .3s;-o-transition:border-color .3s,color .3s;transition:border-color .3s,color .3s;-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--wayra::before{content:'';position:absolute;top:0;left:0;width:150%;height:100%;z-index:-1;-webkit-transform:rotate3d(0,0,1,-45deg) translate3d(0,-3em,0);transform:rotate3d(0,0,1,-45deg) translate3d(0,-3em,0);-webkit-transform-origin:0 100%;-ms-transform-origin:0 100%;transform-origin:0 100%;-webkit-transition:-webkit-transform .3s,opacity .3s,background-color .3s;-webkit-transition:opacity .3s,background-color .3s,-webkit-transform .3s;transition:opacity .3s,background-color .3s,-webkit-transform .3s;-o-transition:transform .3s,opacity .3s,background-color .3s;transition:transform .3s,opacity .3s,background-color .3s;transition:transform .3s,opacity .3s,background-color .3s,-webkit-transform .3s}.eael-creative-button--wayra:hover::before{opacity:1;-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg);-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--tamaya{overflow:hidden}.eael-creative-button--tamaya::after,.eael-creative-button--tamaya::before{content:attr(data-text);position:absolute;width:100%;height:50%;left:0;overflow:hidden;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;-o-transition:transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--tamaya::before{top:0;padding:20px 30px}.eael-creative-button--tamaya::after{bottom:0;line-height:0}.eael-creative-button--tamaya:hover::after{bottom:-1px}.eael-creative-button--tamaya>span{display:block;-webkit-transform:scale3d(.2,.2,1);transform:scale3d(.2,.2,1);opacity:0;-webkit-transition:-webkit-transform .3s,opacity .3s;-webkit-transition:opacity .3s,-webkit-transform .3s;transition:opacity .3s,-webkit-transform .3s;-o-transition:transform .3s,opacity .3s;transition:transform .3s,opacity .3s;transition:transform .3s,opacity .3s,-webkit-transform .3s;-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);-o-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.eael-creative-button--tamaya:hover::before{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.eael-creative-button--tamaya:hover::after{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.eael-creative-button--tamaya:hover>span{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}.eael-creative-button--rayen{overflow:hidden;padding:0!important}.eael-creative-button--rayen::before{content:attr(data-text);position:absolute;top:0;left:0;width:100%;height:100%;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.eael-creative-button--rayen>span{display:block}.eael-creative-button--rayen::before,.eael-creative-button--rayen>span{padding:1em 2em;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;-o-transition:transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;-webkit-transition-timing-function:cubic-bezier(.75,0,.125,1);-o-transition-timing-function:cubic-bezier(.75,0,.125,1);transition-timing-function:cubic-bezier(.75,0,.125,1)}.eael-creative-button--rayen:hover::before{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.eael-creative-button--rayen:hover>span{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}table.eael-data-table thead .sorting,table.eael-data-table thead .sorting_asc,table.eael-data-table thead .sorting_desc{position:relative;z-index:0;outline:0;cursor:pointer}table.eael-data-table thead .sorting:after,table.eael-data-table thead .sorting_asc:after,table.eael-data-table thead .sorting_desc:after{position:absolute;top:50%;right:10px;font-family:FontAwesome;color:#fff;z-index:1;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.eael-data-table-wrap .eael-data-tables_wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;width:100%}.eael-data-table-wrap .eael-data-tables_filter{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;text-align:right}.eael-data-table-wrap .eael-data-tables_filter label{font-weight:700}.eael-data-table-wrap .eael-data-tables_filter label input[type=search]{height:40px;border:1px solid rgba(0,0,0,.09);outline:0;padding:10px;margin-left:10px}.eael-data-table-wrap .eael-data-tables_length{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%}.eael-data-table-wrap .eael-data-tables_length select{width:auto;max-width:120px;height:40px;border:1px solid rgba(0,0,0,.09);outline:0;margin-left:10px;margin-right:10px}.eael-data-table-wrap .eael-data-tables_length label{font-weight:700}.eael-data-table-wrap .eael-data-tables_info{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;font-weight:700}.eael-data-table-wrap .eael-data-tables_paginate{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;text-align:right}.eael-data-table-wrap .eael-data-tables_paginate .paginate_button{padding:10px 15px;background:#f2f2f2;margin-right:2px;cursor:pointer;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.eael-data-table-wrap .eael-data-tables_paginate .paginate_button:hover{color:#fff;background:#4a4893}.eael-data-table-wrap .eael-data-tables_paginate .paginate_button.current{color:#fff;background:#4a4893}.eael-data-table-wrap .eael-data-tables_paginate .paginate_button.disabled{cursor:no-drop;background:#f2f2f2;opacity:.5;color:#888}.data-header-icon{margin-right:10px}.eael-data-table{width:100%;height:auto;margin:0;border-collapse:collapse;border:none}.eael-data-table tr{border-style:none}.eael-data-table thead tr{text-align:left}.eael-data-table thead tr th{padding:20px 15px;background:#4a4893;font-size:16px;font-weight:600;font-family:Montserrat,sans-serif;line-height:1;color:#fff;border-color:#000;border-width:2px;border-style:none;background-clip:padding-box}.eael-data-table thead tr th:hover{border-color:#000}.eael-data-table tbody tr.even{-webkit-transition:background .4s ease-in-out;-o-transition:background .4s ease-in-out;transition:background .4s ease-in-out}.eael-data-table tbody tr.even:hover{background:rgba(242,242,242,.7)}.eael-data-table tbody tr.even:last-child{border-bottom:1px solid rgba(0,0,0,.09)}.eael-data-table tbody tr.odd{background:rgba(242,242,242,.5);-webkit-transition:background .2s ease-in-out;-o-transition:background .2s ease-in-out;transition:background .2s ease-in-out}.eael-data-table tbody tr.odd:hover{background:rgba(242,242,242,.7)}.eael-data-table tbody tr.odd:last-child{border-bottom:1px solid rgba(0,0,0,.09)}.eael-data-table tbody tr td{padding:20px 15px;font-size:14px;font-family:Montserrat,sans-serif;line-height:1;border-width:2px;border-style:none;background-clip:padding-box}.eael-data-table-th-img{display:inline-block;margin:0 15px 0 0;line-height:1}.th-mobile-screen{display:none}@media (max-width:39.9375em){.eael-data-table-wrap{overflow-x:scroll!important;padding-bottom:5px}.th-mobile-screen{display:inline-block;padding:0 .6em;margin-right:10px;text-align:center;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-flex-basis:100px;-ms-flex-preferred-size:100px;flex-basis:100px}.th-mobile-screen .eael-data-table-th-img{margin:0 auto 15px auto;display:block}.th-mobile-screen .data-header-icon{margin:0 auto 15px auto;display:block}.td-content-wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%}.td-content{width:100%;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.td-content>p{width:100%;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.custom-responsive-option-enable .eael-data-table thead{display:none}.custom-responsive-option-enable .eael-data-table tbody tr td{float:none;clear:left;width:100%;text-align:left;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.eael-data-table .td-content{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}}table.eael-data-table thead .sorting:after{content:"\f0dc"}table.eael-data-table thead .headerSortDown:after{content:"\f0dd"}table.eael-data-table thead .headerSortUp:after{content:"\f0de"}table.eael-data-table thead .sorting_disabled.sorting:after{display:none}table.eael-data-table .sorting.sorting-none:after{display:none}table.eael-data-table .sorting_desc.sorting-none:after{display:none}table.eael-data-table .sorting_asc.sorting-none:after{display:none}.eael-table-align-left table.eael-data-table{float:left}.eael-table-align-center table.eael-data-table{margin:0 auto}.eael-table-align-right table.eael-data-table{float:right}.eael-hide-elements .eael-data-tables_info{display:none}.eael-dt-th-align-left .eael-data-table thead tr th{text-align:left}.eael-dt-td-align-left .eael-data-table tbody tr td{text-align:left}.eael-dt-th-align-right .eael-data-table thead tr th{text-align:right;padding-right:30px}.eael-dt-td-align-right .eael-data-table tbody tr td{text-align:right;padding-right:30px}.eael-dt-th-align-center .eael-data-table thead tr th{text-align:center}.eael-dt-td-align-center .eael-data-table tbody tr td{text-align:center}.eael-dual-header{display:block;margin-bottom:50px}.eael-dual-header .title,.eael-dual-header .title span{font-size:36px;font-weight:700;text-transform:uppercase;line-height:48px;margin:10px 0}.eael-dual-header .subtext{font-size:16px;display:block}.eael-dual-header i{display:block;padding:0;margin:20px 0 10px 0;font-size:36px}.eael-dual-header .title span.lead{color:#1abc9c}.eael-dual-header-content-align-center{text-align:center}.eael-dual-header-content-align-left{text-align:left}.eael-dual-header-content-align-right{text-align:right}.elementor-panel .pro-feature,.elementor-panel .pro-feature a{color:#a4afb7;text-transform:uppercase;letter-spacing:1px;line-height:1.8;font-style:normal}.elementor-panel .pro-feature a{text-decoration:underline;color:#f54!important}.elementor-control-data_table_content_colspan_pro_alert .elementor-control-title,.elementor-control-data_table_content_rowspan_pro_alert .elementor-control-title,.elementor-control-data_table_content_template_pro_alert .elementor-control-title,.elementor-control-data_table_header_colspan_pro_alert .elementor-control-title,.elementor-control-data_table_header_img_pro_alert .elementor-control-title,.elementor-panel .elementor-control-eael_section_pro .elementor-panel-heading-title.elementor-panel-heading-title,.elementor-panel .elementor-control-eael_section_pro .elementor-panel-heading-toggle{color:#f54}.elementor-panel .elementor-control-eael_control_get_pro .elementor-control-field{display:none!important}.elementor-control-eael_fancy_text_style_pro_alert .elementor-control-title,.elementor-control-eael_img_accordion_type_pro_alert .elementor-control-title,.elementor-control-eael_pricing_table_style_pro_alert .elementor-control-title,.elementor-control-eael_section_countdown_style_pro_alert .elementor-control-title,.elementor-control-eael_section_data_table_enabled_pro_alert .elementor-control-title,.elementor-control-eael_team_members_preset_pro_alert .elementor-control-title,.elementor-control-eael_ticker_type_pro_alert .elementor-control-title{color:#f54}.eael-fancy-text-container p{margin:0}.eael-fancy-text-prefix,.eael-fancy-text-strings,.eael-fancy-text-suffix{display:inline-block}.morphext>.animated{display:inline-block}.typed-cursor{opacity:1;-webkit-animation:blink_cursor .7s infinite;animation:blink_cursor .7s infinite}@keyframes blink_cursor{0%{opacity:1}50%{opacity:0}100%{opacity:1}}@-webkit-keyframes blink_cursor{0%{opacity:1}50%{opacity:0}100%{opacity:1}}.eael-fancy-text-container.style-2{font-size:24px}.eael-fancy-text-container.style-2 .eael-fancy-text-strings{background:#f54;color:#fff;padding:10px 25px}.elementor-widget-eael-feature-list.-icon-position-left .connector-type-modern.rhombus .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right .connector-type-modern.rhombus .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top .connector-type-modern.rhombus .eael-feature-list-item:before{top:3px!important}.elementor-widget-eael-feature-list.-icon-position-left .connector-type-modern.rhombus .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right .connector-type-modern.rhombus .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top .connector-type-modern.rhombus .eael-feature-list-item:after{top:45px!important}.elementor-widget-eael-feature-list.-icon-position-right .connector,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .connector{right:0;left:calc(100% - 60px)}.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 50px 0 0}@media (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 30px 0 0}}.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{left:auto;right:0}.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:auto;right:5px;top:30px}.elementor-widget-eael-feature-list .eael-feature-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item{position:relative}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .connector{display:block;position:absolute;width:0;margin:0 auto;z-index:1;height:100%;top:.5em;font-size:60px;left:0;right:calc(100% - 60px);border-left:2px solid #2ecc71;border-right:none!important}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item:last-child .connector{display:none}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box{z-index:2;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}@media (prefers-reduced-motion:reduce){.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box{-webkit-transition:none;-o-transition:none;transition:none}}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon-inner{background-color:#37368e;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex}@media (prefers-reduced-motion:reduce){.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon-inner{-webkit-transition:none;-o-transition:none;transition:none}}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon{padding:.5em;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s;font-size:30px;line-height:1;color:#37368e;text-align:center;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex}@media (prefers-reduced-motion:reduce){.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon{-webkit-transition:none;-o-transition:none;transition:none}}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon i{width:1em;height:1em;position:relative;display:block}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-icon i:before{position:absolute;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-icon-box .eael-feature-list-img{font-size:8px;line-height:1;max-width:inherit}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-content-box{margin:0 0 0 20px}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-content-box .eael-feature-list-title{margin-top:-2px;line-height:1.5em}.elementor-widget-eael-feature-list .eael-feature-list-items .eael-feature-list-item .eael-feature-list-content-box .eael-feature-list-content{padding:0;margin:0;font-size:14px;line-height:1.5em}.elementor-widget-eael-feature-list .eael-feature-list-items.stacked .eael-feature-list-icon-box .eael-feature-list-icon{color:#fff}.elementor-widget-eael-feature-list .eael-feature-list-items.framed .eael-feature-list-icon-box .eael-feature-list-icon{background-color:#fff}.elementor-widget-eael-feature-list .eael-feature-list-items.circle .eael-feature-list-icon-box .eael-feature-list-icon-inner{-webkit-border-radius:50%;border-radius:50%}.elementor-widget-eael-feature-list .eael-feature-list-items.circle .eael-feature-list-icon-box .eael-feature-list-icon-inner .eael-feature-list-icon{-webkit-border-radius:50%;border-radius:50%}.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-icon-box .eael-feature-list-icon-inner{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);margin:15px}.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-icon-box .eael-feature-list-icon i{-ms-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-icon-box .eael-feature-list-icon img{-ms-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.elementor-widget-eael-feature-list .eael-feature-list-items.rhombus .eael-feature-list-content-box .eael-feature-list-title{margin-top:15px}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 50px;position:relative}@media (max-width:767px){.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 30px;display:block}}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{content:"";position:absolute;display:block}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{left:0;top:0;z-index:1;border-left:1px solid #000;border-right:none!important;height:100%}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:5px;top:30px;width:23px;display:block;z-index:2;border-bottom:1px dashed #000;border-top:none!important}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern .eael-feature-list-item .connector{display:none}@media (min-width:768px){.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern.-icon-position-right .eael-feature-list-item{padding:0 50px 0 0}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern.-icon-position-right .eael-feature-list-item:before{left:auto;right:0}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern.-icon-position-right .eael-feature-list-item:after{left:auto;right:5px;top:30px}.elementor-widget-eael-feature-list .eael-feature-list-items.connector-type-modern.-icon-position-right .eael-feature-list-item .connector{display:none}}@media (min-width:1025px){.elementor-widget-eael-feature-list.-icon-position-left .eael-feature-list-content-box{margin-right:0!important;margin-top:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-content-box{margin-left:0!important;margin-top:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-top .eael-feature-list-content-box{margin-left:0!important;margin-right:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-left .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.elementor-widget-eael-feature-list.-icon-position-left .eael-feature-list-item{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-item{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media (max-width:1024px){.elementor-widget-eael-feature-list.-tablet-icon-position-left .eael-feature-list-item,.elementor-widget-eael-feature-list.-tablet-icon-position-right .eael-feature-list-item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.elementor-widget-eael-feature-list.-tablet-icon-position-left .eael-feature-list-item{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.elementor-widget-eael-feature-list.-tablet-icon-position-right .eael-feature-list-item{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media (min-width:768px) and (max-width:1024px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left .eael-feature-list-content-box{margin-right:0!important;margin-top:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 50px}}@media (min-width:768px) and (max-width:1024px) and (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 30px}}@media (min-width:768px) and (max-width:1024px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{left:0;right:auto}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:5px;top:30px}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top .eael-feature-list-content-box{margin-left:0!important;margin-right:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 50px}}@media (min-width:768px) and (max-width:1024px) and (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 30px}}@media (min-width:768px) and (max-width:1024px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{left:0;right:auto}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:5px}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right .eael-feature-list-content-box{margin-left:0!important;margin-top:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 50px 0 0}}@media (min-width:768px) and (max-width:1024px) and (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 30px 0 0}}@media (min-width:768px) and (max-width:1024px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{right:0;left:auto}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:auto;right:5px}}@media (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right .eael-feature-list-item,.elementor-widget-eael-feature-list.-tablet-icon-position-left .eael-feature-list-item,.elementor-widget-eael-feature-list.-tablet-icon-position-right .eael-feature-list-item{display:block;text-align:left}.elementor-widget-eael-feature-list.-mobile-icon-position-left .eael-feature-list-item,.elementor-widget-eael-feature-list.-mobile-icon-position-right .eael-feature-list-item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.elementor-widget-eael-feature-list.-mobile-icon-position-left .eael-feature-list-item{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.elementor-widget-eael-feature-list.-mobile-icon-position-right .eael-feature-list-item{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-content-box{margin-right:0!important;margin-top:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 50px}}@media (max-width:767px) and (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 30px}}@media (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{left:0;right:auto}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-left .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:5px}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-content-box{margin-left:0!important;margin-right:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 50px}}@media (max-width:767px) and (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 0 0 30px}}@media (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{left:0;right:auto}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-top .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:5px}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-content-box,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-content-box{margin-left:0!important;margin-top:0!important;margin-bottom:0!important}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 50px 0 0}}@media (max-width:767px) and (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item{padding:0 30px 0 0}}@media (max-width:767px){.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:before{right:0;left:auto}.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-left.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-right.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-left.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-right.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after,.elementor-widget-eael-feature-list.-icon-position-top.-tablet-icon-position-top.-mobile-icon-position-right .eael-feature-list-items.connector-type-modern .eael-feature-list-item:after{left:auto;right:5px}}.eael-filter-gallery-control{width:100%}.eael-filter-gallery-control ul,.eael-filter-gallery-control ul li{text-align:center}.eael-filter-gallery-control ul{margin:0 0 20px 0;padding:0;text-align:center}.eael-filter-gallery-control{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-flow:1 1 auto;-ms-flex-flow:1 1 auto;flex-flow:1 1 auto;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;padding:0;margin:0}.eael-filter-gallery-control ul li{list-style:none;font-size:24px;display:inline-block;text-align:center}.eael-filter-gallery-control ul li a.control{font-family:Montserrat,sans-serif;font-size:16px;font-weight:600;padding:10px 25px;margin:10px 6px}.eael-filter-gallery-container{text-align:justify;font-size:.1px}.eael-filter-gallery-container:after{content:'';display:inline-block;width:100%}.eael-filter-gallery-container:not(.eael-cards) .item:before{content:'';display:inline-block;padding-top:56.25%}.eael-filter-gallery-container .item .caption{position:absolute;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-flow:1 1 100%;-ms-flex-flow:1 1 100%;flex-flow:1 1 100%;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;z-index:1;top:0;left:0;right:0;bottom:0;-webkit-transition:-webkit-transform .4s;transition:-webkit-transform .4s;-o-transition:transform .4s;transition:transform .4s;transition:transform .4s,-webkit-transform .4s}.eael-filter-gallery-container.eael-cards .item .caption{display:none}.eael-filter-gallery-container.eael-cards .item .item-img .caption{position:absolute;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-flow:1 1 100%;-ms-flex-flow:1 1 100%;flex-flow:1 1 100%;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;z-index:10;top:0;left:0;right:0;bottom:0;-webkit-transition:-webkit-transform .4s;transition:-webkit-transform .4s;-o-transition:transform .4s;transition:transform .4s;transition:transform .4s,-webkit-transform .4s}.gallery-item-caption-over{width:100%;height:auto}a.eael-gallery-load-more,a.eael-gallery-load-more:hover{text-decoration:none}.eael-filter-gallery-container .item .caption.eael-zoom-in,.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-zoom-in{-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0)}.eael-filter-gallery-container .item:hover .caption.eael-zoom-in,.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-zoom-in{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.eael-filter-gallery-container .item .caption.eael-slide-left,.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-left{-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%)}.eael-filter-gallery-container .item:hover .caption.eael-slide-left,.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-left{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}.eael-filter-gallery-container .item .caption.eael-slide-right,.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-right{-webkit-transform:translateX(100%);-ms-transform:translateX(100%);transform:translateX(100%)}.eael-filter-gallery-container .item:hover .caption.eael-slide-right,.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-right{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}.eael-filter-gallery-container .item .caption.eael-slide-top,.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-top{-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}.eael-filter-gallery-container .item:hover .caption.eael-slide-top,.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-top{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-filter-gallery-container .item .caption.eael-slide-bottom,.eael-filter-gallery-container.eael-cards .item .item-img .caption.eael-slide-bottom{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%)}.eael-filter-gallery-container .item:hover .caption.eael-slide-bottom,.eael-filter-gallery-container.eael-cards .item:hover .item-img .caption.eael-slide-bottom{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-filter-gallery-container .item .caption a{display:inline-block;width:50px;height:50px;text-align:center;line-height:50px;-webkit-border-radius:50%;border-radius:50%;margin:0 5px;font-size:20px;cursor:pointer;-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.eael-container .item .caption a:nth-child(2),.eael-filter-gallery-container .item .caption a:nth-child(1){-webkit-transition:.6s;-o-transition:.6s;transition:.6s;opacity:0}.eael-filter-gallery-container .item .caption a:nth-child(1){-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}.eael-filter-gallery-container .item .caption a:nth-child(2){-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%)}.eael-filter-gallery-container .item .caption:hover a:nth-child(1),.eael-filter-gallery-container .item .caption:hover a:nth-child(2){-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:1}.eael-filter-gallery-container .item .caption .eael-popup-link{outline:0}.eael-filter-gallery-container.eael-cards .item:before{padding-top:0}.eael-filter-gallery-container.eael-cards .item-img{position:relative;background-repeat:no-repeat;background-position:center;-webkit-background-size:cover;background-size:cover;height:220px;z-index:0;overflow:hidden}.eael-filter-gallery-container.eael-cards .item-content{padding:15px}.eael-filter-gallery-container.eael-cards .item-content .title,.eael-filter-gallery-container.eael-cards .item-content .title a{font-size:20px;line-height:1;margin-bottom:0;-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.eael-filter-gallery-container.eael-cards .item-content p{font-size:14px;line-height:26px}.eael-fg-card-content-align-center .eael-filterable-gallery-item-wrap .gallery-item-caption-wrap .gallery-item-caption-over{text-align:center}.eael-fg-card-content-align-right .eael-filterable-gallery-item-wrap .gallery-item-caption-wrap .gallery-item-caption-over{text-align:right}.eael-fg-hoverer-content-align-center .eael-filterable-gallery-item-wrap .gallery-item-caption-wrap .gallery-item-caption-over{text-align:center}.eael-fg-hoverer-content-align-right .eael-filterable-gallery-item-wrap .gallery-item-caption-wrap .gallery-item-caption-over{text-align:right}.eael-fg-content-align-left .eael-cards .item .item-content{text-align:left}.eael-fg-content-align-center .eael-cards .item .item-content{text-align:center}.eael-fg-content-align-right .eael-cards .item .item-content{text-align:right}.mfp-wrap~div.dialog-widget{display:none!important}.eael-filterable-gallery-item-wrap{float:left;width:33.33%}.eael-filter-gallery-container.eael-col-1 .eael-filterable-gallery-item-wrap{width:100%}.eael-filter-gallery-control>ul li{font-size:13px;line-height:1.8;text-transform:uppercase;letter-spacing:1px;padding:6px 15px;cursor:pointer;margin:0 5px;font-weight:400}.eael-filter-gallery-container.eael-col-2 .eael-filterable-gallery-item-wrap{width:50%}.eael-filter-gallery-container.eael-col-4 .eael-filterable-gallery-item-wrap{width:25%}.eael-filter-gallery-container.eael-col-5 .eael-filterable-gallery-item-wrap{width:20%}.eael-gallery-grid-item{margin-left:calc(20px/2);margin-right:calc(20px/2);margin-bottom:20px;position:relative;overflow:hidden}.gallery-item-caption-wrap,.media-content-wrap{font-size:14px;text-align:left}.gallery-item-thumbnail-wrap.caption-style-card img{max-height:100%;width:100%}.gallery-item-caption-wrap.caption-style-hoverer{position:absolute;left:0;top:0;height:100%;width:100%;padding:15px;z-index:10}.eael-filterable-gallery-item-wrap .eael-gallery-grid-item .gallery-item-thumbnail-wrap>img{height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.fg-item-content,.fg-item-title{color:#fff;font-family:inherit}.gallery-item-caption-wrap.caption-style-card .fg-item-title{font-size:18px;margin:15px 0 15px;line-height:1}.gallery-item-caption-wrap.caption-style-card{background:#f7f7f7}.gallery-item-caption-wrap.caption-style-card .fg-item-title{margin:10px 0 15px;color:#000}.gallery-item-caption-wrap.caption-style-card .fg-item-content{color:#212529;line-height:1.5;font-weight:400}.gallery-item-buttons>a{display:inline-block;font-size:16px;color:#000;margin-right:15px}.gallery-item-buttons>a:visited{color:#000}.gallery-item-caption-wrap.caption-style-card{padding:10px;-webkit-box-sizing:border-box;box-sizing:border-box;font-family:inherit}.gallery-item-caption-wrap .gallery-item-hoverer-bg{position:absolute;left:0;top:0;height:100%;width:100%;content:'';background:#000;z-index:-1;opacity:.7}.gallery-item-caption-wrap.caption-style-hoverer{visibility:hidden;opacity:0;-webkit-transition:.6s all ease;-o-transition:.6s all ease;transition:.6s all ease;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.eael-gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer{opacity:1;visibility:visible}.gallery-item-caption-wrap.caption-style-hoverer h5{font-size:20px;margin-bottom:5px;line-height:1}.gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up h5{-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px);-webkit-transition:.6s all ease;-o-transition:.6s all ease;transition:.6s all ease}.gallery-item-caption-wrap.caption-style-hoverer p{margin-bottom:5px}.gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up p{-webkit-transform:translateY(40px);-ms-transform:translateY(40px);transform:translateY(40px);-webkit-transition:.6s all ease;-o-transition:.6s all ease;transition:.6s all ease}.gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up .gallery-item-buttons{-webkit-transform:translateY(40px);-ms-transform:translateY(40px);transform:translateY(40px);-webkit-transition:.6s all ease;-o-transition:.6s all ease;transition:.6s all ease}.gallery-item-caption-wrap .gallery-item-buttons>a{padding:5px 15px;display:inline-block;-webkit-border-radius:50%;border-radius:50%;outline:0;text-decoration:none}.gallery-item-caption-wrap.caption-style-hoverer.eael-zoom-in{-webkit-transform:scale(.8);-ms-transform:scale(.8);transform:scale(.8);-webkit-transition:.6s all ease;-o-transition:.6s all ease;transition:.6s all ease}.eael-gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up .gallery-item-buttons,.eael-gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up h5,.eael-gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-slide-up p{-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0)}.eael-gallery-grid-item:hover .gallery-item-caption-wrap.caption-style-hoverer.eael-zoom-in{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);visibility:visible;opacity:1}.gallery-item-caption-wrap.caption-style-hoverer.eael-none{-webkit-transition:none;-o-transition:none;transition:none}.gallery-item-thumbnail-wrap{position:relative}.video-popup,.video-popup-bg{position:absolute;left:0;top:0;height:100%;width:100%}.video-popup>img{width:62px;position:relative;z-index:1;-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.video-popup{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.video-popup:hover>img{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}.video-popup-bg{visibility:hidden;opacity:0;-webkit-transition:350ms;-o-transition:350ms;transition:350ms}.eael-gallery-grid-item:hover .video-popup-bg{visibility:visible;opacity:1}.gallery-item-thumbnail-wrap>.gallery-item-caption-wrap{position:absolute;left:0;top:0;height:100%;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.gallery-item-caption-wrap.card-hover-bg{visibility:hidden;opacity:0;-webkit-transition:.8s;-o-transition:.8s;transition:.8s}.gallery-item-thumbnail-wrap:hover .gallery-item-caption-wrap.card-hover-bg{visibility:visible;opacity:1}.gallery-item-caption-wrap .gallery-item-buttons>a>i{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;height:100%}@media only screen and (min-width:1025px){.elementor-element.elementor-grid-1{position:relative}.elementor-element.elementor-grid-1 .eael-filterable-gallery-item-wrap{width:100%;float:left}.elementor-element.elementor-grid-2{position:relative}.elementor-element.elementor-grid-2 .eael-filterable-gallery-item-wrap{width:50%;float:left}.elementor-element.elementor-grid-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n){margin-right:0!important}.elementor-element.elementor-grid-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n+1){clear:left}.elementor-element.elementor-grid-3{position:relative}.elementor-element.elementor-grid-3 .eael-filterable-gallery-item-wrap{width:33.3333%;float:left}.elementor-element.elementor-grid-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n){margin-right:0!important}.elementor-element.elementor-grid-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n+1){clear:left}.elementor-element.elementor-grid-4{position:relative}.elementor-element.elementor-grid-4 .eael-filterable-gallery-item-wrap{width:25%;float:left}.elementor-element.elementor-grid-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n){margin-right:0!important}.elementor-element.elementor-grid-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n+1){clear:left}.elementor-element.elementor-grid-5{position:relative}.elementor-element.elementor-grid-5 .pp-logo-grid{margin-right:-5px}.elementor-element.elementor-grid-5 .eael-filterable-gallery-item-wrap{width:20%;float:left}.elementor-element.elementor-grid-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n){margin-right:0!important}.elementor-element.elementor-grid-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n+1){clear:left}.elementor-element.elementor-grid-6{position:relative}.elementor-element.elementor-grid-6 .pp-logo-grid{margin-right:-6px}.elementor-element.elementor-grid-6 .eael-filterable-gallery-item-wrap{width:16.6667%;float:left}.elementor-element.elementor-grid-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n){margin-right:0!important}.elementor-element.elementor-grid-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n+1){clear:left}}@media only screen and (max-width:1024px) and (min-width:766px){.elementor-element.elementor-grid-tablet-1{position:relative}.elementor-element.elementor-grid-tablet-1 .eael-filterable-gallery-item-wrap{width:100%;float:left}.elementor-element.elementor-grid-tablet-2{position:relative}.elementor-element.elementor-grid-tablet-2 .eael-filterable-gallery-item-wrap{width:50%;float:left}.elementor-element.elementor-grid-tablet-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n){margin-right:0!important}.elementor-element.elementor-grid-tablet-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n+1){clear:left}.elementor-element.elementor-grid-tablet-3{position:relative}.elementor-element.elementor-grid-tablet-3 .eael-filterable-gallery-item-wrap{width:33.3333%;float:left}.elementor-element.elementor-grid-tablet-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n){margin-right:0!important}.elementor-element.elementor-grid-tablet-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n+1){clear:left}.elementor-element.elementor-grid-tablet-4{position:relative}.elementor-element.elementor-grid-tablet-4 .eael-filterable-gallery-item-wrap{width:25%;float:left}.elementor-element.elementor-grid-tablet-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n){margin-right:0!important}.elementor-element.elementor-grid-tablet-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n+1){clear:left}.elementor-element.elementor-grid-tablet-5{position:relative}.elementor-element.elementor-grid-tablet-5 .eael-filterable-gallery-item-wrap{width:20%;float:left}.elementor-element.elementor-grid-tablet-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n){margin-right:0!important}.elementor-element.elementor-grid-tablet-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n+1){clear:left}.elementor-element.elementor-grid-tablet-6{position:relative}.elementor-element.elementor-grid-tablet-6 .pp-logo-grid{margin-right:-6px}.elementor-element.elementor-grid-tablet-6 .eael-filterable-gallery-item-wrap{width:16.6667%;float:left}.elementor-element.elementor-grid-tablet-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n){margin-right:0!important}.elementor-element.elementor-grid-tablet-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n+1){clear:left}}@media only screen and (max-width:767px){.elementor-element.elementor-grid-mobile-1{position:relative}.elementor-element.elementor-grid-mobile-1 .eael-filterable-gallery-item-wrap{width:100%;float:left}.elementor-element.elementor-grid-mobile-2{position:relative}.elementor-element.elementor-grid-mobile-2 .eael-filterable-gallery-item-wrap{width:50%;float:left}.elementor-element.elementor-grid-mobile-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n){margin-right:0!important}.elementor-element.elementor-grid-mobile-2 .eael-filterable-gallery-item-wrap:nth-of-type(2n+1){clear:left}.elementor-element.elementor-grid-mobile-3{position:relative}.elementor-element.elementor-grid-mobile-3 .eael-filterable-gallery-item-wrap{width:33.3333%;float:left}.elementor-element.elementor-grid-mobile-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n){margin-right:0!important}.elementor-element.elementor-grid-mobile-3 .eael-filterable-gallery-item-wrap:nth-of-type(3n+1){clear:left}.elementor-element.elementor-grid-mobile-4{position:relative}.elementor-element.elementor-grid-mobile-4 .eael-filterable-gallery-item-wrap{width:25%;float:left}.elementor-element.elementor-grid-mobile-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n){margin-right:0!important}.elementor-element.elementor-grid-mobile-4 .eael-filterable-gallery-item-wrap:nth-of-type(4n+1){clear:left}.elementor-element.elementor-grid-mobile-5{position:relative}.elementor-element.elementor-grid-mobile-5 .eael-filterable-gallery-item-wrap{width:20%;float:left}.elementor-element.elementor-grid-mobile-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n){margin-right:0!important}.elementor-element.elementor-grid-mobile-5 .eael-filterable-gallery-item-wrap:nth-of-type(5n+1){clear:left}.elementor-element.elementor-grid-mobile-6{position:relative}.elementor-element.elementor-grid-mobile-6 .pp-logo-grid{margin-right:-6px}.elementor-element.elementor-grid-mobile-6 .eael-filterable-gallery-item-wrap{width:16.6667%;float:left}.elementor-element.elementor-grid-mobile-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n){margin-right:0!important}.elementor-element.elementor-grid-mobile-6 .eael-filterable-gallery-item-wrap:nth-of-type(6n+1){clear:left}}.eael-elements-flip-box-container{position:relative;height:300px;width:100%}.eael-elements-flip-box-container .flipbox-button{display:inline-block;-webkit-transition:all .4s;-o-transition:all .4s;transition:all .4s}.eael-elements-flip-box-container a{display:block}.eael-elements-flip-box-vertical-align{width:100%}.eael-elements-flip-box-padding{padding:0 30px 5px 30px}.eael-elements-flip-box-icon-image{display:inline-block;margin:0 auto 0 auto;line-height:1}.eael-elements-flip-box-icon-image.eael_eleements_flip_front_icon_style_background{background:#ccc}.eael_eleements_flip_front_icon_style_bordered{border:2px solid #fff}.eael_flip_box_icon_border_round{-webkit-border-radius:100px;border-radius:100px}.eael_eleements_flip_front_icon_style_background,.eael_eleements_flip_front_icon_style_bordered{padding:15px}.eael-elements-flip-box-icon-image i{font-size:40px;line-height:40px;width:40px}.eael-elements-slider-display-table{width:100%}.eael-elements-flip-box-front-container{text-align:center;position:absolute;top:0;left:0;z-index:2;width:100%;height:100%;background:#0e9dd2;color:#fff;border-color:#000;-webkit-display:flex;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-elements-flip-box-content,.eael-elements-flip-box-heading{color:#fff}.eael-elements-flip-box-heading.flipbox-linked-title{color:#fff;font-size:1.5em;font-weight:700}.eael-elements-flip-box-rear-container{text-align:center;position:absolute;top:0;left:0;width:100%;height:100%;background:#444;color:#fff;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-color:#000}.eael-elements-button-floating-container{position:fixed;z-index:100}.eael-elements-button-floating-container .eael-elements-button{margin-top:0;font-size:14px;position:relative;padding:14px 20px}.eael-elements-button{cursor:pointer;display:inline-block;background:#077bbe;color:#fff;line-height:1;padding:16px 25px;margin-top:15px}.eael-elements-button:hover{background:#077bbe;color:#fff}.eael-elements-flip-box-container{-webkit-perspective:1000px;perspective:1000px}.eael-elements-flip-box-front-container,.eael-elements-flip-box-rear-container{-webkit-transition-duration:.5s;-o-transition-duration:.5s;transition-duration:.5s;-webkit-transition-property:all;-o-transition-property:all;transition-property:all;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.eael-elements-flip-box-flip-card{width:100%;height:100%;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transition:all .5s ease;-o-transition:all .5s ease;transition:all .5s ease}.eael-elements-flip-box-front-container,.eael-elements-flip-box-rear-container{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:rotateX(0);transform:rotateX(0);-webkit-transform:rotateY(0);transform:rotateY(0)}.eael-animate-flip.eael-animate-up .eael-elements-flip-box-rear-container,.eael-animate-flip.eael-animate-up.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.eael-animate-flip.eael-animate-down .eael-elements-flip-box-rear-container,.eael-animate-flip.eael-animate-down.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card{-webkit-transform:rotateX(-180deg);transform:rotateX(-180deg)}.eael-animate-flip.eael-animate-left .eael-elements-flip-box-rear-container,.eael-animate-flip.eael-animate-left.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}.eael-animate-flip.eael-animate-right .eael-elements-flip-box-rear-container,.eael-animate-flip.eael-animate-right.eael-elements-flip-box-container:hover .eael-elements-flip-box-flip-card{-webkit-transform:rotateY(180deg);transform:rotateY(180deg)}.eael-animate-push.eael-elements-flip-box-container,.eael-animate-slide.eael-elements-flip-box-container{overflow:hidden}.eael-animate-push .eael-elements-flip-box-rear-container,.eael-animate-slide .eael-elements-flip-box-rear-container{z-index:3}.eael-animate-push.eael-animate-up .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-up .eael-elements-flip-box-rear-container{top:100%}.eael-animate-push.eael-animate-up.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-up.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container{top:0}.eael-animate-push.eael-animate-down .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-down .eael-elements-flip-box-rear-container{top:auto;bottom:100%}.eael-animate-push.eael-animate-down.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-down.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container{top:auto;bottom:0}.eael-animate-push.eael-animate-left .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-left .eael-elements-flip-box-rear-container{left:100%}.eael-animate-push.eael-animate-left.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-left.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container{left:0}.eael-animate-push.eael-animate-right .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-right .eael-elements-flip-box-rear-container{left:auto;right:100%}.eael-animate-push.eael-animate-right.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container,.eael-animate-slide.eael-animate-right.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container{left:auto;right:0}.eael-animate-push.eael-animate-up.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container{top:-100%}.eael-animate-push.eael-animate-down.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container{top:100%}.eael-animate-push.eael-animate-left.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container{left:-100%}.eael-animate-push.eael-animate-right.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container{left:100%}.eael-animate-zoom-in .eael-elements-flip-box-rear-container{opacity:0;-webkit-transform:scale(.75);-ms-transform:scale(.75);transform:scale(.75);z-index:3}.eael-animate-zoom-in.eael-elements-flip-box-container:hover .eael-elements-flip-box-rear-container{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.eael-animate-zoom-out.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container{opacity:0;-webkit-transform:scale(.75);-ms-transform:scale(.75);transform:scale(.75)}.eael-animate-fade.eael-elements-flip-box-container:hover .eael-elements-flip-box-front-container{opacity:0}.eael-flipbox-content-align-right .eael-elements-flip-box-padding{text-align:right}.eael-flipbox-content-align-left .eael-elements-flip-box-padding{text-align:left}.eael-flipbox-content-align-center .eael-elements-flip-box-padding{text-align:center}.eael-flipbox-img-circle .eael-elements-flip-box-icon-image img,.eael-flipbox-img-circle .flipbox-back-image-icon img{-webkit-border-radius:50%;border-radius:50%;overflow:hidden}.clearfix::after,.clearfix::before{content:" ";display:table;clear:both}.eael-logo-carousel.nav-top-left,.eael-logo-carousel.nav-top-right,.eael-post-carousel.nav-top-left,.eael-post-carousel.nav-top-right,.eael-product-carousel.nav-top-left,.eael-product-carousel.nav-top-right,.eael-team-slider.nav-top-left,.eael-team-slider.nav-top-right,.eael-testimonial-slider.nav-top-left,.eael-testimonial-slider.nav-top-right{padding-top:40px}.swiper-container .swiper-slide,.swiper-container-wrap .swiper-slide{text-align:center}.swiper-container .swiper-slide img,.swiper-container-wrap .swiper-slide img{width:auto}.swiper-container-dots-outside .swiper-pagination,.swiper-container-wrap-dots-outside .swiper-pagination{position:static}.swiper-container .swiper-button-next,.swiper-container .swiper-button-prev,.swiper-container-wrap .swiper-button-next,.swiper-container-wrap .swiper-button-prev{background:0 0;font-size:20px;height:auto;line-height:1;margin:0;text-align:center;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);width:auto}.swiper-container .swiper-button-next .fa,.swiper-container .swiper-button-prev .fa,.swiper-container-wrap .swiper-button-next .fa,.swiper-container-wrap .swiper-button-prev .fa{vertical-align:top}.swiper-container-wrap .swiper-pagination{bottom:10px;left:0;width:100%}.swiper-container-wrap-dots-outside .swiper-pagination{position:static}.swiper-container-wrap .swiper-pagination-bullet{background:#ccc;margin:0 4px;opacity:1;height:8px;width:8px}.swiper-container-wrap .swiper-pagination-bullet-active{background:#000}.swiper-container-3d .swiper-slide{-o-transition-property:all;transition-property:all;-webkit-transition-property:all}.eael-contact-form input[type=date],.eael-contact-form input[type=email],.eael-contact-form input[type=number],.eael-contact-form input[type=tel],.eael-contact-form input[type=text],.eael-contact-form input[type=url],.eael-contact-form textarea{background:#fff;box-shadow:none;-webkit-box-shadow:none;float:none;height:auto;margin:0;outline:0;width:100%}.eael-contact-form input[type=submit]{border:0;float:none;height:auto;margin:0;padding:10px 20px;width:auto;-webkit-transition:all .25s linear 0s;-o-transition:all .25s linear 0s;transition:all .25s linear 0s}.eael-contact-form.placeholder-hide input::-webkit-input-placeholder,.eael-contact-form.placeholder-hide textarea::-webkit-input-placeholder{opacity:0;visibility:hidden}.eael-contact-form.placeholder-hide input::-moz-placeholder,.eael-contact-form.placeholder-hide textarea::-moz-placeholder{opacity:0;visibility:hidden}.eael-contact-form.placeholder-hide input:-ms-input-placeholder,.eael-contact-form.placeholder-hide textarea:-ms-input-placeholder{opacity:0;visibility:hidden}.eael-contact-form.placeholder-hide input:-moz-placeholder,.eael-contact-form.placeholder-hide textarea:-moz-placeholder{opacity:0;visibility:hidden}.eael-custom-radio-checkbox input[type=checkbox],.eael-custom-radio-checkbox input[type=radio]{-webkit-appearance:none;-moz-appearance:none;border-style:solid;border-width:0;outline:0;min-width:1px;width:15px;height:15px;background:#ddd;padding:3px}.eael-custom-radio-checkbox input[type=checkbox]:before,.eael-custom-radio-checkbox input[type=radio]:before{content:"";width:100%;height:100%;padding:0;margin:0;display:block}.eael-custom-radio-checkbox input[type=checkbox]:checked:before,.eael-custom-radio-checkbox input[type=radio]:checked:before{background:#999;-webkit-transition:all .25s linear 0s;-o-transition:all .25s linear 0s;transition:all .25s linear 0s}.eael-custom-radio-checkbox input[type=radio]{-webkit-border-radius:50%;border-radius:50%}.eael-custom-radio-checkbox input[type=radio]:before{-webkit-border-radius:50%;border-radius:50%}.eael-gravity-form-align-default,.eael-gravity-form-align-left,.eael-gravity-form-btn-align-left{text-align:left}.eael-gravity-form-align-right,.eael-gravity-form-btn-align-right{text-align:right}.eael-gravity-form-align-center,.eael-gravity-form-btn-align-center{text-align:center}.eael-gravity-form .gform_wrapper .gform_footer{margin:0;padding:0}.gform_wrapper form li,.gform_wrapper li{list-style:none}.eael-gravity-form .gform_wrapper ul.gform_fields li.gfield{padding:0}.eael-gravity-form .gform_wrapper textarea{padding:0}.eael-gravity-form .gform_wrapper .gform_footer input.button,.eael-gravity-form .gform_wrapper .gform_footer input[type=submit],.eael-gravity-form .gform_wrapper .gform_page_footer input.button,.eael-gravity-form .gform_wrapper .gform_page_footer input[type=submit]{margin:0}.eael-gravity-form.title-description-hide .gform_heading{display:none}.eael-gravity-form.labels-hide .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label,.eael-gravity-form.labels-hide .gform_wrapper .top_label .gfield_label{display:none}.eael-gravity-form-button-full-width .gform_wrapper .gform_footer input[type=submit]{width:100%}.eael-img-accordion{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:50vh}.eael-img-accordion a{position:relative;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;text-align:center;text-decoration:none;color:#fff;-webkit-background-size:cover;background-size:cover;background-position:center;background-repeat:no-repeat;-webkit-transition:-webkit-box-flex .4s,-webkit-flex .4s;transition:-webkit-box-flex .4s,-webkit-flex .4s;-o-transition:flex .4s;transition:flex .4s;transition:flex .4s,-webkit-box-flex .4s,-webkit-flex .4s,-ms-flex .4s}.eael-grow-accordion{-webkit-box-flex:3;-webkit-flex:3;-ms-flex:3;flex:3}.eael-img-accordion .overlay{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding:0 10px;position:absolute;top:0;right:0;bottom:0;left:0;-webkit-transition:background-color .4s;-o-transition:background-color .4s;transition:background-color .4s}.eael-img-accordion .overlay .overlay-inner{z-index:1}.eael-img-accordion a:after{content:"";position:absolute;width:100%;height:100%;z-index:0;top:0;left:0;bottom:0;right:0;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.eael-img-accordion .overlay-inner *{visibility:hidden;opacity:0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.eael-img-accordion .overlay h2{color:#fff;-webkit-transform:translate3d(0,-60px,0);transform:translate3d(0,-60px,0)}.eael-img-accordion .overlay p{color:#fff;-webkit-transform:translate3d(0,60px,0);transform:translate3d(0,60px,0)}.eael-img-accordion .overlay-inner-show *{opacity:1;visibility:visible;-webkit-transform:none!important;-ms-transform:none!important;transform:none!important;-webkit-transition:all .3s .3s;-o-transition:all .3s .3s;transition:all .3s .3s}@media screen and (max-width:800px){.eael-img-accordion{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.eael-img-accordion a:hover{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.eael-img-accordion a:hover .overlay{background-color:transparent}}.eael-infobox .infobox-icon{height:auto}.eael-infobox .infobox-icon .infobox-icon-wrap{display:block;width:100%;height:auto;-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.eael-infobox .infobox-icon .infobox-icon-wrap i{-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.eael-infobox-content-align-left .eael-infobox .infobox-button,.eael-infobox-content-align-left .eael-infobox .infobox-content,.eael-infobox-content-align-left .eael-infobox .infobox-icon{text-align:left}.eael-infobox-content-align-right .eael-infobox .infobox-button,.eael-infobox-content-align-right .eael-infobox .infobox-content,.eael-infobox-content-align-right .eael-infobox .infobox-icon{text-align:right}.eael-infobox-content-align-center .eael-infobox .infobox-button,.eael-infobox-content-align-center .eael-infobox .infobox-content,.eael-infobox-content-align-center .eael-infobox .infobox-icon{text-align:center}.eael-infobox-icon-bg-shape-circle .infobox-icon .infobox-icon-wrap,.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap,.eael-infobox-icon-bg-shape-square .infobox-icon .infobox-icon-wrap{width:90px;height:90px;text-align:center}.eael-infobox-icon-hover-bg-shape-square:hover .infobox-icon .infobox-icon-wrap{-webkit-border-radius:0;border-radius:0}.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap,.eael-infobox-icon-hover-bg-shape-radius:hover .infobox-icon .infobox-icon-wrap{-webkit-border-radius:15px;border-radius:15px}.eael-infobox-icon-bg-shape-radius .infobox-icon .infobox-icon-wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.eael-infobox-icon-bg-shape-circle .infobox-icon .infobox-icon-wrap,.eael-infobox-icon-hover-bg-shape-circle:hover .infobox-icon .infobox-icon-wrap{-webkit-border-radius:50%;border-radius:50%}.eael-infobox-icon-bg-shape-circle .infobox-icon .infobox-icon-wrap i,.eael-infobox-icon-bg-shape-square .infobox-icon .infobox-icon-wrap i{margin-top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.eael-infobox .infobox-button a.eael-infobox-button{display:inline-block;padding:5px 10px;-webkit-transition:all .3s ease-in-out 0s;-o-transition:all .3s ease-in-out 0s;transition:all .3s ease-in-out 0s}.eael-infobox-content-align-left.eael-infobox-icon-bg-shape-circle .infobox-icon,.eael-infobox-content-align-left.eael-infobox-icon-bg-shape-radius .infobox-icon,.eael-infobox-content-align-left.eael-infobox-icon-bg-shape-square .infobox-icon{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.eael-infobox-content-align-center.eael-infobox-icon-bg-shape-circle .infobox-icon,.eael-infobox-content-align-center.eael-infobox-icon-bg-shape-radius .infobox-icon,.eael-infobox-content-align-center.eael-infobox-icon-bg-shape-square .infobox-icon{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.eael-infobox-content-align-right.eael-infobox-icon-bg-shape-circle .infobox-icon,.eael-infobox-content-align-right.eael-infobox-icon-bg-shape-radius .infobox-icon,.eael-infobox-content-align-right.eael-infobox-icon-bg-shape-square .infobox-icon{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}.eael-infobox.icon-on-left{position:relative;z-index:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.eael-infobox.icon-on-left .infobox-icon-wrap,.eael-infobox.icon-on-right .infobox-icon-wrap{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.eael-infobox.icon-on-left .infobox-icon .infobox-icon-wrap{background:0 0;border:0;text-align:left;height:auto;display:block}.eael-infobox .infobox-content p{margin:0 0 15px}.eael-infobox.icon-on-left .infobox-icon .infobox-icon-wrap i{margin-top:0;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-infobox.icon-on-left .infobox-content{padding-left:15px;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}.eael-infobox.icon-on-left .infobox-content .title{line-height:1;margin:0 0 10px 0}.eael-infobox.icon-on-right{position:relative;z-index:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.eael-infobox.icon-on-right .infobox-icon .infobox-icon-wrap{background:0 0;border:0;text-align:right;width:auto;height:auto;display:block}.eael-infobox.icon-on-right .infobox-icon .infobox-icon-wrap i{margin-top:0;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-infobox.icon-on-right .infobox-content{padding-right:15px;text-align:right;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-sizing:border-box;box-sizing:border-box}.eael-infobox.icon-on-right .infobox-content .title{line-height:1;margin:0 0 10px 0}.eael-infobox .infobox-icon img{-webkit-transition:all .3s ease-in-out 0s;-o-transition:all .3s ease-in-out 0s;transition:all .3s ease-in-out 0s}.eael-infobox-hover-img-shape-square:hover .eael-infobox .infobox-icon img{-webkit-border-radius:0;border-radius:0}.eael-infobox-hover-img-shape-circle:hover .eael-infobox .infobox-icon img,.eael-infobox-shape-circle .eael-infobox .infobox-icon img{-webkit-border-radius:50%;border-radius:50%}.eael-infobox-hover-img-shape-radius:hover .eael-infobox .infobox-icon img,.eael-infobox-shape-radius .eael-infobox .infobox-icon img{-webkit-border-radius:15px;border-radius:15px}.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:0!important;-webkit-backface-visibility:hidden;backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none;-ms-touch-action:manipulation;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow:after,.mfp-arrow:before{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;-webkit-box-sizing:border-box;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}button.mfp-close,button.mfp-close:hover{display:inline-block!important;background:0 0;width:auto!important}.mfp-arrow,.mfp-arrow:hover{background:0 0}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);-ms-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;-ms-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;-ms-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.eael-ninja-container input,.eael-ninja-container textarea{height:auto;padding:10px}.eael-contact-form-align-center .eael-ninja-container,.eael-contact-form-btn-align-center .eael-ninja-container .nf-field .nf-field-element input[type=button]{margin-left:auto!important;margin-right:auto!important;display:block;float:none}.eael-contact-form-align-left .eael-ninja-container,.eael-contact-form-btn-align-left .eael-ninja-container .nf-field .nf-field-element input[type=button]{float:left;width:auto}.eael-contact-form-align-right .eael-ninja-container,.eael-contact-form-btn-align-right .eael-ninja-container .nf-field .nf-field-element input[type=button]{float:right;width:auto}.eael-ninja-container .nf-field .nf-field-element input[type=password],.eael-ninja-container .nf-field .nf-field-element input[type=url],.eael-ninja-container .nf-field .nf-field-element textarea,.eael-ninja-container ul.wpuf-form li .wpuf-fields input[type=email],.eael-ninja-container ul.wpuf-form li .wpuf-fields input[type=number],.eael-ninja-container ul.wpuf-form li .wpuf-fields input[type=text]{max-width:100%}.eael-ninja-form .nf-form-title{display:none}.eael-ninja-form-title-yes .nf-form-title{display:block}.eael-ninja-form .title-description-hide .nf-form-title{display:none}.eael-ninja-form.title-description-hide .nf-form-title{display:none}.eael-ninja-form .nf-field-label{display:none}.eael-ninja-form-labels-yes .nf-field-label{display:block}.eael-ninja-form .submit-container input[type=button]{border:0;-webkit-border-radius:0;border-radius:0}.eael-ninja-form-button-full-width .submit-container input[type=button]{width:100%}.eael-post-grid{margin:0 -10px}.eael-grid-post{float:left;padding:10px}.eael-post-carousel .eael-grid-post{float:none;padding:0}.eael-grid-post-holder{border:1px solid rgba(0,0,0,.1)}.eael-grid-post-holder-inner{height:100%}.eael-entry-media{position:relative}.eael-entry-overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:2;-webkit-transition:opacity .2s ease-in-out,-webkit-transform .25s cubic-bezier(.19,1,.22,1);transition:opacity .2s ease-in-out,-webkit-transform .25s cubic-bezier(.19,1,.22,1);-o-transition:opacity .2s ease-in-out,transform .25s cubic-bezier(.19,1,.22,1);transition:opacity .2s ease-in-out,transform .25s cubic-bezier(.19,1,.22,1);transition:opacity .2s ease-in-out,transform .25s cubic-bezier(.19,1,.22,1),-webkit-transform .25s cubic-bezier(.19,1,.22,1)}.eael-entry-overlay>a{position:absolute;top:0;left:0;width:100%;height:100%;z-index:3}.eael-entry-title{margin:10px 0 5px;font-size:1.2em}.eael-entry-thumbnail img{width:100%;max-width:100%;vertical-align:middle}.eael-entry-thumbnail>img{height:100%}.eael-entry-footer .eael-author-avatar{width:50px}.eael-entry-footer .eael-author-avatar .avatar{-webkit-border-radius:50%;border-radius:50%}.eael-post-grid .eael-entry-footer .eael-entry-meta{padding-left:8px;text-align:left}.eael-grid-post .eael-entry-meta{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.eael-grid-post .eael-entry-footer .eael-entry-meta{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.eael-entry-meta>div{font-size:12px;line-height:1.2;padding-bottom:5px}.eael-grid-post-excerpt p{margin:0;font-size:14px}.eael-entry-meta .eael-entry-footer .eael-posted-by{display:block}.eael-grid-post .eael-entry-footer,.eael-grid-post .eael-entry-wrapper{padding:15px}.eael-post-grid .eael-entry-header .eael-entry-meta span.eael-posted-on{padding-left:5px}.eael-post-grid .eael-entry-header .eael-entry-meta span.eael-posted-on::before{content:'\f111';font-family:FontAwesome;color:inherit;opacity:.4;font-size:.8em;padding-right:7px}.eael-entry-medianone{position:relative}.eael-entry-overlay{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.eael-entry-overlay>i{color:#fff}.eael-entry-overlay.fade-in{visibility:hidden;opacity:0;-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.eael-entry-medianone:hover .eael-entry-overlay.fade-in{visibility:visible;opacity:1}.eael-entry-medianone:hover .eael-entry-overlay.fade-in>i{-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0);opacity:1}.eael-entry-overlay.zoom-in{-webkit-transform:scale(.9);-ms-transform:scale(.9);transform:scale(.9);visibility:hidden;opacity:0;-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.eael-entry-medianone:hover .eael-entry-overlay.zoom-in{visibility:visible;opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.eael-entry-overlay.slide-up{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);visibility:hidden;opacity:0;-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.eael-entry-medianone:hover .eael-entry-overlay.slide-up{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);visibility:visible;opacity:1}.eael-entry-medianone{overflow:hidden}.eael-entry-media.grid-hover-style-fade-in .eael-entry-overlay{opacity:0}.eael-entry-media.grid-hover-style-fade-in:hover .eael-entry-overlay{opacity:1}.eael-entry-media.grid-hover-style-none .eael-entry-overlay{display:none}.eael-entry-media.grid-hover-style-zoom-in .eael-entry-overlay{-webkit-transform:scale(.4);-ms-transform:scale(.4);transform:scale(.4);opacity:0}.eael-entry-media.grid-hover-style-zoom-in:hover .eael-entry-overlay{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}.eael-entry-media.grid-hover-style-animate-down .eael-entry-overlay{-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}.eael-entry-media.grid-hover-style-animate-down .eael-entry-overlay>i{-webkit-transform:translateY(-100px);-ms-transform:translateY(-100px);transform:translateY(-100px);-webkit-transition-delay:.1s;-o-transition-delay:.1s;transition-delay:.1s;-webkit-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s}.eael-entry-media.grid-hover-style-animate-down:hover .eael-entry-overlay{-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0)}.eael-entry-media.grid-hover-style-animate-down:hover .eael-entry-overlay>i{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-entry-media.grid-hover-style-animate-up .eael-entry-overlay{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);visibility:hidden;opacity:0}.eael-entry-media.grid-hover-style-animate-up .eael-entry-overlay>i{-webkit-transform:translateY(100px);-ms-transform:translateY(100px);transform:translateY(100px);-webkit-transition-delay:.1s;-o-transition-delay:.1s;transition-delay:.1s;-webkit-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s}.eael-entry-media.grid-hover-style-animate-up:hover .eael-entry-overlay{-webkit-transform:translate(0);-ms-transform:translate(0);transform:translate(0);visibility:visible;opacity:1}.eael-entry-media.grid-hover-style-animate-up:hover .eael-entry-overlay>i{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-col-1 .eael-post-grid-column{float:none;width:100%}.eael-col-2 .eael-post-grid-column{float:left;width:50%}.eael-col-3 .eael-post-grid-column{float:left;width:33.3333%}.eael-col-4 .eael-post-grid-column{float:left;width:25%}.eael-col-5 .eael-post-grid-column{float:left;width:20%}.eael-col-6 .eael-post-grid-column{float:left;width:16.6666%}@media only screen and (max-width:979px){.eael-col-1 .eael-post-grid-column,.eael-col-2 .eael-post-grid-column,.eael-col-3 .eael-post-grid-column,.eael-col-4 .eael-post-grid-column,.eael-col-5 .eael-post-grid-column,.eael-col-6 .eael-post-grid-column{width:33.3333%}}@media only screen and (max-width:767px){.eael-col-1 .eael-post-grid-column,.eael-col-2 .eael-post-grid-column,.eael-col-3 .eael-post-grid-column,.eael-col-4 .eael-post-grid-column,.eael-col-5 .eael-post-grid-column,.eael-col-6 .eael-post-grid-column{width:50%}}@media only screen and (max-width:480px){.eael-col-1 .eael-post-grid-column,.eael-col-2 .eael-post-grid-column,.eael-col-3 .eael-post-grid-column,.eael-col-4 .eael-post-grid-column,.eael-col-5 .eael-post-grid-column,.eael-col-6 .eael-post-grid-column{float:none;width:100%}}.eael-author-avatar>a{display:block}.eael-entry-footer{overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.eael-entry-footer>div{display:inline-block;float:left}.eael-post-timeline{margin-bottom:0;min-height:100%;overflow:hidden;position:relative}.eael-timeline-column{width:50%;margin-left:0;float:left;margin-top:0!important}.eael-timeline-post{position:relative}.eael-timeline-post:after{background-color:rgba(83,85,86,.2);content:"";width:2px;height:245px;position:absolute;right:0;top:70px}.eael-timeline-post:nth-child(2n):after{display:none}.eael-timeline-bullet{background-color:#9fa9af;border:5px solid #fff;-webkit-border-radius:50%;border-radius:50%;-webkit-box-shadow:0 1px 0 1px rgba(0,0,0,.1);box-shadow:0 1px 0 1px rgba(0,0,0,.1);content:"";height:20px;position:absolute;right:-9px;top:60px;width:20px;z-index:3;cursor:pointer}.eael-timeline-post:nth-child(2n) .eael-timeline-bullet{background-color:#9fa9af;border:5px solid #fff;-webkit-border-radius:50%;border-radius:50%;bottom:36px;content:"";height:20px;left:-11px;position:absolute;top:300px;width:20px;z-index:3}.eael-timeline-post-inner{background:-webkit-linear-gradient(45deg,#3f3f46 0,#05abe0 100%) repeat scroll 0 0 transparent;background:-o-linear-gradient(45deg,#3f3f46 0,#05abe0 100%) repeat scroll 0 0 transparent;background:linear-gradient(45deg,#3f3f46 0,#05abe0 100%) repeat scroll 0 0 transparent;border:8px solid #e5eaed;-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.15);box-shadow:0 1px 3px 0 rgba(0,0,0,.15);float:right;margin:30px 40px 30px auto;position:relative;height:320px;width:calc(100% - 40px)}.eael-timeline-post:nth-child(even) .eael-timeline-post-inner{float:left;margin-left:40px}.eael-timeline-post-inner:after{border-color:transparent transparent transparent #e5eaed;border-style:solid;border-width:15px;content:"";height:0;position:absolute;right:-36px;top:17px;width:0}.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner:after{border-color:transparent #e5eaed transparent transparent;border-style:solid;border-width:15px;content:"";height:0;left:-36px;position:absolute;top:257px;width:0}.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner::after{border-left-color:transparent!important}.eael-timeline-post p{margin:1.6rem 0 0 0;font-size:.9em;line-height:1.6em}.eael-timeline-post-image{-webkit-background-size:cover;background-size:cover;background-position:center center;background-repeat:no-repeat;display:block;height:100%;overflow:hidden;position:relative;opacity:.6;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.eael-timeline-post-title{bottom:40px;position:absolute;width:100%}.eael-timeline-post-title h2{color:#fff;font-size:20px;font-weight:700;letter-spacing:1px;line-height:24px;padding:0 25px;text-align:left;text-transform:uppercase}.eael-timeline-post-excerpt{opacity:0;position:absolute;top:0;left:0;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.eael-timeline-post-excerpt p{color:#fff;font-size:14px;padding:25px}.eael-timeline-post-inner:hover .eael-timeline-post-excerpt{opacity:1;top:10px}.eael-timeline-post-inner:hover .eael-timeline-post-image{opacity:.3}.eael-timeline-post time{opacity:0;background-color:rgba(0,0,0,.7);color:#fff;font-size:10px;-webkit-border-radius:20px;border-radius:20px;position:absolute;right:-97px;width:100px;height:30px;line-height:30px;text-align:center;top:50px;z-index:99;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.eael-timeline-post:nth-child(2n) time{background-color:rgba(0,0,0,.7);-webkit-border-radius:20px;border-radius:20px;color:#fff;font-size:10px;height:30px;left:-99px;line-height:30px;position:absolute;text-align:center;top:290px;width:100px;z-index:99}.eael-timeline-post time:before{border-bottom:5px solid rgba(0,0,0,.7);border-left:5px solid transparent;border-right:5px solid transparent;content:"";height:0;left:45px;position:absolute;top:-5px;width:0}.eael-timeline-post:hover time{opacity:1}.eael-timeline-post::after{height:100%}.eael-post-timeline .eael-timeline-post:nth-last-child(2)::after{height:245px}.eael-post-timeline .eael-timeline-post:last-child::after{display:none}.eael-load-more-button-wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}@media only screen and (max-width:1366px){.eael-timeline-post-title h2{font-size:.8em}.eael-timeline-post-excerpt p{font-size:13px}}@media only screen and (max-width:1169px){.eael-timeline-post-inner{height:320px}}@media only screen and (max-width:992px){.eael-post-timeline{margin-left:0}.eael-timeline-bullet,.eael-timeline-post-inner:after,.eael-timeline-post:after,.eael-timeline-post:before{display:none}.eael-timeline-post{display:inline-block;float:left!important;width:50%!important;margin:15px auto}.eael-timeline-post-inner{height:320px;padding-bottom:30px}.eael-timeline-post-title{bottom:50px}.eael-timeline-post-title h2{font-size:.8em;line-height:1.2em}.eael-timeline-post .eael-timeline-post-inner{margin:0 10px auto 0;width:90%}.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner{margin:0 auto 0 10px;width:90%}.eael-timeline-post-excerpt{opacity:0!important}.eael-timeline-post-image{opacity:.3}.eael-timeline-post time,.eael-timeline-post:nth-child(2n) time{background-color:#fff;-webkit-border-radius:0;border-radius:0;color:#444;font-size:12px;text-transform:uppercase;left:0;opacity:1;padding-top:3px;top:275px;width:100%}time:before{display:none}}@media only screen and (max-width:767px){.eael-timeline-post{display:block;float:none!important;margin:20px auto;width:100%!important}.eael-timeline-post .eael-timeline-post-inner,.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner{display:block;float:none;margin:0 auto}}@media only screen and (max-width:479px){.eael-timeline-post .eael-timeline-post-inner,.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner{height:250px;margin:0 auto;width:95%}.eael-timeline-post time,.eael-timeline-post:nth-child(2n) time{top:205px}}.eael-pricing{-webkit-display:flex;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-pricing .eael-pricing-item{width:100%;height:auto;margin:0}.eael-pricing .eael-pricing-button{display:inline-block;padding:12px 25px;background:#00c853;font-size:14px;font-weight:600;color:#fff;text-transform:uppercase;text-decoration:none;-webkit-transition:.3s;-o-transition:.3s;transition:.3s;-webkit-border-radius:4px;border-radius:4px}.eael-pricing .eael-pricing-button:hover{background:#03b048}.eael-pricing .eael-pricing-item ul{padding:0;margin:0;list-style:none}.eael-pricing .eael-pricing-item ul li.disable-item{text-decoration:line-through;opacity:.5}.eael-pricing .eael-pricing-item ul li span.li-icon{color:#00c853;margin-right:6px}.eael-pricing .eael-pricing-item ul li.disable-item span.li-icon{color:#ef5350}.eael-pricing.style-1{position:relative;z-index:0;text-align:center}.eael-pricing.style-1 .eael-pricing-item{border:1px solid rgba(9,9,9,.1);padding:30px;-webkit-border-radius:5px;border-radius:5px;-webkit-transition:.5s;-o-transition:.5s;transition:.5s}.eael-pricing.style-1 .eael-pricing-item:hover{-webkit-box-shadow:0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22);box-shadow:0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22)}.eael-pricing.style-1 .eael-pricing-item.featured{position:relative}.eael-pricing.style-1 .eael-pricing-item.ribbon-1:before{content:"";position:absolute;width:100%;height:3px;background:#00c853;top:0;left:0;right:0;z-index:1;-webkit-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.eael-pricing.style-1 .eael-pricing-item.ribbon-2:before{content:"Featured";position:absolute;width:auto;background:#00c853;color:#fff;top:35px;right:-15px;z-index:10;font-size:10px;font-weight:600;text-transform:uppercase;padding:5px 10px}.eael-pricing.style-1 .eael-pricing-item.ribbon-2:after{content:"";position:absolute;top:20px;right:-15px;width:0;height:0;border-bottom:15px solid #00c853;border-right:15px solid transparent;z-index:9;opacity:.9}.eael-pricing.style-1 .eael-pricing-item.ribbon-3:before{content:"Featured";position:absolute;width:auto;background:rgba(0,0,0,.6);color:#fff;top:15px;right:15px;z-index:10;font-size:11px;font-weight:600;text-transform:uppercase;padding:5px 15px}.eael-pricing.style-1 .eael-pricing-item .header{display:block;position:relative;z-index:0;padding-bottom:15px;margin-bottom:15px}.eael-pricing.style-1 .eael-pricing-item .header:after{content:"";position:absolute;width:140px;height:1px;bottom:0;left:0;right:0;margin:0 auto;z-index:1;background:rgba(9,9,9,.1)}.eael-pricing.style-1 .eael-pricing-item .header .title{font-weight:700;line-height:30px;margin:0}.eael-pricing.style-1 .eael-pricing-item .eael-pricing-tag{position:relative;z-index:0;padding:15px 0;margin-bottom:15px}.eael-pricing.style-1 .eael-pricing-item .eael-pricing-tag:after{content:"";position:absolute;width:140px;height:1px;bottom:0;left:0;right:0;margin:0 auto;z-index:1;background:rgba(9,9,9,.04)}.eael-pricing.style-1 .eael-pricing-item .price-tag{position:relative;display:inline-block;font-size:28px;font-weight:500;line-height:0;margin:0 auto}.eael-pricing.style-1 .eael-pricing-item .price-tag .price-currency{font-size:24px;font-weight:700}.eael-pricing.style-1 .eael-pricing-item .price-period{color:#999}.eael-pricing.style-1 .eael-pricing-item .body ul{display:block;width:100%;margin-bottom:15px}.eael-pricing.style-1 .eael-pricing-item .body ul li{display:block;width:100%;height:auto;padding:10px 0;font-size:14px;color:#6d6d6d;border-bottom:1px solid rgba(9,9,9,.04)}.eael-pricing.style-1 .eael-pricing-item .body ul li:last-child{border:none}.eael-pricing.style-1 .eael-pricing-item.featured-large{padding:60px 0}.eael-pricing.style-2{position:relative;z-index:0;text-align:center}.eael-pricing.style-2 .eael-pricing-item{padding:30px 0;-webkit-border-radius:5px;border-radius:5px;margin:0;border:1px solid rgba(9,9,9,.1)}.eael-pricing.style-2 .eael-pricing-item.featured{-webkit-box-shadow:0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22);box-shadow:0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22)}.eael-pricing.style-2 .eael-pricing-item.ribbon-1:before{content:"";position:absolute;width:100%;height:3px;background:#00c853;top:0;left:0;right:0;z-index:1;-webkit-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.eael-pricing.style-2 .eael-pricing-item.ribbon-2:before{content:"Featured";position:absolute;width:auto;background:#00c853;color:#fff;top:35px;right:-15px;z-index:10;font-size:10px;font-weight:600;text-transform:uppercase;padding:5px 10px}.eael-pricing.style-2 .eael-pricing-item.ribbon-2:after{content:"";position:absolute;top:20px;right:-15px;width:0;height:0;border-bottom:15px solid #00c853;border-right:15px solid transparent;z-index:9;opacity:.9}.eael-pricing.style-2 .eael-pricing-item.ribbon-3:before{content:"Featured";position:absolute;width:auto;background:rgba(0,0,0,.6);color:#fff;top:15px;right:15px;z-index:10;font-size:11px;font-weight:600;text-transform:uppercase;padding:5px 15px}.eael-pricing.style-2 .eael-pricing-item .eael-pricing-icon .icon{display:inline-block;position:relative;width:80px;height:80px;background:#00c853;-webkit-border-radius:50%;border-radius:50%;margin-bottom:30px;text-align:center;-webkit-transition:.5s;-o-transition:.5s;transition:.5s;overflow:hidden}.eael-pricing.style-2 .eael-pricing-item .eael-pricing-icon .icon i{font-size:30px;color:#fff;line-height:80px;-webkit-transition:.5s;-o-transition:.5s;transition:.5s}.eael-pricing.style-2 .eael-pricing-item:hover .eael-pricing-icon .icon{background:#43a047}.eael-pricing.style-2 .eael-pricing-item:hover .eael-pricing-icon .icon i{color:#fff}.eael-pricing.style-2 .eael-pricing-item .header{background:#c8e6c9;padding:25px 30px;margin-bottom:15px;position:relative;z-index:0}.eael-pricing.style-2 .eael-pricing-item.featured .header:after{content:"";position:absolute;width:100%;height:100%;top:0;left:0;right:0;bottom:0;z-index:-1;background:rgba(255,255,255,.4)}.eael-pricing.style-2 .eael-pricing-item .header .title{font-size:28px;font-weight:700;line-height:40px;margin:0}.eael-pricing.style-2 .eael-pricing-item .header .subititle{font-size:14px;font-weight:600;color:#6d6d6d}.eael-pricing.style-2 .eael-pricing-item .eael-pricing-tag{position:relative;z-index:0;padding:15px 0;margin-bottom:15px}.eael-pricing.style-2 .eael-pricing-item .eael-pricing-tag:after{content:"";position:absolute;width:140px;height:1px;bottom:0;left:0;right:0;margin:0 auto;z-index:1;background:rgba(9,9,9,.04)}.eael-pricing.style-2 .eael-pricing-item .price-tag{position:relative;display:inline-block;font-size:28px;font-weight:500;line-height:0;margin:0 auto}.eael-pricing.style-2 .eael-pricing-item .price-tag .price-currency{font-size:24px;font-weight:700;color:#00c853}.eael-pricing.style-2 .eael-pricing-item .price-period{color:#999}.eael-pricing.style-2 .eael-pricing-item .body ul{display:block;width:100%;margin-bottom:15px}.eael-pricing.style-2 .eael-pricing-item .body ul li{display:block;width:100%;height:auto;padding:10px 15px;font-size:14px;color:#6d6d6d;border-bottom:1px solid rgba(9,9,9,.04)}.eael-pricing.style-2 .eael-pricing-item .body ul li:last-child{border:none}@media only screen and (min-width:768px) and (max-width:992px){.eael-pricing{display:block}.eael-pricing .eael-pricing-item,.eael-pricing.style-2 .eael-pricing-item,.eael-pricing.style-4 .eael-pricing-item{width:100%;margin:0 auto 30px auto}}@media only screen and (max-width:480px){.eael-pricing{display:block}.eael-pricing .eael-pricing-item{width:100%}.eael-pricing .eael-pricing-item,.eael-pricing.style-2 .eael-pricing-item,.eael-pricing.style-4 .eael-pricing-item{margin:0 auto 30px auto}}.eael-pricing-content-align-center .eael-pricing{text-align:center}.eael-pricing-content-align-left .eael-pricing{text-align:left}.eael-pricing-content-align-right .eael-pricing{text-align:right}.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .price-tag{padding-left:45px}.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .price-tag:before{left:30px}.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .eael-pricing-tag{padding-right:30px}.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .eael-pricing-icon,.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .footer,.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .header,.eael-pricing-content-align-left .eael-pricing.style-4 .eael-pricing-item .footer,.eael-pricing-content-align-left .eael-pricing.style-4 .eael-pricing-item .header{padding-left:30px;padding-right:30px}.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .eael-pricing-icon,.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .footer,.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .header,.eael-pricing-content-align-right .eael-pricing.style-4 .eael-pricing-item .footer,.eael-pricing-content-align-right .eael-pricing.style-4 .eael-pricing-item .header{padding-right:30px;padding-left:30px}.eael-pricing-content-align-left .eael-pricing.style-2 .eael-pricing-item .body ul li,.eael-pricing-content-align-left .eael-pricing.style-4 .eael-pricing-item .body ul li{padding-left:30px}.eael-pricing-content-align-right .eael-pricing.style-2 .eael-pricing-item .body ul li,.eael-pricing-content-align-right .eael-pricing.style-4 .eael-pricing-item .body ul li{padding-right:30px}.eael-pricin
|
|
|
