| 1 |
/*** Grid Css Start ****/ |
| 2 |
|
| 3 |
.enteraddons-grid-col-2 { |
| 4 |
display: grid; |
| 5 |
grid-template-columns: repeat(2, 1fr); |
| 6 |
grid-gap: 15px; |
| 7 |
} |
| 8 |
.enteraddons-grid-col-3 { |
| 9 |
display: grid; |
| 10 |
grid-template-columns: repeat(3, 1fr); |
| 11 |
grid-gap: 15px; |
| 12 |
} |
| 13 |
.enteraddons-grid-col-4 { |
| 14 |
display: grid; |
| 15 |
grid-template-columns: repeat(4, 1fr); |
| 16 |
grid-gap: 15px; |
| 17 |
} |
| 18 |
|
| 19 |
@media ( max-width: 991px ) { |
| 20 |
.enteraddons-grid-col-3 { |
| 21 |
grid-template-columns: repeat(2, 1fr); |
| 22 |
} |
| 23 |
.enteraddons-grid-col-4 { |
| 24 |
grid-template-columns: repeat(3, 1fr); |
| 25 |
} |
| 26 |
|
| 27 |
} |
| 28 |
@media ( max-width: 767px ) { |
| 29 |
.enteraddons-grid-col-2 { |
| 30 |
grid-template-columns: repeat(1, 1fr); |
| 31 |
} |
| 32 |
.enteraddons-grid-col-3 { |
| 33 |
grid-template-columns: repeat(1, 1fr); |
| 34 |
} |
| 35 |
.enteraddons-grid-col-4 { |
| 36 |
grid-template-columns: repeat(1, 1fr); |
| 37 |
} |
| 38 |
|
| 39 |
} |
| 40 |
.enteraddons-grid-col-space-1{ |
| 41 |
grid-column-end: span 1; |
| 42 |
} |
| 43 |
.enteraddons-grid-col-space-2{ |
| 44 |
grid-column-end: span 2; |
| 45 |
} |
| 46 |
.enteraddons-grid-col-space-3{ |
| 47 |
grid-column-end: span 3; |
| 48 |
} |
| 49 |
.enteraddons-grid-col-space-4{ |
| 50 |
grid-column-end: span 4; |
| 51 |
} |
| 52 |
.enteraddons-d-flex { |
| 53 |
display: -webkit-box !important; |
| 54 |
display: -ms-flexbox !important; |
| 55 |
display: flex !important; |
| 56 |
} |
| 57 |
.enteraddons-flex-wrap { |
| 58 |
-ms-flex-wrap: wrap; |
| 59 |
flex-wrap: wrap; |
| 60 |
} |
| 61 |
@media (min-width: 768px) { |
| 62 |
.enteraddons-flex-md-nowrap { |
| 63 |
-ms-flex-wrap: nowrap !important; |
| 64 |
flex-wrap: nowrap !important; |
| 65 |
} |
| 66 |
} |
| 67 |
.enteraddons-justify-content-between { |
| 68 |
justify-content: space-between; |
| 69 |
} |
| 70 |
.enteraddons-align-items-center { |
| 71 |
-webkit-box-align: center !important; |
| 72 |
-ms-flex-align: center !important; |
| 73 |
align-items: center !important; |
| 74 |
} |
| 75 |
.enteraddons-align-items-sm-center { |
| 76 |
-webkit-box-align: center !important; |
| 77 |
-ms-flex-align: center !important; |
| 78 |
align-items: center !important; |
| 79 |
} |
| 80 |
.enteraddons-flex-column { |
| 81 |
-webkit-box-orient: vertical !important; |
| 82 |
-webkit-box-direction: normal !important; |
| 83 |
-ms-flex-direction: column !important; |
| 84 |
flex-direction: column !important; |
| 85 |
} |
| 86 |
.position-relative { |
| 87 |
position: relative !important; |
| 88 |
} |
| 89 |
@media (min-width: 576px) { |
| 90 |
.enteraddons-flex-sm-row { |
| 91 |
-webkit-box-orient: horizontal !important; |
| 92 |
-webkit-box-direction: normal !important; |
| 93 |
-ms-flex-direction: row !important; |
| 94 |
flex-direction: row !important; |
| 95 |
} |
| 96 |
} |
| 97 |
.enteraddons-pb-4 { |
| 98 |
padding-bottom: 1.5rem !important; |
| 99 |
} |
| 100 |
.enteraddons-mb-4 { |
| 101 |
margin-bottom: 1.5rem !important; |
| 102 |
} |
| 103 |
.enteraddons-pr-sm-3 { |
| 104 |
padding-right: 1rem !important; |
| 105 |
} |
| 106 |
.enteraddons-mr-sm-3 { |
| 107 |
margin-right: 1rem !important; |
| 108 |
} |
| 109 |
.enteraddons-pb-sm-0 { |
| 110 |
padding-bottom: 0 !important; |
| 111 |
} |
| 112 |
.enteraddons-mb-sm-0{ |
| 113 |
margin-bottom: 0 !important; |
| 114 |
} |
| 115 |
/**** Hover Effect *****/ |
| 116 |
.hover-border-btm-effect { |
| 117 |
position: relative; |
| 118 |
} |
| 119 |
.hover-border-btm-effect:hover:after { |
| 120 |
width: 100%; |
| 121 |
left: 0; |
| 122 |
} |
| 123 |
.hover-border-btm-effect:after { |
| 124 |
position: absolute; |
| 125 |
content: ''; |
| 126 |
height: 1px; |
| 127 |
width: 0; |
| 128 |
background: -webkit-gradient(linear, left top, right top, from(#0575E6), to(#021B79)); |
| 129 |
background: -o-linear-gradient(left, #0575E6 0%, #021B79 100%); |
| 130 |
background: linear-gradient(90deg, #0575E6 0%, #021B79 100%); |
| 131 |
top: 100%; |
| 132 |
-webkit-transition: .3s ease-in; |
| 133 |
-o-transition: .3s ease-in; |
| 134 |
transition: .3s ease-in; |
| 135 |
left: 50%; |
| 136 |
} |
| 137 |
.hover-saclup-effect { |
| 138 |
-webkit-transition: 0.3s ease-in-out; |
| 139 |
-o-transition: 0.3s ease-in-out; |
| 140 |
transition: 0.3s ease-in-out; |
| 141 |
} |
| 142 |
.hover-saclup-effect:hover { |
| 143 |
-webkit-transform: scale(1.1); |
| 144 |
-ms-transform: scale(1.1); |
| 145 |
transform: scale(1.1); |
| 146 |
} |
| 147 |
.dual-bg-effect { |
| 148 |
overflow: hidden; |
| 149 |
position: relative; |
| 150 |
} |
| 151 |
.dual-bg-effect:before, |
| 152 |
.dual-bg-effect:after { |
| 153 |
opacity: 1; |
| 154 |
background-color: #cc9f4e; |
| 155 |
position: absolute; |
| 156 |
content: ""; |
| 157 |
-webkit-transition: 0.3s ease-in; |
| 158 |
-o-transition: 0.3s ease-in; |
| 159 |
transition: 0.3s ease-in; |
| 160 |
} |
| 161 |
.dual-bg-effect:before { |
| 162 |
width: 7px; |
| 163 |
top: 0; |
| 164 |
left: 0; |
| 165 |
-webkit-transform-origin: top left; |
| 166 |
-ms-transform-origin: top left; |
| 167 |
transform-origin: top left; |
| 168 |
-webkit-transform: rotate(45deg) translateY(-50%); |
| 169 |
-ms-transform: rotate(45deg) translateY(-50%); |
| 170 |
transform: rotate(45deg) translateY(-50%); |
| 171 |
z-index: -1; |
| 172 |
height: 500%; |
| 173 |
} |
| 174 |
.dual-bg-effect:after { |
| 175 |
top: auto; |
| 176 |
left: auto; |
| 177 |
width: 7px; |
| 178 |
bottom: 0; |
| 179 |
right: 0; |
| 180 |
-webkit-transform-origin: bottom right; |
| 181 |
-ms-transform-origin: bottom right; |
| 182 |
transform-origin: bottom right; |
| 183 |
-webkit-transform: rotate(45deg) translateY(50%); |
| 184 |
-ms-transform: rotate(45deg) translateY(50%); |
| 185 |
transform: rotate(45deg) translateY(50%); |
| 186 |
z-index: -1; |
| 187 |
height: 500%; |
| 188 |
} |
| 189 |
.dual-bg-effect:hover::before { |
| 190 |
width: 50%; |
| 191 |
} |
| 192 |
.dual-bg-effect:hover::after { |
| 193 |
width: 50%; |
| 194 |
} |
| 195 |
.interactive-bg { |
| 196 |
border: 1px solid #FFFFFF; |
| 197 |
background-color: transparent; |
| 198 |
font-size: 14px; |
| 199 |
color: #ffffff; |
| 200 |
border-radius: 0; |
| 201 |
/* display: inline-block;*/ |
| 202 |
color: #FFFFFF; |
| 203 |
position: relative; |
| 204 |
line-height: 1; |
| 205 |
-webkit-user-select: none; |
| 206 |
-moz-user-select: none; |
| 207 |
-ms-user-select: none; |
| 208 |
user-select: none; |
| 209 |
white-space: nowrap; |
| 210 |
vertical-align: middle; |
| 211 |
text-align: center; |
| 212 |
z-index: 1; |
| 213 |
-webkit-transition: all 0.3s ease-in; |
| 214 |
-o-transition: all 0.3s ease-in; |
| 215 |
transition: all 0.3s ease-in; |
| 216 |
-webkit-backface-visibility: hidden; |
| 217 |
backface-visibility: hidden; |
| 218 |
} |
| 219 |
.interactive-bg { |
| 220 |
overflow: hidden; |
| 221 |
position: relative; |
| 222 |
} |
| 223 |
.interactive-bg:after { |
| 224 |
opacity: 1; |
| 225 |
position: absolute; |
| 226 |
content: ""; |
| 227 |
background-color: #fafafa; |
| 228 |
-webkit-transition: 0.3s ease-in-out; |
| 229 |
-o-transition: 0.3s ease-in-out; |
| 230 |
transition: 0.3s ease-in-out; |
| 231 |
bottom: 0; |
| 232 |
left: -30px; |
| 233 |
top: auto; |
| 234 |
-webkit-transform: rotate(45deg) scale(0.6); |
| 235 |
-ms-transform: rotate(45deg) scale(0.6); |
| 236 |
transform: rotate(45deg) scale(0.6); |
| 237 |
-webkit-transform-origin: left; |
| 238 |
-ms-transform-origin: left; |
| 239 |
transform-origin: left; |
| 240 |
height: 100%; |
| 241 |
width: 100%; |
| 242 |
background-size: 102% 102%; |
| 243 |
z-index: -1; |
| 244 |
|
| 245 |
} |
| 246 |
.interactive-bg:hover { |
| 247 |
border: 1px solid #1a1a1a; |
| 248 |
color: #fff; |
| 249 |
} |
| 250 |
.interactive-bg:hover:after { |
| 251 |
width: 100%; |
| 252 |
width: 100%; |
| 253 |
-webkit-transform: scale(1.5); |
| 254 |
-ms-transform: scale(1.5); |
| 255 |
transform: scale(1.5); |
| 256 |
background-color: #1a1a1a; |
| 257 |
} |
| 258 |
.dual-icon-right i { |
| 259 |
margin-left: 5px; |
| 260 |
} |
| 261 |
.dual-icon-left i { |
| 262 |
margin-right: 5px; |
| 263 |
} |
| 264 |
.dual-icon-btn{ |
| 265 |
overflow: hidden; |
| 266 |
padding: 12px 40px 12px 20px; |
| 267 |
-webkit-transition: .3s linear; |
| 268 |
-o-transition: .3s linear; |
| 269 |
transition: .3s linear; |
| 270 |
position: relative; |
| 271 |
display: inline-block; |
| 272 |
} |
| 273 |
.dual-icon-btn:before { |
| 274 |
content: ""; |
| 275 |
position: absolute; |
| 276 |
top: 50%; |
| 277 |
left: 50%; |
| 278 |
-webkit-transform: translate(-50%, -50%); |
| 279 |
-ms-transform: translate(-50%, -50%); |
| 280 |
transform: translate(-50%, -50%); |
| 281 |
height: 0; |
| 282 |
width: 0; |
| 283 |
background-color: #000000; |
| 284 |
border-radius: inherit; |
| 285 |
z-index: -1; |
| 286 |
} |
| 287 |
.dual-icon-btn:after { |
| 288 |
background-color: #F46060; |
| 289 |
} |
| 290 |
.dual-icon-btn i { |
| 291 |
position: absolute; |
| 292 |
top: 50%; |
| 293 |
-webkit-transform: translateY(-50%); |
| 294 |
-ms-transform: translateY(-50%); |
| 295 |
transform: translateY(-50%); |
| 296 |
-webkit-transition: .4s; |
| 297 |
-o-transition: .4s; |
| 298 |
transition: .4s; |
| 299 |
margin: 0; |
| 300 |
} |
| 301 |
.dual-icon-btn .dual-icon-right i { |
| 302 |
right: 15px; |
| 303 |
} |
| 304 |
.dual-icon-btn .dual-icon-left i { |
| 305 |
left: -30px; |
| 306 |
} |
| 307 |
.dual-icon-btn:focus, |
| 308 |
.dual-icon-btn:active, |
| 309 |
.dual-icon-btn:hover { |
| 310 |
color: #ffffff; |
| 311 |
padding-left: 40px; |
| 312 |
padding-right: 20px; |
| 313 |
border-color: #F46060 !important; |
| 314 |
} |
| 315 |
.dual-icon-btn:focus:before, |
| 316 |
.dual-icon-btn:active:before, |
| 317 |
.dual-icon-btn:hover:before { |
| 318 |
height: 100%; |
| 319 |
width: 100%; |
| 320 |
opacity: 0; |
| 321 |
-webkit-transition: .4s ease; |
| 322 |
-o-transition: .4s ease; |
| 323 |
transition: .4s ease; |
| 324 |
} |
| 325 |
.dual-icon-btn:focus .dual-icon-left i, |
| 326 |
.dual-icon-btn:active .dual-icon-left i, |
| 327 |
.dual-icon-btn:hover .dual-icon-left i { |
| 328 |
left: 15px; |
| 329 |
} |
| 330 |
.dual-icon-btn:focus .dual-icon-right i, |
| 331 |
.dual-icon-btn:active .dual-icon-right i, |
| 332 |
.dual-icon-btn:hover .dual-icon-right i { |
| 333 |
right: -30px; |
| 334 |
} |
| 335 |
/**** css transform *****/ |
| 336 |
.ea-css-transform-yes { |
| 337 |
-webkit-transform: translate(var(--ea-css-translate-x, 0), var(--ea-css-translate-y, 0)) scale(var(--ea-css-scale-x, 1), var(--ea-css-scale-y, 1)) skew(var(--ea-css-skew-x, 0), var(--ea-css-skew-y, 0)) rotateX(var(--ea-css-rotate-x, 0)) |
| 338 |
rotateY(var(--ea-css-rotate-y, 0)) rotateZ(var(--ea-css-rotate-z, 0)); |
| 339 |
transform: translate(var(--ea-css-translate-x, 0), var(--ea-css-translate-y, 0)) scale(var(--ea-css-scale-x, 1), var(--ea-css-scale-y, 1)) skew(var(--ea-css-skew-x, 0), var(--ea-css-skew-y, 0)) rotateX(var(--ea-css-rotate-x, 0)) |
| 340 |
rotateY(var(--ea-css-rotate-y, 0)) rotateZ(var(--ea-css-rotate-z, 0)); |
| 341 |
-webkit-transition-property: -webkit-transform; |
| 342 |
transition-property: transform; |
| 343 |
transition-property: transform, -webkit-transform; |
| 344 |
-webkit-transition-duration: var(--ea-css-transition-duration, 0.2s); |
| 345 |
transition-duration: var(--ea-css-transition-duration, 0.2s); |
| 346 |
} |
| 347 |
.ea-css-transform-yes:hover { |
| 348 |
-webkit-transform: translate(var(--ea-css-translate-x-hover, var(--ea-css-translate-x, 0)), var(--ea-css-translate-y-hover, var(--ea-css-translate-y, 0))) |
| 349 |
scale(var(--ea-css-scale-x-hover, var(--ea-css-scale-x, 1)), var(--ea-css-scale-y-hover, var(--ea-css-scale-y, 1))) skew(var(--ea-css-skew-x-hover, var(--ea-css-skew-x, 0)), var(--ea-css-skew-y-hover, var(--ea-css-skew-y, 0))) |
| 350 |
rotateX(var(--ea-css-rotate-x-hover, var(--ea-css-rotate-x, 0))) rotateY(var(--ea-css-rotate-y-hover, var(--ea-css-rotate-y, 0))) rotateZ(var(--ea-css-rotate-z-hover, var(--ea-css-rotate-z, 0))); |
| 351 |
transform: translate(var(--ea-css-translate-x-hover, var(--ea-css-translate-x, 0)), var(--ea-css-translate-y-hover, var(--ea-css-translate-y, 0))) |
| 352 |
scale(var(--ea-css-scale-x-hover, var(--ea-css-scale-x, 1)), var(--ea-css-scale-y-hover, var(--ea-css-scale-y, 1))) skew(var(--ea-css-skew-x-hover, var(--ea-css-skew-x, 0)), var(--ea-css-skew-y-hover, var(--ea-css-skew-y, 0))) |
| 353 |
rotateX(var(--ea-css-rotate-x-hover, var(--ea-css-rotate-x, 0))) rotateY(var(--ea-css-rotate-y-hover, var(--ea-css-rotate-y, 0))) rotateZ(var(--ea-css-rotate-z-hover, var(--ea-css-rotate-z, 0))); |
| 354 |
} |