/* Minify_CSS_UriRewriter::$debugText

*/

/* frontend.css */

/* 1    */ /* Counter Widget CSS */
/* 2    */ .hfe-counter-wrapper {
/* 3    */     display: flex;
/* 4    */     flex-direction: column;
/* 5    */     align-items: center;
/* 6    */     justify-content: center;
/* 7    */     gap: 10px;
/* 8    */ }
/* 9    */
/* 10   */ /* Default alignments that will be overridden by controls */
/* 11   */ .hfe-counter-wrapper[style*="flex-direction: column"] {
/* 12   */     align-items: center; /* horizontal alignment for column layouts */
/* 13   */     justify-content: center; /* vertical alignment for column layouts */
/* 14   */ }
/* 15   */
/* 16   */ .hfe-counter-wrapper[style*="flex-direction: row"] {
/* 17   */     justify-content: center; /* horizontal alignment for row layouts */
/* 18   */     align-items: center; /* vertical alignment for row layouts */
/* 19   */ }
/* 20   */
/* 21   */ .hfe-counter-content {
/* 22   */     display: flex;
/* 23   */     align-items: center;
/* 24   */     justify-content: center;
/* 25   */ }
/* 26   */
/* 27   */
/* 28   */ .hfe-counter-number {
/* 29   */     font-weight: bold;
/* 30   */     font-size: 48px;
/* 31   */     line-height: 1;
/* 32   */ }
/* 33   */
/* 34   */ .hfe-counter-title {
/* 35   */     font-size: 18px;
/* 36   */     line-height: 1.2;
/* 37   */     margin: 0;
/* 38   */ }
/* 39   */
/* 40   */ .hfe-counter-prefix,
/* 41   */ .hfe-counter-suffix {
/* 42   */     font-size: inherit;
/* 43   */     line-height: inherit;
/* 44   */ }
/* 45   */
/* 46   */
/* 47   */
/* 48   */ /* Title styling - flex enabled for alignment controls */
/* 49   */ .hfe-counter-title {
/* 50   */     margin: 0;

/* frontend.css */

/* 51   */     display: flex;
/* 52   */     align-items: center;
/* 53   */     justify-content: center;
/* 54   */     flex-shrink: 0;
/* 55   */ }
/* 56   */
/* 57   */ /* Ensure counter content doesn't shrink */
/* 58   */ .hfe-counter-content {
/* 59   */     flex-shrink: 0;
/* 60   */ }
/* 61   */
/* 62   */ /* Equal width distribution for horizontal layouts */
/* 63   */ .hfe-counter-wrapper[style*="flex-direction: row"] .hfe-counter-title,
/* 64   */ .hfe-counter-wrapper[style*="flex-direction: row"] .hfe-counter-content {
/* 65   */     flex: 1;
/* 66   */     min-width: 0;
/* 67   */ }
/* 68   */
/* 69   */ .hfe-counter-wrapper[style*="flex-direction: row-reverse"] .hfe-counter-title,
/* 70   */ .hfe-counter-wrapper[style*="flex-direction: row-reverse"] .hfe-counter-content {
/* 71   */     flex: 1;
/* 72   */     min-width: 0;
/* 73   */ }
/* 74   */
/* 75   */ /* Alternative approach - apply to all potential horizontal layouts */
/* 76   */ .hfe-counter-wrapper:not([style*="column"]) .hfe-counter-title,
/* 77   */ .hfe-counter-wrapper:not([style*="column"]) .hfe-counter-content {
/* 78   */     flex: 1;
/* 79   */     min-width: 0;
/* 80   */ }
/* 81   */
/* 82   */ /* Ensure counter content maintains flex display in all layouts */
/* 83   */ .hfe-counter-content {
/* 84   */     display: flex !important;
/* 85   */     align-items: center;
/* 86   */     justify-content: center;
/* 87   */ }
/* 88   */
/* 89   */
/* 90   */ /* Responsive equal width distribution */
/* 91   */ @media (max-width: 1024px) {
/* 92   */     .elementor-widget-hfe-counter .hfe-counter-wrapper[style*="row"] .hfe-counter-title,
/* 93   */     .elementor-widget-hfe-counter .hfe-counter-wrapper[style*="row"] .hfe-counter-content {
/* 94   */         flex: 1;
/* 95   */         min-width: 0;
/* 96   */     }
/* 97   */ }
/* 98   */
/* 99   */ @media (max-width: 767px) {
/* 100  */     .elementor-widget-hfe-counter .hfe-counter-wrapper[style*="row"] .hfe-counter-title,

/* frontend.css */

/* 101  */     .elementor-widget-hfe-counter .hfe-counter-wrapper[style*="row"] .hfe-counter-content {
/* 102  */         flex: 1;
/* 103  */         min-width: 0;
/* 104  */     }
/* 105  */ }
/* 106  */
/* 107  */ /* Responsive adjustments */
/* 108  */ @media (max-width: 767px) {
/* 109  */     .hfe-counter-number {
/* 110  */         font-size: 36px;
/* 111  */     }
/* 112  */
/* 113  */     .hfe-counter-title {
/* 114  */         font-size: 16px;
/* 115  */     }
/* 116  */ }
/* 117  */
/* 118  */ /* Navigation Menu CSS */
/* 119  */
/* 120  */ ul.hfe-nav-menu,
/* 121  */ .hfe-nav-menu li,
/* 122  */ .hfe-nav-menu ul {
/* 123  */     list-style: none !important;
/* 124  */     margin: 0;
/* 125  */     padding: 0;
/* 126  */ }
/* 127  */
/* 128  */ .hfe-nav-menu li.menu-item {
/* 129  */     position: relative;
/* 130  */ }
/* 131  */
/* 132  */ .hfe-flyout-container .hfe-nav-menu li.menu-item {
/* 133  */     position: relative;
/* 134  */     background: unset;
/* 135  */ }
/* 136  */
/* 137  */ .hfe-nav-menu .sub-menu li.menu-item {
/* 138  */     position: relative;
/* 139  */     background: inherit;
/* 140  */ }
/* 141  */ .hfe-nav-menu__theme-icon-yes button.sub-menu-toggle {
/* 142  */     display: none;
/* 143  */ }
/* 144  */
/* 145  */ div.hfe-nav-menu,
/* 146  */ .elementor-widget-hfe-nav-menu .elementor-widget-container{
/* 147  */     -js-display: flex;
/* 148  */     display: -webkit-box;
/* 149  */     display: -webkit-flex;
/* 150  */     display: -moz-box;

/* frontend.css */

/* 151  */     display: -ms-flexbox;
/* 152  */     display: flex;
/* 153  */     -webkit-box-orient: vertical;
/* 154  */     -webkit-box-direction: normal;
/* 155  */     -webkit-flex-direction: column;
/* 156  */     -moz-box-orient: vertical;
/* 157  */     -moz-box-direction: normal;
/* 158  */     -ms-flex-direction: column;
/* 159  */     flex-direction: column;
/* 160  */ }
/* 161  */
/* 162  */ .hfe-nav-menu__layout-horizontal,
/* 163  */ .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
/* 164  */     -js-display: flex;
/* 165  */     display: -webkit-box;
/* 166  */     display: -webkit-flex;
/* 167  */     display: -moz-box;
/* 168  */     display: -ms-flexbox;
/* 169  */     display: flex;
/* 170  */ }
/* 171  */
/* 172  */ .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
/* 173  */     -webkit-flex-wrap: wrap;
/* 174  */     -ms-flex-wrap: wrap;
/* 175  */     flex-wrap: wrap;
/* 176  */ }
/* 177  */
/* 178  */ .hfe-nav-menu .parent-has-no-child .hfe-menu-toggle {
/* 179  */     display: none;
/* 180  */ }
/* 181  */
/* 182  */ .hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-menu,
/* 183  */ .hfe-submenu-action-hover .hfe-layout-vertical .hfe-nav-menu .sub-menu {
/* 184  */     position: absolute;
/* 185  */     top: 100%;
/* 186  */     left: 0;
/* 187  */     z-index: 16;
/* 188  */     visibility: hidden;
/* 189  */     opacity: 0;
/* 190  */     text-align: left;
/* 191  */     -webkit-transition: all 300ms ease-in;
/* 192  */     transition: all 300ms ease-in;
/* 193  */ }
/* 194  */
/* 195  */ .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
/* 196  */ .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:focus > .sub-menu {
/* 197  */     visibility: visible;
/* 198  */     opacity: 1;
/* 199  */ }
/* 200  */

/* frontend.css */

/* 201  */ .hfe-submenu-action-click .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
/* 202  */ .hfe-submenu-action-click .hfe-nav-menu .menu-item-has-children:focus > .sub-menu {
/* 203  */     visibility: hidden;
/* 204  */     opacity: 0;
/* 205  */ }
/* 206  */
/* 207  */ .hfe-nav-menu .menu-item-has-children .sub-menu {
/* 208  */     position: absolute;
/* 209  */     top: 100%;
/* 210  */     left: 0;
/* 211  */     z-index: 9999;
/* 212  */     visibility: hidden;
/* 213  */     opacity: 0;
/* 214  */ }
/* 215  */
/* 216  */ .hfe-flyout-container .hfe-nav-menu .menu-item-has-children .menu-item-has-children .sub-menu {
/* 217  */     top: 0;
/* 218  */     left: 0;
/* 219  */ }
/* 220  */
/* 221  */ .hfe-nav-menu .menu-item-has-children .menu-item-has-children .sub-menu {
/* 222  */     top: 0;
/* 223  */     left: 100%;
/* 224  */ }
/* 225  */
/* 226  */ .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
/* 227  */ .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children.focus > .sub-menu {
/* 228  */     visibility: visible;
/* 229  */     opacity: 1;
/* 230  */     -webkit-transition: all 300ms ease-out;
/* 231  */     transition: all 300ms ease-out;
/* 232  */ }
/* 233  */
/* 234  */ .hfe-nav-menu:before,
/* 235  */ .hfe-nav-menu:after {
/* 236  */     content: '';
/* 237  */     display: table;
/* 238  */     clear: both;
/* 239  */ }
/* 240  */
/* 241  */ /* Alignemnt CSS */
/* 242  */ .hfe-nav-menu__align-right .hfe-nav-menu {
/* 243  */   margin-left: auto;
/* 244  */   -webkit-box-pack: end;
/* 245  */       -ms-flex-pack: end;
/* 246  */           -webkit-justify-content: flex-end;
/* 247  */           -moz-box-pack: end;
/* 248  */           justify-content: flex-end; }
/* 249  */
/* 250  */ .hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li a.hfe-menu-item,

/* frontend.css */

/* 251  */ .hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li a.hfe-sub-menu-item {
/* 252  */   -webkit-box-pack: end;
/* 253  */       -ms-flex-pack: end;
/* 254  */           -webkit-justify-content: flex-end;
/* 255  */           -moz-box-pack: end;
/* 256  */           justify-content: flex-end; }
/* 257  */
/* 258  */ .hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
/* 259  */ .rtl .hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
/* 260  */ .hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-button-wrapper,
/* 261  */ .rtl .hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-button-wrapper{
/* 262  */     text-align: right;
/* 263  */ }
/* 264  */ .hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
/* 265  */ .rtl .hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
/* 266  */ .hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-button-wrapper,
/* 267  */ .rtl .hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-button-wrapper{
/* 268  */     text-align: left;
/* 269  */ }
/* 270  */ .hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
/* 271  */ .hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li.hfe-button-wrapper{
/* 272  */     text-align: center;
/* 273  */ }
/* 274  */ .hfe-nav-menu__align-left .hfe-nav-menu {
/* 275  */   margin-right: auto;
/* 276  */   -webkit-box-pack: start;
/* 277  */       -ms-flex-pack: start;
/* 278  */           -webkit-justify-content: flex-start;
/* 279  */           -moz-box-pack: start;
/* 280  */           justify-content: flex-start; }
/* 281  */
/* 282  */ .hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li a.hfe-menu-item,
/* 283  */ .hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li a.hfe-sub-menu-item {
/* 284  */   -webkit-box-pack: start;
/* 285  */       -ms-flex-pack: start;
/* 286  */           -webkit-justify-content: flex-start;
/* 287  */           -moz-box-pack: start;
/* 288  */           justify-content: flex-start; }
/* 289  */
/* 290  */ .hfe-nav-menu__align-center .hfe-nav-menu {
/* 291  */   margin-left: auto;
/* 292  */   margin-right: auto;
/* 293  */   -webkit-box-pack: center;
/* 294  */       -ms-flex-pack: center;
/* 295  */           -webkit-justify-content: center;
/* 296  */           -moz-box-pack: center;
/* 297  */           justify-content: center; }
/* 298  */
/* 299  */ .hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li a.hfe-menu-item,
/* 300  */ .hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li a.hfe-sub-menu-item {

/* frontend.css */

/* 301  */   -webkit-box-pack: center;
/* 302  */       -ms-flex-pack: center;
/* 303  */           -webkit-justify-content: center;
/* 304  */           -moz-box-pack: center;
/* 305  */           justify-content: center; }
/* 306  */
/* 307  */ .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
/* 308  */     -js-display: flex;
/* 309  */     display: -webkit-box;
/* 310  */     display: -webkit-flex;
/* 311  */     display: -moz-box;
/* 312  */     display: -ms-flexbox;
/* 313  */     display: flex;
/* 314  */     -webkit-flex-wrap: wrap;
/* 315  */     -ms-flex-wrap: wrap;
/* 316  */     flex-wrap: wrap;
/* 317  */ }
/* 318  */ .hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
/* 319  */     width: 100%;
/* 320  */ }
/* 321  */   .hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li.menu-item {
/* 322  */     -webkit-box-flex: 1;
/* 323  */         -ms-flex-positive: 1;
/* 324  */             -webkit-flex-grow: 1;
/* 325  */             -moz-box-flex: 1;
/* 326  */             flex-grow: 1; }
/* 327  */     .hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-menu-item {
/* 328  */       -webkit-box-pack: center;
/* 329  */           -ms-flex-pack: center;
/* 330  */               -webkit-justify-content: center;
/* 331  */               -moz-box-pack: center;
/* 332  */               justify-content: center; }
/* 333  */
/* 334  */ /* Alignment CSS ends */
/* 335  */
/* 336  */ .hfe-active-menu + nav li:not(:last-child) a.hfe-menu-item,
/* 337  */ .hfe-active-menu + nav li:not(:last-child) a.hfe-sub-menu-item {
/* 338  */     border-bottom-width: 0;
/* 339  */ }
/* 340  */
/* 341  */ /*  Horizontal Menu */
/* 342  */
/* 343  */ .hfe-nav-menu a.hfe-menu-item,
/* 344  */ .hfe-nav-menu a.hfe-sub-menu-item {
/* 345  */     line-height: 1;
/* 346  */     text-decoration: none;
/* 347  */     -js-display: flex;
/* 348  */     display: -webkit-box;
/* 349  */     display: -webkit-flex;
/* 350  */     display: -moz-box;

/* frontend.css */

/* 351  */     display: -ms-flexbox;
/* 352  */     display: flex;
/* 353  */     -webkit-box-pack: justify;
/* 354  */     -moz-box-pack: justify;
/* 355  */     -ms-flex-pack: justify;
/* 356  */     -webkit-box-shadow: none;
/* 357  */     box-shadow: none;
/* 358  */     -webkit-box-align: center;
/* 359  */     -webkit-align-items: center;
/* 360  */     -moz-box-align: center;
/* 361  */     -ms-flex-align: center;
/* 362  */     align-items: center;
/* 363  */     -webkit-justify-content: space-between;
/* 364  */     justify-content: space-between;
/* 365  */ }
/* 366  */
/* 367  */ .hfe-nav-menu a.hfe-menu-item:hover,
/* 368  */ .hfe-nav-menu a.hfe-sub-menu-item:hover {
/* 369  */     text-decoration: none;
/* 370  */ }
/* 371  */
/* 372  */ .hfe-nav-menu .sub-menu {
/* 373  */     min-width: 220px;
/* 374  */     margin: 0;
/* 375  */     z-index: 9999;
/* 376  */ }
/* 377  */
/* 378  */ .hfe-nav-menu__layout-horizontal {
/* 379  */     font-size: 0;
/* 380  */ }
/* 381  */
/* 382  */ .hfe-nav-menu__layout-horizontal li.menu-item,
/* 383  */ .hfe-nav-menu__layout-horizontal > li.menu-item {
/* 384  */     font-size: medium;
/* 385  */ }
/* 386  */
/* 387  */ .hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-menu{
/* 388  */     -webkit-box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
/* 389  */     box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
/* 390  */ }
/* 391  */
/* 392  */ /* Icons CSS */
/* 393  */ .hfe-submenu-icon-arrow .hfe-nav-menu .parent-has-child .sub-arrow i:before {
/* 394  */     content: '';
/* 395  */ }
/* 396  */ .hfe-submenu-icon-classic .hfe-nav-menu .parent-has-child .sub-arrow i:before {
/* 397  */     content: '';
/* 398  */ }
/* 399  */ .hfe-submenu-icon-plus .hfe-nav-menu .parent-has-child .sub-arrow i:before {
/* 400  */     content: '+';

/* frontend.css */

/* 401  */ }
/* 402  */ .hfe-submenu-icon-none .hfe-nav-menu .parent-has-child .sub-arrow {
/* 403  */     display: none;
/* 404  */ }
/* 405  */
/* 406  */ .hfe-submenu-icon-arrow .hfe-nav-menu .parent-has-child .sub-menu-active .sub-arrow i:before,.hfe-link-redirect-self_link.hfe-submenu-icon-arrow .hfe-nav-menu .parent-has-child .menu-active .sub-arrow i:before {
/* 407  */     content: '';
/* 408  */ }
/* 409  */ .hfe-submenu-icon-plus .hfe-nav-menu .parent-has-child .sub-menu-active .sub-arrow i:before, .hfe-link-redirect-self_link.hfe-submenu-icon-plus .hfe-nav-menu .parent-has-child .menu-active .sub-arrow i:before {
/* 410  */     content: '-';
/* 411  */ }
/* 412  */ .hfe-submenu-icon-classic .hfe-nav-menu .parent-has-child .sub-menu-active .sub-arrow i:before, .hfe-link-redirect-self_link.hfe-submenu-icon-classic .hfe-nav-menu .parent-has-child .menu-active .sub-arrow i:before {
/* 413  */     content: '';
/* 414  */ }
/* 415  */
/* 416  */ .rtl .hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
/* 417  */     content: '';
/* 418  */ }
/* 419  */
/* 420  */ .rtl .hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
/* 421  */     content: '';
/* 422  */ }
/* 423  */
/* 424  */ .hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
/* 425  */     content: '';
/* 426  */ }
/* 427  */
/* 428  */ .hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
/* 429  */     content: '';
/* 430  */ }
/* 431  */ /* Icon CSS ends */
/* 432  */
/* 433  */ .hfe-nav-menu-icon {
/* 434  */     padding: 0.35em;
/* 435  */     border: 0 solid;
/* 436  */ }
/* 437  */
/* 438  */ .hfe-nav-menu-icon svg {
/* 439  */     width: 25px;
/* 440  */     height: 25px;
/* 441  */     line-height: 25px;
/* 442  */     font-size: 25px;
/* 443  */ }
/* 444  */
/* 445  */ .hfe-nav-menu-icon i:focus {
/* 446  */     outline: 0;
/* 447  */ }
/* 448  */
/* 449  */ .hfe-has-submenu-container a.hfe-menu-item:focus,
/* 450  */ .hfe-has-submenu-container a.hfe-sub-menu-item:focus {

/* frontend.css */

/* 451  */     outline: 0;
/* 452  */ }
/* 453  */ /* Submenus */
/* 454  */
/* 455  */ .hfe-nav-menu .menu-item-has-children:focus,
/* 456  */ .hfe-nav-menu .menu-item-has-children .sub-menu:focus,
/* 457  */ .hfe-nav-menu .menu-item-has-children-container:focus {
/* 458  */     outline: 0;
/* 459  */ }
/* 460  */ .hfe-nav-menu .menu-item-has-children-container {
/* 461  */     position: relative;
/* 462  */ }
/* 463  */
/* 464  */ .hfe-nav-menu__layout-expandible .sub-menu,
/* 465  */ .hfe-nav-menu__layout-vertical .sub-menu,
/* 466  */ .hfe-flyout-wrapper .sub-menu {
/* 467  */     position: relative;
/* 468  */     height: 0;
/* 469  */ }
/* 470  */
/* 471  */ .hfe-nav-menu__submenu-arrow .hfe-menu-toggle:before,
/* 472  */ .hfe-nav-menu__submenu-plus .hfe-menu-toggle:before,
/* 473  */ .hfe-nav-menu__submenu-classic .hfe-menu-toggle:before {
/* 474  */     font-family: 'Font Awesome 5 Free';
/* 475  */     z-index: 1;
/* 476  */     font-size: inherit;
/* 477  */     font-weight: inherit;
/* 478  */     line-height: 0;
/* 479  */ }
/* 480  */
/* 481  */ .hfe-menu-item-center .hfe-nav-menu li a.hfe-menu-item,
/* 482  */ .hfe-menu-item-center .hfe-nav-menu li a.hfe-sub-menu-item {
/* 483  */     margin-right: 0px;
/* 484  */ }
/* 485  */
/* 486  */ .hfe-nav-menu__submenu-none .hfe-nav-menu li a.hfe-menu-item,
/* 487  */ .hfe-nav-menu__submenu-none .hfe-nav-menu li a.hfe-sub-menu-item {
/* 488  */     margin-right: 0px;
/* 489  */ }
/* 490  */
/* 491  */ .hfe-nav-menu__toggle-icon:before {
/* 492  */     content: '\f0c9';
/* 493  */     font-family: 'fontAwesome';
/* 494  */     z-index: 1;
/* 495  */     font-size: 24px;
/* 496  */     font-weight: inherit;
/* 497  */     font-style: normal;
/* 498  */     line-height: 0;
/* 499  */ }
/* 500  */

/* frontend.css */

/* 501  */ .hfe-active-menu .hfe-nav-menu__toggle-icon:before {
/* 502  */     content: '\f00d';
/* 503  */ }
/* 504  */
/* 505  */ .hfe-nav-menu__layout-expandible {
/* 506  */     -webkit-transition-property: display;
/* 507  */     transition-property: display;
/* 508  */     -webkit-transition-duration: .5s;
/* 509  */     transition-duration: .5s;
/* 510  */     -webkit-transition-timing-function: cubic-bezier( 0, 1, 0.5, 1 );
/* 511  */     transition-timing-function: cubic-bezier( 0, 1, 0.5, 1 );
/* 512  */ }
/* 513  */
/* 514  */ .hfe-nav-menu__layout-expandible {
/* 515  */     visibility: hidden;
/* 516  */     opacity: 0;
/* 517  */ }
/* 518  */
/* 519  */ .hfe-nav-menu__layout-expandible .sub-menu {
/* 520  */     visibility: hidden;
/* 521  */     opacity: 0;
/* 522  */ }
/* 523  */
/* 524  */ .hfe-active-menu + .hfe-nav-menu__layout-expandible {
/* 525  */     visibility: visible;
/* 526  */     opacity: 1;
/* 527  */     height: auto;
/* 528  */ }
/* 529  */
/* 530  */ .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-expandible,
/* 531  */ .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal,
/* 532  */ .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-vertical {
/* 533  */     position: absolute;
/* 534  */     top: 100%;
/* 535  */ }
/* 536  */
/* 537  */ .hfe-nav-menu__layout-expandible .menu-item-has-children .menu-item-has-children .sub-menu,
/* 538  */ .hfe-nav-menu__layout-vertical .menu-item-has-children .menu-item-has-children .sub-menu {
/* 539  */     top: 0;
/* 540  */     left: 0;
/* 541  */ }
/* 542  */
/* 543  */ .hfe-layout-expandible nav {
/* 544  */     height: 0;
/* 545  */ }
/* 546  */
/* 547  */ .hfe-nav-sub-menu-icon, .hfe-nav-menu__icon {
/* 548  */     display: inline-block;
/* 549  */     line-height: 1;
/* 550  */ }

/* frontend.css */

/* 551  */
/* 552  */ .hfe-nav-menu__toggle {
/* 553  */     -js-display: flex;
/* 554  */     display: -webkit-box;
/* 555  */     display: -webkit-flex;
/* 556  */     display: -moz-box;
/* 557  */     display: -ms-flexbox;
/* 558  */     display: flex;
/* 559  */     font-size: 22px;
/* 560  */     cursor: pointer;
/* 561  */     border: 0 solid;
/* 562  */     -webkit-border-radius: 3px;
/* 563  */     border-radius: 3px;
/* 564  */     color: #494c4f;
/* 565  */     position: relative;
/* 566  */     line-height: 1;
/* 567  */ }
/* 568  */
/* 569  */ .hfe-nav-menu__toggle-icon {
/* 570  */     display: inline-block;
/* 571  */     font-size: inherit;
/* 572  */     font-weight: normal;
/* 573  */     font-style: normal;
/* 574  */     font-variant: normal;
/* 575  */     line-height: 1;
/* 576  */     text-rendering: auto;
/* 577  */     -webkit-font-smoothing: antialiased;
/* 578  */     -moz-osx-font-smoothing: grayscale;
/* 579  */ }
/* 580  */
/* 581  */ .hfe-nav-menu .sub-arrow {
/* 582  */     font-size: 14px;
/* 583  */     line-height: 1;
/* 584  */     -js-display: flex;
/* 585  */     display: -webkit-box;
/* 586  */     display: -webkit-flex;
/* 587  */     display: -moz-box;
/* 588  */     display: -ms-flexbox;
/* 589  */     display: flex;
/* 590  */     cursor: pointer;
/* 591  */     margin-top: -10px;
/* 592  */     margin-bottom: -10px;
/* 593  */ }
/* 594  */
/* 595  */ .hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-arrow {
/* 596  */     margin-left: 10px;
/* 597  */ }
/* 598  */
/* 599  */ .hfe-nav-menu__layout-vertical .hfe-nav-menu .sub-arrow,
/* 600  */ .hfe-layout-expandible .sub-arrow,

/* frontend.css */

/* 601  */ .hfe-flyout-wrapper .sub-arrow
/* 602  */ {
/* 603  */     padding: 10px;
/* 604  */ }
/* 605  */
/* 606  */ .hfe-nav-menu .child-item,
/* 607  */ .hfe-nav-menu__layout-vertical .hfe-nav-menu .child-item {
/* 608  */     font-size: 14px;
/* 609  */     line-height: 1;
/* 610  */     padding: 10px 0 10px 10px;
/* 611  */     margin-top: -10px;
/* 612  */     margin-bottom: -10px;
/* 613  */     position: absolute;
/* 614  */     right: 0;
/* 615  */     margin-right: 20px;
/* 616  */ }
/* 617  */
/* 618  */ .hfe-layout-horizontal .hfe-nav-menu__toggle,
/* 619  */ .hfe-layout-vertical .hfe-nav-menu__toggle {
/* 620  */     visibility: hidden;
/* 621  */     opacity: 0;
/* 622  */     display: none;
/* 623  */ }
/* 624  */
/* 625  */ .hfe-nav-menu-icon {
/* 626  */     display: inline-block;
/* 627  */     line-height: 1;
/* 628  */     text-align: center;
/* 629  */ }
/* 630  */
/* 631  */ .hfe-nav-menu__layout-expandible .saved-content,
/* 632  */ .hfe-nav-menu__layout-expandible .sub-menu,
/* 633  */ .hfe-nav-menu__layout-expandible .child,
/* 634  */ .hfe-nav-menu__layout-vertical .saved-content,
/* 635  */ .hfe-nav-menu__layout-vertical .sub-menu,
/* 636  */ .hfe-nav-menu__layout-vertical .child,
/* 637  */ .hfe-flyout-container .saved-content,
/* 638  */ .hfe-flyout-container .sub-menu,
/* 639  */ .hfe-flyout-container .child {
/* 640  */     left: 0 !important;
/* 641  */     width: 100% !important;
/* 642  */ }
/* 643  */
/* 644  */ .hfe-flyout-container .hfe-nav-menu .sub-menu {
/* 645  */     background: unset;
/* 646  */ }
/* 647  */
/* 648  */ .hfe-nav-menu__layout-vertical .hfe-menu-toggle:hover,
/* 649  */ .hfe-nav-menu__layout-expandible .hfe-menu-toggle:hover,
/* 650  */ .hfe-flyout-wrapper .hfe-menu-toggle:hover {

/* frontend.css */

/* 651  */     border:1px dotted;
/* 652  */ }
/* 653  */
/* 654  */ .hfe-nav-menu__layout-vertical .hfe-menu-toggle,
/* 655  */ .hfe-nav-menu__layout-expandible .hfe-menu-toggle,
/* 656  */ .hfe-flyout-wrapper .hfe-menu-toggle {
/* 657  */     border:1px dotted transparent;
/* 658  */ }
/* 659  */
/* 660  */ /* Common Animation CSS */
/* 661  */
/* 662  */ .hfe-nav-menu .menu-item a:before,
/* 663  */ .hfe-nav-menu .menu-item a:after {
/* 664  */   display: block;
/* 665  */   position: absolute;
/* 666  */   -webkit-transition: 0.3s;
/* 667  */   transition: 0.3s;
/* 668  */   -webkit-transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
/* 669  */           transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1); }
/* 670  */
/* 671  */ .hfe-nav-menu .menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-nav-menu .menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
/* 672  */   opacity: 0; }
/* 673  */
/* 674  */ .hfe-nav-menu .menu-item a.hfe-menu-item:hover:before,
/* 675  */ .hfe-nav-menu .menu-item a.hfe-menu-item:hover:after,
/* 676  */ .hfe-nav-menu .menu-item a.hfe-menu-item:focus:before,
/* 677  */ .hfe-nav-menu .menu-item a.hfe-menu-item:focus:after,
/* 678  */ .hfe-nav-menu .menu-item a.hfe-menu-item.highlighted:before,
/* 679  */ .hfe-nav-menu .menu-item a.hfe-menu-item.highlighted:after,
/* 680  */ .hfe-nav-menu .current-menu-item:before,
/* 681  */ .hfe-nav-menu .current-menu-item:after {
/* 682  */   -webkit-transform: scale(1);
/* 683  */       -ms-transform: scale(1);
/* 684  */           transform: scale(1);
/* 685  */ }
/* 686  */
/* 687  */ /* Double Line / Underline / Overline Style */
/* 688  */
/* 689  */ .hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__underline .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__underline .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__overline .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__overline .menu-item.parent a.hfe-menu-item:after {
/* 690  */     height: 3px;
/* 691  */     width: 100%;
/* 692  */     left: 0;
/* 693  */     background-color: #55595c;
/* 694  */     z-index: 2;
/* 695  */ }
/* 696  */
/* 697  */ .hfe-pointer__double-line.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
/* 698  */     height: 0;
/* 699  */     width: 0;
/* 700  */     left: 50%;

/* frontend.css */

/* 701  */ }
/* 702  */
/* 703  */ .hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
/* 704  */     top: 10px;
/* 705  */ }
/* 706  */
/* 707  */ .hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
/* 708  */     bottom: 10px;
/* 709  */ }
/* 710  */
/* 711  */ .hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
/* 712  */     top: -10px;
/* 713  */ }
/* 714  */
/* 715  */ .hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
/* 716  */     bottom: -10px;
/* 717  */ }
/* 718  */
/* 719  */ .hfe-pointer__double-line.hfe-animation__none, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item, .hfe-pointer__underline.hfe-animation__none, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item, .hfe-pointer__overline.hfe-animation__none, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item {
/* 720  */     -webkit-transition-duration: 0s;
/* 721  */     transition-duration: 0s;
/* 722  */ }
/* 723  */
/* 724  */ .hfe-pointer__double-line.hfe-animation__none:before, .hfe-pointer__double-line.hfe-animation__none:after, .hfe-pointer__double-line.hfe-animation__none:hover, .hfe-pointer__double-line.hfe-animation__none:focus, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus, .hfe-pointer__underline.hfe-animation__none:before, .hfe-pointer__underline.hfe-animation__none:after, .hfe-pointer__underline.hfe-animation__none:hover, .hfe-pointer__underline.hfe-animation__none:focus, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus, .hfe-pointer__overline.hfe-animation__none:before, .hfe-pointer__overline.hfe-animation__none:after, .hfe-pointer__overline.hfe-animation__none:hover, .hfe-pointer__overline.hfe-animation__none:focus, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
/* 725  */     -webkit-transition-duration: 0s;
/* 726  */     transition-duration: 0s;
/* 727  */ }
/* 728  */
/* 729  */ .hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__overline .menu-item.parent a.hfe-menu-item:before {
/* 730  */     content: '';
/* 731  */     top: 0;
/* 732  */ }
/* 733  */
/* 734  */ .hfe-pointer__double-line.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
/* 735  */     width: 10px;
/* 736  */     left: -20px;
/* 737  */ }
/* 738  */
/* 739  */ .hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__underline .menu-item.parent a.hfe-menu-item:after {
/* 740  */     content: '';
/* 741  */     bottom: 0;
/* 742  */ }
/* 743  */
/* 744  */ .hfe-pointer__double-line.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
/* 745  */     width: 10px;
/* 746  */     left: -webkit-calc( 100% + 20px);
/* 747  */     left: calc( 100% + 20px);
/* 748  */ }
/* 749  */
/* 750  */

/* frontend.css */

/* 751  */ /* Framed Style */
/* 752  */
/* 753  */ .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:after {
/* 754  */     background: transparent;
/* 755  */     left: 0;
/* 756  */     top: 0;
/* 757  */     bottom: 0;
/* 758  */     right: 0;
/* 759  */     border: 3px solid #55595c;
/* 760  */ }
/* 761  */
/* 762  */ .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before {
/* 763  */     content: '';
/* 764  */ }
/* 765  */
/* 766  */ .hfe-pointer__framed.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
/* 767  */     -webkit-transform: scale(0.75);
/* 768  */     -ms-transform: scale(0.75);
/* 769  */     transform: scale(0.75);
/* 770  */ }
/* 771  */
/* 772  */ .hfe-pointer__framed.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
/* 773  */     -webkit-transform: scale(1.25);
/* 774  */     -ms-transform: scale(1.25);
/* 775  */     transform: scale(1.25);
/* 776  */ }
/* 777  */
/* 778  */ .hfe-pointer__framed.hfe-animation__grow .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:before {
/* 779  */     -webkit-transition: opacity 0.2s, -webkit-transform 0.4s;
/* 780  */     transition: opacity 0.2s, -webkit-transform 0.4s;
/* 781  */     transition: opacity 0.2s, transform 0.4s;
/* 782  */     transition: opacity 0.2s, transform 0.4s, -webkit-transform 0.4s;
/* 783  */ }
/* 784  */
/* 785  */ .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:after {
/* 786  */     width: 3px;
/* 787  */     height: 3px;
/* 788  */ }
/* 789  */
/* 790  */ .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:before {
/* 791  */     border-width: 0 0 3px 3px;
/* 792  */     -webkit-transition: width 0.1s 0.2s, height 0.1s 0.3s, opacity 0.12s 0.22s;
/* 793  */     transition: width 0.1s 0.2s, height 0.1s 0.3s, opacity 0.12s 0.22s;
/* 794  */ }
/* 795  */
/* 796  */ .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:after {
/* 797  */     content: '';
/* 798  */     top: initial;
/* 799  */     bottom: 0;
/* 800  */     left: initial;

/* frontend.css */

/* 801  */     right: 0;
/* 802  */     border-width: 3px 3px 0 0;
/* 803  */     -webkit-transition: width 0.1s, height 0.1s 0.1s, opacity 0.02s 0.18s;
/* 804  */     transition: width 0.1s, height 0.1s 0.1s, opacity 0.02s 0.18s;
/* 805  */ }
/* 806  */
/* 807  */ .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:before, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:after {
/* 808  */     width: 100%;
/* 809  */     height: 100%;
/* 810  */ }
/* 811  */
/* 812  */ .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:before {
/* 813  */     -webkit-transition: opacity 0.02s, height 0.1s, width 0.1s 0.1s;
/* 814  */     transition: opacity 0.02s, height 0.1s, width 0.1s 0.1s;
/* 815  */ }
/* 816  */
/* 817  */ .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:after {
/* 818  */     -webkit-transition: opacity 0.02s 0.2s, height 0.1s 0.2s, width 0.1s 0.3s;
/* 819  */     transition: opacity 0.02s 0.2s, height 0.1s 0.2s, width 0.1s 0.3s;
/* 820  */ }
/* 821  */
/* 822  */ .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:after {
/* 823  */     width: 3px;
/* 824  */     height: 3px;
/* 825  */ }
/* 826  */
/* 827  */ .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:before {
/* 828  */     border-width: 3px 0 0 3px;
/* 829  */ }
/* 830  */
/* 831  */ .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:after {
/* 832  */     content: '';
/* 833  */     top: initial;
/* 834  */     bottom: 0;
/* 835  */     left: initial;
/* 836  */     right: 0;
/* 837  */     border-width: 0 3px 3px 0;
/* 838  */ }
/* 839  */
/* 840  */ .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__framed.hfe-animation__corners .current-menu-item:before, .hfe-pointer__framed.hfe-animation__corners .current-menu-item:after {
/* 841  */     width: 100%;
/* 842  */     height: 100%;
/* 843  */     -webkit-transition: opacity 0.002s, width 0.4s, height 0.4s;
/* 844  */     transition: opacity 0.002s, width 0.4s, height 0.4s;
/* 845  */ }
/* 846  */
/* 847  */ .hfe-pointer__framed.hfe-animation__none, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item {
/* 848  */     -webkit-transition-duration: 0s;
/* 849  */     transition-duration: 0s;
/* 850  */ }

/* frontend.css */

/* 851  */
/* 852  */ .hfe-pointer__framed.hfe-animation__none:before, .hfe-pointer__framed.hfe-animation__none:after, .hfe-pointer__framed.hfe-animation__none:hover, .hfe-pointer__framed.hfe-animation__none:focus, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
/* 853  */     -webkit-transition-duration: 0s;
/* 854  */     transition-duration: 0s;
/* 855  */ }
/* 856  */
/* 857  */ /* Background Style */
/* 858  */
/* 859  */ .hfe-pointer__background .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__background .menu-item.parent a.hfe-menu-item:after {
/* 860  */     content: '';
/* 861  */     -webkit-transition: 0.3s;
/* 862  */     transition: 0.3s;
/* 863  */ }
/* 864  */
/* 865  */ .hfe-pointer__background .menu-item.parent a.hfe-menu-item:before {
/* 866  */     top: 0;
/* 867  */     left: 0;
/* 868  */     right: 0;
/* 869  */     bottom: 0;
/* 870  */     background: #55595c;
/* 871  */     z-index: -1;
/* 872  */ }
/* 873  */
/* 874  */ .hfe-pointer__background .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__background .menu-item.parent a.hfe-menu-item:focus, .hfe-pointer__background .menu-item.parent a.hfe-menu-item.highlighted, .hfe-pointer__background .current-menu-item {
/* 875  */     color: #fff;
/* 876  */ }
/* 877  */
/* 878  */ .hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item:before {
/* 879  */     -webkit-transform: scale(0.5);
/* 880  */     -ms-transform: scale(0.5);
/* 881  */     transform: scale(0.5);
/* 882  */ }
/* 883  */
/* 884  */ .hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__grow .current-menu-item:before {
/* 885  */     -webkit-transform: scale(1);
/* 886  */     -ms-transform: scale(1);
/* 887  */     transform: scale(1);
/* 888  */     opacity: 1;
/* 889  */ }
/* 890  */
/* 891  */ .hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
/* 892  */     -webkit-transform: scale(1.2);
/* 893  */     -ms-transform: scale(1.2);
/* 894  */     transform: scale(1.2);
/* 895  */     -webkit-transition: 0.3s;
/* 896  */     transition: 0.3s;
/* 897  */ }
/* 898  */
/* 899  */ .hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__shrink .current-menu-item:before {
/* 900  */     -webkit-transition: opacity 0.15s, -webkit-transform 0.4s;

/* frontend.css */

/* 901  */     transition: opacity 0.15s, -webkit-transform 0.4s;
/* 902  */     transition: opacity 0.15s, transform 0.4s;
/* 903  */     transition: opacity 0.15s, transform 0.4s, -webkit-transform 0.4s;
/* 904  */ }
/* 905  */
/* 906  */ .hfe-pointer__background.hfe-animation__sweep-left .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
/* 907  */     left: 100%;
/* 908  */ }
/* 909  */
/* 910  */ .hfe-pointer__background.hfe-animation__sweep-right .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
/* 911  */     right: 100%;
/* 912  */ }
/* 913  */
/* 914  */ .hfe-pointer__background.hfe-animation__sweep-up .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
/* 915  */     top: 100%;
/* 916  */ }
/* 917  */
/* 918  */ .hfe-pointer__background.hfe-animation__sweep-down .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
/* 919  */     bottom: 100%;
/* 920  */ }
/* 921  */
/* 922  */ .hfe-pointer__background.hfe-animation__shutter-out-vertical .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
/* 923  */     bottom: 50%;
/* 924  */     top: 50%;
/* 925  */ }
/* 926  */
/* 927  */ .hfe-pointer__background.hfe-animation__shutter-out-horizontal .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
/* 928  */     right: 50%;
/* 929  */     left: 50%;
/* 930  */ }
/* 931  */
/* 932  */ .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:after {
/* 933  */     top: 0;
/* 934  */     left: 0;
/* 935  */     right: 0;
/* 936  */     bottom: 0;
/* 937  */     background: #55595c;
/* 938  */     z-index: -1;
/* 939  */ }
/* 940  */
/* 941  */ .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:before {
/* 942  */     top: 0;
/* 943  */     bottom: 100%;
/* 944  */ }
/* 945  */
/* 946  */ .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:after {
/* 947  */     top: 100%;
/* 948  */     bottom: 0;
/* 949  */ }
/* 950  */

/* frontend.css */

/* 951  */ .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__shutter-in-vertical .current-menu-item:before {
/* 952  */     bottom: 50%;
/* 953  */ }
/* 954  */
/* 955  */ .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__background.hfe-animation__shutter-in-vertical .current-menu-item:after {
/* 956  */     top: 50%;
/* 957  */ }
/* 958  */
/* 959  */ .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:before {
/* 960  */     right: 0;
/* 961  */     left: 100%;
/* 962  */ }
/* 963  */
/* 964  */ .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:after {
/* 965  */     right: 100%;
/* 966  */     left: 0;
/* 967  */ }
/* 968  */
/* 969  */ .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .current-menu-item:before {
/* 970  */     left: 50%;
/* 971  */ }
/* 972  */
/* 973  */ .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .current-menu-item:after {
/* 974  */     right: 50%;
/* 975  */ }
/* 976  */
/* 977  */ .hfe-pointer__background.hfe-animation__none, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item {
/* 978  */     -webkit-transition-duration: 0s;
/* 979  */     transition-duration: 0s;
/* 980  */ }
/* 981  */
/* 982  */ .hfe-pointer__background.hfe-animation__none:before, .hfe-pointer__background.hfe-animation__none:after, .hfe-pointer__background.hfe-animation__none:hover, .hfe-pointer__background.hfe-animation__none:focus, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
/* 983  */     -webkit-transition-duration: 0s;
/* 984  */     transition-duration: 0s;
/* 985  */ }
/* 986  */
/* 987  */ /* Text Style */
/* 988  */
/* 989  */ .hfe-pointer__text.hfe-animation__skew .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__skew .menu-item.parent a.hfe-menu-item:focus {
/* 990  */     -webkit-transform: skew(-8deg);
/* 991  */     -ms-transform: skew(-8deg);
/* 992  */     transform: skew(-8deg);
/* 993  */ }
/* 994  */
/* 995  */ .hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item:focus {
/* 996  */     -webkit-transform: scale(1.2);
/* 997  */     -ms-transform: scale(1.2);
/* 998  */     transform: scale(1.2);
/* 999  */ }
/* 1000 */

/* frontend.css */

/* 1001 */ .hfe-pointer__text.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:focus {
/* 1002 */     -webkit-transform: scale(0.8);
/* 1003 */     -ms-transform: scale(0.8);
/* 1004 */     transform: scale(0.8);
/* 1005 */ }
/* 1006 */
/* 1007 */ .hfe-pointer__text.hfe-animation__float .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__float .menu-item.parent a.hfe-menu-item:focus {
/* 1008 */     -webkit-transform: translateY(-8px);
/* 1009 */     -ms-transform: translateY(-8px);
/* 1010 */     transform: translateY(-8px);
/* 1011 */ }
/* 1012 */
/* 1013 */ .hfe-pointer__text.hfe-animation__sink .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__sink .menu-item.parent a.hfe-menu-item:focus {
/* 1014 */     -webkit-transform: translateY(8px);
/* 1015 */     -ms-transform: translateY(8px);
/* 1016 */     transform: translateY(8px);
/* 1017 */ }
/* 1018 */
/* 1019 */ .hfe-pointer__text.hfe-animation__rotate .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__rotate .menu-item.parent a.hfe-menu-item:focus {
/* 1020 */     -webkit-transform: rotate(6deg);
/* 1021 */     -ms-transform: rotate(6deg);
/* 1022 */     transform: rotate(6deg);
/* 1023 */ }
/* 1024 */
/* 1025 */ .hfe-pointer__text.hfe-animation__none, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item {
/* 1026 */     -webkit-transition-duration: 0s;
/* 1027 */     transition-duration: 0s;
/* 1028 */ }
/* 1029 */
/* 1030 */ .hfe-pointer__text.hfe-animation__none:before, .hfe-pointer__text.hfe-animation__none:after, .hfe-pointer__text.hfe-animation__none:hover, .hfe-pointer__text.hfe-animation__none:focus, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
/* 1031 */     -webkit-transition-duration: 0s;
/* 1032 */     transition-duration: 0s;
/* 1033 */ }
/* 1034 */
/* 1035 */ .hfe-flyout-overlay {
/* 1036 */     display: none;
/* 1037 */     position: fixed;
/* 1038 */     top: 0;
/* 1039 */     bottom: 0;
/* 1040 */     left: 0;
/* 1041 */     right: 0;
/* 1042 */     z-index: 999998;
/* 1043 */     background: rgba(0,0,0,.6);
/* 1044 */     cursor: pointer;
/* 1045 */     -webkit-backface-visibility: hidden;
/* 1046 */ }
/* 1047 */
/* 1048 */ /* No link hover effect to last menu item */
/* 1049 */
/* 1050 */ .hfe-pointer__underline .menu-item.parent a.hfe-menu-item.elementor-button:after,

/* frontend.css */

/* 1051 */ .hfe-pointer__overline .menu-item.parent a.hfe-menu-item.elementor-button:before,
/* 1052 */ .hfe-pointer__double-line .menu-item.parent a.hfe-menu-item.elementor-button:after,
/* 1053 */ .hfe-pointer__double-line .menu-item.parent a.hfe-menu-item.elementor-button:before {
/* 1054 */     height: 0px;
/* 1055 */ }
/* 1056 */
/* 1057 */ .hfe-pointer__framed .menu-item.parent a.hfe-menu-item.elementor-button:before,
/* 1058 */ .hfe-pointer__framed .menu-item.parent a.hfe-menu-item.elementor-button:after{
/* 1059 */     border-width: 0px;
/* 1060 */ }
/* 1061 */
/* 1062 */ .hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item.elementor-button:hover,
/* 1063 */ .hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item.elementor-button:focus
/* 1064 */ {
/* 1065 */     -webkit-transform: none;
/* 1066 */     transform: none;
/* 1067 */ }
/* 1068 */
/* 1069 */ .hfe-flyout-close,
/* 1070 */ .hfe-flyout-close svg {
/* 1071 */     position: absolute;
/* 1072 */     top: 0;
/* 1073 */     right: 0;
/* 1074 */     margin: 5px;
/* 1075 */     width: 23px;
/* 1076 */     height: 23px;
/* 1077 */     line-height: 23px;
/* 1078 */     font-size: 23px;
/* 1079 */     display: block;
/* 1080 */     cursor: pointer;
/* 1081 */ }
/* 1082 */
/* 1083 */ .hfe-flyout-wrapper .hfe-side.hfe-flyout-left {
/* 1084 */     top: 0;
/* 1085 */     bottom: 0;
/* 1086 */     left: -100%;
/* 1087 */     right: auto;
/* 1088 */     height: 100%;
/* 1089 */     /*height: 100vh;*/
/* 1090 */     width: 300px;
/* 1091 */     max-width: 100%;
/* 1092 */     max-width: 100vw;
/* 1093 */ }
/* 1094 */
/* 1095 */ .hfe-flyout-wrapper .hfe-side {
/* 1096 */     display: none;
/* 1097 */     position: fixed;
/* 1098 */     z-index: 999999;
/* 1099 */     padding: 0;
/* 1100 */     margin: 0;

/* frontend.css */

/* 1101 */     -webkit-overflow-scrolling: touch;
/* 1102 */     -webkit-backface-visibility: hidden;
/* 1103 */ }
/* 1104 */
/* 1105 */ .hfe-flyout-wrapper .hfe-side.hfe-flyout-show {
/* 1106 */     display: block;
/* 1107 */ }
/* 1108 */
/* 1109 */ .hfe-flyout-content.push {
/* 1110 */     color: #ffffff;
/* 1111 */ }
/* 1112 */
/* 1113 */ .hfe-flyout-content ul li {
/* 1114 */     color: #ffffff;
/* 1115 */ }
/* 1116 */
/* 1117 */ /* ===========================================================
/* 1118 *|  *  Flyout Location
/* 1119 *|  * ======================================================== */
/* 1120 */
/* 1121 */ .hfe-flyout-wrapper .hfe-side.hfe-flyout-right {
/* 1122 */     top: 0;
/* 1123 */     bottom: 0;
/* 1124 */     left: auto;
/* 1125 */     right: -100%; /* default */
/* 1126 */     height: 100%;
/* 1127 */     /*height: 100vh;*/
/* 1128 */     width: 300px; /* default */
/* 1129 */     max-width: 100%;
/* 1130 */ }
/* 1131 */
/* 1132 */ .hfe-flyout-wrapper .hfe-side.hfe-flyout-left {
/* 1133 */     top: 0;
/* 1134 */     bottom: 0;
/* 1135 */     left: -100%; /* default */
/* 1136 */     right: auto;
/* 1137 */     height: 100%;
/* 1138 */     /*height: 100vh;*/
/* 1139 */     width: 300px; /* default */
/* 1140 */     max-width: 100%;
/* 1141 */     max-width: 100vw;
/* 1142 */ }
/* 1143 */
/* 1144 */ .hfe-flyout-wrapper .hfe-side.top {
/* 1145 */     top: -100%; /* default */
/* 1146 */     bottom: auto;
/* 1147 */     left: 0;
/* 1148 */     right: 0;
/* 1149 */     width: 100%;
/* 1150 */     width: 100vw;

/* frontend.css */

/* 1151 */     height: 300px; /* default */
/* 1152 */     max-height: 100%;
/* 1153 */ }
/* 1154 */
/* 1155 */ .hfe-flyout-wrapper .hfe-side.bottom {
/* 1156 */     top: auto;
/* 1157 */     bottom: -100%; /* default */
/* 1158 */     left: 0;
/* 1159 */     right: 0;
/* 1160 */     width: 100%;
/* 1161 */     width: 100vw;
/* 1162 */     height: 300px; /* default */
/* 1163 */     max-height: 100%;
/* 1164 */ }
/* 1165 */
/* 1166 */ /* ===========================================================
/* 1167 *|  *  Flyout Container
/* 1168 *|  * ======================================================== */
/* 1169 */
/* 1170 */ .hfe-flyout-content {
/* 1171 */     height: 100%;
/* 1172 */     overflow-x: hidden;
/* 1173 */     overflow-y: auto;
/* 1174 */     line-height: 1.4em;
/* 1175 */     color: #fff;
/* 1176 */ }
/* 1177 */ /* iOS fix */
/* 1178 */ @media (max-width:1024px) {
/* 1179 */     .hfe-flyout-content {
/* 1180 */         -webkit-transform: translateZ(0);
/* 1181 */         transform: translateZ(0);
/* 1182 */     }
/* 1183 */ }
/* 1184 */
/* 1185 */ .hfe-flyout-content::-webkit-scrollbar {
/* 1186 */     display: none;
/* 1187 */ }
/* 1188 */
/* 1189 */ .admin-bar .hfe-side {
/* 1190 */     margin-top: 32px;
/* 1191 */ }
/* 1192 */
/* 1193 */ /* Dropdown animation CSS */
/* 1194 */
/* 1195 */ .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children > ul.sub-menu {
/* 1196 */     -webkit-transform: translateY(20%);
/* 1197 */     -ms-transform: translateY(20%);
/* 1198 */     transform: translateY(20%);
/* 1199 */     opacity: 0;
/* 1200 */     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";

/* frontend.css */

/* 1201 */     -webkit-transition: all 0.1s;
/* 1202 */     transition: all 0.1s;
/* 1203 */ }
/* 1204 */
/* 1205 */ .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children:hover > ul.sub-menu {
/* 1206 */     -webkit-transform: translateY(0);
/* 1207 */     -ms-transform: translateY(0);
/* 1208 */     transform: translateY(0);
/* 1209 */     opacity: 1;
/* 1210 */     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
/* 1211 */ }
/* 1212 */
/* 1213 */ .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children > ul.sub-menu {
/* 1214 */     -webkit-transform: translateY(-20%);
/* 1215 */     -ms-transform: translateY(-20%);
/* 1216 */     transform: translateY(-20%);
/* 1217 */     opacity: 0;
/* 1218 */     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
/* 1219 */     -webkit-transition: all 0.1s;
/* 1220 */     transition: all 0.1s;
/* 1221 */ }
/* 1222 */
/* 1223 */ .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children:hover > ul.sub-menu {
/* 1224 */     -webkit-transform: translateY(0);
/* 1225 */     -ms-transform: translateY(0);
/* 1226 */     transform: translateY(0);
/* 1227 */     opacity: 1;
/* 1228 */     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
/* 1229 */ }
/* 1230 */
/* 1231 */ .hfe-nav-menu .hfe-has-submenu .sub-menu li.menu-item:first-child,
/* 1232 */ .hfe-nav-menu .hfe-has-submenu .sub-menu li.menu-item:last-child {
/* 1233 */     overflow: visible !important;
/* 1234 */ }
/* 1235 */
/* 1236 */ .elementor-widget-navigation-menu:not(.hfe-nav-menu__align-justify):not(.hfe-menu-item-space-between) a.hfe-menu-item.elementor-button {
/* 1237 */     display: inline-flex;
/* 1238 */ }
/* 1239 */
/* 1240 */ .hfe-nav-menu li.hfe-button-wrapper {
/* 1241 */     align-self: center;
/* 1242 */ }
/* 1243 */
/* 1244 */ /* Tablet */
/* 1245 */ @media only screen and ( max-width: 1024px ) {
/* 1246 */
/* 1247 */     .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal li,
/* 1248 */     .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu{
/* 1249 */         width: 100%;
/* 1250 */         margin-right:0px;

/* frontend.css */

/* 1251 */     }
/* 1252 */
/* 1253 */     .hfe-nav-menu__breakpoint-tablet .hfe-layout-horizontal .hfe-nav-menu__toggle,
/* 1254 */     .hfe-nav-menu__breakpoint-tablet .hfe-layout-vertical .hfe-nav-menu__toggle {
/* 1255 */         display: block;
/* 1256 */     }
/* 1257 */
/* 1258 */     .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
/* 1259 */         visibility: hidden;
/* 1260 */         opacity: 0;
/* 1261 */     }
/* 1262 */
/* 1263 */     .hfe-nav-menu__breakpoint-tablet .hfe-active-menu + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
/* 1264 */         visibility: visible;
/* 1265 */         opacity: 1;
/* 1266 */     }
/* 1267 */
/* 1268 */     .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal,
/* 1269 */     .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-vertical {
/* 1270 */         visibility: hidden;
/* 1271 */         opacity: 0;
/* 1272 */         height: 0;
/* 1273 */     }
/* 1274 */
/* 1275 */     .hfe-nav-menu__breakpoint-tablet .hfe-active-menu + .hfe-nav-menu__layout-horizontal,
/* 1276 */     .hfe-nav-menu__breakpoint-tablet .hfe-active-menu + .hfe-nav-menu__layout-vertical {
/* 1277 */         visibility: visible;
/* 1278 */         opacity: 1;
/* 1279 */         height: auto;
/* 1280 */     }
/* 1281 */
/* 1282 */     .hfe-nav-menu__breakpoint-tablet .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
/* 1283 */         position: relative;
/* 1284 */     }
/* 1285 */
/* 1286 */     .hfe-nav-menu__breakpoint-tablet .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal,
/* 1287 */     .hfe-nav-menu__breakpoint-tablet .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-vertical {
/* 1288 */         position: absolute;
/* 1289 */     }
/* 1290 */
/* 1291 */     .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .sub-menu {
/* 1292 */         visibility: hidden;
/* 1293 */         opacity: 0;
/* 1294 */     }
/* 1295 */
/* 1296 */     .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .menu-item-has-children .menu-item-has-children .sub-menu {
/* 1297 */         top: 0;
/* 1298 */         left: 0;
/* 1299 */     }
/* 1300 */

/* frontend.css */

/* 1301 */     .hfe-nav-menu__breakpoint-tablet .hfe-layout-horizontal .hfe-nav-menu__toggle,
/* 1302 */     .hfe-nav-menu__breakpoint-tablet .hfe-layout-vertical .hfe-nav-menu__toggle
/* 1303 */     {
/* 1304 */         visibility: visible;
/* 1305 */         opacity: 1;
/* 1306 */         display: block;
/* 1307 */     }
/* 1308 */
/* 1309 */     .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-vertical {
/* 1310 */         float: none;
/* 1311 */     }
/* 1312 */
/* 1313 */     .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
/* 1314 */     .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
/* 1315 */     .hfe-nav-menu__breakpoint-none .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu {
/* 1316 */         visibility: hidden;
/* 1317 */         opacity: 0;
/* 1318 */         -webkit-transition: none;
/* 1319 */         transition: none;
/* 1320 */     }
/* 1321 */
/* 1322 */     .hfe-nav-menu__breakpoint-tablet .hfe-menu-toggle:hover {
/* 1323 */         border:1px dotted;
/* 1324 */     }
/* 1325 */
/* 1326 */     .hfe-nav-menu__breakpoint-tablet .hfe-menu-toggle {
/* 1327 */         border:1px dotted transparent;
/* 1328 */     }
/* 1329 */
/* 1330 */     .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .sub-menu {
/* 1331 */         position: relative;
/* 1332 */         height: 0;
/* 1333 */     }
/* 1334 */
/* 1335 */     .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .sub-menu {
/* 1336 */         position: relative;
/* 1337 */         height: 0;
/* 1338 */         top: 0;
/* 1339 */     }
/* 1340 */
/* 1341 */     .hfe-nav-menu__breakpoint-tablet .saved-content,
/* 1342 */     .hfe-nav-menu__breakpoint-tablet .sub-menu,
/* 1343 */     .hfe-nav-menu__breakpoint-tablet .child {
/* 1344 */         left: 0 !important;
/* 1345 */         width:auto !important;
/* 1346 */     }
/* 1347 */
/* 1348 */     .hfe-nav-menu .sub-menu {
/* 1349 */         min-width: auto;
/* 1350 */         margin: 0;

/* frontend.css */

/* 1351 */     }
/* 1352 */
/* 1353 */     .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-arrow {
/* 1354 */         padding: 10px;
/* 1355 */     }
/* 1356 */
/* 1357 */     .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before{
/* 1358 */         content: '';
/* 1359 */     }
/* 1360 */
/* 1361 */     .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before{
/* 1362 */         content: '';
/* 1363 */     }
/* 1364 */
/* 1365 */     .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
/* 1366 */         content: '';
/* 1367 */     }
/* 1368 */
/* 1369 */     .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
/* 1370 */         content: '';
/* 1371 */     }
/* 1372 */
/* 1373 */     .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-plus .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
/* 1374 */         content: '-';
/* 1375 */     }
/* 1376 */
/* 1377 */     .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu .sub-menu{
/* 1378 */         -webkit-box-shadow: none;
/* 1379 */         box-shadow: none;
/* 1380 */     }
/* 1381 */
/* 1382 */     .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before,
/* 1383 */     .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
/* 1384 */         content: '';
/* 1385 */     }
/* 1386 */
/* 1387 */     .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before,
/* 1388 */     .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
/* 1389 */         content: ''
/* 1390 */     }
/* 1391 */
/* 1392 */     .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before,
/* 1393 */     .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before{
/* 1394 */         content: '';
/* 1395 */     }
/* 1396 */
/* 1397 */     .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before,
/* 1398 */     .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before{
/* 1399 */         content: ''
/* 1400 */     }

/* frontend.css */

/* 1401 */
/* 1402 */     /* Effect 1: Fade in and scale up */
/* 1403 */     .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children ul.sub-menu,
/* 1404 */     .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu,
/* 1405 */     .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children ul.sub-menu,
/* 1406 */     .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu {
/* 1407 */         -webkit-transform: none;
/* 1408 */         -ms-transform: none;
/* 1409 */         transform: none;
/* 1410 */     }
/* 1411 */
/* 1412 */     /*.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu ul.sub-menu ul.sub-menu li a{
/* 1413 *|         border-left: 16px solid transparent;
/* 1414 *|     }*/
/* 1415 */
/* 1416 */     .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after,
/* 1417 */     .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:before {
/* 1418 */          background-color: unset!important;
/* 1419 */     }
/* 1420 */
/* 1421 */     .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before{
/* 1422 */         border: 0px!important;
/* 1423 */     }
/* 1424 */
/* 1425 */     .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__text .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text  .menu-item.parent a.hfe-menu-item:focus{
/* 1426 */         -webkit-transform: none!important;
/* 1427 */         -ms-transform: none!important;
/* 1428 */         transform: none!important;
/* 1429 */     }
/* 1430 */
/* 1431 */     .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-menu-item,
/* 1432 */     .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-sub-menu-item,
/* 1433 */     .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li.hfe-button-wrapper {
/* 1434 */         -webkit-box-pack: justify;
/* 1435 */         -webkit-justify-content: space-between;
/* 1436 */         -moz-box-pack: justify;
/* 1437 */         -ms-flex-pack: justify;
/* 1438 */         justify-content: space-between;
/* 1439 */     }
/* 1440 */ }
/* 1441 */
/* 1442 */ /* Mobile */
/* 1443 */ @media only screen and ( max-width: 767px ) {
/* 1444 */
/* 1445 */     .hfe-nav-menu__breakpoint-mobile.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-menu-item,
/* 1446 */     .hfe-nav-menu__breakpoint-mobile.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-sub-menu-item
/* 1447 */     .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li.hfe-button-wrapper {
/* 1448 */         -webkit-box-pack: justify;
/* 1449 */         -webkit-justify-content: space-between;
/* 1450 */         -moz-box-pack: justify;

/* frontend.css */

/* 1451 */         -ms-flex-pack: justify;
/* 1452 */         justify-content: space-between;
/* 1453 */     }
/* 1454 */
/* 1455 */     .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-layout-horizontal .hfe-nav-menu__toggle,
/* 1456 */     .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
/* 1457 */         visibility: visible;
/* 1458 */         opacity: 1;
/* 1459 */         display: block;
/* 1460 */     }
/* 1461 */
/* 1462 */     .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal li.menu-item,
/* 1463 */     .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu {
/* 1464 */         width: 100%
/* 1465 */     }
/* 1466 */
/* 1467 */     .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-layout-vertical .hfe-nav-menu__toggle {
/* 1468 */         display: inline-block;
/* 1469 */     }
/* 1470 */
/* 1471 */     .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .sub-menu {
/* 1472 */         position: relative;
/* 1473 */         height: 0;
/* 1474 */         top: 0;
/* 1475 */     }
/* 1476 */
/* 1477 */     .hfe-nav-menu .sub-menu {
/* 1478 */         min-width: auto;
/* 1479 */         margin: 0;
/* 1480 */     }
/* 1481 */
/* 1482 */     .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
/* 1483 */     .hfe-nav-menu__breakpoint-none .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu {
/* 1484 */         visibility: hidden;
/* 1485 */         opacity: 0;
/* 1486 */         -webkit-transition: none;
/* 1487 */         transition: none;
/* 1488 */     }
/* 1489 */
/* 1490 */     .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-vertical {
/* 1491 */         float: none;
/* 1492 */     }
/* 1493 */
/* 1494 */     .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-layout-vertical .hfe-nav-menu__toggle.hfe-active-menu {
/* 1495 */         display: block;
/* 1496 */     }
/* 1497 */
/* 1498 */     .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-nav-menu__layout-horizontal,
/* 1499 */     .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-nav-menu__layout-vertical {
/* 1500 */         visibility: hidden;

/* frontend.css */

/* 1501 */         opacity: 0;
/* 1502 */         height: 0;
/* 1503 */     }
/* 1504 */
/* 1505 */     .hfe-nav-menu__breakpoint-mobile .hfe-layout-horizontal .hfe-nav-menu__toggle,
/* 1506 */     .hfe-nav-menu__breakpoint-mobile .hfe-layout-vertical .hfe-nav-menu__toggle
/* 1507 */     {
/* 1508 */         visibility: visible;
/* 1509 */         opacity: 1;
/* 1510 */         display: block;
/* 1511 */     }
/* 1512 */
/* 1513 */     .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal {
/* 1514 */         visibility: hidden;
/* 1515 */         opacity: 0;
/* 1516 */         height: 0;
/* 1517 */     }
/* 1518 */
/* 1519 */     .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-vertical {
/* 1520 */         float: none;
/* 1521 */     }
/* 1522 */
/* 1523 */     .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .sub-menu {
/* 1524 */         visibility: hidden;
/* 1525 */         opacity: 0;
/* 1526 */     }
/* 1527 */
/* 1528 */     .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
/* 1529 */         visibility: hidden;
/* 1530 */         opacity: 0;
/* 1531 */     }
/* 1532 */
/* 1533 */     .hfe-nav-menu__breakpoint-mobile .hfe-active-menu + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
/* 1534 */         visibility: visible;
/* 1535 */         opacity: 1;
/* 1536 */     }
/* 1537 */
/* 1538 */     .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal,
/* 1539 */     .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-vertical {
/* 1540 */         visibility: hidden;
/* 1541 */         opacity: 0;
/* 1542 */         height: 0;
/* 1543 */     }
/* 1544 */
/* 1545 */     .hfe-nav-menu__breakpoint-mobile .hfe-active-menu + .hfe-nav-menu__layout-horizontal,
/* 1546 */     .hfe-nav-menu__breakpoint-mobile .hfe-active-menu + .hfe-nav-menu__layout-vertical {
/* 1547 */         visibility: visible;
/* 1548 */         opacity: 1;
/* 1549 */         height: auto;
/* 1550 */     }

/* frontend.css */

/* 1551 */
/* 1552 */     .hfe-nav-menu__breakpoint-mobile .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
/* 1553 */         position: relative;
/* 1554 */     }
/* 1555 */
/* 1556 */     .hfe-nav-menu__breakpoint-mobile .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal,
/* 1557 */     .hfe-nav-menu__breakpoint-mobile .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-vertical {
/* 1558 */         position: absolute;
/* 1559 */     }
/* 1560 */
/* 1561 */     .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .menu-item-has-children .menu-item-has-children .sub-menu {
/* 1562 */         top: 0;
/* 1563 */         left: 0;
/* 1564 */     }
/* 1565 */
/* 1566 */     .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before{
/* 1567 */         content: '';
/* 1568 */     }
/* 1569 */
/* 1570 */     .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before{
/* 1571 */         content: '';
/* 1572 */     }
/* 1573 */
/* 1574 */     .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
/* 1575 */         content: '';
/* 1576 */     }
/* 1577 */
/* 1578 */     .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
/* 1579 */         content: '';
/* 1580 */     }
/* 1581 */
/* 1582 */     .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-plus .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
/* 1583 */         content: '-';
/* 1584 */     }
/* 1585 */
/* 1586 */     .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
/* 1587 */         content: '';
/* 1588 */     }
/* 1589 */
/* 1590 */     .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
/* 1591 */         content: ''
/* 1592 */     }
/* 1593 */
/* 1594 */     .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before{
/* 1595 */         content: '';
/* 1596 */     }
/* 1597 */
/* 1598 */     .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before{
/* 1599 */         content: ''
/* 1600 */     }

/* frontend.css */

/* 1601 */
/* 1602 */     .hfe-nav-menu__breakpoint-mobile .hfe-menu-toggle:hover{
/* 1603 */         border:1px dotted;
/* 1604 */     }
/* 1605 */
/* 1606 */     .hfe-nav-menu__breakpoint-mobile .hfe-menu-toggle{
/* 1607 */         border:1px dotted transparent;
/* 1608 */     }
/* 1609 */
/* 1610 */     .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu .sub-menu{
/* 1611 */         -webkit-box-shadow: none;
/* 1612 */         box-shadow: none;
/* 1613 */     }
/* 1614 */
/* 1615 */     /* Effect 1: Fade in and scale up */
/* 1616 */     .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-effect-1 .hfe-nav-menu {
/* 1617 */         -webkit-transform: scale(0.7);
/* 1618 */         -ms-transform: scale(0.7);
/* 1619 */         transform: scale(0.7);
/* 1620 */         -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
/* 1621 */         -webkit-transition: all 0.3s;
/* 1622 */         transition: all 0.3s;
/* 1623 */     }
/* 1624 */
/* 1625 */     .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-arrow {
/* 1626 */         padding: 10px;
/* 1627 */     }
/* 1628 */
/* 1629 */     .hfe-nav-menu__breakpoint-mobile .menu-is-active.hfe-effect-1 .hfe-nav-menu {
/* 1630 */         -webkit-transform: scale(1);
/* 1631 */         -ms-transform: scale(1);
/* 1632 */         transform: scale(1);
/* 1633 */         opacity: 1;
/* 1634 */         -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
/* 1635 */     }
/* 1636 */
/* 1637 */     /* Effect 2: Slide from the right */
/* 1638 */     .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-effect-2 .hfe-nav-menu {
/* 1639 */         -webkit-transform: translateX(20%);
/* 1640 */         -ms-transform: translateX(20%);
/* 1641 */         transform: translateX(20%);
/* 1642 */         opacity: 0;
/* 1643 */         -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
/* 1644 */         -webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
/* 1645 */         transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
/* 1646 */     }
/* 1647 */
/* 1648 */     .hfe-nav-menu__breakpoint-mobile .menu-is-active.hfe-effect-2 .hfe-nav-menu {
/* 1649 */         -webkit-transform: translateX(0);
/* 1650 */         -ms-transform: translateX(0);

/* frontend.css */

/* 1651 */         transform: translateX(0);
/* 1652 */         opacity: 1;
/* 1653 */         -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
/* 1654 */     }
/* 1655 */
/* 1656 */     /* Effect 3: Slide from the bottom */
/* 1657 */     .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-effect-3 .hfe-nav-menu {
/* 1658 */         -webkit-transform: translateY(20%);
/* 1659 */         -ms-transform: translateY(20%);
/* 1660 */         transform: translateY(20%);
/* 1661 */         opacity: 0;
/* 1662 */         -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
/* 1663 */         -webkit-transition: all 0.3s;
/* 1664 */         transition: all 0.3s;
/* 1665 */     }
/* 1666 */
/* 1667 */     .hfe-nav-menu__breakpoint-mobile .menu-is-active.hfe-effect-3 .hfe-nav-menu {
/* 1668 */         -webkit-transform: translateY(0);
/* 1669 */         -ms-transform: translateY(0);
/* 1670 */         transform: translateY(0);
/* 1671 */         opacity: 1;
/* 1672 */         -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
/* 1673 */     }
/* 1674 */
/* 1675 */     .hfe-nav-menu__breakpoint-mobile .saved-content,
/* 1676 */     .hfe-nav-menu__breakpoint-mobile .sub-menu,
/* 1677 */     .hfe-nav-menu__breakpoint-mobile .child,
/* 1678 */     .hfe-nav-menu__breakpoint-tablet .saved-content,
/* 1679 */     .hfe-nav-menu__breakpoint-tablet .sub-menu,
/* 1680 */     .hfe-nav-menu__breakpoint-tablet .child{
/* 1681 */         left: 0 !important;
/* 1682 */         width: auto !important;
/* 1683 */     }
/* 1684 */
/* 1685 */     .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children ul.sub-menu,
/* 1686 */     .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu,
/* 1687 */     .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children ul.sub-menu,
/* 1688 */     .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu {
/* 1689 */         -webkit-transform: none;
/* 1690 */         -ms-transform: none;
/* 1691 */         transform: none;
/* 1692 */     }
/* 1693 */
/* 1694 */     .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after,
/* 1695 */     .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after,
/* 1696 */     .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:before,
/* 1697 */     .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:before {
/* 1698 */         background-color: unset!important;
/* 1699 */     }
/* 1700 */

/* frontend.css */

/* 1701 */     .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before,
/* 1702 */     .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before{
/* 1703 */         border: 0px!important;
/* 1704 */     }
/* 1705 */
/* 1706 */     .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__text .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text  .menu-item.parent a.hfe-menu-item:focus,
/* 1707 */     .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-pointer__text  .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text .menu-item.parent a.hfe-menu-item:focus {
/* 1708 */         -webkit-transform: none!important;
/* 1709 */         -ms-transform: none!important;
/* 1710 */         transform: none!important;
/* 1711 */     }
/* 1712 */ }
/* 1713 */
/* 1714 */ .hfe-toggle-no .hfe-layout-expandible .hfe-nav-menu__toggle {
/* 1715 */     display: none;
/* 1716 */ }
/* 1717 */
/* 1718 */ /* Icon common CSS */
/* 1719 */
/* 1720 */ .hfe-icon {
/* 1721 */     display: inline-block;
/* 1722 */     vertical-align: middle; /* Alignment of icon */
/* 1723 */ }
/* 1724 */
/* 1725 */ /* Icon Svg */
/* 1726 */ .hfe-icon svg {
/* 1727 */     width: 1em;
/* 1728 */     height: 1em;
/* 1729 */ }
/* 1730 */
/* 1731 */ /* Menu Cart CSS */
/* 1732 */
/* 1733 */ .hfe-cart-menu-wrap-custom {
/* 1734 */     display: inline-block;
/* 1735 */     line-height: 1;
/* 1736 */ }
/* 1737 */
/* 1738 */ .hfe-cart-menu-wrap-custom .hfe-cart-count,
/* 1739 */ .hfe-cart-menu-wrap-custom .hfe-cart-count:after {
/* 1740 */     border-color: #75c32c;
/* 1741 */     color: #75c32c;
/* 1742 */ }
/* 1743 */
/* 1744 */ .hfe-cart-menu-wrap-custom .hfe-cart-count {
/* 1745 */     font-weight: bold;
/* 1746 */     position: relative;
/* 1747 */     display: inline-block;
/* 1748 */     vertical-align: middle;
/* 1749 */     text-align: center;
/* 1750 */     min-width: 2.1em;

/* frontend.css */

/* 1751 */     min-height: 2.1em;
/* 1752 */     font-size: 0.860em;
/* 1753 */     line-height: 1.8;
/* 1754 */     border-radius: 0.3em 0.3em 0.3em 0.3em;
/* 1755 */     border-width: 2px;
/* 1756 */     border-style: solid;
/* 1757 */     padding: 12px 24px;
/* 1758 */ }
/* 1759 */
/* 1760 */ /* Default skin for cart*/
/* 1761 */ .hfe-cart-menu-wrap-default {
/* 1762 */     display: inline-block;
/* 1763 */     line-height: 1;
/* 1764 */ }
/* 1765 */
/* 1766 */ .hfe-cart-menu-wrap-default .hfe-cart-count,
/* 1767 */ .hfe-cart-menu-wrap-default .hfe-cart-count:after {
/* 1768 */     border-color: #75c32c;
/* 1769 */     color: #75c32c;
/* 1770 */ }
/* 1771 */
/* 1772 */ .hfe-cart-menu-wrap-default .hfe-cart-count {
/* 1773 */     font-weight: bold;
/* 1774 */     position: relative;
/* 1775 */     display: inline-block;
/* 1776 */     vertical-align: middle;
/* 1777 */     text-align: center;
/* 1778 */     min-width: 2.1em;
/* 1779 */     min-height: 2.1em;
/* 1780 */     font-size: 0.860em;
/* 1781 */     line-height: 1.8;
/* 1782 */     border-radius: 0em 0em 0.3em 0.3em;
/* 1783 */     border-width: 2px;
/* 1784 */     border-style: solid;
/* 1785 */     padding: 0 .4em;
/* 1786 */ }
/* 1787 */
/* 1788 */ .hfe-cart-menu-wrap-default .hfe-cart-count:after {
/* 1789 */     bottom: 100%;
/* 1790 */     margin-bottom: 0;
/* 1791 */     height: .8em;
/* 1792 */     width: .8em;
/* 1793 */     left: 50%;
/* 1794 */     transform: translateX(-50%);
/* 1795 */     top: -.6em;
/* 1796 */     content: ' ';
/* 1797 */     position: absolute;
/* 1798 */     pointer-events: none;
/* 1799 */     border-width: 2px;
/* 1800 */     border-style: solid;

/* frontend.css */

/* 1801 */     border-top-left-radius: 10em;
/* 1802 */     border-top-right-radius: 10em;
/* 1803 */     border-bottom: 0;
/* 1804 */ }
/* 1805 */
/* 1806 */ .elementor-widget-hfe-cart:not(.hfe-menu-cart--show-subtotal-yes) .hfe-menu-cart__toggle .elementor-button-text {
/* 1807 */     display: none;
/* 1808 */ }
/* 1809 */
/* 1810 */ .elementor-widget-hfe-cart.toggle-icon--bag-light .hfe-menu-cart__toggle .elementor-button-icon i:before {
/* 1811 */     content: '\e8e3';
/* 1812 */ }
/* 1813 */
/* 1814 */ .elementor-widget-hfe-cart.toggle-icon--bag-medium .hfe-menu-cart__toggle .elementor-button-icon i:before {
/* 1815 */     content: '\e8e4';
/* 1816 */ }
/* 1817 */
/* 1818 */ .elementor-widget-hfe-cart.toggle-icon--bag-solid .hfe-menu-cart__toggle .elementor-button-icon i:before {
/* 1819 */     content: '\e8e5';
/* 1820 */ }
/* 1821 */
/* 1822 */ .hfe-menu-cart__toggle .elementor-button {
/* 1823 */     background: transparent;
/* 1824 */     border-radius: 0;
/* 1825 */     color: #818a91;
/* 1826 */     border: 1px solid;
/* 1827 */     border-color: inherit;
/* 1828 */     display: -webkit-inline-box;
/* 1829 */     display: -ms-inline-flexbox;
/* 1830 */     display: inline-flex;
/* 1831 */     -webkit-box-align: center;
/* 1832 */       -ms-flex-align: center;
/* 1833 */           align-items: center;
/* 1834 */ }
/* 1835 */
/* 1836 */ .hfe-menu-cart__toggle .elementor-button-text {
/* 1837 */     margin-right: 0.3em;
/* 1838 */ }
/* 1839 */
/* 1840 */ .hfe-menu-cart__toggle .elementor-button-icon {
/* 1841 */     position: relative;
/* 1842 */     -webkit-transition: color 0.1s;
/* 1843 */     -o-transition: color 0.1s;
/* 1844 */     transition: color 0.1s;
/* 1845 */ }
/* 1846 */
/* 1847 */ .hfe-menu-cart--items-indicator-bubble .hfe-menu-cart__toggle .elementor-button-icon[data-counter]:before {
/* 1848 */     content: attr(data-counter);
/* 1849 */     display: block;
/* 1850 */     position: absolute;

/* frontend.css */

/* 1851 */     min-width: 1.6em;
/* 1852 */     height: 1.6em;
/* 1853 */     line-height: 1.5em;
/* 1854 */     top: -0.7em;
/* 1855 */     right: -0.7em;
/* 1856 */     border-radius: 100%;
/* 1857 */     color: #fff;
/* 1858 */     background-color: #d9534f;
/* 1859 */     text-align: center;
/* 1860 */     font-size: 10px;
/* 1861 */ }
/* 1862 */
/* 1863 */ .hfe-menu-cart--items-indicator-plain .hfe-menu-cart__toggle .elementor-button-icon[data-counter]:before {
/* 1864 */     content: attr(data-counter);
/* 1865 */     display: inline-block;
/* 1866 */     font-weight: normal;
/* 1867 */ }
/* 1868 */
/* 1869 */ .hfe-menu-cart--empty-indicator-hide .hfe-menu-cart__toggle .elementor-button .elementor-button-icon[data-counter="0"]:before {
/* 1870 */     content: none;
/* 1871 */     display: none;
/* 1872 */ }
/* 1873 */
/* 1874 */ .hfe-menu-cart__toggle .elementor-button-icon {
/* 1875 */     -webkit-box-ordinal-group: 16;
/* 1876 */     -webkit-order: 15;
/* 1877 */     -ms-flex-order: 15;
/* 1878 */     order: 15;
/* 1879 */ }
/* 1880 */
/* 1881 */ .hfe-menu-cart__toggle.hfe-button-wrapper .elementor-button {
/* 1882 */     color:#4d4848;
/* 1883 */ }
/* 1884 */
/* 1885 */ /*Search Box CSS*/
/* 1886 */
/* 1887 */ .hfe-search-button-wrapper {
/* 1888 */     display: block;
/* 1889 */     cursor: pointer;
/* 1890 */     vertical-align: middle;
/* 1891 */     text-align: right;
/* 1892 */ }
/* 1893 */
/* 1894 */ .hfe-search-form__container {
/* 1895 */     display: flex;
/* 1896 */     overflow: hidden;
/* 1897 */ }
/* 1898 */
/* 1899 */ .hfe-search-form__input {
/* 1900 */     flex-basis: 100%;

/* frontend.css */

/* 1901 */ }
/* 1902 */
/* 1903 */ .hfe-search-icon-toggle i.fa-search {
/* 1904 */     display: inline-block;
/* 1905 */     position: absolute;
/* 1906 */     width: 20px;
/* 1907 */     box-sizing: content-box;
/* 1908 */     padding: 10px;
/* 1909 */ }
/* 1910 */
/* 1911 */ .hfe-search-icon-toggle i:before {
/* 1912 */     vertical-align: middle;
/* 1913 */ }
/* 1914 */ /*search icon toggle css*/
/* 1915 */
/* 1916 */ .hfe-search-button-wrapper input[type=search] {
/* 1917 */     border: 0;
/* 1918 */     padding: 10px;
/* 1919 */     cursor: pointer;
/* 1920 */     border-radius: 0;
/* 1921 */     transition: all .5s;
/* 1922 */     box-sizing: border-box;
/* 1923 */     outline: none;
/* 1924 */ }
/* 1925 */
/* 1926 */ .hfe-search-button-wrapper button {
/* 1927 */     border: none;
/* 1928 */     border-radius: 0;
/* 1929 */     padding: 0;
/* 1930 */ }
/* 1931 */
/* 1932 */ .hfe-search-button-wrapper input[type=search]:focus {
/* 1933 */     cursor: auto;
/* 1934 */     border: none;
/* 1935 */     box-shadow: none;
/* 1936 */ }
/* 1937 */
/* 1938 */ .hfe-search-icon-toggle input:-moz-placeholder,
/* 1939 */ .hfe-search-icon-toggle input::-webkit-input-placeholder {
/* 1940 */     color: transparent;
/* 1941 */ }
/* 1942 */
/* 1943 */ .hfe-search-layout-icon .hfe-search-icon-toggle .hfe-search-form__input {
/* 1944 */     background-color: unset;
/* 1945 */     height: 100%;
/* 1946 */ }
/* 1947 */
/* 1948 */ .hfe-search-button-wrapper.hfe-input-focus {
/* 1949 */     display: flex;
/* 1950 */ }

/* frontend.css */

/* 1951 */
/* 1952 */ .hfe-search-form__container .hfe-search-submit {
/* 1953 */     min-width: 3%;
/* 1954 */     position:relative;
/* 1955 */ }
/* 1956 */
/* 1957 */ .hfe-search-form__container button#clear,
/* 1958 */ .hfe-search-icon-toggle button#clear {
/* 1959 */     visibility: hidden;
/* 1960 */     position: absolute;
/* 1961 */     right:0;
/* 1962 */     top:0;
/* 1963 */     padding: 0 8px;
/* 1964 */     font-style: normal;
/* 1965 */     user-select: none;
/* 1966 */     cursor: pointer;
/* 1967 */     bottom:0;
/* 1968 */     margin-right:10px;
/* 1969 */     background-color: transparent;
/* 1970 */ }
/* 1971 */
/* 1972 */ .hfe-search-button-wrapper input[type="search"]::-webkit-search-decoration,
/* 1973 */ .hfe-search-button-wrapper input[type="search"]::-webkit-search-cancel-button,
/* 1974 */ .hfe-search-button-wrapper input[type="search"]::-webkit-search-results-button,
/* 1975 */ .hfe-search-button-wrapper input[type="search"]::-webkit-search-results-decoration {
/* 1976 */     display: none;
/* 1977 */ }
/* 1978 */
/* 1979 */ .hfe-search-form__container button#clear-with-button{
/* 1980 */     visibility: hidden;
/* 1981 */     position: absolute;
/* 1982 */     top: 0;
/* 1983 */     padding: 0 8px;
/* 1984 */     font-style: normal;
/* 1985 */     font-size: 1.2em;
/* 1986 */     user-select: none;
/* 1987 */     cursor: pointer;
/* 1988 */     bottom:0;
/* 1989 */     background-color: transparent;
/* 1990 */ }
/* 1991 */
/* 1992 */ .hfe-search-button-wrapper,
/* 1993 */ .hfe-search-form__container,
/* 1994 */ .hfe-search-icon-toggle,
/* 1995 */ .hfe-search-button-wrapper .hfe-search-icon-toggle i,
/* 1996 */ .hfe-search-button-wrapper .hfe-search-icon-toggle i:before {
/* 1997 */     position: relative;
/* 1998 */ }
/* 1999 */
/* 2000 */ .hfe-search-button-wrapper .hfe-search-icon-toggle .hfe-search-form__input {

/* frontend.css */

/* 2001 */     position: absolute;
/* 2002 */     width: 0;
/* 2003 */     right: 0;
/* 2004 */     background-color: transparent;
/* 2005 */ }
/* 2006 */
/* 2007 */ .hfe-search-icon-toggle {
/* 2008 */     width: 100%!important;
/* 2009 */ }
/* 2010 */
/* 2011 */ .hfe-search-button-wrapper.hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input{
/* 2012 */     position: absolute;
/* 2013 */     width: 250px;
/* 2014 */     right: 0;
/* 2015 */ }
/* 2016 */
/* 2017 */ .hfe-search-layout-text .hfe-search-form__container,
/* 2018 */ .hfe-search-layout-icon_text .hfe-search-form__container,
/* 2019 */ .hfe-search-layout-text .hfe-search-form__container .hfe-search-form__input,
/* 2020 */ .hfe-search-layout-icon_text .hfe-search-form__container .hfe-search-form__input {
/* 2021 */     width: 100%;
/* 2022 */ }
/* 2023 */
/* 2024 */ .hfe-search-icon-toggle {
/* 2025 */     line-height: 1.5;
/* 2026 */ }
/* 2027 */
/* 2028 */ /*-------Navigation menu active parent---------*/
/* 2029 */ .hfe-pointer__double-line.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after,.hfe-pointer__double-line.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after,
/* 2030 */  .hfe-pointer__overline.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before  {
/* 2031 */     width: 100%;
/* 2032 */     left: 0;
/* 2033 */     opacity:1;
/* 2034 */ }
/* 2035 */
/* 2036 */ .hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after,.hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
/* 2037 */     bottom: 0px;
/* 2038 */     opacity:1;
/* 2039 */ }
/* 2040 */ .hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
/* 2041 */     top: 0px;
/* 2042 */     opacity: 1;
/* 2043 */ }
/* 2044 */
/* 2045 */ .hfe-pointer__double-line.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
/* 2046 */     height: 3px;
/* 2047 */     width: 100%;
/* 2048 */     left: 0;
/* 2049 */     opacity: 1;
/* 2050 */ }

/* frontend.css */

/* 2051 */
/* 2052 */ .hfe-pointer__framed.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__framed.hfe-animation__shrink .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
/* 2053 */     opacity: 1;
/* 2054 */     -webkit-transform: scale(1);
/* 2055 */     -ms-transform: scale(1);
/* 2056 */     transform: scale(1);
/* 2057 */ }
/* 2058 */
/* 2059 */ .hfe-pointer__framed.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent.current-menu-item a.hfe-menu-item:before, .hfe-pointer__underline.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__double-line.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
/* 2060 */     opacity:1;
/* 2061 */ }
/* 2062 */
/* 2063 */ .hfe-pointer__framed.hfe-animation__corners .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before,
/* 2064 */ .hfe-pointer__framed.hfe-animation__corners .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after,
/* 2065 */ .hfe-pointer__framed.hfe-animation__draw .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before,
/* 2066 */ .hfe-pointer__framed.hfe-animation__draw .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
/* 2067 */     border-width:3px;
/* 2068 */     width:100%;
/* 2069 */     opacity:1;
/* 2070 */     height:100%;
/* 2071 */ }
/* 2072 */
/* 2073 */ /* Scroll to top CSS */
/* 2074 */ .hfe-scroll-to-top-wrap.hfe-scroll-to-top-hide {
/* 2075 */     display: none;
/* 2076 */ }
/* 2077 */
/* 2078 */ .hfe-scroll-to-top-wrap.edit-mode,
/* 2079 */ .hfe-scroll-to-top-wrap.single-page-off {
/* 2080 */     display: none !important;
/* 2081 */ }
/* 2082 */
/* 2083 */ .hfe-scroll-to-top-button {
/* 2084 */     position:fixed;
/* 2085 */     right:15px;
/* 2086 */     bottom:15px;
/* 2087 */     z-index:9999;
/* 2088 */     display:-webkit-box;
/* 2089 */     display:-webkit-flex;
/* 2090 */     display:-ms-flexbox;
/* 2091 */     display:flex;
/* 2092 */     -webkit-box-align:center;
/* 2093 */     -webkit-align-items:center;
/* 2094 */     align-items:center;
/* 2095 */     -ms-flex-align:center;
/* 2096 */     -webkit-box-pack:center;
/* 2097 */     -ms-flex-pack:center;
/* 2098 */     -webkit-justify-content:center;
/* 2099 */     justify-content:center;
/* 2100 */     width:50px;

/* frontend.css */

/* 2101 */     height:50px;
/* 2102 */     border-radius:50px;
/* 2103 */     background-color:#000000;
/* 2104 */     color:#fff;
/* 2105 */     text-align:center;
/* 2106 */     opacity:1;
/* 2107 */     cursor:pointer;
/* 2108 */     -webkit-transition:all .3s;
/* 2109 */     transition:all .3s;
/* 2110 */ }
/* 2111 */
/* 2112 */ .hfe-scroll-to-top-button i {
/* 2113 */     color:#fff;
/* 2114 */     font-size:16px;
/* 2115 */ }
/* 2116 */ /* Breadcrumbs CSS */
/* 2117 */
/* 2118 */ ul.hfe-breadcrumbs {
/* 2119 */     display:block;
/* 2120 */     margin:0;
/* 2121 */     padding:0;
/* 2122 */     list-style:none
/* 2123 */ }
/* 2124 */
/* 2125 */ ul.hfe-breadcrumbs li {
/* 2126 */     display: inline-block;
/* 2127 */     margin-right: 10px;
/* 2128 */     vertical-align: middle;
/* 2129 */ }
/* 2130 */
/* 2131 */ ul.hfe-breadcrumbs li:last-child {
/* 2132 */     margin:0;
/* 2133 */ }
/* 2134 */
/* 2135 */ ul.hfe-breadcrumbs li a,
/* 2136 */ ul.hfe-breadcrumbs li span.hfe-breadcrumbs-separator-icon,
/* 2137 */ ul.hfe-breadcrumbs li span.hfe-breadcrumbs-text{
/* 2138 */     display:block;
/* 2139 */ }
/* 2140 */
/* 2141 */ ul.hfe-breadcrumbs li span.hfe-breadcrumbs-text{
/* 2142 */     -webkit-transition:all .4s;
/* 2143 */     transition:all .4s;
/* 2144 */ }
/* 2145 */
/* 2146 */ span.hfe-breadcrumbs-home-icon{
/* 2147 */     margin-right:10px;
/* 2148 */     align-content: center;
/* 2149 */ }
/* 2150 */

/* frontend.css */

/* 2151 */ .hfe-breadcrumbs-first a {
/* 2152 */     align-content: center;
/* 2153 */ }
/* 2154 */
/* 2155 */ .hfe-breadcrumbs-separator-icon i,
/* 2156 */ .hfe-breadcrumbs-separator-icon svg,
/* 2157 */ .hfe-breadcrumbs-home-icon i,
/* 2158 */ .hfe-breadcrumbs-home-icon svg {
/* 2159 */     width: 1em;
/* 2160 */     height: 1em;
/* 2161 */     position: relative;
/* 2162 */     display: block;
/* 2163 */ }
/* 2164 */
/* 2165 */ ul.hfe-breadcrumbs-show-home li.hfe-breadcrumbs-first {
/* 2166 */     display: inline-flex;
/* 2167 */ }
/* 2168 */
/* 2169 */ /* Post Info CSS */
/* 2170 */
/* 2171 */ ul.hfe-post-info-items {
/* 2172 */     list-style: none;
/* 2173 */     margin: 0;
/* 2174 */     padding: 0;
/* 2175 */ }
/* 2176 */
/* 2177 */ ul.hfe-post-info-inline.hfe-post-info-items {
/* 2178 */     display: -webkit-box;
/* 2179 */     display: -webkit-flex;
/* 2180 */     display: -ms-flexbox;
/* 2181 */     display: flex;
/* 2182 */     -webkit-flex-wrap: wrap;
/* 2183 */     -ms-flex-wrap: wrap;
/* 2184 */     flex-wrap: wrap;
/* 2185 */ }
/* 2186 */
/* 2187 */ li.hfe-post-info-item {
/* 2188 */     -webkit-align-content: center;
/* 2189 */     -ms-flex-line-pack: center;
/* 2190 */     align-content: center;
/* 2191 */     -webkit-box-orient: horizontal;
/* 2192 */     -webkit-box-direction: normal;
/* 2193 */     -webkit-flex-direction: row;
/* 2194 */     -ms-flex-direction: row;
/* 2195 */     flex-direction: row;
/* 2196 */     -webkit-flex-wrap: nowrap;
/* 2197 */     -ms-flex-wrap: nowrap;
/* 2198 */     flex-wrap: nowrap;
/* 2199 */     -webkit-box-pack: center;
/* 2200 */     -ms-flex-pack: center;

/* frontend.css */

/* 2201 */     -webkit-justify-content: center;
/* 2202 */     justify-content: center;
/* 2203 */ }
/* 2204 */
/* 2205 */ li.hfe-post-info-item,
/* 2206 */ li.hfe-post-info-item > a {
/* 2207 */     display: -webkit-box;
/* 2208 */     display: -webkit-flex;
/* 2209 */     display: -ms-flexbox;
/* 2210 */     display: flex;
/* 2211 */     -webkit-box-align: center;
/* 2212 */     -webkit-align-items: center;
/* 2213 */     align-items: center;
/* 2214 */     -ms-flex-align: center;
/* 2215 */ }
/* 2216 */
/* 2217 */ .hfe-post-info-inline.hfe-post-info-items .hfe-post-info-item {
/* 2218 */     margin-right: 8px;
/* 2219 */     margin-left: 8px;
/* 2220 */ }
/* 2221 */
/* 2222 */ .hfe-post-info-inline .hfe-post-info-item:not(:last-child):after {
/* 2223 */     position: relative;
/* 2224 */     right: -8px;
/* 2225 */ }
/* 2226 */
/* 2227 */ .hfe-post-info-inline.hfe-post-info-items {
/* 2228 */     margin-right: -8px;
/* 2229 */     margin-left: -8px;
/* 2230 */ }
/* 2231 */
/* 2232 */ .hfe-post-info-icon svg {
/* 2233 */     display: block;
/* 2234 */ }
/* 2235 */
/* 2236 */ .hfe-post-info-layout-traditional .hfe-post-info-item:not(:last-child):after {
/* 2237 */     position: absolute;
/* 2238 */     bottom: 0;
/* 2239 */     width: 100%;
/* 2240 */     left: 0;
/* 2241 */ }
/* 2242 */
/* 2243 */ .hfe-post-info-layout-traditional .hfe-post-info-item:not(:last-child) {
/* 2244 */     position: relative;
/* 2245 */ }
/* 2246 */
/* 2247 */
/* 2248 */ /* Info Card CSS */
/* 2249 */ .hfe-icon-wrap .hfe-icon svg {
/* 2250 */     height: 100%;

/* frontend.css */

/* 2251 */     width: 100%;
/* 2252 */ }
/* 2253 */ body .elementor .hfe-button-wrapper a {
/* 2254 */     text-decoration: none;
/* 2255 */ }
/* 2256 */ .hfe-button-wrapper {
/* 2257 */     border-radius: 3px;
/* 2258 */ }
/* 2259 */
/* 2260 */
/* 2261 */ .hfe-reading-progress-bar{
/* 2262 */     height: 4px;
/* 2263 */ }
/* 2264 */
/* 2265 */ /* Basic Posts Widget CSS - Only essential structure, no styling */
/* 2266 */ .hfe-posts-grid {
/* 2267 */     display: grid;
/* 2268 */ }
/* 2269 */
/* 2270 */ .hfe-post-image img {
/* 2271 */     width: 100%;
/* 2272 */     height: auto;
/* 2273 */     display: block;
/* 2274 */ }
/* 2275 */
/* 2276 */ .hfe-post-title a {
/* 2277 */     text-decoration: none;
/* 2278 */ }
/* 2279 */ .hfe-post-title {
/* 2280 */     margin-top: 0px;
/* 2281 */ }
/* 2282 */ .hfe-read-more {
/* 2283 */     text-decoration: none;
/* 2284 */ }
/* 2285 */ .hfe-post-meta {
/* 2286 */     font-size: 12px;
/* 2287 */     line-height: 1.3em;
/* 2288 */ }
/* 2289 */ .hfe-post-title {
/* 2290 */     font-size: 20px;
/* 2291 */ }
/* 2292 */
