/* Minify_CSS_UriRewriter::$debugText

*/

/* styles.css */

/* 1   */ .wpcf7 .screen-reader-response {
/* 2   */ 	position: absolute;
/* 3   */ 	overflow: hidden;
/* 4   */ 	clip: rect(1px, 1px, 1px, 1px);
/* 5   */ 	clip-path: inset(50%);
/* 6   */ 	height: 1px;
/* 7   */ 	width: 1px;
/* 8   */ 	margin: -1px;
/* 9   */ 	padding: 0;
/* 10  */ 	border: 0;
/* 11  */ 	word-wrap: normal !important;
/* 12  */ }
/* 13  */
/* 14  */ .wpcf7 .hidden-fields-container {
/* 15  */ 	display: none;
/* 16  */ }
/* 17  */
/* 18  */ .wpcf7 form .wpcf7-response-output {
/* 19  */ 	margin: 2em 0.5em 1em;
/* 20  */ 	padding: 0.2em 1em;
/* 21  */ 	border: 2px solid #00a0d2; /* Blue */
/* 22  */ }
/* 23  */
/* 24  */ .wpcf7 form.init .wpcf7-response-output,
/* 25  */ .wpcf7 form.resetting .wpcf7-response-output,
/* 26  */ .wpcf7 form.submitting .wpcf7-response-output {
/* 27  */ 	display: none;
/* 28  */ }
/* 29  */
/* 30  */ .wpcf7 form.sent .wpcf7-response-output {
/* 31  */ 	border-color: #46b450; /* Green */
/* 32  */ }
/* 33  */
/* 34  */ .wpcf7 form.failed .wpcf7-response-output,
/* 35  */ .wpcf7 form.aborted .wpcf7-response-output {
/* 36  */ 	border-color: #dc3232; /* Red */
/* 37  */ }
/* 38  */
/* 39  */ .wpcf7 form.spam .wpcf7-response-output {
/* 40  */ 	border-color: #f56e28; /* Orange */
/* 41  */ }
/* 42  */
/* 43  */ .wpcf7 form.invalid .wpcf7-response-output,
/* 44  */ .wpcf7 form.unaccepted .wpcf7-response-output,
/* 45  */ .wpcf7 form.payment-required .wpcf7-response-output {
/* 46  */ 	border-color: #ffb900; /* Yellow */
/* 47  */ }
/* 48  */
/* 49  */ .wpcf7-form-control-wrap {
/* 50  */ 	position: relative;

/* styles.css */

/* 51  */ }
/* 52  */
/* 53  */ .wpcf7-not-valid-tip {
/* 54  */ 	color: #dc3232; /* Red */
/* 55  */ 	font-size: 1em;
/* 56  */ 	font-weight: normal;
/* 57  */ 	display: block;
/* 58  */ }
/* 59  */
/* 60  */ .use-floating-validation-tip .wpcf7-not-valid-tip {
/* 61  */ 	position: relative;
/* 62  */ 	top: -2ex;
/* 63  */ 	left: 1em;
/* 64  */ 	z-index: 100;
/* 65  */ 	border: 1px solid #dc3232;
/* 66  */ 	background: #fff;
/* 67  */ 	padding: .2em .8em;
/* 68  */ 	width: 24em;
/* 69  */ }
/* 70  */
/* 71  */ .wpcf7-list-item {
/* 72  */ 	display: inline-block;
/* 73  */ 	margin: 0 0 0 1em;
/* 74  */ }
/* 75  */
/* 76  */ .wpcf7-list-item-label::before,
/* 77  */ .wpcf7-list-item-label::after {
/* 78  */ 	content: " ";
/* 79  */ }
/* 80  */
/* 81  */ .wpcf7-spinner {
/* 82  */ 	visibility: hidden;
/* 83  */ 	display: inline-block;
/* 84  */ 	background-color: #23282d; /* Dark Gray 800 */
/* 85  */ 	opacity: 0.75;
/* 86  */ 	width: 24px;
/* 87  */ 	height: 24px;
/* 88  */ 	border: none;
/* 89  */ 	border-radius: 100%;
/* 90  */ 	padding: 0;
/* 91  */ 	margin: 0 24px;
/* 92  */ 	position: relative;
/* 93  */ }
/* 94  */
/* 95  */ form.submitting .wpcf7-spinner {
/* 96  */ 	visibility: visible;
/* 97  */ }
/* 98  */
/* 99  */ .wpcf7-spinner::before {
/* 100 */ 	content: '';

/* styles.css */

/* 101 */ 	position: absolute;
/* 102 */ 	background-color: #fbfbfc; /* Light Gray 100 */
/* 103 */ 	top: 4px;
/* 104 */ 	left: 4px;
/* 105 */ 	width: 6px;
/* 106 */ 	height: 6px;
/* 107 */ 	border: none;
/* 108 */ 	border-radius: 100%;
/* 109 */ 	transform-origin: 8px 8px;
/* 110 */ 	animation-name: spin;
/* 111 */ 	animation-duration: 1000ms;
/* 112 */ 	animation-timing-function: linear;
/* 113 */ 	animation-iteration-count: infinite;
/* 114 */ }
/* 115 */
/* 116 */ @media (prefers-reduced-motion: reduce) {
/* 117 */ 	.wpcf7-spinner::before {
/* 118 */ 		animation-name: blink;
/* 119 */ 		animation-duration: 2000ms;
/* 120 */ 	}
/* 121 */ }
/* 122 */
/* 123 */ @keyframes spin {
/* 124 */ 	from {
/* 125 */ 		transform: rotate(0deg);
/* 126 */ 	}
/* 127 */
/* 128 */ 	to {
/* 129 */ 		transform: rotate(360deg);
/* 130 */ 	}
/* 131 */ }
/* 132 */
/* 133 */ @keyframes blink {
/* 134 */ 	from {
/* 135 */ 		opacity: 0;
/* 136 */ 	}
/* 137 */
/* 138 */ 	50% {
/* 139 */ 		opacity: 1;
/* 140 */ 	}
/* 141 */
/* 142 */ 	to {
/* 143 */ 		opacity: 0;
/* 144 */ 	}
/* 145 */ }
/* 146 */
/* 147 */ .wpcf7 [inert] {
/* 148 */ 	opacity: 0.5;
/* 149 */ }
/* 150 */

/* styles.css */

/* 151 */ .wpcf7 input[type="file"] {
/* 152 */ 	cursor: pointer;
/* 153 */ }
/* 154 */
/* 155 */ .wpcf7 input[type="file"]:disabled {
/* 156 */ 	cursor: default;
/* 157 */ }
/* 158 */
/* 159 */ .wpcf7 .wpcf7-submit:disabled {
/* 160 */ 	cursor: not-allowed;
/* 161 */ }
/* 162 */
/* 163 */ .wpcf7 input[type="url"],
/* 164 */ .wpcf7 input[type="email"],
/* 165 */ .wpcf7 input[type="tel"] {
/* 166 */ 	direction: ltr;
/* 167 */ }
/* 168 */
/* 169 */ .wpcf7-reflection > output {
/* 170 */ 	display: list-item;
/* 171 */ 	list-style: none;
/* 172 */ }
/* 173 */
/* 174 */ .wpcf7-reflection > output[hidden] {
/* 175 */ 	display: none;
/* 176 */ }
/* 177 */
/* Minify_CSS_UriRewriter::$debugText

*/

/* wp-disclaimer-popup-public.css */

/* 1  */ /**
/* 2  *|  * All of the CSS for your public-facing functionality should be
/* 3  *|  * included in this file.
/* 4  *|  */
/* 5  */
/* 6  */ body.modal-wpdp {
/* 7  */ 	overflow: hidden;
/* 8  */ }
/* 9  */
/* 10 */ body.modal-wpdp .mfp-bg {
/* 11 */ 	background: #0b0b0b;
/* 12 */     opacity: 0.8;
/* 13 */ }
/* 14 */
/* 15 */ .wpdp-white-popup {
/* 16 */ 	position: relative;
/* 17 */ 	background: #FFF;
/* 18 */ 	padding: 20px;
/* 19 */ 	width: auto;
/* 20 */ 	max-width: 800px;
/* 21 */ 	margin: 20px auto;
/* 22 */ }
/* 23 */
/* 24 */ #wp-disclaimer-popup p.wpdp-footer {
/* 25 */ 	text-align: center;
/* 26 */ }
/* 27 */
/* 28 */ #wp-disclaimer-popup #wpdp-decline {
/* 29 */ 	margin-left: 25px;
/* 30 */ }
/* 31 */
/* 32 */ #wp-disclaimer-popup span#wpdp-close,
/* 33 */ #wp-disclaimer-popup #wpdp-decline {
/* 34 */ 	padding: 4px 25px;
/* 35 */     display: inline-block;
/* 36 */     border-color: #1A4179;
/* 37 */     border: 0px solid black;
/* 38 */     margin-top: 1rem;
/* 39 */     border-radius: 4px;
/* 40 */     text-transform: uppercase;
/* 41 */     font-size: 1rem;
/* 42 */     color: #1A4179;
/* 43 */     font-weight: 600;
/* 44 */     text-decoration: none;
/* 45 */ }
/* 46 */
/* 47 */ #wp-disclaimer-popup span#wpdp-close:hover,
/* 48 */ #wp-disclaimer-popup #wpdp-decline:hover {
/* 49 */ 	background-color: #1A4179;
/* 50 */ 	cursor: pointer;

/* wp-disclaimer-popup-public.css */

/* 51 */ 	color: #FFF;
/* 52 */ 	border-color: #1A4179;
/* 53 */ }
/* Minify_CSS_UriRewriter::$debugText

*/

/* wp-disclaimer-popup-public.gen.css */

/* 1  */
/* 2  */ /**
/* 3  *|  * All of the CSS for your public-facing functionality should be
/* 4  *|  * included in this file.
/* 5  *|  */
/* 6  */
/* 7  */ body.modal-wpdp {
/* 8  */ 	overflow: hidden;
/* 9  */ }
/* 10 */
/* 11 */ body.modal-wpdp .mfp-bg {
/* 12 */ 	background: #0b0b0b;
/* 13 */     opacity: 0.8;
/* 14 */ }
/* 15 */
/* 16 */ .wpdp-white-popup {
/* 17 */ 	position: relative;
/* 18 */ 	background: #FFF;
/* 19 */ 	padding: 20px;
/* 20 */ 	width: auto;
/* 21 */ 	max-width: 650px;
/* 22 */ 	margin: 20px auto;
/* 23 */ }
/* 24 */
/* 25 */ #wp-disclaimer-popup p.wpdp-footer {
/* 26 */ 	text-align: center;
/* 27 */ }
/* 28 */
/* 29 */ #wp-disclaimer-popup #wpdp-decline {
/* 30 */ 	margin-left: 25px;
/* 31 */ }
/* 32 */
/* 33 */ #wp-disclaimer-popup span#wpdp-close,
/* 34 */ #wp-disclaimer-popup #wpdp-decline {
/* 35 */ 	padding: 4px 25px;
/* 36 */     display: inline-block;
/* 37 */     border: 2px solid;
/* 38 */     border-color: #1A4179;
/* 39 */     margin-top: 1rem;
/* 40 */     border-radius: 4px;
/* 41 */     text-transform: uppercase;
/* 42 */     font-size: 1rem;
/* 43 */     color: #1A4179;
/* 44 */     font-weight: 600;
/* 45 */     text-decoration: none;
/* 46 */     background-color: #FFFFFF}
/* 47 */
/* 48 */ #wp-disclaimer-popup span#wpdp-close:hover,
/* 49 */ #wp-disclaimer-popup #wpdp-decline:hover {
/* 50 */ 	background-color: #1A4179;

/* wp-disclaimer-popup-public.gen.css */

/* 51 */ 	cursor: pointer;
/* 52 */ 	color: #FFFFFF;
/* 53 */ 	border-color: #1A4179;
/* 54 */ }
/* Minify_CSS_UriRewriter::$debugText

*/

/* magnific-popup.css */

/* 1   */ /* Magnific Popup CSS */
/* 2   */ .mfp-bg {
/* 3   */   top: 0;
/* 4   */   left: 0;
/* 5   */   width: 100%;
/* 6   */   height: 100%;
/* 7   */   z-index: 1042;
/* 8   */   overflow: hidden;
/* 9   */   position: fixed;
/* 10  */   background: #0b0b0b;
/* 11  */   opacity: 0.8; }
/* 12  */
/* 13  */ .mfp-wrap {
/* 14  */   top: 0;
/* 15  */   left: 0;
/* 16  */   width: 100%;
/* 17  */   height: 100%;
/* 18  */   z-index: 1043;
/* 19  */   position: fixed;
/* 20  */   outline: none !important;
/* 21  */   -webkit-backface-visibility: hidden; }
/* 22  */
/* 23  */ .mfp-container {
/* 24  */   text-align: center;
/* 25  */   position: absolute;
/* 26  */   width: 100%;
/* 27  */   height: 100%;
/* 28  */   left: 0;
/* 29  */   top: 0;
/* 30  */   padding: 0 8px;
/* 31  */   box-sizing: border-box; }
/* 32  */
/* 33  */ .mfp-container:before {
/* 34  */   content: '';
/* 35  */   display: inline-block;
/* 36  */   height: 100%;
/* 37  */   vertical-align: middle; }
/* 38  */
/* 39  */ .mfp-align-top .mfp-container:before {
/* 40  */   display: none; }
/* 41  */
/* 42  */ .mfp-content {
/* 43  */   position: relative;
/* 44  */   display: inline-block;
/* 45  */   vertical-align: middle;
/* 46  */   margin: 0 auto;
/* 47  */   text-align: left;
/* 48  */   z-index: 1045; }
/* 49  */
/* 50  */ .mfp-inline-holder .mfp-content,

/* magnific-popup.css */

/* 51  */ .mfp-ajax-holder .mfp-content {
/* 52  */   width: 100%;
/* 53  */   cursor: auto; }
/* 54  */
/* 55  */ .mfp-ajax-cur {
/* 56  */   cursor: progress; }
/* 57  */
/* 58  */ .mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
/* 59  */   cursor: -moz-zoom-out;
/* 60  */   cursor: -webkit-zoom-out;
/* 61  */   cursor: zoom-out; }
/* 62  */
/* 63  */ .mfp-zoom {
/* 64  */   cursor: pointer;
/* 65  */   cursor: -webkit-zoom-in;
/* 66  */   cursor: -moz-zoom-in;
/* 67  */   cursor: zoom-in; }
/* 68  */
/* 69  */ .mfp-auto-cursor .mfp-content {
/* 70  */   cursor: auto; }
/* 71  */
/* 72  */ .mfp-close,
/* 73  */ .mfp-arrow,
/* 74  */ .mfp-preloader,
/* 75  */ .mfp-counter {
/* 76  */   -webkit-user-select: none;
/* 77  */   -moz-user-select: none;
/* 78  */   user-select: none; }
/* 79  */
/* 80  */ .mfp-loading.mfp-figure {
/* 81  */   display: none; }
/* 82  */
/* 83  */ .mfp-hide {
/* 84  */   display: none !important; }
/* 85  */
/* 86  */ .mfp-preloader {
/* 87  */   color: #CCC;
/* 88  */   position: absolute;
/* 89  */   top: 50%;
/* 90  */   width: auto;
/* 91  */   text-align: center;
/* 92  */   margin-top: -0.8em;
/* 93  */   left: 8px;
/* 94  */   right: 8px;
/* 95  */   z-index: 1044; }
/* 96  */   .mfp-preloader a {
/* 97  */     color: #CCC; }
/* 98  */     .mfp-preloader a:hover {
/* 99  */       color: #FFF; }
/* 100 */

/* magnific-popup.css */

/* 101 */ .mfp-s-ready .mfp-preloader {
/* 102 */   display: none; }
/* 103 */
/* 104 */ .mfp-s-error .mfp-content {
/* 105 */   display: none; }
/* 106 */
/* 107 */ button.mfp-close,
/* 108 */ button.mfp-arrow {
/* 109 */   overflow: visible;
/* 110 */   cursor: pointer;
/* 111 */   background: transparent;
/* 112 */   border: 0;
/* 113 */   -webkit-appearance: none;
/* 114 */   display: block;
/* 115 */   outline: none;
/* 116 */   padding: 0;
/* 117 */   z-index: 1046;
/* 118 */   box-shadow: none;
/* 119 */   touch-action: manipulation; }
/* 120 */
/* 121 */ button::-moz-focus-inner {
/* 122 */   padding: 0;
/* 123 */   border: 0; }
/* 124 */
/* 125 */ .mfp-close {
/* 126 */   width: 44px;
/* 127 */   height: 44px;
/* 128 */   line-height: 44px;
/* 129 */   position: absolute;
/* 130 */   right: 0;
/* 131 */   top: 0;
/* 132 */   text-decoration: none;
/* 133 */   text-align: center;
/* 134 */   opacity: 0.65;
/* 135 */   padding: 0 0 18px 10px;
/* 136 */   color: #FFF;
/* 137 */   font-style: normal;
/* 138 */   font-size: 28px;
/* 139 */   font-family: Arial, Baskerville, monospace; }
/* 140 */   .mfp-close:hover,
/* 141 */   .mfp-close:focus {
/* 142 */     opacity: 1; }
/* 143 */   .mfp-close:active {
/* 144 */     top: 1px; }
/* 145 */
/* 146 */ .mfp-close-btn-in .mfp-close {
/* 147 */   color: #333; }
/* 148 */
/* 149 */ .mfp-image-holder .mfp-close,
/* 150 */ .mfp-iframe-holder .mfp-close {

/* magnific-popup.css */

/* 151 */   color: #FFF;
/* 152 */   right: -6px;
/* 153 */   text-align: right;
/* 154 */   padding-right: 6px;
/* 155 */   width: 100%; }
/* 156 */
/* 157 */ .mfp-counter {
/* 158 */   position: absolute;
/* 159 */   top: 0;
/* 160 */   right: 0;
/* 161 */   color: #CCC;
/* 162 */   font-size: 12px;
/* 163 */   line-height: 18px;
/* 164 */   white-space: nowrap; }
/* 165 */
/* 166 */ .mfp-arrow {
/* 167 */   position: absolute;
/* 168 */   opacity: 0.65;
/* 169 */   margin: 0;
/* 170 */   top: 50%;
/* 171 */   margin-top: -55px;
/* 172 */   padding: 0;
/* 173 */   width: 90px;
/* 174 */   height: 110px;
/* 175 */   -webkit-tap-highlight-color: transparent; }
/* 176 */   .mfp-arrow:active {
/* 177 */     margin-top: -54px; }
/* 178 */   .mfp-arrow:hover,
/* 179 */   .mfp-arrow:focus {
/* 180 */     opacity: 1; }
/* 181 */   .mfp-arrow:before,
/* 182 */   .mfp-arrow:after {
/* 183 */     content: '';
/* 184 */     display: block;
/* 185 */     width: 0;
/* 186 */     height: 0;
/* 187 */     position: absolute;
/* 188 */     left: 0;
/* 189 */     top: 0;
/* 190 */     margin-top: 35px;
/* 191 */     margin-left: 35px;
/* 192 */     border: medium inset transparent; }
/* 193 */   .mfp-arrow:after {
/* 194 */     border-top-width: 13px;
/* 195 */     border-bottom-width: 13px;
/* 196 */     top: 8px; }
/* 197 */   .mfp-arrow:before {
/* 198 */     border-top-width: 21px;
/* 199 */     border-bottom-width: 21px;
/* 200 */     opacity: 0.7; }

/* magnific-popup.css */

/* 201 */
/* 202 */ .mfp-arrow-left {
/* 203 */   left: 0; }
/* 204 */   .mfp-arrow-left:after {
/* 205 */     border-right: 17px solid #FFF;
/* 206 */     margin-left: 31px; }
/* 207 */   .mfp-arrow-left:before {
/* 208 */     margin-left: 25px;
/* 209 */     border-right: 27px solid #3F3F3F; }
/* 210 */
/* 211 */ .mfp-arrow-right {
/* 212 */   right: 0; }
/* 213 */   .mfp-arrow-right:after {
/* 214 */     border-left: 17px solid #FFF;
/* 215 */     margin-left: 39px; }
/* 216 */   .mfp-arrow-right:before {
/* 217 */     border-left: 27px solid #3F3F3F; }
/* 218 */
/* 219 */ .mfp-iframe-holder {
/* 220 */   padding-top: 40px;
/* 221 */   padding-bottom: 40px; }
/* 222 */   .mfp-iframe-holder .mfp-content {
/* 223 */     line-height: 0;
/* 224 */     width: 100%;
/* 225 */     max-width: 900px; }
/* 226 */   .mfp-iframe-holder .mfp-close {
/* 227 */     top: -40px; }
/* 228 */
/* 229 */ .mfp-iframe-scaler {
/* 230 */   width: 100%;
/* 231 */   height: 0;
/* 232 */   overflow: hidden;
/* 233 */   padding-top: 56.25%; }
/* 234 */   .mfp-iframe-scaler iframe {
/* 235 */     position: absolute;
/* 236 */     display: block;
/* 237 */     top: 0;
/* 238 */     left: 0;
/* 239 */     width: 100%;
/* 240 */     height: 100%;
/* 241 */     box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
/* 242 */     background: #000; }
/* 243 */
/* 244 */ /* Main image in popup */
/* 245 */ img.mfp-img {
/* 246 */   width: auto;
/* 247 */   max-width: 100%;
/* 248 */   height: auto;
/* 249 */   display: block;
/* 250 */   line-height: 0;

/* magnific-popup.css */

/* 251 */   box-sizing: border-box;
/* 252 */   padding: 40px 0 40px;
/* 253 */   margin: 0 auto; }
/* 254 */
/* 255 */ /* The shadow behind the image */
/* 256 */ .mfp-figure {
/* 257 */   line-height: 0; }
/* 258 */   .mfp-figure:after {
/* 259 */     content: '';
/* 260 */     position: absolute;
/* 261 */     left: 0;
/* 262 */     top: 40px;
/* 263 */     bottom: 40px;
/* 264 */     display: block;
/* 265 */     right: 0;
/* 266 */     width: auto;
/* 267 */     height: auto;
/* 268 */     z-index: -1;
/* 269 */     box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
/* 270 */     background: #444; }
/* 271 */   .mfp-figure small {
/* 272 */     color: #BDBDBD;
/* 273 */     display: block;
/* 274 */     font-size: 12px;
/* 275 */     line-height: 14px; }
/* 276 */   .mfp-figure figure {
/* 277 */     margin: 0; }
/* 278 */
/* 279 */ .mfp-bottom-bar {
/* 280 */   margin-top: -36px;
/* 281 */   position: absolute;
/* 282 */   top: 100%;
/* 283 */   left: 0;
/* 284 */   width: 100%;
/* 285 */   cursor: auto; }
/* 286 */
/* 287 */ .mfp-title {
/* 288 */   text-align: left;
/* 289 */   line-height: 18px;
/* 290 */   color: #F3F3F3;
/* 291 */   word-wrap: break-word;
/* 292 */   padding-right: 36px; }
/* 293 */
/* 294 */ .mfp-image-holder .mfp-content {
/* 295 */   max-width: 100%; }
/* 296 */
/* 297 */ .mfp-gallery .mfp-image-holder .mfp-figure {
/* 298 */   cursor: pointer; }
/* 299 */
/* 300 */ @media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {

/* magnific-popup.css */

/* 301 */   /**
/* 302 *|        * Remove all paddings around the image on small screen
/* 303 *|        */
/* 304 */   .mfp-img-mobile .mfp-image-holder {
/* 305 */     padding-left: 0;
/* 306 */     padding-right: 0; }
/* 307 */   .mfp-img-mobile img.mfp-img {
/* 308 */     padding: 0; }
/* 309 */   .mfp-img-mobile .mfp-figure:after {
/* 310 */     top: 0;
/* 311 */     bottom: 0; }
/* 312 */   .mfp-img-mobile .mfp-figure small {
/* 313 */     display: inline;
/* 314 */     margin-left: 5px; }
/* 315 */   .mfp-img-mobile .mfp-bottom-bar {
/* 316 */     background: rgba(0, 0, 0, 0.6);
/* 317 */     bottom: 0;
/* 318 */     margin: 0;
/* 319 */     top: auto;
/* 320 */     padding: 3px 5px;
/* 321 */     position: fixed;
/* 322 */     box-sizing: border-box; }
/* 323 */     .mfp-img-mobile .mfp-bottom-bar:empty {
/* 324 */       padding: 0; }
/* 325 */   .mfp-img-mobile .mfp-counter {
/* 326 */     right: 5px;
/* 327 */     top: 3px; }
/* 328 */   .mfp-img-mobile .mfp-close {
/* 329 */     top: 0;
/* 330 */     right: 0;
/* 331 */     width: 35px;
/* 332 */     height: 35px;
/* 333 */     line-height: 35px;
/* 334 */     background: rgba(0, 0, 0, 0.6);
/* 335 */     position: fixed;
/* 336 */     text-align: center;
/* 337 */     padding: 0; } }
/* 338 */
/* 339 */ @media all and (max-width: 900px) {
/* 340 */   .mfp-arrow {
/* 341 */     -webkit-transform: scale(0.75);
/* 342 */     transform: scale(0.75); }
/* 343 */   .mfp-arrow-left {
/* 344 */     -webkit-transform-origin: 0;
/* 345 */     transform-origin: 0; }
/* 346 */   .mfp-arrow-right {
/* 347 */     -webkit-transform-origin: 100%;
/* 348 */     transform-origin: 100%; }
/* 349 */   .mfp-container {
/* 350 */     padding-left: 6px;

/* magnific-popup.css */

/* 351 */     padding-right: 6px; } }
/* 352 */
/* Minify_CSS_UriRewriter::$debugText

*/

/* fmgc-css.css */

/* 1  */ .fmgc-columns {
/* 2  */     padding-left: 0.9375rem;
/* 3  */     padding-right: 0.9375rem;
/* 4  */ 	-webkit-box-sizing: border-box; -moz-box-sizing: border-box;box-sizing: border-box;
/* 5  */ 	 float: left; position: relative;
/* 6  */ }
/* 7  */ .footer-mega-col::after, .footer-mega-col-wrap::after{ clear: both; content: ""; display: table;}
/* 8  */ .footer-mega-col::before, .footer-mega-col-wrap::before{ content: ""; display: table;}
/* 9  */
/* 10 */ .footer-mega-col-wrap{margin:0 auto; max-width:100%}
/* 11 */ .footer-mega-col-wrap .widget{margin-top: 0;}
/* 12 */
/* 13 */ @media only screen and (min-width: 40.0625em) {
/* 14 */
/* 15 */   .fmgc-per-row-1 { width: 8.33333%; }
/* 16 */   .fmgc-per-row-2 { width: 16.66667%; }
/* 17 */   .fmgc-per-row-3 { width: 25%; }
/* 18 */   .fmgc-per-row-4 { width: 33.33333%; }
/* 19 */   .fmgc-per-row-5 { width: 41.66667%; }
/* 20 */   .fmgc-per-row-6 { width: 50%; }
/* 21 */   .fmgc-per-row-7 { width: 58.33333%; }
/* 22 */   .fmgc-per-row-8 { width: 66.66667%; }
/* 23 */   .fmgc-per-row-9 { width: 75%; }
/* 24 */   .fmgc-per-row-10 { width: 83.33333%; }
/* 25 */   .fmgc-per-row-11 { width: 91.66667%; }
/* 26 */   .fmgc-per-row-12 { width: 100%; }
/* 27 */   .fmgc-per-row-5c { width: 20%; }
/* 28 */ }
/* Minify_CSS_UriRewriter::$debugText

*/

/* slick.min.css */

/* 1 */ .slick-list,.slick-slider,.slick-track{position:relative;display:block}.slick-slider{box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{top:0;left:0;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-slide,.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-initialized .slick-slide,.slick-slide img{display:block}.slick-arrow.slick-hidden,.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}
/* Minify_CSS_UriRewriter::$debugText

*/

/* all.min.css */

/* 1 */ /*!
/* 2 *|  * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com
/* 3 *|  * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
/* 4 *|  * Copyright 2024 Fonticons, Inc.
/* 5 *|  */
/* 6 */ .fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-regular,.fa-solid,.fab,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-brands:before,.fa-regular:before,.fa-solid:before,.fa:before,.fab:before,.far:before,.fas:before{content:var(--fa)}.fa-classic,.fa-regular,.fa-solid,.far,.fas{font-family:"Font Awesome 6 Free"}.fa-brands,.fab{font-family:"Font Awesome 6 Brands"}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{animation-name:fa-beat;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{animation-name:fa-bounce;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{animation-name:fa-fade;animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{animation-name:fa-beat-fade;animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{animation-name:fa-flip;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{animation-name:fa-shake;animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{animation-name:fa-spin;animation-duration:var(--fa-animation-duration,2s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{animation-name:fa-spin;animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{animation-delay:-1ms;animation-duration:1ms;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@keyframes fa-beat{0%,90%{transform:scale(1)}45%{transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-bounce{0%{transform:scale(1) translateY(0)}10%{transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{transform:scale(1) translateY(0)}to{transform:scale(1) translateY(0)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);transform:scale(1)}50%{opacity:1;transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-flip{50%{transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-shake{0%{transform:rotate(-15deg)}4%{transform:rotate(15deg)}8%,24%{transform:rotate(-18deg)}12%,28%{transform:rotate(18deg)}16%{transform:rotate(-22deg)}20%{transform:rotate(22deg)}32%{transform:rotate(-12deg)}36%{transform:rotate(12deg)}40%,to{transform:rotate(0deg)}}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{transform:rotate(90deg)}.fa-rotate-180{transform:rotate(180deg)}.fa-rotate-270{transform:rotate(270deg)}.fa-flip-horizontal{transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}.fa-rotate-by{transform:rotate(var(--fa-rotate-angle,0))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)}
/* 7 */
/* 8 */ .fa-0{--fa:"\30"}.fa-1{--fa:"\31"}.fa-2{--fa:"\32"}.fa-3{--fa:"\33"}.fa-4{--fa:"\34"}.fa-5{--fa:"\35"}.fa-6{--fa:"\36"}.fa-7{--fa:"\37"}.fa-8{--fa:"\38"}.fa-9{--fa:"\39"}.fa-fill-drip{--fa:"\f576"}.fa-arrows-to-circle{--fa:"\e4bd"}.fa-chevron-circle-right,.fa-circle-chevron-right{--fa:"\f138"}.fa-at{--fa:"\40"}.fa-trash-alt,.fa-trash-can{--fa:"\f2ed"}.fa-text-height{--fa:"\f034"}.fa-user-times,.fa-user-xmark{--fa:"\f235"}.fa-stethoscope{--fa:"\f0f1"}.fa-comment-alt,.fa-message{--fa:"\f27a"}.fa-info{--fa:"\f129"}.fa-compress-alt,.fa-down-left-and-up-right-to-center{--fa:"\f422"}.fa-explosion{--fa:"\e4e9"}.fa-file-alt,.fa-file-lines,.fa-file-text{--fa:"\f15c"}.fa-wave-square{--fa:"\f83e"}.fa-ring{--fa:"\f70b"}.fa-building-un{--fa:"\e4d9"}.fa-dice-three{--fa:"\f527"}.fa-calendar-alt,.fa-calendar-days{--fa:"\f073"}.fa-anchor-circle-check{--fa:"\e4aa"}.fa-building-circle-arrow-right{--fa:"\e4d1"}.fa-volleyball,.fa-volleyball-ball{--fa:"\f45f"}.fa-arrows-up-to-line{--fa:"\e4c2"}.fa-sort-desc,.fa-sort-down{--fa:"\f0dd"}.fa-circle-minus,.fa-minus-circle{--fa:"\f056"}.fa-door-open{--fa:"\f52b"}.fa-right-from-bracket,.fa-sign-out-alt{--fa:"\f2f5"}.fa-atom{--fa:"\f5d2"}.fa-soap{--fa:"\e06e"}.fa-heart-music-camera-bolt,.fa-icons{--fa:"\f86d"}.fa-microphone-alt-slash,.fa-microphone-lines-slash{--fa:"\f539"}.fa-bridge-circle-check{--fa:"\e4c9"}.fa-pump-medical{--fa:"\e06a"}.fa-fingerprint{--fa:"\f577"}.fa-hand-point-right{--fa:"\f0a4"}.fa-magnifying-glass-location,.fa-search-location{--fa:"\f689"}.fa-forward-step,.fa-step-forward{--fa:"\f051"}.fa-face-smile-beam,.fa-smile-beam{--fa:"\f5b8"}.fa-flag-checkered{--fa:"\f11e"}.fa-football,.fa-football-ball{--fa:"\f44e"}.fa-school-circle-exclamation{--fa:"\e56c"}.fa-crop{--fa:"\f125"}.fa-angle-double-down,.fa-angles-down{--fa:"\f103"}.fa-users-rectangle{--fa:"\e594"}.fa-people-roof{--fa:"\e537"}.fa-people-line{--fa:"\e534"}.fa-beer,.fa-beer-mug-empty{--fa:"\f0fc"}.fa-diagram-predecessor{--fa:"\e477"}.fa-arrow-up-long,.fa-long-arrow-up{--fa:"\f176"}.fa-burn,.fa-fire-flame-simple{--fa:"\f46a"}.fa-male,.fa-person{--fa:"\f183"}.fa-laptop{--fa:"\f109"}.fa-file-csv{--fa:"\f6dd"}.fa-menorah{--fa:"\f676"}.fa-truck-plane{--fa:"\e58f"}.fa-record-vinyl{--fa:"\f8d9"}.fa-face-grin-stars,.fa-grin-stars{--fa:"\f587"}.fa-bong{--fa:"\f55c"}.fa-pastafarianism,.fa-spaghetti-monster-flying{--fa:"\f67b"}.fa-arrow-down-up-across-line{--fa:"\e4af"}.fa-spoon,.fa-utensil-spoon{--fa:"\f2e5"}.fa-jar-wheat{--fa:"\e517"}.fa-envelopes-bulk,.fa-mail-bulk{--fa:"\f674"}.fa-file-circle-exclamation{--fa:"\e4eb"}.fa-circle-h,.fa-hospital-symbol{--fa:"\f47e"}.fa-pager{--fa:"\f815"}.fa-address-book,.fa-contact-book{--fa:"\f2b9"}.fa-strikethrough{--fa:"\f0cc"}.fa-k{--fa:"\4b"}.fa-landmark-flag{--fa:"\e51c"}.fa-pencil,.fa-pencil-alt{--fa:"\f303"}.fa-backward{--fa:"\f04a"}.fa-caret-right{--fa:"\f0da"}.fa-comments{--fa:"\f086"}.fa-file-clipboard,.fa-paste{--fa:"\f0ea"}.fa-code-pull-request{--fa:"\e13c"}.fa-clipboard-list{--fa:"\f46d"}.fa-truck-loading,.fa-truck-ramp-box{--fa:"\f4de"}.fa-user-check{--fa:"\f4fc"}.fa-vial-virus{--fa:"\e597"}.fa-sheet-plastic{--fa:"\e571"}.fa-blog{--fa:"\f781"}.fa-user-ninja{--fa:"\f504"}.fa-person-arrow-up-from-line{--fa:"\e539"}.fa-scroll-torah,.fa-torah{--fa:"\f6a0"}.fa-broom-ball,.fa-quidditch,.fa-quidditch-broom-ball{--fa:"\f458"}.fa-toggle-off{--fa:"\f204"}.fa-archive,.fa-box-archive{--fa:"\f187"}.fa-person-drowning{--fa:"\e545"}.fa-arrow-down-9-1,.fa-sort-numeric-desc,.fa-sort-numeric-down-alt{--fa:"\f886"}.fa-face-grin-tongue-squint,.fa-grin-tongue-squint{--fa:"\f58a"}.fa-spray-can{--fa:"\f5bd"}.fa-truck-monster{--fa:"\f63b"}.fa-w{--fa:"\57"}.fa-earth-africa,.fa-globe-africa{--fa:"\f57c"}.fa-rainbow{--fa:"\f75b"}.fa-circle-notch{--fa:"\f1ce"}.fa-tablet-alt,.fa-tablet-screen-button{--fa:"\f3fa"}.fa-paw{--fa:"\f1b0"}.fa-cloud{--fa:"\f0c2"}.fa-trowel-bricks{--fa:"\e58a"}.fa-face-flushed,.fa-flushed{--fa:"\f579"}.fa-hospital-user{--fa:"\f80d"}.fa-tent-arrow-left-right{--fa:"\e57f"}.fa-gavel,.fa-legal{--fa:"\f0e3"}.fa-binoculars{--fa:"\f1e5"}.fa-microphone-slash{--fa:"\f131"}.fa-box-tissue{--fa:"\e05b"}.fa-motorcycle{--fa:"\f21c"}.fa-bell-concierge,.fa-concierge-bell{--fa:"\f562"}.fa-pen-ruler,.fa-pencil-ruler{--fa:"\f5ae"}.fa-people-arrows,.fa-people-arrows-left-right{--fa:"\e068"}.fa-mars-and-venus-burst{--fa:"\e523"}.fa-caret-square-right,.fa-square-caret-right{--fa:"\f152"}.fa-cut,.fa-scissors{--fa:"\f0c4"}.fa-sun-plant-wilt{--fa:"\e57a"}.fa-toilets-portable{--fa:"\e584"}.fa-hockey-puck{--fa:"\f453"}.fa-table{--fa:"\f0ce"}.fa-magnifying-glass-arrow-right{--fa:"\e521"}.fa-digital-tachograph,.fa-tachograph-digital{--fa:"\f566"}.fa-users-slash{--fa:"\e073"}.fa-clover{--fa:"\e139"}.fa-mail-reply,.fa-reply{--fa:"\f3e5"}.fa-star-and-crescent{--fa:"\f699"}.fa-house-fire{--fa:"\e50c"}.fa-minus-square,.fa-square-minus{--fa:"\f146"}.fa-helicopter{--fa:"\f533"}.fa-compass{--fa:"\f14e"}.fa-caret-square-down,.fa-square-caret-down{--fa:"\f150"}.fa-file-circle-question{--fa:"\e4ef"}.fa-laptop-code{--fa:"\f5fc"}.fa-swatchbook{--fa:"\f5c3"}.fa-prescription-bottle{--fa:"\f485"}.fa-bars,.fa-navicon{--fa:"\f0c9"}.fa-people-group{--fa:"\e533"}.fa-hourglass-3,.fa-hourglass-end{--fa:"\f253"}.fa-heart-broken,.fa-heart-crack{--fa:"\f7a9"}.fa-external-link-square-alt,.fa-square-up-right{--fa:"\f360"}.fa-face-kiss-beam,.fa-kiss-beam{--fa:"\f597"}.fa-film{--fa:"\f008"}.fa-ruler-horizontal{--fa:"\f547"}.fa-people-robbery{--fa:"\e536"}.fa-lightbulb{--fa:"\f0eb"}.fa-caret-left{--fa:"\f0d9"}.fa-circle-exclamation,.fa-exclamation-circle{--fa:"\f06a"}.fa-school-circle-xmark{--fa:"\e56d"}.fa-arrow-right-from-bracket,.fa-sign-out{--fa:"\f08b"}.fa-chevron-circle-down,.fa-circle-chevron-down{--fa:"\f13a"}.fa-unlock-alt,.fa-unlock-keyhole{--fa:"\f13e"}.fa-cloud-showers-heavy{--fa:"\f740"}.fa-headphones-alt,.fa-headphones-simple{--fa:"\f58f"}.fa-sitemap{--fa:"\f0e8"}.fa-circle-dollar-to-slot,.fa-donate{--fa:"\f4b9"}.fa-memory{--fa:"\f538"}.fa-road-spikes{--fa:"\e568"}.fa-fire-burner{--fa:"\e4f1"}.fa-flag{--fa:"\f024"}.fa-hanukiah{--fa:"\f6e6"}.fa-feather{--fa:"\f52d"}.fa-volume-down,.fa-volume-low{--fa:"\f027"}.fa-comment-slash{--fa:"\f4b3"}.fa-cloud-sun-rain{--fa:"\f743"}.fa-compress{--fa:"\f066"}.fa-wheat-alt,.fa-wheat-awn{--fa:"\e2cd"}.fa-ankh{--fa:"\f644"}.fa-hands-holding-child{--fa:"\e4fa"}.fa-asterisk{--fa:"\2a"}.fa-check-square,.fa-square-check{--fa:"\f14a"}.fa-peseta-sign{--fa:"\e221"}.fa-header,.fa-heading{--fa:"\f1dc"}.fa-ghost{--fa:"\f6e2"}.fa-list,.fa-list-squares{--fa:"\f03a"}.fa-phone-square-alt,.fa-square-phone-flip{--fa:"\f87b"}.fa-cart-plus{--fa:"\f217"}.fa-gamepad{--fa:"\f11b"}.fa-circle-dot,.fa-dot-circle{--fa:"\f192"}.fa-dizzy,.fa-face-dizzy{--fa:"\f567"}.fa-egg{--fa:"\f7fb"}.fa-house-medical-circle-xmark{--fa:"\e513"}.fa-campground{--fa:"\f6bb"}.fa-folder-plus{--fa:"\f65e"}.fa-futbol,.fa-futbol-ball,.fa-soccer-ball{--fa:"\f1e3"}.fa-paint-brush,.fa-paintbrush{--fa:"\f1fc"}.fa-lock{--fa:"\f023"}.fa-gas-pump{--fa:"\f52f"}.fa-hot-tub,.fa-hot-tub-person{--fa:"\f593"}.fa-map-location,.fa-map-marked{--fa:"\f59f"}.fa-house-flood-water{--fa:"\e50e"}.fa-tree{--fa:"\f1bb"}.fa-bridge-lock{--fa:"\e4cc"}.fa-sack-dollar{--fa:"\f81d"}.fa-edit,.fa-pen-to-square{--fa:"\f044"}.fa-car-side{--fa:"\f5e4"}.fa-share-alt,.fa-share-nodes{--fa:"\f1e0"}.fa-heart-circle-minus{--fa:"\e4ff"}.fa-hourglass-2,.fa-hourglass-half{--fa:"\f252"}.fa-microscope{--fa:"\f610"}.fa-sink{--fa:"\e06d"}.fa-bag-shopping,.fa-shopping-bag{--fa:"\f290"}.fa-arrow-down-z-a,.fa-sort-alpha-desc,.fa-sort-alpha-down-alt{--fa:"\f881"}.fa-mitten{--fa:"\f7b5"}.fa-person-rays{--fa:"\e54d"}.fa-users{--fa:"\f0c0"}.fa-eye-slash{--fa:"\f070"}.fa-flask-vial{--fa:"\e4f3"}.fa-hand,.fa-hand-paper{--fa:"\f256"}.fa-om{--fa:"\f679"}.fa-worm{--fa:"\e599"}.fa-house-circle-xmark{--fa:"\e50b"}.fa-plug{--fa:"\f1e6"}.fa-chevron-up{--fa:"\f077"}.fa-hand-spock{--fa:"\f259"}.fa-stopwatch{--fa:"\f2f2"}.fa-face-kiss,.fa-kiss{--fa:"\f596"}.fa-bridge-circle-xmark{--fa:"\e4cb"}.fa-face-grin-tongue,.fa-grin-tongue{--fa:"\f589"}.fa-chess-bishop{--fa:"\f43a"}.fa-face-grin-wink,.fa-grin-wink{--fa:"\f58c"}.fa-deaf,.fa-deafness,.fa-ear-deaf,.fa-hard-of-hearing{--fa:"\f2a4"}.fa-road-circle-check{--fa:"\e564"}.fa-dice-five{--fa:"\f523"}.fa-rss-square,.fa-square-rss{--fa:"\f143"}.fa-land-mine-on{--fa:"\e51b"}.fa-i-cursor{--fa:"\f246"}.fa-stamp{--fa:"\f5bf"}.fa-stairs{--fa:"\e289"}.fa-i{--fa:"\49"}.fa-hryvnia,.fa-hryvnia-sign{--fa:"\f6f2"}.fa-pills{--fa:"\f484"}.fa-face-grin-wide,.fa-grin-alt{--fa:"\f581"}.fa-tooth{--fa:"\f5c9"}.fa-v{--fa:"\56"}.fa-bangladeshi-taka-sign{--fa:"\e2e6"}.fa-bicycle{--fa:"\f206"}.fa-rod-asclepius,.fa-rod-snake,.fa-staff-aesculapius,.fa-staff-snake{--fa:"\e579"}.fa-head-side-cough-slash{--fa:"\e062"}.fa-ambulance,.fa-truck-medical{--fa:"\f0f9"}.fa-wheat-awn-circle-exclamation{--fa:"\e598"}.fa-snowman{--fa:"\f7d0"}.fa-mortar-pestle{--fa:"\f5a7"}.fa-road-barrier{--fa:"\e562"}.fa-school{--fa:"\f549"}.fa-igloo{--fa:"\f7ae"}.fa-joint{--fa:"\f595"}.fa-angle-right{--fa:"\f105"}.fa-horse{--fa:"\f6f0"}.fa-q{--fa:"\51"}.fa-g{--fa:"\47"}.fa-notes-medical{--fa:"\f481"}.fa-temperature-2,.fa-temperature-half,.fa-thermometer-2,.fa-thermometer-half{--fa:"\f2c9"}.fa-dong-sign{--fa:"\e169"}.fa-capsules{--fa:"\f46b"}.fa-poo-bolt,.fa-poo-storm{--fa:"\f75a"}.fa-face-frown-open,.fa-frown-open{--fa:"\f57a"}.fa-hand-point-up{--fa:"\f0a6"}.fa-money-bill{--fa:"\f0d6"}.fa-bookmark{--fa:"\f02e"}.fa-align-justify{--fa:"\f039"}.fa-umbrella-beach{--fa:"\f5ca"}.fa-helmet-un{--fa:"\e503"}.fa-bullseye{--fa:"\f140"}.fa-bacon{--fa:"\f7e5"}.fa-hand-point-down{--fa:"\f0a7"}.fa-arrow-up-from-bracket{--fa:"\e09a"}.fa-folder,.fa-folder-blank{--fa:"\f07b"}.fa-file-medical-alt,.fa-file-waveform{--fa:"\f478"}.fa-radiation{--fa:"\f7b9"}.fa-chart-simple{--fa:"\e473"}.fa-mars-stroke{--fa:"\f229"}.fa-vial{--fa:"\f492"}.fa-dashboard,.fa-gauge,.fa-gauge-med,.fa-tachometer-alt-average{--fa:"\f624"}.fa-magic-wand-sparkles,.fa-wand-magic-sparkles{--fa:"\e2ca"}.fa-e{--fa:"\45"}.fa-pen-alt,.fa-pen-clip{--fa:"\f305"}.fa-bridge-circle-exclamation{--fa:"\e4ca"}.fa-user{--fa:"\f007"}.fa-school-circle-check{--fa:"\e56b"}.fa-dumpster{--fa:"\f793"}.fa-shuttle-van,.fa-van-shuttle{--fa:"\f5b6"}.fa-building-user{--fa:"\e4da"}.fa-caret-square-left,.fa-square-caret-left{--fa:"\f191"}.fa-highlighter{--fa:"\f591"}.fa-key{--fa:"\f084"}.fa-bullhorn{--fa:"\f0a1"}.fa-globe{--fa:"\f0ac"}.fa-synagogue{--fa:"\f69b"}.fa-person-half-dress{--fa:"\e548"}.fa-road-bridge{--fa:"\e563"}.fa-location-arrow{--fa:"\f124"}.fa-c{--fa:"\43"}.fa-tablet-button{--fa:"\f10a"}.fa-building-lock{--fa:"\e4d6"}.fa-pizza-slice{--fa:"\f818"}.fa-money-bill-wave{--fa:"\f53a"}.fa-area-chart,.fa-chart-area{--fa:"\f1fe"}.fa-house-flag{--fa:"\e50d"}.fa-person-circle-minus{--fa:"\e540"}.fa-ban,.fa-cancel{--fa:"\f05e"}.fa-camera-rotate{--fa:"\e0d8"}.fa-air-freshener,.fa-spray-can-sparkles{--fa:"\f5d0"}.fa-star{--fa:"\f005"}.fa-repeat{--fa:"\f363"}.fa-cross{--fa:"\f654"}.fa-box{--fa:"\f466"}.fa-venus-mars{--fa:"\f228"}.fa-arrow-pointer,.fa-mouse-pointer{--fa:"\f245"}.fa-expand-arrows-alt,.fa-maximize{--fa:"\f31e"}.fa-charging-station{--fa:"\f5e7"}.fa-shapes,.fa-triangle-circle-square{--fa:"\f61f"}.fa-random,.fa-shuffle{--fa:"\f074"}.fa-person-running,.fa-running{--fa:"\f70c"}.fa-mobile-retro{--fa:"\e527"}.fa-grip-lines-vertical{--fa:"\f7a5"}.fa-spider{--fa:"\f717"}.fa-hands-bound{--fa:"\e4f9"}.fa-file-invoice-dollar{--fa:"\f571"}.fa-plane-circle-exclamation{--fa:"\e556"}.fa-x-ray{--fa:"\f497"}.fa-spell-check{--fa:"\f891"}.fa-slash{--fa:"\f715"}.fa-computer-mouse,.fa-mouse{--fa:"\f8cc"}.fa-arrow-right-to-bracket,.fa-sign-in{--fa:"\f090"}.fa-shop-slash,.fa-store-alt-slash{--fa:"\e070"}.fa-server{--fa:"\f233"}.fa-virus-covid-slash{--fa:"\e4a9"}.fa-shop-lock{--fa:"\e4a5"}.fa-hourglass-1,.fa-hourglass-start{--fa:"\f251"}.fa-blender-phone{--fa:"\f6b6"}.fa-building-wheat{--fa:"\e4db"}.fa-person-breastfeeding{--fa:"\e53a"}.fa-right-to-bracket,.fa-sign-in-alt{--fa:"\f2f6"}.fa-venus{--fa:"\f221"}.fa-passport{--fa:"\f5ab"}.fa-thumb-tack-slash,.fa-thumbtack-slash{--fa:"\e68f"}.fa-heart-pulse,.fa-heartbeat{--fa:"\f21e"}.fa-people-carry,.fa-people-carry-box{--fa:"\f4ce"}.fa-temperature-high{--fa:"\f769"}.fa-microchip{--fa:"\f2db"}.fa-crown{--fa:"\f521"}.fa-weight-hanging{--fa:"\f5cd"}.fa-xmarks-lines{--fa:"\e59a"}.fa-file-prescription{--fa:"\f572"}.fa-weight,.fa-weight-scale{--fa:"\f496"}.fa-user-friends,.fa-user-group{--fa:"\f500"}.fa-arrow-up-a-z,.fa-sort-alpha-up{--fa:"\f15e"}.fa-chess-knight{--fa:"\f441"}.fa-face-laugh-squint,.fa-laugh-squint{--fa:"\f59b"}.fa-wheelchair{--fa:"\f193"}.fa-arrow-circle-up,.fa-circle-arrow-up{--fa:"\f0aa"}.fa-toggle-on{--fa:"\f205"}.fa-person-walking,.fa-walking{--fa:"\f554"}.fa-l{--fa:"\4c"}.fa-fire{--fa:"\f06d"}.fa-bed-pulse,.fa-procedures{--fa:"\f487"}.fa-shuttle-space,.fa-space-shuttle{--fa:"\f197"}.fa-face-laugh,.fa-laugh{--fa:"\f599"}.fa-folder-open{--fa:"\f07c"}.fa-heart-circle-plus{--fa:"\e500"}.fa-code-fork{--fa:"\e13b"}.fa-city{--fa:"\f64f"}.fa-microphone-alt,.fa-microphone-lines{--fa:"\f3c9"}.fa-pepper-hot{--fa:"\f816"}.fa-unlock{--fa:"\f09c"}.fa-colon-sign{--fa:"\e140"}.fa-headset{--fa:"\f590"}.fa-store-slash{--fa:"\e071"}.fa-road-circle-xmark{--fa:"\e566"}.fa-user-minus{--fa:"\f503"}.fa-mars-stroke-up,.fa-mars-stroke-v{--fa:"\f22a"}.fa-champagne-glasses,.fa-glass-cheers{--fa:"\f79f"}.fa-clipboard{--fa:"\f328"}.fa-house-circle-exclamation{--fa:"\e50a"}.fa-file-arrow-up,.fa-file-upload{--fa:"\f574"}.fa-wifi,.fa-wifi-3,.fa-wifi-strong{--fa:"\f1eb"}.fa-bath,.fa-bathtub{--fa:"\f2cd"}.fa-underline{--fa:"\f0cd"}.fa-user-edit,.fa-user-pen{--fa:"\f4ff"}.fa-signature{--fa:"\f5b7"}.fa-stroopwafel{--fa:"\f551"}.fa-bold{--fa:"\f032"}.fa-anchor-lock{--fa:"\e4ad"}.fa-building-ngo{--fa:"\e4d7"}.fa-manat-sign{--fa:"\e1d5"}.fa-not-equal{--fa:"\f53e"}.fa-border-style,.fa-border-top-left{--fa:"\f853"}.fa-map-location-dot,.fa-map-marked-alt{--fa:"\f5a0"}.fa-jedi{--fa:"\f669"}.fa-poll,.fa-square-poll-vertical{--fa:"\f681"}.fa-mug-hot{--fa:"\f7b6"}.fa-battery-car,.fa-car-battery{--fa:"\f5df"}.fa-gift{--fa:"\f06b"}.fa-dice-two{--fa:"\f528"}.fa-chess-queen{--fa:"\f445"}.fa-glasses{--fa:"\f530"}.fa-chess-board{--fa:"\f43c"}.fa-building-circle-check{--fa:"\e4d2"}.fa-person-chalkboard{--fa:"\e53d"}.fa-mars-stroke-h,.fa-mars-stroke-right{--fa:"\f22b"}.fa-hand-back-fist,.fa-hand-rock{--fa:"\f255"}.fa-caret-square-up,.fa-square-caret-up{--fa:"\f151"}.fa-cloud-showers-water{--fa:"\e4e4"}.fa-bar-chart,.fa-chart-bar{--fa:"\f080"}.fa-hands-bubbles,.fa-hands-wash{--fa:"\e05e"}.fa-less-than-equal{--fa:"\f537"}.fa-train{--fa:"\f238"}.fa-eye-low-vision,.fa-low-vision{--fa:"\f2a8"}.fa-crow{--fa:"\f520"}.fa-sailboat{--fa:"\e445"}.fa-window-restore{--fa:"\f2d2"}.fa-plus-square,.fa-square-plus{--fa:"\f0fe"}.fa-torii-gate{--fa:"\f6a1"}.fa-frog{--fa:"\f52e"}.fa-bucket{--fa:"\e4cf"}.fa-image{--fa:"\f03e"}.fa-microphone{--fa:"\f130"}.fa-cow{--fa:"\f6c8"}.fa-caret-up{--fa:"\f0d8"}.fa-screwdriver{--fa:"\f54a"}.fa-folder-closed{--fa:"\e185"}.fa-house-tsunami{--fa:"\e515"}.fa-square-nfi{--fa:"\e576"}.fa-arrow-up-from-ground-water{--fa:"\e4b5"}.fa-glass-martini-alt,.fa-martini-glass{--fa:"\f57b"}.fa-square-binary{--fa:"\e69b"}.fa-rotate-back,.fa-rotate-backward,.fa-rotate-left,.fa-undo-alt{--fa:"\f2ea"}.fa-columns,.fa-table-columns{--fa:"\f0db"}.fa-lemon{--fa:"\f094"}.fa-head-side-mask{--fa:"\e063"}.fa-handshake{--fa:"\f2b5"}.fa-gem{--fa:"\f3a5"}.fa-dolly,.fa-dolly-box{--fa:"\f472"}.fa-smoking{--fa:"\f48d"}.fa-compress-arrows-alt,.fa-minimize{--fa:"\f78c"}.fa-monument{--fa:"\f5a6"}.fa-snowplow{--fa:"\f7d2"}.fa-angle-double-right,.fa-angles-right{--fa:"\f101"}.fa-cannabis{--fa:"\f55f"}.fa-circle-play,.fa-play-circle{--fa:"\f144"}.fa-tablets{--fa:"\f490"}.fa-ethernet{--fa:"\f796"}.fa-eur,.fa-euro,.fa-euro-sign{--fa:"\f153"}.fa-chair{--fa:"\f6c0"}.fa-check-circle,.fa-circle-check{--fa:"\f058"}.fa-circle-stop,.fa-stop-circle{--fa:"\f28d"}.fa-compass-drafting,.fa-drafting-compass{--fa:"\f568"}.fa-plate-wheat{--fa:"\e55a"}.fa-icicles{--fa:"\f7ad"}.fa-person-shelter{--fa:"\e54f"}.fa-neuter{--fa:"\f22c"}.fa-id-badge{--fa:"\f2c1"}.fa-marker{--fa:"\f5a1"}.fa-face-laugh-beam,.fa-laugh-beam{--fa:"\f59a"}.fa-helicopter-symbol{--fa:"\e502"}.fa-universal-access{--fa:"\f29a"}.fa-chevron-circle-up,.fa-circle-chevron-up{--fa:"\f139"}.fa-lari-sign{--fa:"\e1c8"}.fa-volcano{--fa:"\f770"}.fa-person-walking-dashed-line-arrow-right{--fa:"\e553"}.fa-gbp,.fa-pound-sign,.fa-sterling-sign{--fa:"\f154"}.fa-viruses{--fa:"\e076"}.fa-square-person-confined{--fa:"\e577"}.fa-user-tie{--fa:"\f508"}.fa-arrow-down-long,.fa-long-arrow-down{--fa:"\f175"}.fa-tent-arrow-down-to-line{--fa:"\e57e"}.fa-certificate{--fa:"\f0a3"}.fa-mail-reply-all,.fa-reply-all{--fa:"\f122"}.fa-suitcase{--fa:"\f0f2"}.fa-person-skating,.fa-skating{--fa:"\f7c5"}.fa-filter-circle-dollar,.fa-funnel-dollar{--fa:"\f662"}.fa-camera-retro{--fa:"\f083"}.fa-arrow-circle-down,.fa-circle-arrow-down{--fa:"\f0ab"}.fa-arrow-right-to-file,.fa-file-import{--fa:"\f56f"}.fa-external-link-square,.fa-square-arrow-up-right{--fa:"\f14c"}.fa-box-open{--fa:"\f49e"}.fa-scroll{--fa:"\f70e"}.fa-spa{--fa:"\f5bb"}.fa-location-pin-lock{--fa:"\e51f"}.fa-pause{--fa:"\f04c"}.fa-hill-avalanche{--fa:"\e507"}.fa-temperature-0,.fa-temperature-empty,.fa-thermometer-0,.fa-thermometer-empty{--fa:"\f2cb"}.fa-bomb{--fa:"\f1e2"}.fa-registered{--fa:"\f25d"}.fa-address-card,.fa-contact-card,.fa-vcard{--fa:"\f2bb"}.fa-balance-scale-right,.fa-scale-unbalanced-flip{--fa:"\f516"}.fa-subscript{--fa:"\f12c"}.fa-diamond-turn-right,.fa-directions{--fa:"\f5eb"}.fa-burst{--fa:"\e4dc"}.fa-house-laptop,.fa-laptop-house{--fa:"\e066"}.fa-face-tired,.fa-tired{--fa:"\f5c8"}.fa-money-bills{--fa:"\e1f3"}.fa-smog{--fa:"\f75f"}.fa-crutch{--fa:"\f7f7"}.fa-cloud-arrow-up,.fa-cloud-upload,.fa-cloud-upload-alt{--fa:"\f0ee"}.fa-palette{--fa:"\f53f"}.fa-arrows-turn-right{--fa:"\e4c0"}.fa-vest{--fa:"\e085"}.fa-ferry{--fa:"\e4ea"}.fa-arrows-down-to-people{--fa:"\e4b9"}.fa-seedling,.fa-sprout{--fa:"\f4d8"}.fa-arrows-alt-h,.fa-left-right{--fa:"\f337"}.fa-boxes-packing{--fa:"\e4c7"}.fa-arrow-circle-left,.fa-circle-arrow-left{--fa:"\f0a8"}.fa-group-arrows-rotate{--fa:"\e4f6"}.fa-bowl-food{--fa:"\e4c6"}.fa-candy-cane{--fa:"\f786"}.fa-arrow-down-wide-short,.fa-sort-amount-asc,.fa-sort-amount-down{--fa:"\f160"}.fa-cloud-bolt,.fa-thunderstorm{--fa:"\f76c"}.fa-remove-format,.fa-text-slash{--fa:"\f87d"}.fa-face-smile-wink,.fa-smile-wink{--fa:"\f4da"}.fa-file-word{--fa:"\f1c2"}.fa-file-powerpoint{--fa:"\f1c4"}.fa-arrows-h,.fa-arrows-left-right{--fa:"\f07e"}.fa-house-lock{--fa:"\e510"}.fa-cloud-arrow-down,.fa-cloud-download,.fa-cloud-download-alt{--fa:"\f0ed"}.fa-children{--fa:"\e4e1"}.fa-blackboard,.fa-chalkboard{--fa:"\f51b"}.fa-user-alt-slash,.fa-user-large-slash{--fa:"\f4fa"}.fa-envelope-open{--fa:"\f2b6"}.fa-handshake-alt-slash,.fa-handshake-simple-slash{--fa:"\e05f"}.fa-mattress-pillow{--fa:"\e525"}.fa-guarani-sign{--fa:"\e19a"}.fa-arrows-rotate,.fa-refresh,.fa-sync{--fa:"\f021"}.fa-fire-extinguisher{--fa:"\f134"}.fa-cruzeiro-sign{--fa:"\e152"}.fa-greater-than-equal{--fa:"\f532"}.fa-shield-alt,.fa-shield-halved{--fa:"\f3ed"}.fa-atlas,.fa-book-atlas{--fa:"\f558"}.fa-virus{--fa:"\e074"}.fa-envelope-circle-check{--fa:"\e4e8"}.fa-layer-group{--fa:"\f5fd"}.fa-arrows-to-dot{--fa:"\e4be"}.fa-archway{--fa:"\f557"}.fa-heart-circle-check{--fa:"\e4fd"}.fa-house-chimney-crack,.fa-house-damage{--fa:"\f6f1"}.fa-file-archive,.fa-file-zipper{--fa:"\f1c6"}.fa-square{--fa:"\f0c8"}.fa-glass-martini,.fa-martini-glass-empty{--fa:"\f000"}.fa-couch{--fa:"\f4b8"}.fa-cedi-sign{--fa:"\e0df"}.fa-italic{--fa:"\f033"}.fa-table-cells-column-lock{--fa:"\e678"}.fa-church{--fa:"\f51d"}.fa-comments-dollar{--fa:"\f653"}.fa-democrat{--fa:"\f747"}.fa-z{--fa:"\5a"}.fa-person-skiing,.fa-skiing{--fa:"\f7c9"}.fa-road-lock{--fa:"\e567"}.fa-a{--fa:"\41"}.fa-temperature-arrow-down,.fa-temperature-down{--fa:"\e03f"}.fa-feather-alt,.fa-feather-pointed{--fa:"\f56b"}.fa-p{--fa:"\50"}.fa-snowflake{--fa:"\f2dc"}.fa-newspaper{--fa:"\f1ea"}.fa-ad,.fa-rectangle-ad{--fa:"\f641"}.fa-arrow-circle-right,.fa-circle-arrow-right{--fa:"\f0a9"}.fa-filter-circle-xmark{--fa:"\e17b"}.fa-locust{--fa:"\e520"}.fa-sort,.fa-unsorted{--fa:"\f0dc"}.fa-list-1-2,.fa-list-numeric,.fa-list-ol{--fa:"\f0cb"}.fa-person-dress-burst{--fa:"\e544"}.fa-money-check-alt,.fa-money-check-dollar{--fa:"\f53d"}.fa-vector-square{--fa:"\f5cb"}.fa-bread-slice{--fa:"\f7ec"}.fa-language{--fa:"\f1ab"}.fa-face-kiss-wink-heart,.fa-kiss-wink-heart{--fa:"\f598"}.fa-filter{--fa:"\f0b0"}.fa-question{--fa:"\3f"}.fa-file-signature{--fa:"\f573"}.fa-arrows-alt,.fa-up-down-left-right{--fa:"\f0b2"}.fa-house-chimney-user{--fa:"\e065"}.fa-hand-holding-heart{--fa:"\f4be"}.fa-puzzle-piece{--fa:"\f12e"}.fa-money-check{--fa:"\f53c"}.fa-star-half-alt,.fa-star-half-stroke{--fa:"\f5c0"}.fa-code{--fa:"\f121"}.fa-glass-whiskey,.fa-whiskey-glass{--fa:"\f7a0"}.fa-building-circle-exclamation{--fa:"\e4d3"}.fa-magnifying-glass-chart{--fa:"\e522"}.fa-arrow-up-right-from-square,.fa-external-link{--fa:"\f08e"}.fa-cubes-stacked{--fa:"\e4e6"}.fa-krw,.fa-won,.fa-won-sign{--fa:"\f159"}.fa-virus-covid{--fa:"\e4a8"}.fa-austral-sign{--fa:"\e0a9"}.fa-f{--fa:"\46"}.fa-leaf{--fa:"\f06c"}.fa-road{--fa:"\f018"}.fa-cab,.fa-taxi{--fa:"\f1ba"}.fa-person-circle-plus{--fa:"\e541"}.fa-chart-pie,.fa-pie-chart{--fa:"\f200"}.fa-bolt-lightning{--fa:"\e0b7"}.fa-sack-xmark{--fa:"\e56a"}.fa-file-excel{--fa:"\f1c3"}.fa-file-contract{--fa:"\f56c"}.fa-fish-fins{--fa:"\e4f2"}.fa-building-flag{--fa:"\e4d5"}.fa-face-grin-beam,.fa-grin-beam{--fa:"\f582"}.fa-object-ungroup{--fa:"\f248"}.fa-poop{--fa:"\f619"}.fa-location-pin,.fa-map-marker{--fa:"\f041"}.fa-kaaba{--fa:"\f66b"}.fa-toilet-paper{--fa:"\f71e"}.fa-hard-hat,.fa-hat-hard,.fa-helmet-safety{--fa:"\f807"}.fa-eject{--fa:"\f052"}.fa-arrow-alt-circle-right,.fa-circle-right{--fa:"\f35a"}.fa-plane-circle-check{--fa:"\e555"}.fa-face-rolling-eyes,.fa-meh-rolling-eyes{--fa:"\f5a5"}.fa-object-group{--fa:"\f247"}.fa-chart-line,.fa-line-chart{--fa:"\f201"}.fa-mask-ventilator{--fa:"\e524"}.fa-arrow-right{--fa:"\f061"}.fa-map-signs,.fa-signs-post{--fa:"\f277"}.fa-cash-register{--fa:"\f788"}.fa-person-circle-question{--fa:"\e542"}.fa-h{--fa:"\48"}.fa-tarp{--fa:"\e57b"}.fa-screwdriver-wrench,.fa-tools{--fa:"\f7d9"}.fa-arrows-to-eye{--fa:"\e4bf"}.fa-plug-circle-bolt{--fa:"\e55b"}.fa-heart{--fa:"\f004"}.fa-mars-and-venus{--fa:"\f224"}.fa-home-user,.fa-house-user{--fa:"\e1b0"}.fa-dumpster-fire{--fa:"\f794"}.fa-house-crack{--fa:"\e3b1"}.fa-cocktail,.fa-martini-glass-citrus{--fa:"\f561"}.fa-face-surprise,.fa-surprise{--fa:"\f5c2"}.fa-bottle-water{--fa:"\e4c5"}.fa-circle-pause,.fa-pause-circle{--fa:"\f28b"}.fa-toilet-paper-slash{--fa:"\e072"}.fa-apple-alt,.fa-apple-whole{--fa:"\f5d1"}.fa-kitchen-set{--fa:"\e51a"}.fa-r{--fa:"\52"}.fa-temperature-1,.fa-temperature-quarter,.fa-thermometer-1,.fa-thermometer-quarter{--fa:"\f2ca"}.fa-cube{--fa:"\f1b2"}.fa-bitcoin-sign{--fa:"\e0b4"}.fa-shield-dog{--fa:"\e573"}.fa-solar-panel{--fa:"\f5ba"}.fa-lock-open{--fa:"\f3c1"}.fa-elevator{--fa:"\e16d"}.fa-money-bill-transfer{--fa:"\e528"}.fa-money-bill-trend-up{--fa:"\e529"}.fa-house-flood-water-circle-arrow-right{--fa:"\e50f"}.fa-poll-h,.fa-square-poll-horizontal{--fa:"\f682"}.fa-circle{--fa:"\f111"}.fa-backward-fast,.fa-fast-backward{--fa:"\f049"}.fa-recycle{--fa:"\f1b8"}.fa-user-astronaut{--fa:"\f4fb"}.fa-plane-slash{--fa:"\e069"}.fa-trademark{--fa:"\f25c"}.fa-basketball,.fa-basketball-ball{--fa:"\f434"}.fa-satellite-dish{--fa:"\f7c0"}.fa-arrow-alt-circle-up,.fa-circle-up{--fa:"\f35b"}.fa-mobile-alt,.fa-mobile-screen-button{--fa:"\f3cd"}.fa-volume-high,.fa-volume-up{--fa:"\f028"}.fa-users-rays{--fa:"\e593"}.fa-wallet{--fa:"\f555"}.fa-clipboard-check{--fa:"\f46c"}.fa-file-audio{--fa:"\f1c7"}.fa-burger,.fa-hamburger{--fa:"\f805"}.fa-wrench{--fa:"\f0ad"}.fa-bugs{--fa:"\e4d0"}.fa-rupee,.fa-rupee-sign{--fa:"\f156"}.fa-file-image{--fa:"\f1c5"}.fa-circle-question,.fa-question-circle{--fa:"\f059"}.fa-plane-departure{--fa:"\f5b0"}.fa-handshake-slash{--fa:"\e060"}.fa-book-bookmark{--fa:"\e0bb"}.fa-code-branch{--fa:"\f126"}.fa-hat-cowboy{--fa:"\f8c0"}.fa-bridge{--fa:"\e4c8"}.fa-phone-alt,.fa-phone-flip{--fa:"\f879"}.fa-truck-front{--fa:"\e2b7"}.fa-cat{--fa:"\f6be"}.fa-anchor-circle-exclamation{--fa:"\e4ab"}.fa-truck-field{--fa:"\e58d"}.fa-route{--fa:"\f4d7"}.fa-clipboard-question{--fa:"\e4e3"}.fa-panorama{--fa:"\e209"}.fa-comment-medical{--fa:"\f7f5"}.fa-teeth-open{--fa:"\f62f"}.fa-file-circle-minus{--fa:"\e4ed"}.fa-tags{--fa:"\f02c"}.fa-wine-glass{--fa:"\f4e3"}.fa-fast-forward,.fa-forward-fast{--fa:"\f050"}.fa-face-meh-blank,.fa-meh-blank{--fa:"\f5a4"}.fa-parking,.fa-square-parking{--fa:"\f540"}.fa-house-signal{--fa:"\e012"}.fa-bars-progress,.fa-tasks-alt{--fa:"\f828"}.fa-faucet-drip{--fa:"\e006"}.fa-cart-flatbed,.fa-dolly-flatbed{--fa:"\f474"}.fa-ban-smoking,.fa-smoking-ban{--fa:"\f54d"}.fa-terminal{--fa:"\f120"}.fa-mobile-button{--fa:"\f10b"}.fa-house-medical-flag{--fa:"\e514"}.fa-basket-shopping,.fa-shopping-basket{--fa:"\f291"}.fa-tape{--fa:"\f4db"}.fa-bus-alt,.fa-bus-simple{--fa:"\f55e"}.fa-eye{--fa:"\f06e"}.fa-face-sad-cry,.fa-sad-cry{--fa:"\f5b3"}.fa-audio-description{--fa:"\f29e"}.fa-person-military-to-person{--fa:"\e54c"}.fa-file-shield{--fa:"\e4f0"}.fa-user-slash{--fa:"\f506"}.fa-pen{--fa:"\f304"}.fa-tower-observation{--fa:"\e586"}.fa-file-code{--fa:"\f1c9"}.fa-signal,.fa-signal-5,.fa-signal-perfect{--fa:"\f012"}.fa-bus{--fa:"\f207"}.fa-heart-circle-xmark{--fa:"\e501"}.fa-home-lg,.fa-house-chimney{--fa:"\e3af"}.fa-window-maximize{--fa:"\f2d0"}.fa-face-frown,.fa-frown{--fa:"\f119"}.fa-prescription{--fa:"\f5b1"}.fa-shop,.fa-store-alt{--fa:"\f54f"}.fa-floppy-disk,.fa-save{--fa:"\f0c7"}.fa-vihara{--fa:"\f6a7"}.fa-balance-scale-left,.fa-scale-unbalanced{--fa:"\f515"}.fa-sort-asc,.fa-sort-up{--fa:"\f0de"}.fa-comment-dots,.fa-commenting{--fa:"\f4ad"}.fa-plant-wilt{--fa:"\e5aa"}.fa-diamond{--fa:"\f219"}.fa-face-grin-squint,.fa-grin-squint{--fa:"\f585"}.fa-hand-holding-dollar,.fa-hand-holding-usd{--fa:"\f4c0"}.fa-chart-diagram{--fa:"\e695"}.fa-bacterium{--fa:"\e05a"}.fa-hand-pointer{--fa:"\f25a"}.fa-drum-steelpan{--fa:"\f56a"}.fa-hand-scissors{--fa:"\f257"}.fa-hands-praying,.fa-praying-hands{--fa:"\f684"}.fa-arrow-right-rotate,.fa-arrow-rotate-forward,.fa-arrow-rotate-right,.fa-redo{--fa:"\f01e"}.fa-biohazard{--fa:"\f780"}.fa-location,.fa-location-crosshairs{--fa:"\f601"}.fa-mars-double{--fa:"\f227"}.fa-child-dress{--fa:"\e59c"}.fa-users-between-lines{--fa:"\e591"}.fa-lungs-virus{--fa:"\e067"}.fa-face-grin-tears,.fa-grin-tears{--fa:"\f588"}.fa-phone{--fa:"\f095"}.fa-calendar-times,.fa-calendar-xmark{--fa:"\f273"}.fa-child-reaching{--fa:"\e59d"}.fa-head-side-virus{--fa:"\e064"}.fa-user-cog,.fa-user-gear{--fa:"\f4fe"}.fa-arrow-up-1-9,.fa-sort-numeric-up{--fa:"\f163"}.fa-door-closed{--fa:"\f52a"}.fa-shield-virus{--fa:"\e06c"}.fa-dice-six{--fa:"\f526"}.fa-mosquito-net{--fa:"\e52c"}.fa-file-fragment{--fa:"\e697"}.fa-bridge-water{--fa:"\e4ce"}.fa-person-booth{--fa:"\f756"}.fa-text-width{--fa:"\f035"}.fa-hat-wizard{--fa:"\f6e8"}.fa-pen-fancy{--fa:"\f5ac"}.fa-digging,.fa-person-digging{--fa:"\f85e"}.fa-trash{--fa:"\f1f8"}.fa-gauge-simple,.fa-gauge-simple-med,.fa-tachometer-average{--fa:"\f629"}.fa-book-medical{--fa:"\f7e6"}.fa-poo{--fa:"\f2fe"}.fa-quote-right,.fa-quote-right-alt{--fa:"\f10e"}.fa-shirt,.fa-t-shirt,.fa-tshirt{--fa:"\f553"}.fa-cubes{--fa:"\f1b3"}.fa-divide{--fa:"\f529"}.fa-tenge,.fa-tenge-sign{--fa:"\f7d7"}.fa-headphones{--fa:"\f025"}.fa-hands-holding{--fa:"\f4c2"}.fa-hands-clapping{--fa:"\e1a8"}.fa-republican{--fa:"\f75e"}.fa-arrow-left{--fa:"\f060"}.fa-person-circle-xmark{--fa:"\e543"}.fa-ruler{--fa:"\f545"}.fa-align-left{--fa:"\f036"}.fa-dice-d6{--fa:"\f6d1"}.fa-restroom{--fa:"\f7bd"}.fa-j{--fa:"\4a"}.fa-users-viewfinder{--fa:"\e595"}.fa-file-video{--fa:"\f1c8"}.fa-external-link-alt,.fa-up-right-from-square{--fa:"\f35d"}.fa-table-cells,.fa-th{--fa:"\f00a"}.fa-file-pdf{--fa:"\f1c1"}.fa-bible,.fa-book-bible{--fa:"\f647"}.fa-o{--fa:"\4f"}.fa-medkit,.fa-suitcase-medical{--fa:"\f0fa"}.fa-user-secret{--fa:"\f21b"}.fa-otter{--fa:"\f700"}.fa-female,.fa-person-dress{--fa:"\f182"}.fa-comment-dollar{--fa:"\f651"}.fa-briefcase-clock,.fa-business-time{--fa:"\f64a"}.fa-table-cells-large,.fa-th-large{--fa:"\f009"}.fa-book-tanakh,.fa-tanakh{--fa:"\f827"}.fa-phone-volume,.fa-volume-control-phone{--fa:"\f2a0"}.fa-hat-cowboy-side{--fa:"\f8c1"}.fa-clipboard-user{--fa:"\f7f3"}.fa-child{--fa:"\f1ae"}.fa-lira-sign{--fa:"\f195"}.fa-satellite{--fa:"\f7bf"}.fa-plane-lock{--fa:"\e558"}.fa-tag{--fa:"\f02b"}.fa-comment{--fa:"\f075"}.fa-birthday-cake,.fa-cake,.fa-cake-candles{--fa:"\f1fd"}.fa-envelope{--fa:"\f0e0"}.fa-angle-double-up,.fa-angles-up{--fa:"\f102"}.fa-paperclip{--fa:"\f0c6"}.fa-arrow-right-to-city{--fa:"\e4b3"}.fa-ribbon{--fa:"\f4d6"}.fa-lungs{--fa:"\f604"}.fa-arrow-up-9-1,.fa-sort-numeric-up-alt{--fa:"\f887"}.fa-litecoin-sign{--fa:"\e1d3"}.fa-border-none{--fa:"\f850"}.fa-circle-nodes{--fa:"\e4e2"}.fa-parachute-box{--fa:"\f4cd"}.fa-indent{--fa:"\f03c"}.fa-truck-field-un{--fa:"\e58e"}.fa-hourglass,.fa-hourglass-empty{--fa:"\f254"}.fa-mountain{--fa:"\f6fc"}.fa-user-doctor,.fa-user-md{--fa:"\f0f0"}.fa-circle-info,.fa-info-circle{--fa:"\f05a"}.fa-cloud-meatball{--fa:"\f73b"}.fa-camera,.fa-camera-alt{--fa:"\f030"}.fa-square-virus{--fa:"\e578"}.fa-meteor{--fa:"\f753"}.fa-car-on{--fa:"\e4dd"}.fa-sleigh{--fa:"\f7cc"}.fa-arrow-down-1-9,.fa-sort-numeric-asc,.fa-sort-numeric-down{--fa:"\f162"}.fa-hand-holding-droplet,.fa-hand-holding-water{--fa:"\f4c1"}.fa-water{--fa:"\f773"}.fa-calendar-check{--fa:"\f274"}.fa-braille{--fa:"\f2a1"}.fa-prescription-bottle-alt,.fa-prescription-bottle-medical{--fa:"\f486"}.fa-landmark{--fa:"\f66f"}.fa-truck{--fa:"\f0d1"}.fa-crosshairs{--fa:"\f05b"}.fa-person-cane{--fa:"\e53c"}.fa-tent{--fa:"\e57d"}.fa-vest-patches{--fa:"\e086"}.fa-check-double{--fa:"\f560"}.fa-arrow-down-a-z,.fa-sort-alpha-asc,.fa-sort-alpha-down{--fa:"\f15d"}.fa-money-bill-wheat{--fa:"\e52a"}.fa-cookie{--fa:"\f563"}.fa-arrow-left-rotate,.fa-arrow-rotate-back,.fa-arrow-rotate-backward,.fa-arrow-rotate-left,.fa-undo{--fa:"\f0e2"}.fa-hard-drive,.fa-hdd{--fa:"\f0a0"}.fa-face-grin-squint-tears,.fa-grin-squint-tears{--fa:"\f586"}.fa-dumbbell{--fa:"\f44b"}.fa-list-alt,.fa-rectangle-list{--fa:"\f022"}.fa-tarp-droplet{--fa:"\e57c"}.fa-house-medical-circle-check{--fa:"\e511"}.fa-person-skiing-nordic,.fa-skiing-nordic{--fa:"\f7ca"}.fa-calendar-plus{--fa:"\f271"}.fa-plane-arrival{--fa:"\f5af"}.fa-arrow-alt-circle-left,.fa-circle-left{--fa:"\f359"}.fa-subway,.fa-train-subway{--fa:"\f239"}.fa-chart-gantt{--fa:"\e0e4"}.fa-indian-rupee,.fa-indian-rupee-sign,.fa-inr{--fa:"\e1bc"}.fa-crop-alt,.fa-crop-simple{--fa:"\f565"}.fa-money-bill-1,.fa-money-bill-alt{--fa:"\f3d1"}.fa-left-long,.fa-long-arrow-alt-left{--fa:"\f30a"}.fa-dna{--fa:"\f471"}.fa-virus-slash{--fa:"\e075"}.fa-minus,.fa-subtract{--fa:"\f068"}.fa-chess{--fa:"\f439"}.fa-arrow-left-long,.fa-long-arrow-left{--fa:"\f177"}.fa-plug-circle-check{--fa:"\e55c"}.fa-street-view{--fa:"\f21d"}.fa-franc-sign{--fa:"\e18f"}.fa-volume-off{--fa:"\f026"}.fa-american-sign-language-interpreting,.fa-asl-interpreting,.fa-hands-american-sign-language-interpreting,.fa-hands-asl-interpreting{--fa:"\f2a3"}.fa-cog,.fa-gear{--fa:"\f013"}.fa-droplet-slash,.fa-tint-slash{--fa:"\f5c7"}.fa-mosque{--fa:"\f678"}.fa-mosquito{--fa:"\e52b"}.fa-star-of-david{--fa:"\f69a"}.fa-person-military-rifle{--fa:"\e54b"}.fa-cart-shopping,.fa-shopping-cart{--fa:"\f07a"}.fa-vials{--fa:"\f493"}.fa-plug-circle-plus{--fa:"\e55f"}.fa-place-of-worship{--fa:"\f67f"}.fa-grip-vertical{--fa:"\f58e"}.fa-hexagon-nodes{--fa:"\e699"}.fa-arrow-turn-up,.fa-level-up{--fa:"\f148"}.fa-u{--fa:"\55"}.fa-square-root-alt,.fa-square-root-variable{--fa:"\f698"}.fa-clock,.fa-clock-four{--fa:"\f017"}.fa-backward-step,.fa-step-backward{--fa:"\f048"}.fa-pallet{--fa:"\f482"}.fa-faucet{--fa:"\e005"}.fa-baseball-bat-ball{--fa:"\f432"}.fa-s{--fa:"\53"}.fa-timeline{--fa:"\e29c"}.fa-keyboard{--fa:"\f11c"}.fa-caret-down{--fa:"\f0d7"}.fa-clinic-medical,.fa-house-chimney-medical{--fa:"\f7f2"}.fa-temperature-3,.fa-temperature-three-quarters,.fa-thermometer-3,.fa-thermometer-three-quarters{--fa:"\f2c8"}.fa-mobile-android-alt,.fa-mobile-screen{--fa:"\f3cf"}.fa-plane-up{--fa:"\e22d"}.fa-piggy-bank{--fa:"\f4d3"}.fa-battery-3,.fa-battery-half{--fa:"\f242"}.fa-mountain-city{--fa:"\e52e"}.fa-coins{--fa:"\f51e"}.fa-khanda{--fa:"\f66d"}.fa-sliders,.fa-sliders-h{--fa:"\f1de"}.fa-folder-tree{--fa:"\f802"}.fa-network-wired{--fa:"\f6ff"}.fa-map-pin{--fa:"\f276"}.fa-hamsa{--fa:"\f665"}.fa-cent-sign{--fa:"\e3f5"}.fa-flask{--fa:"\f0c3"}.fa-person-pregnant{--fa:"\e31e"}.fa-wand-sparkles{--fa:"\f72b"}.fa-ellipsis-v,.fa-ellipsis-vertical{--fa:"\f142"}.fa-ticket{--fa:"\f145"}.fa-power-off{--fa:"\f011"}.fa-long-arrow-alt-right,.fa-right-long{--fa:"\f30b"}.fa-flag-usa{--fa:"\f74d"}.fa-laptop-file{--fa:"\e51d"}.fa-teletype,.fa-tty{--fa:"\f1e4"}.fa-diagram-next{--fa:"\e476"}.fa-person-rifle{--fa:"\e54e"}.fa-house-medical-circle-exclamation{--fa:"\e512"}.fa-closed-captioning{--fa:"\f20a"}.fa-hiking,.fa-person-hiking{--fa:"\f6ec"}.fa-venus-double{--fa:"\f226"}.fa-images{--fa:"\f302"}.fa-calculator{--fa:"\f1ec"}.fa-people-pulling{--fa:"\e535"}.fa-n{--fa:"\4e"}.fa-cable-car,.fa-tram{--fa:"\f7da"}.fa-cloud-rain{--fa:"\f73d"}.fa-building-circle-xmark{--fa:"\e4d4"}.fa-ship{--fa:"\f21a"}.fa-arrows-down-to-line{--fa:"\e4b8"}.fa-download{--fa:"\f019"}.fa-face-grin,.fa-grin{--fa:"\f580"}.fa-backspace,.fa-delete-left{--fa:"\f55a"}.fa-eye-dropper,.fa-eye-dropper-empty,.fa-eyedropper{--fa:"\f1fb"}.fa-file-circle-check{--fa:"\e5a0"}.fa-forward{--fa:"\f04e"}.fa-mobile,.fa-mobile-android,.fa-mobile-phone{--fa:"\f3ce"}.fa-face-meh,.fa-meh{--fa:"\f11a"}.fa-align-center{--fa:"\f037"}.fa-book-dead,.fa-book-skull{--fa:"\f6b7"}.fa-drivers-license,.fa-id-card{--fa:"\f2c2"}.fa-dedent,.fa-outdent{--fa:"\f03b"}.fa-heart-circle-exclamation{--fa:"\e4fe"}.fa-home,.fa-home-alt,.fa-home-lg-alt,.fa-house{--fa:"\f015"}.fa-calendar-week{--fa:"\f784"}.fa-laptop-medical{--fa:"\f812"}.fa-b{--fa:"\42"}.fa-file-medical{--fa:"\f477"}.fa-dice-one{--fa:"\f525"}.fa-kiwi-bird{--fa:"\f535"}.fa-arrow-right-arrow-left,.fa-exchange{--fa:"\f0ec"}.fa-redo-alt,.fa-rotate-forward,.fa-rotate-right{--fa:"\f2f9"}.fa-cutlery,.fa-utensils{--fa:"\f2e7"}.fa-arrow-up-wide-short,.fa-sort-amount-up{--fa:"\f161"}.fa-mill-sign{--fa:"\e1ed"}.fa-bowl-rice{--fa:"\e2eb"}.fa-skull{--fa:"\f54c"}.fa-broadcast-tower,.fa-tower-broadcast{--fa:"\f519"}.fa-truck-pickup{--fa:"\f63c"}.fa-long-arrow-alt-up,.fa-up-long{--fa:"\f30c"}.fa-stop{--fa:"\f04d"}.fa-code-merge{--fa:"\f387"}.fa-upload{--fa:"\f093"}.fa-hurricane{--fa:"\f751"}.fa-mound{--fa:"\e52d"}.fa-toilet-portable{--fa:"\e583"}.fa-compact-disc{--fa:"\f51f"}.fa-file-arrow-down,.fa-file-download{--fa:"\f56d"}.fa-caravan{--fa:"\f8ff"}.fa-shield-cat{--fa:"\e572"}.fa-bolt,.fa-zap{--fa:"\f0e7"}.fa-glass-water{--fa:"\e4f4"}.fa-oil-well{--fa:"\e532"}.fa-vault{--fa:"\e2c5"}.fa-mars{--fa:"\f222"}.fa-toilet{--fa:"\f7d8"}.fa-plane-circle-xmark{--fa:"\e557"}.fa-cny,.fa-jpy,.fa-rmb,.fa-yen,.fa-yen-sign{--fa:"\f157"}.fa-rouble,.fa-rub,.fa-ruble,.fa-ruble-sign{--fa:"\f158"}.fa-sun{--fa:"\f185"}.fa-guitar{--fa:"\f7a6"}.fa-face-laugh-wink,.fa-laugh-wink{--fa:"\f59c"}.fa-horse-head{--fa:"\f7ab"}.fa-bore-hole{--fa:"\e4c3"}.fa-industry{--fa:"\f275"}.fa-arrow-alt-circle-down,.fa-circle-down{--fa:"\f358"}.fa-arrows-turn-to-dots{--fa:"\e4c1"}.fa-florin-sign{--fa:"\e184"}.fa-arrow-down-short-wide,.fa-sort-amount-desc,.fa-sort-amount-down-alt{--fa:"\f884"}.fa-less-than{--fa:"\3c"}.fa-angle-down{--fa:"\f107"}.fa-car-tunnel{--fa:"\e4de"}.fa-head-side-cough{--fa:"\e061"}.fa-grip-lines{--fa:"\f7a4"}.fa-thumbs-down{--fa:"\f165"}.fa-user-lock{--fa:"\f502"}.fa-arrow-right-long,.fa-long-arrow-right{--fa:"\f178"}.fa-anchor-circle-xmark{--fa:"\e4ac"}.fa-ellipsis,.fa-ellipsis-h{--fa:"\f141"}.fa-chess-pawn{--fa:"\f443"}.fa-first-aid,.fa-kit-medical{--fa:"\f479"}.fa-person-through-window{--fa:"\e5a9"}.fa-toolbox{--fa:"\f552"}.fa-hands-holding-circle{--fa:"\e4fb"}.fa-bug{--fa:"\f188"}.fa-credit-card,.fa-credit-card-alt{--fa:"\f09d"}.fa-automobile,.fa-car{--fa:"\f1b9"}.fa-hand-holding-hand{--fa:"\e4f7"}.fa-book-open-reader,.fa-book-reader{--fa:"\f5da"}.fa-mountain-sun{--fa:"\e52f"}.fa-arrows-left-right-to-line{--fa:"\e4ba"}.fa-dice-d20{--fa:"\f6cf"}.fa-truck-droplet{--fa:"\e58c"}.fa-file-circle-xmark{--fa:"\e5a1"}.fa-temperature-arrow-up,.fa-temperature-up{--fa:"\e040"}.fa-medal{--fa:"\f5a2"}.fa-bed{--fa:"\f236"}.fa-h-square,.fa-square-h{--fa:"\f0fd"}.fa-podcast{--fa:"\f2ce"}.fa-temperature-4,.fa-temperature-full,.fa-thermometer-4,.fa-thermometer-full{--fa:"\f2c7"}.fa-bell{--fa:"\f0f3"}.fa-superscript{--fa:"\f12b"}.fa-plug-circle-xmark{--fa:"\e560"}.fa-star-of-life{--fa:"\f621"}.fa-phone-slash{--fa:"\f3dd"}.fa-paint-roller{--fa:"\f5aa"}.fa-hands-helping,.fa-handshake-angle{--fa:"\f4c4"}.fa-location-dot,.fa-map-marker-alt{--fa:"\f3c5"}.fa-file{--fa:"\f15b"}.fa-greater-than{--fa:"\3e"}.fa-person-swimming,.fa-swimmer{--fa:"\f5c4"}.fa-arrow-down{--fa:"\f063"}.fa-droplet,.fa-tint{--fa:"\f043"}.fa-eraser{--fa:"\f12d"}.fa-earth,.fa-earth-america,.fa-earth-americas,.fa-globe-americas{--fa:"\f57d"}.fa-person-burst{--fa:"\e53b"}.fa-dove{--fa:"\f4ba"}.fa-battery-0,.fa-battery-empty{--fa:"\f244"}.fa-socks{--fa:"\f696"}.fa-inbox{--fa:"\f01c"}.fa-section{--fa:"\e447"}.fa-gauge-high,.fa-tachometer-alt,.fa-tachometer-alt-fast{--fa:"\f625"}.fa-envelope-open-text{--fa:"\f658"}.fa-hospital,.fa-hospital-alt,.fa-hospital-wide{--fa:"\f0f8"}.fa-wine-bottle{--fa:"\f72f"}.fa-chess-rook{--fa:"\f447"}.fa-bars-staggered,.fa-reorder,.fa-stream{--fa:"\f550"}.fa-dharmachakra{--fa:"\f655"}.fa-hotdog{--fa:"\f80f"}.fa-blind,.fa-person-walking-with-cane{--fa:"\f29d"}.fa-drum{--fa:"\f569"}.fa-ice-cream{--fa:"\f810"}.fa-heart-circle-bolt{--fa:"\e4fc"}.fa-fax{--fa:"\f1ac"}.fa-paragraph{--fa:"\f1dd"}.fa-check-to-slot,.fa-vote-yea{--fa:"\f772"}.fa-star-half{--fa:"\f089"}.fa-boxes,.fa-boxes-alt,.fa-boxes-stacked{--fa:"\f468"}.fa-chain,.fa-link{--fa:"\f0c1"}.fa-assistive-listening-systems,.fa-ear-listen{--fa:"\f2a2"}.fa-tree-city{--fa:"\e587"}.fa-play{--fa:"\f04b"}.fa-font{--fa:"\f031"}.fa-table-cells-row-lock{--fa:"\e67a"}.fa-rupiah-sign{--fa:"\e23d"}.fa-magnifying-glass,.fa-search{--fa:"\f002"}.fa-ping-pong-paddle-ball,.fa-table-tennis,.fa-table-tennis-paddle-ball{--fa:"\f45d"}.fa-diagnoses,.fa-person-dots-from-line{--fa:"\f470"}.fa-trash-can-arrow-up,.fa-trash-restore-alt{--fa:"\f82a"}.fa-naira-sign{--fa:"\e1f6"}.fa-cart-arrow-down{--fa:"\f218"}.fa-walkie-talkie{--fa:"\f8ef"}.fa-file-edit,.fa-file-pen{--fa:"\f31c"}.fa-receipt{--fa:"\f543"}.fa-pen-square,.fa-pencil-square,.fa-square-pen{--fa:"\f14b"}.fa-suitcase-rolling{--fa:"\f5c1"}.fa-person-circle-exclamation{--fa:"\e53f"}.fa-chevron-down{--fa:"\f078"}.fa-battery,.fa-battery-5,.fa-battery-full{--fa:"\f240"}.fa-skull-crossbones{--fa:"\f714"}.fa-code-compare{--fa:"\e13a"}.fa-list-dots,.fa-list-ul{--fa:"\f0ca"}.fa-school-lock{--fa:"\e56f"}.fa-tower-cell{--fa:"\e585"}.fa-down-long,.fa-long-arrow-alt-down{--fa:"\f309"}.fa-ranking-star{--fa:"\e561"}.fa-chess-king{--fa:"\f43f"}.fa-person-harassing{--fa:"\e549"}.fa-brazilian-real-sign{--fa:"\e46c"}.fa-landmark-alt,.fa-landmark-dome{--fa:"\f752"}.fa-arrow-up{--fa:"\f062"}.fa-television,.fa-tv,.fa-tv-alt{--fa:"\f26c"}.fa-shrimp{--fa:"\e448"}.fa-list-check,.fa-tasks{--fa:"\f0ae"}.fa-jug-detergent{--fa:"\e519"}.fa-circle-user,.fa-user-circle{--fa:"\f2bd"}.fa-user-shield{--fa:"\f505"}.fa-wind{--fa:"\f72e"}.fa-car-burst,.fa-car-crash{--fa:"\f5e1"}.fa-y{--fa:"\59"}.fa-person-snowboarding,.fa-snowboarding{--fa:"\f7ce"}.fa-shipping-fast,.fa-truck-fast{--fa:"\f48b"}.fa-fish{--fa:"\f578"}.fa-user-graduate{--fa:"\f501"}.fa-adjust,.fa-circle-half-stroke{--fa:"\f042"}.fa-clapperboard{--fa:"\e131"}.fa-circle-radiation,.fa-radiation-alt{--fa:"\f7ba"}.fa-baseball,.fa-baseball-ball{--fa:"\f433"}.fa-jet-fighter-up{--fa:"\e518"}.fa-diagram-project,.fa-project-diagram{--fa:"\f542"}.fa-copy{--fa:"\f0c5"}.fa-volume-mute,.fa-volume-times,.fa-volume-xmark{--fa:"\f6a9"}.fa-hand-sparkles{--fa:"\e05d"}.fa-grip,.fa-grip-horizontal{--fa:"\f58d"}.fa-share-from-square,.fa-share-square{--fa:"\f14d"}.fa-child-combatant,.fa-child-rifle{--fa:"\e4e0"}.fa-gun{--fa:"\e19b"}.fa-phone-square,.fa-square-phone{--fa:"\f098"}.fa-add,.fa-plus{--fa:"\2b"}.fa-expand{--fa:"\f065"}.fa-computer{--fa:"\e4e5"}.fa-close,.fa-multiply,.fa-remove,.fa-times,.fa-xmark{--fa:"\f00d"}.fa-arrows,.fa-arrows-up-down-left-right{--fa:"\f047"}.fa-chalkboard-teacher,.fa-chalkboard-user{--fa:"\f51c"}.fa-peso-sign{--fa:"\e222"}.fa-building-shield{--fa:"\e4d8"}.fa-baby{--fa:"\f77c"}.fa-users-line{--fa:"\e592"}.fa-quote-left,.fa-quote-left-alt{--fa:"\f10d"}.fa-tractor{--fa:"\f722"}.fa-trash-arrow-up,.fa-trash-restore{--fa:"\f829"}.fa-arrow-down-up-lock{--fa:"\e4b0"}.fa-lines-leaning{--fa:"\e51e"}.fa-ruler-combined{--fa:"\f546"}.fa-copyright{--fa:"\f1f9"}.fa-equals{--fa:"\3d"}.fa-blender{--fa:"\f517"}.fa-teeth{--fa:"\f62e"}.fa-ils,.fa-shekel,.fa-shekel-sign,.fa-sheqel,.fa-sheqel-sign{--fa:"\f20b"}.fa-map{--fa:"\f279"}.fa-rocket{--fa:"\f135"}.fa-photo-film,.fa-photo-video{--fa:"\f87c"}.fa-folder-minus{--fa:"\f65d"}.fa-hexagon-nodes-bolt{--fa:"\e69a"}.fa-store{--fa:"\f54e"}.fa-arrow-trend-up{--fa:"\e098"}.fa-plug-circle-minus{--fa:"\e55e"}.fa-sign,.fa-sign-hanging{--fa:"\f4d9"}.fa-bezier-curve{--fa:"\f55b"}.fa-bell-slash{--fa:"\f1f6"}.fa-tablet,.fa-tablet-android{--fa:"\f3fb"}.fa-school-flag{--fa:"\e56e"}.fa-fill{--fa:"\f575"}.fa-angle-up{--fa:"\f106"}.fa-drumstick-bite{--fa:"\f6d7"}.fa-holly-berry{--fa:"\f7aa"}.fa-chevron-left{--fa:"\f053"}.fa-bacteria{--fa:"\e059"}.fa-hand-lizard{--fa:"\f258"}.fa-notdef{--fa:"\e1fe"}.fa-disease{--fa:"\f7fa"}.fa-briefcase-medical{--fa:"\f469"}.fa-genderless{--fa:"\f22d"}.fa-chevron-right{--fa:"\f054"}.fa-retweet{--fa:"\f079"}.fa-car-alt,.fa-car-rear{--fa:"\f5de"}.fa-pump-soap{--fa:"\e06b"}.fa-video-slash{--fa:"\f4e2"}.fa-battery-2,.fa-battery-quarter{--fa:"\f243"}.fa-radio{--fa:"\f8d7"}.fa-baby-carriage,.fa-carriage-baby{--fa:"\f77d"}.fa-traffic-light{--fa:"\f637"}.fa-thermometer{--fa:"\f491"}.fa-vr-cardboard{--fa:"\f729"}.fa-hand-middle-finger{--fa:"\f806"}.fa-percent,.fa-percentage{--fa:"\25"}.fa-truck-moving{--fa:"\f4df"}.fa-glass-water-droplet{--fa:"\e4f5"}.fa-display{--fa:"\e163"}.fa-face-smile,.fa-smile{--fa:"\f118"}.fa-thumb-tack,.fa-thumbtack{--fa:"\f08d"}.fa-trophy{--fa:"\f091"}.fa-person-praying,.fa-pray{--fa:"\f683"}.fa-hammer{--fa:"\f6e3"}.fa-hand-peace{--fa:"\f25b"}.fa-rotate,.fa-sync-alt{--fa:"\f2f1"}.fa-spinner{--fa:"\f110"}.fa-robot{--fa:"\f544"}.fa-peace{--fa:"\f67c"}.fa-cogs,.fa-gears{--fa:"\f085"}.fa-warehouse{--fa:"\f494"}.fa-arrow-up-right-dots{--fa:"\e4b7"}.fa-splotch{--fa:"\f5bc"}.fa-face-grin-hearts,.fa-grin-hearts{--fa:"\f584"}.fa-dice-four{--fa:"\f524"}.fa-sim-card{--fa:"\f7c4"}.fa-transgender,.fa-transgender-alt{--fa:"\f225"}.fa-mercury{--fa:"\f223"}.fa-arrow-turn-down,.fa-level-down{--fa:"\f149"}.fa-person-falling-burst{--fa:"\e547"}.fa-award{--fa:"\f559"}.fa-ticket-alt,.fa-ticket-simple{--fa:"\f3ff"}.fa-building{--fa:"\f1ad"}.fa-angle-double-left,.fa-angles-left{--fa:"\f100"}.fa-qrcode{--fa:"\f029"}.fa-clock-rotate-left,.fa-history{--fa:"\f1da"}.fa-face-grin-beam-sweat,.fa-grin-beam-sweat{--fa:"\f583"}.fa-arrow-right-from-file,.fa-file-export{--fa:"\f56e"}.fa-shield,.fa-shield-blank{--fa:"\f132"}.fa-arrow-up-short-wide,.fa-sort-amount-up-alt{--fa:"\f885"}.fa-comment-nodes{--fa:"\e696"}.fa-house-medical{--fa:"\e3b2"}.fa-golf-ball,.fa-golf-ball-tee{--fa:"\f450"}.fa-chevron-circle-left,.fa-circle-chevron-left{--fa:"\f137"}.fa-house-chimney-window{--fa:"\e00d"}.fa-pen-nib{--fa:"\f5ad"}.fa-tent-arrow-turn-left{--fa:"\e580"}.fa-tents{--fa:"\e582"}.fa-magic,.fa-wand-magic{--fa:"\f0d0"}.fa-dog{--fa:"\f6d3"}.fa-carrot{--fa:"\f787"}.fa-moon{--fa:"\f186"}.fa-wine-glass-alt,.fa-wine-glass-empty{--fa:"\f5ce"}.fa-cheese{--fa:"\f7ef"}.fa-yin-yang{--fa:"\f6ad"}.fa-music{--fa:"\f001"}.fa-code-commit{--fa:"\f386"}.fa-temperature-low{--fa:"\f76b"}.fa-biking,.fa-person-biking{--fa:"\f84a"}.fa-broom{--fa:"\f51a"}.fa-shield-heart{--fa:"\e574"}.fa-gopuram{--fa:"\f664"}.fa-earth-oceania,.fa-globe-oceania{--fa:"\e47b"}.fa-square-xmark,.fa-times-square,.fa-xmark-square{--fa:"\f2d3"}.fa-hashtag{--fa:"\23"}.fa-expand-alt,.fa-up-right-and-down-left-from-center{--fa:"\f424"}.fa-oil-can{--fa:"\f613"}.fa-t{--fa:"\54"}.fa-hippo{--fa:"\f6ed"}.fa-chart-column{--fa:"\e0e3"}.fa-infinity{--fa:"\f534"}.fa-vial-circle-check{--fa:"\e596"}.fa-person-arrow-down-to-line{--fa:"\e538"}.fa-voicemail{--fa:"\f897"}.fa-fan{--fa:"\f863"}.fa-person-walking-luggage{--fa:"\e554"}.fa-arrows-alt-v,.fa-up-down{--fa:"\f338"}.fa-cloud-moon-rain{--fa:"\f73c"}.fa-calendar{--fa:"\f133"}.fa-trailer{--fa:"\e041"}.fa-bahai,.fa-haykal{--fa:"\f666"}.fa-sd-card{--fa:"\f7c2"}.fa-dragon{--fa:"\f6d5"}.fa-shoe-prints{--fa:"\f54b"}.fa-circle-plus,.fa-plus-circle{--fa:"\f055"}.fa-face-grin-tongue-wink,.fa-grin-tongue-wink{--fa:"\f58b"}.fa-hand-holding{--fa:"\f4bd"}.fa-plug-circle-exclamation{--fa:"\e55d"}.fa-chain-broken,.fa-chain-slash,.fa-link-slash,.fa-unlink{--fa:"\f127"}.fa-clone{--fa:"\f24d"}.fa-person-walking-arrow-loop-left{--fa:"\e551"}.fa-arrow-up-z-a,.fa-sort-alpha-up-alt{--fa:"\f882"}.fa-fire-alt,.fa-fire-flame-curved{--fa:"\f7e4"}.fa-tornado{--fa:"\f76f"}.fa-file-circle-plus{--fa:"\e494"}.fa-book-quran,.fa-quran{--fa:"\f687"}.fa-anchor{--fa:"\f13d"}.fa-border-all{--fa:"\f84c"}.fa-angry,.fa-face-angry{--fa:"\f556"}.fa-cookie-bite{--fa:"\f564"}.fa-arrow-trend-down{--fa:"\e097"}.fa-feed,.fa-rss{--fa:"\f09e"}.fa-draw-polygon{--fa:"\f5ee"}.fa-balance-scale,.fa-scale-balanced{--fa:"\f24e"}.fa-gauge-simple-high,.fa-tachometer,.fa-tachometer-fast{--fa:"\f62a"}.fa-shower{--fa:"\f2cc"}.fa-desktop,.fa-desktop-alt{--fa:"\f390"}.fa-m{--fa:"\4d"}.fa-table-list,.fa-th-list{--fa:"\f00b"}.fa-comment-sms,.fa-sms{--fa:"\f7cd"}.fa-book{--fa:"\f02d"}.fa-user-plus{--fa:"\f234"}.fa-check{--fa:"\f00c"}.fa-battery-4,.fa-battery-three-quarters{--fa:"\f241"}.fa-house-circle-check{--fa:"\e509"}.fa-angle-left{--fa:"\f104"}.fa-diagram-successor{--fa:"\e47a"}.fa-truck-arrow-right{--fa:"\e58b"}.fa-arrows-split-up-and-left{--fa:"\e4bc"}.fa-fist-raised,.fa-hand-fist{--fa:"\f6de"}.fa-cloud-moon{--fa:"\f6c3"}.fa-briefcase{--fa:"\f0b1"}.fa-person-falling{--fa:"\e546"}.fa-image-portrait,.fa-portrait{--fa:"\f3e0"}.fa-user-tag{--fa:"\f507"}.fa-rug{--fa:"\e569"}.fa-earth-europe,.fa-globe-europe{--fa:"\f7a2"}.fa-cart-flatbed-suitcase,.fa-luggage-cart{--fa:"\f59d"}.fa-rectangle-times,.fa-rectangle-xmark,.fa-times-rectangle,.fa-window-close{--fa:"\f410"}.fa-baht-sign{--fa:"\e0ac"}.fa-book-open{--fa:"\f518"}.fa-book-journal-whills,.fa-journal-whills{--fa:"\f66a"}.fa-handcuffs{--fa:"\e4f8"}.fa-exclamation-triangle,.fa-triangle-exclamation,.fa-warning{--fa:"\f071"}.fa-database{--fa:"\f1c0"}.fa-mail-forward,.fa-share{--fa:"\f064"}.fa-bottle-droplet{--fa:"\e4c4"}.fa-mask-face{--fa:"\e1d7"}.fa-hill-rockslide{--fa:"\e508"}.fa-exchange-alt,.fa-right-left{--fa:"\f362"}.fa-paper-plane{--fa:"\f1d8"}.fa-road-circle-exclamation{--fa:"\e565"}.fa-dungeon{--fa:"\f6d9"}.fa-align-right{--fa:"\f038"}.fa-money-bill-1-wave,.fa-money-bill-wave-alt{--fa:"\f53b"}.fa-life-ring{--fa:"\f1cd"}.fa-hands,.fa-sign-language,.fa-signing{--fa:"\f2a7"}.fa-calendar-day{--fa:"\f783"}.fa-ladder-water,.fa-swimming-pool,.fa-water-ladder{--fa:"\f5c5"}.fa-arrows-up-down,.fa-arrows-v{--fa:"\f07d"}.fa-face-grimace,.fa-grimace{--fa:"\f57f"}.fa-wheelchair-alt,.fa-wheelchair-move{--fa:"\e2ce"}.fa-level-down-alt,.fa-turn-down{--fa:"\f3be"}.fa-person-walking-arrow-right{--fa:"\e552"}.fa-envelope-square,.fa-square-envelope{--fa:"\f199"}.fa-dice{--fa:"\f522"}.fa-bowling-ball{--fa:"\f436"}.fa-brain{--fa:"\f5dc"}.fa-band-aid,.fa-bandage{--fa:"\f462"}.fa-calendar-minus{--fa:"\f272"}.fa-circle-xmark,.fa-times-circle,.fa-xmark-circle{--fa:"\f057"}.fa-gifts{--fa:"\f79c"}.fa-hotel{--fa:"\f594"}.fa-earth-asia,.fa-globe-asia{--fa:"\f57e"}.fa-id-card-alt,.fa-id-card-clip{--fa:"\f47f"}.fa-magnifying-glass-plus,.fa-search-plus{--fa:"\f00e"}.fa-thumbs-up{--fa:"\f164"}.fa-user-clock{--fa:"\f4fd"}.fa-allergies,.fa-hand-dots{--fa:"\f461"}.fa-file-invoice{--fa:"\f570"}.fa-window-minimize{--fa:"\f2d1"}.fa-coffee,.fa-mug-saucer{--fa:"\f0f4"}.fa-brush{--fa:"\f55d"}.fa-file-half-dashed{--fa:"\e698"}.fa-mask{--fa:"\f6fa"}.fa-magnifying-glass-minus,.fa-search-minus{--fa:"\f010"}.fa-ruler-vertical{--fa:"\f548"}.fa-user-alt,.fa-user-large{--fa:"\f406"}.fa-train-tram{--fa:"\e5b4"}.fa-user-nurse{--fa:"\f82f"}.fa-syringe{--fa:"\f48e"}.fa-cloud-sun{--fa:"\f6c4"}.fa-stopwatch-20{--fa:"\e06f"}.fa-square-full{--fa:"\f45c"}.fa-magnet{--fa:"\f076"}.fa-jar{--fa:"\e516"}.fa-note-sticky,.fa-sticky-note{--fa:"\f249"}.fa-bug-slash{--fa:"\e490"}.fa-arrow-up-from-water-pump{--fa:"\e4b6"}.fa-bone{--fa:"\f5d7"}.fa-table-cells-row-unlock{--fa:"\e691"}.fa-user-injured{--fa:"\f728"}.fa-face-sad-tear,.fa-sad-tear{--fa:"\f5b4"}.fa-plane{--fa:"\f072"}.fa-tent-arrows-down{--fa:"\e581"}.fa-exclamation{--fa:"\21"}.fa-arrows-spin{--fa:"\e4bb"}.fa-print{--fa:"\f02f"}.fa-try,.fa-turkish-lira,.fa-turkish-lira-sign{--fa:"\e2bb"}.fa-dollar,.fa-dollar-sign,.fa-usd{--fa:"\24"}.fa-x{--fa:"\58"}.fa-magnifying-glass-dollar,.fa-search-dollar{--fa:"\f688"}.fa-users-cog,.fa-users-gear{--fa:"\f509"}.fa-person-military-pointing{--fa:"\e54a"}.fa-bank,.fa-building-columns,.fa-institution,.fa-museum,.fa-university{--fa:"\f19c"}.fa-umbrella{--fa:"\f0e9"}.fa-trowel{--fa:"\e589"}.fa-d{--fa:"\44"}.fa-stapler{--fa:"\e5af"}.fa-masks-theater,.fa-theater-masks{--fa:"\f630"}.fa-kip-sign{--fa:"\e1c4"}.fa-hand-point-left{--fa:"\f0a5"}.fa-handshake-alt,.fa-handshake-simple{--fa:"\f4c6"}.fa-fighter-jet,.fa-jet-fighter{--fa:"\f0fb"}.fa-share-alt-square,.fa-square-share-nodes{--fa:"\f1e1"}.fa-barcode{--fa:"\f02a"}.fa-plus-minus{--fa:"\e43c"}.fa-video,.fa-video-camera{--fa:"\f03d"}.fa-graduation-cap,.fa-mortar-board{--fa:"\f19d"}.fa-hand-holding-medical{--fa:"\e05c"}.fa-person-circle-check{--fa:"\e53e"}.fa-level-up-alt,.fa-turn-up{--fa:"\f3bf"}
/* 9 */ .fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:host,:root{--fa-style-family-brands:"Font Awesome 6 Brands";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}.fa-brands,.fab{font-weight:400}.fa-monero{--fa:"\f3d0"}.fa-hooli{--fa:"\f427"}.fa-yelp{--fa:"\f1e9"}.fa-cc-visa{--fa:"\f1f0"}.fa-lastfm{--fa:"\f202"}.fa-shopware{--fa:"\f5b5"}.fa-creative-commons-nc{--fa:"\f4e8"}.fa-aws{--fa:"\f375"}.fa-redhat{--fa:"\f7bc"}.fa-yoast{--fa:"\f2b1"}.fa-cloudflare{--fa:"\e07d"}.fa-ups{--fa:"\f7e0"}.fa-pixiv{--fa:"\e640"}.fa-wpexplorer{--fa:"\f2de"}.fa-dyalog{--fa:"\f399"}.fa-bity{--fa:"\f37a"}.fa-stackpath{--fa:"\f842"}.fa-buysellads{--fa:"\f20d"}.fa-first-order{--fa:"\f2b0"}.fa-modx{--fa:"\f285"}.fa-guilded{--fa:"\e07e"}.fa-vnv{--fa:"\f40b"}.fa-js-square,.fa-square-js{--fa:"\f3b9"}.fa-microsoft{--fa:"\f3ca"}.fa-qq{--fa:"\f1d6"}.fa-orcid{--fa:"\f8d2"}.fa-java{--fa:"\f4e4"}.fa-invision{--fa:"\f7b0"}.fa-creative-commons-pd-alt{--fa:"\f4ed"}.fa-centercode{--fa:"\f380"}.fa-glide-g{--fa:"\f2a6"}.fa-drupal{--fa:"\f1a9"}.fa-jxl{--fa:"\e67b"}.fa-dart-lang{--fa:"\e693"}.fa-hire-a-helper{--fa:"\f3b0"}.fa-creative-commons-by{--fa:"\f4e7"}.fa-unity{--fa:"\e049"}.fa-whmcs{--fa:"\f40d"}.fa-rocketchat{--fa:"\f3e8"}.fa-vk{--fa:"\f189"}.fa-untappd{--fa:"\f405"}.fa-mailchimp{--fa:"\f59e"}.fa-css3-alt{--fa:"\f38b"}.fa-reddit-square,.fa-square-reddit{--fa:"\f1a2"}.fa-vimeo-v{--fa:"\f27d"}.fa-contao{--fa:"\f26d"}.fa-square-font-awesome{--fa:"\e5ad"}.fa-deskpro{--fa:"\f38f"}.fa-brave{--fa:"\e63c"}.fa-sistrix{--fa:"\f3ee"}.fa-instagram-square,.fa-square-instagram{--fa:"\e055"}.fa-battle-net{--fa:"\f835"}.fa-the-red-yeti{--fa:"\f69d"}.fa-hacker-news-square,.fa-square-hacker-news{--fa:"\f3af"}.fa-edge{--fa:"\f282"}.fa-threads{--fa:"\e618"}.fa-napster{--fa:"\f3d2"}.fa-snapchat-square,.fa-square-snapchat{--fa:"\f2ad"}.fa-google-plus-g{--fa:"\f0d5"}.fa-artstation{--fa:"\f77a"}.fa-markdown{--fa:"\f60f"}.fa-sourcetree{--fa:"\f7d3"}.fa-google-plus{--fa:"\f2b3"}.fa-diaspora{--fa:"\f791"}.fa-foursquare{--fa:"\f180"}.fa-stack-overflow{--fa:"\f16c"}.fa-github-alt{--fa:"\f113"}.fa-phoenix-squadron{--fa:"\f511"}.fa-pagelines{--fa:"\f18c"}.fa-algolia{--fa:"\f36c"}.fa-red-river{--fa:"\f3e3"}.fa-creative-commons-sa{--fa:"\f4ef"}.fa-safari{--fa:"\f267"}.fa-google{--fa:"\f1a0"}.fa-font-awesome-alt,.fa-square-font-awesome-stroke{--fa:"\f35c"}.fa-atlassian{--fa:"\f77b"}.fa-linkedin-in{--fa:"\f0e1"}.fa-digital-ocean{--fa:"\f391"}.fa-nimblr{--fa:"\f5a8"}.fa-chromecast{--fa:"\f838"}.fa-evernote{--fa:"\f839"}.fa-hacker-news{--fa:"\f1d4"}.fa-creative-commons-sampling{--fa:"\f4f0"}.fa-adversal{--fa:"\f36a"}.fa-creative-commons{--fa:"\f25e"}.fa-watchman-monitoring{--fa:"\e087"}.fa-fonticons{--fa:"\f280"}.fa-weixin{--fa:"\f1d7"}.fa-shirtsinbulk{--fa:"\f214"}.fa-codepen{--fa:"\f1cb"}.fa-git-alt{--fa:"\f841"}.fa-lyft{--fa:"\f3c3"}.fa-rev{--fa:"\f5b2"}.fa-windows{--fa:"\f17a"}.fa-wizards-of-the-coast{--fa:"\f730"}.fa-square-viadeo,.fa-viadeo-square{--fa:"\f2aa"}.fa-meetup{--fa:"\f2e0"}.fa-centos{--fa:"\f789"}.fa-adn{--fa:"\f170"}.fa-cloudsmith{--fa:"\f384"}.fa-opensuse{--fa:"\e62b"}.fa-pied-piper-alt{--fa:"\f1a8"}.fa-dribbble-square,.fa-square-dribbble{--fa:"\f397"}.fa-codiepie{--fa:"\f284"}.fa-node{--fa:"\f419"}.fa-mix{--fa:"\f3cb"}.fa-steam{--fa:"\f1b6"}.fa-cc-apple-pay{--fa:"\f416"}.fa-scribd{--fa:"\f28a"}.fa-debian{--fa:"\e60b"}.fa-openid{--fa:"\f19b"}.fa-instalod{--fa:"\e081"}.fa-files-pinwheel{--fa:"\e69f"}.fa-expeditedssl{--fa:"\f23e"}.fa-sellcast{--fa:"\f2da"}.fa-square-twitter,.fa-twitter-square{--fa:"\f081"}.fa-r-project{--fa:"\f4f7"}.fa-delicious{--fa:"\f1a5"}.fa-freebsd{--fa:"\f3a4"}.fa-vuejs{--fa:"\f41f"}.fa-accusoft{--fa:"\f369"}.fa-ioxhost{--fa:"\f208"}.fa-fonticons-fi{--fa:"\f3a2"}.fa-app-store{--fa:"\f36f"}.fa-cc-mastercard{--fa:"\f1f1"}.fa-itunes-note{--fa:"\f3b5"}.fa-golang{--fa:"\e40f"}.fa-kickstarter,.fa-square-kickstarter{--fa:"\f3bb"}.fa-grav{--fa:"\f2d6"}.fa-weibo{--fa:"\f18a"}.fa-uncharted{--fa:"\e084"}.fa-firstdraft{--fa:"\f3a1"}.fa-square-youtube,.fa-youtube-square{--fa:"\f431"}.fa-wikipedia-w{--fa:"\f266"}.fa-rendact,.fa-wpressr{--fa:"\f3e4"}.fa-angellist{--fa:"\f209"}.fa-galactic-republic{--fa:"\f50c"}.fa-nfc-directional{--fa:"\e530"}.fa-skype{--fa:"\f17e"}.fa-joget{--fa:"\f3b7"}.fa-fedora{--fa:"\f798"}.fa-stripe-s{--fa:"\f42a"}.fa-meta{--fa:"\e49b"}.fa-laravel{--fa:"\f3bd"}.fa-hotjar{--fa:"\f3b1"}.fa-bluetooth-b{--fa:"\f294"}.fa-square-letterboxd{--fa:"\e62e"}.fa-sticker-mule{--fa:"\f3f7"}.fa-creative-commons-zero{--fa:"\f4f3"}.fa-hips{--fa:"\f452"}.fa-css{--fa:"\e6a2"}.fa-behance{--fa:"\f1b4"}.fa-reddit{--fa:"\f1a1"}.fa-discord{--fa:"\f392"}.fa-chrome{--fa:"\f268"}.fa-app-store-ios{--fa:"\f370"}.fa-cc-discover{--fa:"\f1f2"}.fa-wpbeginner{--fa:"\f297"}.fa-confluence{--fa:"\f78d"}.fa-shoelace{--fa:"\e60c"}.fa-mdb{--fa:"\f8ca"}.fa-dochub{--fa:"\f394"}.fa-accessible-icon{--fa:"\f368"}.fa-ebay{--fa:"\f4f4"}.fa-amazon{--fa:"\f270"}.fa-unsplash{--fa:"\e07c"}.fa-yarn{--fa:"\f7e3"}.fa-square-steam,.fa-steam-square{--fa:"\f1b7"}.fa-500px{--fa:"\f26e"}.fa-square-vimeo,.fa-vimeo-square{--fa:"\f194"}.fa-asymmetrik{--fa:"\f372"}.fa-font-awesome,.fa-font-awesome-flag,.fa-font-awesome-logo-full{--fa:"\f2b4"}.fa-gratipay{--fa:"\f184"}.fa-apple{--fa:"\f179"}.fa-hive{--fa:"\e07f"}.fa-gitkraken{--fa:"\f3a6"}.fa-keybase{--fa:"\f4f5"}.fa-apple-pay{--fa:"\f415"}.fa-padlet{--fa:"\e4a0"}.fa-amazon-pay{--fa:"\f42c"}.fa-github-square,.fa-square-github{--fa:"\f092"}.fa-stumbleupon{--fa:"\f1a4"}.fa-fedex{--fa:"\f797"}.fa-phoenix-framework{--fa:"\f3dc"}.fa-shopify{--fa:"\e057"}.fa-neos{--fa:"\f612"}.fa-square-threads{--fa:"\e619"}.fa-hackerrank{--fa:"\f5f7"}.fa-researchgate{--fa:"\f4f8"}.fa-swift{--fa:"\f8e1"}.fa-angular{--fa:"\f420"}.fa-speakap{--fa:"\f3f3"}.fa-angrycreative{--fa:"\f36e"}.fa-y-combinator{--fa:"\f23b"}.fa-empire{--fa:"\f1d1"}.fa-envira{--fa:"\f299"}.fa-google-scholar{--fa:"\e63b"}.fa-gitlab-square,.fa-square-gitlab{--fa:"\e5ae"}.fa-studiovinari{--fa:"\f3f8"}.fa-pied-piper{--fa:"\f2ae"}.fa-wordpress{--fa:"\f19a"}.fa-product-hunt{--fa:"\f288"}.fa-firefox{--fa:"\f269"}.fa-linode{--fa:"\f2b8"}.fa-goodreads{--fa:"\f3a8"}.fa-odnoklassniki-square,.fa-square-odnoklassniki{--fa:"\f264"}.fa-jsfiddle{--fa:"\f1cc"}.fa-sith{--fa:"\f512"}.fa-themeisle{--fa:"\f2b2"}.fa-page4{--fa:"\f3d7"}.fa-hashnode{--fa:"\e499"}.fa-react{--fa:"\f41b"}.fa-cc-paypal{--fa:"\f1f4"}.fa-squarespace{--fa:"\f5be"}.fa-cc-stripe{--fa:"\f1f5"}.fa-creative-commons-share{--fa:"\f4f2"}.fa-bitcoin{--fa:"\f379"}.fa-keycdn{--fa:"\f3ba"}.fa-opera{--fa:"\f26a"}.fa-itch-io{--fa:"\f83a"}.fa-umbraco{--fa:"\f8e8"}.fa-galactic-senate{--fa:"\f50d"}.fa-ubuntu{--fa:"\f7df"}.fa-draft2digital{--fa:"\f396"}.fa-stripe{--fa:"\f429"}.fa-houzz{--fa:"\f27c"}.fa-gg{--fa:"\f260"}.fa-dhl{--fa:"\f790"}.fa-pinterest-square,.fa-square-pinterest{--fa:"\f0d3"}.fa-xing{--fa:"\f168"}.fa-blackberry{--fa:"\f37b"}.fa-creative-commons-pd{--fa:"\f4ec"}.fa-playstation{--fa:"\f3df"}.fa-quinscape{--fa:"\f459"}.fa-less{--fa:"\f41d"}.fa-blogger-b{--fa:"\f37d"}.fa-opencart{--fa:"\f23d"}.fa-vine{--fa:"\f1ca"}.fa-signal-messenger{--fa:"\e663"}.fa-paypal{--fa:"\f1ed"}.fa-gitlab{--fa:"\f296"}.fa-typo3{--fa:"\f42b"}.fa-reddit-alien{--fa:"\f281"}.fa-yahoo{--fa:"\f19e"}.fa-dailymotion{--fa:"\e052"}.fa-affiliatetheme{--fa:"\f36b"}.fa-pied-piper-pp{--fa:"\f1a7"}.fa-bootstrap{--fa:"\f836"}.fa-odnoklassniki{--fa:"\f263"}.fa-nfc-symbol{--fa:"\e531"}.fa-mintbit{--fa:"\e62f"}.fa-ethereum{--fa:"\f42e"}.fa-speaker-deck{--fa:"\f83c"}.fa-creative-commons-nc-eu{--fa:"\f4e9"}.fa-patreon{--fa:"\f3d9"}.fa-avianex{--fa:"\f374"}.fa-ello{--fa:"\f5f1"}.fa-gofore{--fa:"\f3a7"}.fa-bimobject{--fa:"\f378"}.fa-brave-reverse{--fa:"\e63d"}.fa-facebook-f{--fa:"\f39e"}.fa-google-plus-square,.fa-square-google-plus{--fa:"\f0d4"}.fa-web-awesome{--fa:"\e682"}.fa-mandalorian{--fa:"\f50f"}.fa-first-order-alt{--fa:"\f50a"}.fa-osi{--fa:"\f41a"}.fa-google-wallet{--fa:"\f1ee"}.fa-d-and-d-beyond{--fa:"\f6ca"}.fa-periscope{--fa:"\f3da"}.fa-fulcrum{--fa:"\f50b"}.fa-cloudscale{--fa:"\f383"}.fa-forumbee{--fa:"\f211"}.fa-mizuni{--fa:"\f3cc"}.fa-schlix{--fa:"\f3ea"}.fa-square-xing,.fa-xing-square{--fa:"\f169"}.fa-bandcamp{--fa:"\f2d5"}.fa-wpforms{--fa:"\f298"}.fa-cloudversify{--fa:"\f385"}.fa-usps{--fa:"\f7e1"}.fa-megaport{--fa:"\f5a3"}.fa-magento{--fa:"\f3c4"}.fa-spotify{--fa:"\f1bc"}.fa-optin-monster{--fa:"\f23c"}.fa-fly{--fa:"\f417"}.fa-square-bluesky{--fa:"\e6a3"}.fa-aviato{--fa:"\f421"}.fa-itunes{--fa:"\f3b4"}.fa-cuttlefish{--fa:"\f38c"}.fa-blogger{--fa:"\f37c"}.fa-flickr{--fa:"\f16e"}.fa-viber{--fa:"\f409"}.fa-soundcloud{--fa:"\f1be"}.fa-digg{--fa:"\f1a6"}.fa-tencent-weibo{--fa:"\f1d5"}.fa-letterboxd{--fa:"\e62d"}.fa-symfony{--fa:"\f83d"}.fa-maxcdn{--fa:"\f136"}.fa-etsy{--fa:"\f2d7"}.fa-facebook-messenger{--fa:"\f39f"}.fa-audible{--fa:"\f373"}.fa-think-peaks{--fa:"\f731"}.fa-bilibili{--fa:"\e3d9"}.fa-erlang{--fa:"\f39d"}.fa-x-twitter{--fa:"\e61b"}.fa-cotton-bureau{--fa:"\f89e"}.fa-dashcube{--fa:"\f210"}.fa-42-group,.fa-innosoft{--fa:"\e080"}.fa-stack-exchange{--fa:"\f18d"}.fa-elementor{--fa:"\f430"}.fa-pied-piper-square,.fa-square-pied-piper{--fa:"\e01e"}.fa-creative-commons-nd{--fa:"\f4eb"}.fa-palfed{--fa:"\f3d8"}.fa-superpowers{--fa:"\f2dd"}.fa-resolving{--fa:"\f3e7"}.fa-xbox{--fa:"\f412"}.fa-square-web-awesome-stroke{--fa:"\e684"}.fa-searchengin{--fa:"\f3eb"}.fa-tiktok{--fa:"\e07b"}.fa-facebook-square,.fa-square-facebook{--fa:"\f082"}.fa-renren{--fa:"\f18b"}.fa-linux{--fa:"\f17c"}.fa-glide{--fa:"\f2a5"}.fa-linkedin{--fa:"\f08c"}.fa-hubspot{--fa:"\f3b2"}.fa-deploydog{--fa:"\f38e"}.fa-twitch{--fa:"\f1e8"}.fa-flutter{--fa:"\e694"}.fa-ravelry{--fa:"\f2d9"}.fa-mixer{--fa:"\e056"}.fa-lastfm-square,.fa-square-lastfm{--fa:"\f203"}.fa-vimeo{--fa:"\f40a"}.fa-mendeley{--fa:"\f7b3"}.fa-uniregistry{--fa:"\f404"}.fa-figma{--fa:"\f799"}.fa-creative-commons-remix{--fa:"\f4ee"}.fa-cc-amazon-pay{--fa:"\f42d"}.fa-dropbox{--fa:"\f16b"}.fa-instagram{--fa:"\f16d"}.fa-cmplid{--fa:"\e360"}.fa-upwork{--fa:"\e641"}.fa-facebook{--fa:"\f09a"}.fa-gripfire{--fa:"\f3ac"}.fa-jedi-order{--fa:"\f50e"}.fa-uikit{--fa:"\f403"}.fa-fort-awesome-alt{--fa:"\f3a3"}.fa-phabricator{--fa:"\f3db"}.fa-ussunnah{--fa:"\f407"}.fa-earlybirds{--fa:"\f39a"}.fa-trade-federation{--fa:"\f513"}.fa-autoprefixer{--fa:"\f41c"}.fa-whatsapp{--fa:"\f232"}.fa-square-upwork{--fa:"\e67c"}.fa-slideshare{--fa:"\f1e7"}.fa-google-play{--fa:"\f3ab"}.fa-viadeo{--fa:"\f2a9"}.fa-line{--fa:"\f3c0"}.fa-google-drive{--fa:"\f3aa"}.fa-servicestack{--fa:"\f3ec"}.fa-simplybuilt{--fa:"\f215"}.fa-bitbucket{--fa:"\f171"}.fa-imdb{--fa:"\f2d8"}.fa-deezer{--fa:"\e077"}.fa-raspberry-pi{--fa:"\f7bb"}.fa-jira{--fa:"\f7b1"}.fa-docker{--fa:"\f395"}.fa-screenpal{--fa:"\e570"}.fa-bluetooth{--fa:"\f293"}.fa-gitter{--fa:"\f426"}.fa-d-and-d{--fa:"\f38d"}.fa-microblog{--fa:"\e01a"}.fa-cc-diners-club{--fa:"\f24c"}.fa-gg-circle{--fa:"\f261"}.fa-pied-piper-hat{--fa:"\f4e5"}.fa-kickstarter-k{--fa:"\f3bc"}.fa-yandex{--fa:"\f413"}.fa-readme{--fa:"\f4d5"}.fa-html5{--fa:"\f13b"}.fa-sellsy{--fa:"\f213"}.fa-square-web-awesome{--fa:"\e683"}.fa-sass{--fa:"\f41e"}.fa-wirsindhandwerk,.fa-wsh{--fa:"\e2d0"}.fa-buromobelexperte{--fa:"\f37f"}.fa-salesforce{--fa:"\f83b"}.fa-octopus-deploy{--fa:"\e082"}.fa-medapps{--fa:"\f3c6"}.fa-ns8{--fa:"\f3d5"}.fa-pinterest-p{--fa:"\f231"}.fa-apper{--fa:"\f371"}.fa-fort-awesome{--fa:"\f286"}.fa-waze{--fa:"\f83f"}.fa-bluesky{--fa:"\e671"}.fa-cc-jcb{--fa:"\f24b"}.fa-snapchat,.fa-snapchat-ghost{--fa:"\f2ab"}.fa-fantasy-flight-games{--fa:"\f6dc"}.fa-rust{--fa:"\e07a"}.fa-wix{--fa:"\f5cf"}.fa-behance-square,.fa-square-behance{--fa:"\f1b5"}.fa-supple{--fa:"\f3f9"}.fa-webflow{--fa:"\e65c"}.fa-rebel{--fa:"\f1d0"}.fa-css3{--fa:"\f13c"}.fa-staylinked{--fa:"\f3f5"}.fa-kaggle{--fa:"\f5fa"}.fa-space-awesome{--fa:"\e5ac"}.fa-deviantart{--fa:"\f1bd"}.fa-cpanel{--fa:"\f388"}.fa-goodreads-g{--fa:"\f3a9"}.fa-git-square,.fa-square-git{--fa:"\f1d2"}.fa-square-tumblr,.fa-tumblr-square{--fa:"\f174"}.fa-trello{--fa:"\f181"}.fa-creative-commons-nc-jp{--fa:"\f4ea"}.fa-get-pocket{--fa:"\f265"}.fa-perbyte{--fa:"\e083"}.fa-grunt{--fa:"\f3ad"}.fa-weebly{--fa:"\f5cc"}.fa-connectdevelop{--fa:"\f20e"}.fa-leanpub{--fa:"\f212"}.fa-black-tie{--fa:"\f27e"}.fa-themeco{--fa:"\f5c6"}.fa-python{--fa:"\f3e2"}.fa-android{--fa:"\f17b"}.fa-bots{--fa:"\e340"}.fa-free-code-camp{--fa:"\f2c5"}.fa-hornbill{--fa:"\f592"}.fa-js{--fa:"\f3b8"}.fa-ideal{--fa:"\e013"}.fa-git{--fa:"\f1d3"}.fa-dev{--fa:"\f6cc"}.fa-sketch{--fa:"\f7c6"}.fa-yandex-international{--fa:"\f414"}.fa-cc-amex{--fa:"\f1f3"}.fa-uber{--fa:"\f402"}.fa-github{--fa:"\f09b"}.fa-php{--fa:"\f457"}.fa-alipay{--fa:"\f642"}.fa-youtube{--fa:"\f167"}.fa-skyatlas{--fa:"\f216"}.fa-firefox-browser{--fa:"\e007"}.fa-replyd{--fa:"\f3e6"}.fa-suse{--fa:"\f7d6"}.fa-jenkins{--fa:"\f3b6"}.fa-twitter{--fa:"\f099"}.fa-rockrms{--fa:"\f3e9"}.fa-pinterest{--fa:"\f0d2"}.fa-buffer{--fa:"\f837"}.fa-npm{--fa:"\f3d4"}.fa-yammer{--fa:"\f840"}.fa-btc{--fa:"\f15a"}.fa-dribbble{--fa:"\f17d"}.fa-stumbleupon-circle{--fa:"\f1a3"}.fa-internet-explorer{--fa:"\f26b"}.fa-stubber{--fa:"\e5c7"}.fa-telegram,.fa-telegram-plane{--fa:"\f2c6"}.fa-old-republic{--fa:"\f510"}.fa-odysee{--fa:"\e5c6"}.fa-square-whatsapp,.fa-whatsapp-square{--fa:"\f40c"}.fa-node-js{--fa:"\f3d3"}.fa-edge-legacy{--fa:"\e078"}.fa-slack,.fa-slack-hash{--fa:"\f198"}.fa-medrt{--fa:"\f3c8"}.fa-usb{--fa:"\f287"}.fa-tumblr{--fa:"\f173"}.fa-vaadin{--fa:"\f408"}.fa-quora{--fa:"\f2c4"}.fa-square-x-twitter{--fa:"\e61a"}.fa-reacteurope{--fa:"\f75d"}.fa-medium,.fa-medium-m{--fa:"\f23a"}.fa-amilia{--fa:"\f36d"}.fa-mixcloud{--fa:"\f289"}.fa-flipboard{--fa:"\f44d"}.fa-viacoin{--fa:"\f237"}.fa-critical-role{--fa:"\f6c9"}.fa-sitrox{--fa:"\e44a"}.fa-discourse{--fa:"\f393"}.fa-joomla{--fa:"\f1aa"}.fa-mastodon{--fa:"\f4f6"}.fa-airbnb{--fa:"\f834"}.fa-wolf-pack-battalion{--fa:"\f514"}.fa-buy-n-large{--fa:"\f8a6"}.fa-gulp{--fa:"\f3ae"}.fa-creative-commons-sampling-plus{--fa:"\f4f1"}.fa-strava{--fa:"\f428"}.fa-ember{--fa:"\f423"}.fa-canadian-maple-leaf{--fa:"\f785"}.fa-teamspeak{--fa:"\f4f9"}.fa-pushed{--fa:"\f3e1"}.fa-wordpress-simple{--fa:"\f411"}.fa-nutritionix{--fa:"\f3d6"}.fa-wodu{--fa:"\e088"}.fa-google-pay{--fa:"\e079"}.fa-intercom{--fa:"\f7af"}.fa-zhihu{--fa:"\f63f"}.fa-korvue{--fa:"\f42f"}.fa-pix{--fa:"\e43a"}.fa-steam-symbol{--fa:"\f3f6"}:host,:root{--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}.fa-regular,.far{font-weight:400}:host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype");unicode-range:u+f003,u+f006,u+f014,u+f016-f017,u+f01a-f01b,u+f01d,u+f022,u+f03e,u+f044,u+f046,u+f05c-f05d,u+f06e,u+f070,u+f087-f088,u+f08a,u+f094,u+f096-f097,u+f09d,u+f0a0,u+f0a2,u+f0a4-f0a7,u+f0c5,u+f0c7,u+f0e5-f0e6,u+f0eb,u+f0f6-f0f8,u+f10c,u+f114-f115,u+f118-f11a,u+f11c-f11d,u+f133,u+f147,u+f14e,u+f150-f152,u+f185-f186,u+f18e,u+f190-f192,u+f196,u+f1c1-f1c9,u+f1d9,u+f1db,u+f1e3,u+f1ea,u+f1f7,u+f1f9,u+f20a,u+f247-f248,u+f24a,u+f24d,u+f255-f25b,u+f25d,u+f271-f274,u+f278,u+f27b,u+f28c,u+f28e,u+f29c,u+f2b5,u+f2b7,u+f2ba,u+f2bc,u+f2be,u+f2c0-f2c1,u+f2c3,u+f2d0,u+f2d2,u+f2d4,u+f2dc}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-v4compatibility.woff2) format("woff2"),url(../webfonts/fa-v4compatibility.ttf) format("truetype");unicode-range:u+f041,u+f047,u+f065-f066,u+f07d-f07e,u+f080,u+f08b,u+f08e,u+f090,u+f09a,u+f0ac,u+f0ae,u+f0b2,u+f0d0,u+f0d6,u+f0e4,u+f0ec,u+f10a-f10b,u+f123,u+f13e,u+f148-f149,u+f14c,u+f156,u+f15e,u+f160-f161,u+f163,u+f175-f178,u+f195,u+f1f8,u+f219,u+f27a}
/* Minify_CSS_UriRewriter::$debugText

*/

/* style.css */

/* 1    */ /*!
/* 2    *| Theme Name: Legal News
/* 3    *| Theme URI: https://ascendoor.com/themes/legal-news/
/* 4    *| Author: Ascendoor
/* 5    *| Author URI: https://ascendoor.com/
/* 6    *| Description: Legal News is an easy-to-use theme for bloggers and writers. The theme includes a wide variety of options to create a magazine, newspaper, or blog. The Legal News Theme is ideal for lifestyle bloggers, personal blogs, magazines, newspapers, news portals, and more. The theme features multiple layout options for the off-canvas, primary, secondary, footer, featured news, sliders, and category news sections. Furthermore, multiple google fonts options, color options, layout options, an easy and simple customizer, and most importantly, show/hide and drag/drop options for all the sections. It can adapt to all screen sizes for better usability. It is cross-browser compatible, retina-ready, and translation ready. Check the demo at: https://demos.ascendoor.com/legal-news/
/* 7    *| Version: 1.3.5
/* 8    *| Requires at least: 5.0
/* 9    *| Tested up to: 6.9
/* 10   *| Requires PHP: 7.4
/* 11   *| License: GNU General Public License v3 or later
/* 12   *| License URI: http://www.gnu.org/licenses/gpl-3.0.html
/* 13   *| Text Domain: legal-news
/* 14   *| Tags: custom-background, custom-logo, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready, theme-options, footer-widgets, full-width-template, left-sidebar, right-sidebar, news, blog
/* 15   *|
/* 16   *| This theme, like WordPress, is licensed under the GPL.
/* 17   *| Use it to make something cool, have fun, and share what you've learned.
/* 18   *|
/* 19   *| Legal News is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
/* 20   *| Underscores is distributed under the terms of the GNU GPL v2 or later.
/* 21   *|
/* 22   *| Normalizing styles have been helped along thanks to the fine work of
/* 23   *| Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
/* 24   *| */
/* 25   */ /*--------------------------------------------------------------
/* 26   *| >>> TABLE OF CONTENTS:
/* 27   *| ----------------------------------------------------------------
/* 28   *| # Generic
/* 29   *| 	- Normalize
/* 30   *| 	- Box sizing
/* 31   *| # Base
/* 32   *| 	- Typography
/* 33   *| 	- Elements
/* 34   *| 	- Links
/* 35   *| 	- Forms
/* 36   *| ## Layouts
/* 37   *| # Components
/* 38   *| 	- Navigation
/* 39   *| 	- Posts and pages
/* 40   *| 	- Comments
/* 41   *| 	- Widgets
/* 42   *| 	- Media
/* 43   *| 	- Captions
/* 44   *| 	- Galleries
/* 45   *| # plugins
/* 46   *| 	- Jetpack infinite scroll
/* 47   *| # Utilities
/* 48   *| 	- Accessibility
/* 49   *| 	- Alignments
/* 50   *|

/* style.css *|

/* 51   *| --------------------------------------------------------------*/
/* 52   */ .ascendoor-wrapper {
/* 53   */ 	padding: 0 20px;
/* 54   */ 	max-width: 1320px;
/* 55   */ 	margin: 0 auto;
/* 56   */ }
/* 57   */
/* 58   */ body.ascendoor-boxed-layout .ascendoor-site-wrapper {
/* 59   */ 	max-width: 1320px;
/* 60   */ 	margin: 0 auto;
/* 61   */ 	background-color: var(--clr-background);
/* 62   */ 	box-shadow: 0px 0px 10px -7px #000;
/* 63   */ }
/* 64   */
/* 65   */ body.ascendoor-boxed-layout.custom-background .ascendoor-site-wrapper {
/* 66   */ 	margin-top: 20px;
/* 67   */ }
/* 68   */
/* 69   */ .asce-col-1 {
/* 70   */ 	width: 100%;
/* 71   */ }
/* 72   */
/* 73   */ .asce-col-2 {
/* 74   */ 	width: 50%;
/* 75   */ }
/* 76   */
/* 77   */ .asce-col-2-5 {
/* 78   */ 	width: 66.67%;
/* 79   */ }
/* 80   */
/* 81   */ .asce-col-3 {
/* 82   */ 	width: 33.33%;
/* 83   */ }
/* 84   */
/* 85   */ .asce-col-4 {
/* 86   */ 	width: 25%;
/* 87   */ }
/* 88   */
/* 89   */ .asce-col-80 {
/* 90   */ 	width: 80%;
/* 91   */ }
/* 92   */
/* 93   */ .asce-col-75 {
/* 94   */ 	width: 75%;
/* 95   */ }
/* 96   */
/* 97   */ .asce-col-70 {
/* 98   */ 	width: 70%;
/* 99   */ }
/* 100  */

/* style.css */

/* 101  */ .asce-col-60 {
/* 102  */ 	width: 60%;
/* 103  */ }
/* 104  */
/* 105  */ .asce-col-55 {
/* 106  */ 	width: 55%;
/* 107  */ }
/* 108  */
/* 109  */ .asce-col-40 {
/* 110  */ 	width: 40%;
/* 111  */ }
/* 112  */
/* 113  */ .asce-col-30 {
/* 114  */ 	width: 30%;
/* 115  */ }
/* 116  */
/* 117  */ .asce-col-20 {
/* 118  */ 	width: 20%;
/* 119  */ }
/* 120  */
/* 121  */ .asce-col-15 {
/* 122  */ 	width: 15%;
/* 123  */ }
/* 124  */
/* 125  */ .main-widget-section-wrap {
/* 126  */ 	display: flex;
/* 127  */ 	flex-wrap: wrap;
/* 128  */ 	align-items: flex-start;
/* 129  */ 	gap: 30px;
/* 130  */ }
/* 131  */
/* 132  */ .main-widget-section-wrap .primary-widgets-section {
/* 133  */ 	width: 100%;
/* 134  */ }
/* 135  */
/* 136  */ @media (min-width: 992px) {
/* 137  */ 	.main-widget-section-wrap .primary-widgets-section {
/* 138  */ 		width: calc(70% - 15px);
/* 139  */ 	}
/* 140  */ }
/* 141  */
/* 142  */ .main-widget-section-wrap .secondary-widgets-section {
/* 143  */ 	width: 100%;
/* 144  */ }
/* 145  */
/* 146  */ @media (min-width: 992px) {
/* 147  */ 	.main-widget-section-wrap .secondary-widgets-section {
/* 148  */ 		width: calc(30% - 15px);
/* 149  */ 		position: sticky;
/* 150  */ 		top: 40px;

/* style.css */

/* 151  */ 	}
/* 152  */ }
/* 153  */
/* 154  */ @media (min-width: 992px) {
/* 155  */ 	.main-widget-section-wrap.frontpage-left-sidebar {
/* 156  */ 		flex-direction: row-reverse;
/* 157  */ 	}
/* 158  */ }
/* 159  */
/* 160  */ .main-widget-section-wrap.no-frontpage-sidebar .primary-widgets-section {
/* 161  */ 	width: 100%;
/* 162  */ }
/* 163  */
/* 164  */ /*--------------------------------------------------------------
/* 165  *| # Generic
/* 166  *| --------------------------------------------------------------*/
/* 167  */ /* Normalize
/* 168  *| --------------------------------------------- */
/* 169  */ /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* 170  */ /* Document
/* 171  *| 	 ========================================================================== */
/* 172  */ /**
/* 173  *|  * 1. Correct the line height in all browsers.
/* 174  *|  * 2. Prevent adjustments of font size after orientation changes in iOS.
/* 175  *|  */
/* 176  */ html {
/* 177  */ 	line-height: 1.15;
/* 178  */ 	-webkit-text-size-adjust: 100%;
/* 179  */ }
/* 180  */
/* 181  */ /* Sections
/* 182  *| 	 ========================================================================== */
/* 183  */ /**
/* 184  *|  * Remove the margin in all browsers.
/* 185  *|  */
/* 186  */ body {
/* 187  */ 	margin: 0;
/* 188  */ }
/* 189  */
/* 190  */ /**
/* 191  *|  * Render the `main` element consistently in IE.
/* 192  *|  */
/* 193  */ main {
/* 194  */ 	display: block;
/* 195  */ }
/* 196  */
/* 197  */ /**
/* 198  *|  * Correct the font size and margin on `h1` elements within `section` and
/* 199  *|  * `article` contexts in Chrome, Firefox, and Safari.
/* 200  *|  */

/* style.css */

/* 201  */ h1 {
/* 202  */ 	font-size: 2em;
/* 203  */ 	margin: 0.67em 0;
/* 204  */ }
/* 205  */
/* 206  */ /* Grouping content
/* 207  *| 	 ========================================================================== */
/* 208  */ /**
/* 209  *|  * 1. Add the correct box sizing in Firefox.
/* 210  *|  * 2. Show the overflow in Edge and IE.
/* 211  *|  */
/* 212  */ hr {
/* 213  */ 	box-sizing: content-box;
/* 214  */ 	height: 0;
/* 215  */ 	overflow: visible;
/* 216  */ }
/* 217  */
/* 218  */ /**
/* 219  *|  * 1. Correct the inheritance and scaling of font size in all browsers.
/* 220  *|  * 2. Correct the odd `em` font sizing in all browsers.
/* 221  *|  */
/* 222  */ pre {
/* 223  */ 	font-family: monospace, monospace;
/* 224  */ 	font-size: 1em;
/* 225  */ }
/* 226  */
/* 227  */ /* Text-level semantics
/* 228  *| 	 ========================================================================== */
/* 229  */ /**
/* 230  *|  * Remove the gray background on active links in IE 10.
/* 231  *|  */
/* 232  */ a {
/* 233  */ 	background-color: transparent;
/* 234  */ }
/* 235  */
/* 236  */ /**
/* 237  *|  * 1. Remove the bottom border in Chrome 57-
/* 238  *|  * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
/* 239  *|  */
/* 240  */ abbr[title] {
/* 241  */ 	border-bottom: none;
/* 242  */ 	text-decoration: underline;
/* 243  */ 	text-decoration: underline dotted;
/* 244  */ }
/* 245  */
/* 246  */ /**
/* 247  *|  * Add the correct font weight in Chrome, Edge, and Safari.
/* 248  *|  */
/* 249  */ b,
/* 250  */ strong {

/* style.css */

/* 251  */ 	font-weight: bolder;
/* 252  */ }
/* 253  */
/* 254  */ /**
/* 255  *|  * 1. Correct the inheritance and scaling of font size in all browsers.
/* 256  *|  * 2. Correct the odd `em` font sizing in all browsers.
/* 257  *|  */
/* 258  */ code,
/* 259  */ kbd,
/* 260  */ samp {
/* 261  */ 	font-family: monospace, monospace;
/* 262  */ 	font-size: 1em;
/* 263  */ }
/* 264  */
/* 265  */ /**
/* 266  *|  * Add the correct font size in all browsers.
/* 267  *|  */
/* 268  */ small {
/* 269  */ 	font-size: 80%;
/* 270  */ }
/* 271  */
/* 272  */ /**
/* 273  *|  * Prevent `sub` and `sup` elements from affecting the line height in
/* 274  *|  * all browsers.
/* 275  *|  */
/* 276  */ sub,
/* 277  */ sup {
/* 278  */ 	font-size: 75%;
/* 279  */ 	line-height: 0;
/* 280  */ 	position: relative;
/* 281  */ 	vertical-align: baseline;
/* 282  */ }
/* 283  */
/* 284  */ sub {
/* 285  */ 	bottom: -0.25em;
/* 286  */ }
/* 287  */
/* 288  */ sup {
/* 289  */ 	top: -0.5em;
/* 290  */ }
/* 291  */
/* 292  */ /* Embedded content
/* 293  *| 	 ========================================================================== */
/* 294  */ /**
/* 295  *|  * Remove the border on images inside links in IE 10.
/* 296  *|  */
/* 297  */ img {
/* 298  */ 	border-style: none;
/* 299  */ }
/* 300  */

/* style.css */

/* 301  */ /* Forms
/* 302  *| 	 ========================================================================== */
/* 303  */ /**
/* 304  *|  * 1. Change the font styles in all browsers.
/* 305  *|  * 2. Remove the margin in Firefox and Safari.
/* 306  *|  */
/* 307  */ button,
/* 308  */ input,
/* 309  */ optgroup,
/* 310  */ select,
/* 311  */ textarea {
/* 312  */ 	font-family: inherit;
/* 313  */ 	font-size: 100%;
/* 314  */ 	line-height: 1.15;
/* 315  */ 	margin: 0;
/* 316  */ }
/* 317  */
/* 318  */ /**
/* 319  *|  * Show the overflow in IE.
/* 320  *|  * 1. Show the overflow in Edge.
/* 321  *|  */
/* 322  */ button,
/* 323  */ input {
/* 324  */ 	overflow: visible;
/* 325  */ }
/* 326  */
/* 327  */ /**
/* 328  *|  * Remove the inheritance of text transform in Edge, Firefox, and IE.
/* 329  *|  * 1. Remove the inheritance of text transform in Firefox.
/* 330  *|  */
/* 331  */ button,
/* 332  */ select {
/* 333  */ 	text-transform: none;
/* 334  */ }
/* 335  */
/* 336  */ /**
/* 337  *|  * Correct the inability to style clickable types in iOS and Safari.
/* 338  *|  */
/* 339  */ button,
/* 340  */ [type="button"],
/* 341  */ [type="reset"],
/* 342  */ [type="submit"] {
/* 343  */ 	-webkit-appearance: button;
/* 344  */ }
/* 345  */
/* 346  */ /**
/* 347  *|  * Remove the inner border and padding in Firefox.
/* 348  *|  */
/* 349  */ button::-moz-focus-inner,
/* 350  */ [type="button"]::-moz-focus-inner,

/* style.css */

/* 351  */ [type="reset"]::-moz-focus-inner,
/* 352  */ [type="submit"]::-moz-focus-inner {
/* 353  */ 	border-style: none;
/* 354  */ 	padding: 0;
/* 355  */ }
/* 356  */
/* 357  */ /**
/* 358  *|  * Restore the focus styles unset by the previous rule.
/* 359  *|  */
/* 360  */ button:-moz-focusring,
/* 361  */ [type="button"]:-moz-focusring,
/* 362  */ [type="reset"]:-moz-focusring,
/* 363  */ [type="submit"]:-moz-focusring {
/* 364  */ 	outline: 1px dotted ButtonText;
/* 365  */ }
/* 366  */
/* 367  */ /**
/* 368  *|  * Correct the padding in Firefox.
/* 369  *|  */
/* 370  */ fieldset {
/* 371  */ 	padding: 0.35em 0.75em 0.625em;
/* 372  */ }
/* 373  */
/* 374  */ /**
/* 375  *|  * 1. Correct the text wrapping in Edge and IE.
/* 376  *|  * 2. Correct the color inheritance from `fieldset` elements in IE.
/* 377  *|  * 3. Remove the padding so developers are not caught out when they zero out
/* 378  *|  *		`fieldset` elements in all browsers.
/* 379  *|  */
/* 380  */ legend {
/* 381  */ 	box-sizing: border-box;
/* 382  */ 	color: inherit;
/* 383  */ 	display: table;
/* 384  */ 	max-width: 100%;
/* 385  */ 	padding: 0;
/* 386  */ 	white-space: normal;
/* 387  */ }
/* 388  */
/* 389  */ /**
/* 390  *|  * Add the correct vertical alignment in Chrome, Firefox, and Opera.
/* 391  *|  */
/* 392  */ progress {
/* 393  */ 	vertical-align: baseline;
/* 394  */ }
/* 395  */
/* 396  */ /**
/* 397  *|  * Remove the default vertical scrollbar in IE 10+.
/* 398  *|  */
/* 399  */ textarea {
/* 400  */ 	overflow: auto;

/* style.css */

/* 401  */ }
/* 402  */
/* 403  */ /**
/* 404  *|  * 1. Add the correct box sizing in IE 10.
/* 405  *|  * 2. Remove the padding in IE 10.
/* 406  *|  */
/* 407  */ [type="checkbox"],
/* 408  */ [type="radio"] {
/* 409  */ 	box-sizing: border-box;
/* 410  */ 	padding: 0;
/* 411  */ }
/* 412  */
/* 413  */ /**
/* 414  *|  * Correct the cursor style of increment and decrement buttons in Chrome.
/* 415  *|  */
/* 416  */ [type="number"]::-webkit-inner-spin-button,
/* 417  */ [type="number"]::-webkit-outer-spin-button {
/* 418  */ 	height: auto;
/* 419  */ }
/* 420  */
/* 421  */ /**
/* 422  *|  * 1. Correct the odd appearance in Chrome and Safari.
/* 423  *|  * 2. Correct the outline style in Safari.
/* 424  *|  */
/* 425  */ [type="search"] {
/* 426  */ 	-webkit-appearance: textfield;
/* 427  */ 	outline-offset: -2px;
/* 428  */ }
/* 429  */
/* 430  */ /**
/* 431  *|  * Remove the inner padding in Chrome and Safari on macOS.
/* 432  *|  */
/* 433  */ [type="search"]::-webkit-search-decoration {
/* 434  */ 	-webkit-appearance: none;
/* 435  */ }
/* 436  */
/* 437  */ /**
/* 438  *|  * 1. Correct the inability to style clickable types in iOS and Safari.
/* 439  *|  * 2. Change font properties to `inherit` in Safari.
/* 440  *|  */
/* 441  */ ::-webkit-file-upload-button {
/* 442  */ 	-webkit-appearance: button;
/* 443  */ 	font: inherit;
/* 444  */ }
/* 445  */
/* 446  */ /* Interactive
/* 447  *| 	 ========================================================================== */
/* 448  */ /*
/* 449  *|  * Add the correct display in Edge, IE 10+, and Firefox.
/* 450  *|  */

/* style.css */

/* 451  */ details {
/* 452  */ 	display: block;
/* 453  */ }
/* 454  */
/* 455  */ /*
/* 456  *|  * Add the correct display in all browsers.
/* 457  *|  */
/* 458  */ summary {
/* 459  */ 	display: list-item;
/* 460  */ }
/* 461  */
/* 462  */ /* Misc
/* 463  *| 	 ========================================================================== */
/* 464  */ /**
/* 465  *|  * Add the correct display in IE 10+.
/* 466  *|  */
/* 467  */ template {
/* 468  */ 	display: none;
/* 469  */ }
/* 470  */
/* 471  */ /**
/* 472  *|  * Add the correct display in IE 10.
/* 473  *|  */
/* 474  */ [hidden] {
/* 475  */ 	display: none;
/* 476  */ }
/* 477  */
/* 478  */ /* Box sizing
/* 479  *| --------------------------------------------- */
/* 480  */ /* Inherit box-sizing to more easily change it's value on a component level.
/* 481  *| @link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
/* 482  */ *,
/* 483  */ *::before,
/* 484  */ *::after {
/* 485  */ 	box-sizing: inherit;
/* 486  */ }
/* 487  */
/* 488  */ html {
/* 489  */ 	box-sizing: border-box;
/* 490  */ }
/* 491  */
/* 492  */ /*--------------------------------------------------------------
/* 493  *| # Base
/* 494  *| --------------------------------------------------------------*/
/* 495  */ /* Typography
/* 496  *| --------------------------------------------- */
/* 497  */ body,
/* 498  */ button,
/* 499  */ input,
/* 500  */ select,

/* style.css */

/* 501  */ optgroup,
/* 502  */ textarea {
/* 503  */ 	color: #404040;
/* 504  */ 	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
/* 505  */ 	font-size: 1rem;
/* 506  */ 	line-height: 1.5;
/* 507  */ }
/* 508  */
/* 509  */ h1,
/* 510  */ h2,
/* 511  */ h3,
/* 512  */ h4,
/* 513  */ h5,
/* 514  */ h6 {
/* 515  */ 	clear: both;
/* 516  */ 	font-family: var(--font-heading);
/* 517  */ }
/* 518  */
/* 519  */ h1,
/* 520  */ .h1 {
/* 521  */ 	font-size: 4.4rem;
/* 522  */ }
/* 523  */
/* 524  */ h2,
/* 525  */ .h2 {
/* 526  */ 	font-size: 3.4rem;
/* 527  */ }
/* 528  */
/* 529  */ @media (max-width: 992px) {
/* 530  */ 	h2,
/* 531  */ 	.h2 {
/* 532  */ 		font-size: 2.8rem;
/* 533  */ 	}
/* 534  */ }
/* 535  */
/* 536  */ @media (max-width: 767.98px) {
/* 537  */ 	h2,
/* 538  */ 	.h2 {
/* 539  */ 		font-size: 2.3rem;
/* 540  */ 	}
/* 541  */ }
/* 542  */
/* 543  */ h3,
/* 544  */ .h3 {
/* 545  */ 	font-size: 1.9rem;
/* 546  */ }
/* 547  */
/* 548  */ h4,
/* 549  */ .h4 {
/* 550  */ 	font-size: 1.5rem;

/* style.css */

/* 551  */ }
/* 552  */
/* 553  */ h1,
/* 554  */ h2,
/* 555  */ h3,
/* 556  */ h4,
/* 557  */ h5,
/* 558  */ h6 {
/* 559  */ 	display: block;
/* 560  */ 	font-weight: 600;
/* 561  */ }
/* 562  */
/* 563  */ h1 {
/* 564  */ 	font-size: 2em;
/* 565  */ 	margin: .67em 0;
/* 566  */ }
/* 567  */
/* 568  */ h2,
/* 569  */ h3 {
/* 570  */ 	font-size: 1.3em;
/* 571  */ 	margin: 1em 0;
/* 572  */ }
/* 573  */
/* 574  */ .update-core-php h2 {
/* 575  */ 	margin-top: 4em;
/* 576  */ }
/* 577  */
/* 578  */ .update-php h2,
/* 579  */ .update-messages h2,
/* 580  */ h4 {
/* 581  */ 	font-size: 1em;
/* 582  */ 	margin: 1.33em 0;
/* 583  */ }
/* 584  */
/* 585  */ h5 {
/* 586  */ 	font-size: 0.83em;
/* 587  */ 	margin: 1.67em 0;
/* 588  */ }
/* 589  */
/* 590  */ h6 {
/* 591  */ 	font-size: 0.67em;
/* 592  */ 	margin: 2.33em 0;
/* 593  */ }
/* 594  */
/* 595  */ h1.page-title {
/* 596  */ 	font-size: 4.4rem;
/* 597  */ 	margin: 0.5rem 0 1.5rem;
/* 598  */ }
/* 599  */
/* 600  */ @media (max-width: 480px) {

/* style.css */

/* 601  */ 	h1.page-title {
/* 602  */ 		font-size: 2.4rem;
/* 603  */ 	}
/* 604  */ }
/* 605  */
/* 606  */ .woocommerce-products-header__title {
/* 607  */ 	margin-top: 0;
/* 608  */ 	margin-bottom: 20px;
/* 609  */ 	line-height: 1;
/* 610  */ }
/* 611  */
/* 612  */ .page-header h1 {
/* 613  */ 	font-size: var(--font-size-xl);
/* 614  */ 	margin-top: 0;
/* 615  */ 	margin-bottom: 20px;
/* 616  */ 	line-height: 1.2;
/* 617  */ }
/* 618  */
/* 619  */ p {
/* 620  */ 	margin-bottom: 1.5em;
/* 621  */ }
/* 622  */
/* 623  */ dfn,
/* 624  */ cite,
/* 625  */ em,
/* 626  */ i {
/* 627  */ 	font-style: italic;
/* 628  */ }
/* 629  */
/* 630  */ blockquote {
/* 631  */ 	margin: 0 1.5em;
/* 632  */ }
/* 633  */
/* 634  */ address {
/* 635  */ 	margin: 0 0 1.5em;
/* 636  */ }
/* 637  */
/* 638  */ pre {
/* 639  */ 	background: #eee;
/* 640  */ 	font-family: "Courier 10 Pitch", courier, monospace;
/* 641  */ 	line-height: 1.6;
/* 642  */ 	margin-bottom: 1.6em;
/* 643  */ 	max-width: 100%;
/* 644  */ 	overflow: auto;
/* 645  */ 	padding: 1.6em;
/* 646  */ }
/* 647  */
/* 648  */ code,
/* 649  */ kbd,
/* 650  */ tt,

/* style.css */

/* 651  */ var {
/* 652  */ 	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
/* 653  */ }
/* 654  */
/* 655  */ abbr,
/* 656  */ acronym {
/* 657  */ 	border-bottom: 1px dotted #666;
/* 658  */ 	cursor: help;
/* 659  */ }
/* 660  */
/* 661  */ mark,
/* 662  */ ins {
/* 663  */ 	background: #fff9c0;
/* 664  */ 	text-decoration: none;
/* 665  */ }
/* 666  */
/* 667  */ big {
/* 668  */ 	font-size: 125%;
/* 669  */ }
/* 670  */
/* 671  */ /* Elements
/* 672  *| --------------------------------------------- */
/* 673  */ :root {
/* 674  */ 	--body-bg: #ffffff;
/* 675  */ 	--primary-color: #d82926;
/* 676  */ 	--header-text-color: #d82926;
/* 677  */ 	--theme-color: var(--primary-color);
/* 678  */ 	--light-bg-color: #f0f2f7;
/* 679  */ 	--text-color-normal: #3D4452;
/* 680  */ 	--text-color-dark: #1A202B;
/* 681  */ 	--text-color-light: #83868b;
/* 682  */ 	--border-color: #E8E9EB;
/* 683  */ 	--footer-bg-color: #1A202B;
/* 684  */ 	--footer-text-color: #a1a6b1;
/* 685  */ 	--footer-border-color: #2A313F;
/* 686  */ 	--error: #ff073a;
/* 687  */ 	--success: #28a745;
/* 688  */ 	--shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
/* 689  */ 	--t-color: var(--theme-color);
/* 690  */ 	--white: #FFF;
/* 691  */ 	--black: #000;
/* 692  */ 	--alpha-bg: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
/* 693  */ 	--alpha-bg-dark: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.45) 71.35%, rgba(0, 0, 0, 0) 100%);
/* 694  */ 	--notice-success-bg-color: #D4EDDA;
/* 695  */ 	--notice-success-text-color: #155724;
/* 696  */ 	--notice-info-bg-color: #D1ECF1;
/* 697  */ 	--notice-info-text-color: #0C5460;
/* 698  */ 	--notice-warning-bg-color: #FFF3CD;
/* 699  */ 	--notice-warning-text-color: #856404;
/* 700  */ 	--notice-danger-bg-color: #F8D7DA;

/* style.css */

/* 701  */ 	--notice-danger-text-color: #721C24;
/* 702  */ 	--clr-foreground: #202124;
/* 703  */ 	--clr-background: #f1f1f1;
/* 704  */ 	--clr-sub-background: #fff;
/* 705  */ 	--clr-sub-border: #f1f1f1;
/* 706  */ 	--cat-color-1: #1687F7;
/* 707  */ 	--cat-color-2: #f7a205;
/* 708  */ 	--cat-color-3: #9c1600;
/* 709  */ 	--cat-color-4: #fc5d00;
/* 710  */ 	--cat-color-5: #004fc5;
/* 711  */ 	--cat-color-6: #ff01a3;
/* 712  */ 	--cat-color-7: #c908e0;
/* 713  */ 	--cat-color-8: #ff1e56;
/* 714  */ 	--cat-color-9: #39b209;
/* 715  */ 	--font-size-xs: clamp(0.7rem, 0.17vw + 0.76rem, 0.79rem);
/* 716  */ 	--font-size-sm: clamp(0.8rem, 0.17vw + 0.76rem, 0.89rem);
/* 717  */ 	--font-size-base: clamp(1rem, 0.34vw + 0.91rem, 1.19rem);
/* 718  */ 	--font-size-md: clamp(1.25rem, 0.61vw + 1.1rem, 1.58rem);
/* 719  */ 	--font-size-lg: clamp(1.56rem, 1vw + 1.31rem, 2.11rem);
/* 720  */ 	--font-size-xl: clamp(1.95rem, 1.56vw + 1.56rem, 2.81rem);
/* 721  */ 	--font-size-xxl: clamp(2.44rem, 2.38vw + 1.85rem, 3.75rem);
/* 722  */ 	--font-size-xxxl: clamp(2.95rem, 3.54vw + 2.17rem, 5rem);
/* 723  */ 	--font-main: -apple-system, BlinkMacSystemFont, "Muli", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
/* 724  */ 	--font-heading: 'Roboto', serif;
/* 725  */ 	--font-code: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
/* 726  */ 	--font-pre: "Courier 10 Pitch", courier, monospace;
/* 727  */ 	--font-line-height-body: 1.5;
/* 728  */ 	--font-line-height-pre: 1.6;
/* 729  */ 	--border-radius-all: 0;
/* 730  */ 	--border-radius-all-tops: var(--border-radius-all) var(--border-radius-all) 0 0;
/* 731  */ 	--border-radius-all-bottoms: 0 0 var(--border-radius-all) var(--border-radius-all);
/* 732  */ 	--border-radius-all-lefts: var(--border-radius-all) 0 0 var(--border-radius-all);
/* 733  */ 	--border-radius-all-rights: 0 var(--border-radius-all) var(--border-radius-all) 0;
/* 734  */ 	--border-radius-button: 0;
/* 735  */ 	--main-column-grid: repeat(auto-fit, minmax(320px, 1fr));
/* 736  */ 	--small-column-grid: repeat(auto-fit, minmax(240px, 1fr));
/* 737  */ }
/* 738  */
/* 739  */ @media (max-width: 600px) {
/* 740  */ 	:root {
/* 741  */ 		--main-column-grid: repeat(auto-fit, minmax(300px, 1fr));
/* 742  */ 	}
/* 743  */ }
/* 744  */
/* 745  */ @media (max-width: 320px) {
/* 746  */ 	:root {
/* 747  */ 		--main-column-grid: repeat(1, 1fr);
/* 748  */ 	}
/* 749  */ }
/* 750  */

/* style.css */

/* 751  */ @media (prefers-color-scheme: dark) {
/* 752  */ 	:root {
/* 753  */ 		--clr-background: #202124;
/* 754  */ 		--clr-foreground: #fff;
/* 755  */ 		--light-bg-color: #151618;
/* 756  */ 		--text-color-normal: #eaeaea;
/* 757  */ 		--clr-sub-background: #151618;
/* 758  */ 		--clr-sub-border: #343434;
/* 759  */ 	}
/* 760  */ }
/* 761  */
/* 762  */ body {
/* 763  */ 	background: var(--clr-background);
/* 764  */ 	font-size: 1rem;
/* 765  */ 	font-family: var(--font-main);
/* 766  */ 	color: var(--text-color-normal);
/* 767  */ }
/* 768  */
/* 769  */ body.page {
/* 770  */ 	margin-bottom: 0;
/* 771  */ }
/* 772  */
/* 773  */ @media (max-width: 767.98px) {
/* 774  */ 	body {
/* 775  */ 		font-size: 1em;
/* 776  */ 	}
/* 777  */ }
/* 778  */
/* 779  */ body.sidr-open,
/* 780  */ body.menu-opened {
/* 781  */ 	overflow: hidden;
/* 782  */ }
/* 783  */
/* 784  */ .light-theme {
/* 785  */ 	--clr-foreground: #202124;
/* 786  */ 	--clr-background: #f1f1f1;
/* 787  */ 	--light-bg-color: #fff;
/* 788  */ 	--text-color-normal: #3D4452;
/* 789  */ 	--clr-sub-background: #fff;
/* 790  */ 	--clr-sub-border: #f1f1f1;
/* 791  */ }
/* 792  */
/* 793  */ .dark-theme {
/* 794  */ 	--clr-background: #202124;
/* 795  */ 	--clr-foreground: #fff;
/* 796  */ 	--light-bg-color: #151618;
/* 797  */ 	--text-color-normal: #eaeaea;
/* 798  */ 	--clr-sub-background: #151618;
/* 799  */ 	--clr-sub-border: #343434;
/* 800  */ }

/* style.css */

/* 801  */
/* 802  */ .site-footer {
/* 803  */ 	--text-color-normal: #eaeaea;
/* 804  */ }
/* 805  */
/* 806  */ hr {
/* 807  */ 	background-color: #ccc;
/* 808  */ 	border: 0;
/* 809  */ 	height: 1px;
/* 810  */ 	margin-bottom: 1.5em;
/* 811  */ }
/* 812  */
/* 813  */ ul,
/* 814  */ ol {
/* 815  */ 	margin: 0 0 1.5em 3em;
/* 816  */ }
/* 817  */
/* 818  */ ul {
/* 819  */ 	list-style: disc;
/* 820  */ }
/* 821  */
/* 822  */ ol {
/* 823  */ 	list-style: decimal;
/* 824  */ }
/* 825  */
/* 826  */ li > ul,
/* 827  */ li > ol {
/* 828  */ 	margin-bottom: 0;
/* 829  */ 	margin-left: 1.5em;
/* 830  */ }
/* 831  */
/* 832  */ dt {
/* 833  */ 	font-weight: 700;
/* 834  */ }
/* 835  */
/* 836  */ dd {
/* 837  */ 	margin: 0 1.5em 1.5em;
/* 838  */ }
/* 839  */
/* 840  */ /* Make sure embeds and iframes fit their containers. */
/* 841  */ embed,
/* 842  */ iframe,
/* 843  */ object {
/* 844  */ 	max-width: 100%;
/* 845  */ }
/* 846  */
/* 847  */ img {
/* 848  */ 	height: auto;
/* 849  */ 	max-width: 100%;
/* 850  */ }

/* style.css */

/* 851  */
/* 852  */ figure {
/* 853  */ 	margin: 1em 0;
/* 854  */ }
/* 855  */
/* 856  */ table {
/* 857  */ 	margin: 0 0 1.5em;
/* 858  */ 	width: 100%;
/* 859  */ }
/* 860  */
/* 861  */ /* Links
/* 862  *| --------------------------------------------- */
/* 863  */ a {
/* 864  */ 	color: var(--theme-color);
/* 865  */ }
/* 866  */
/* 867  */ a:visited {
/* 868  */ 	color: #800080;
/* 869  */ }
/* 870  */
/* 871  */ a:hover, a:focus, a:active {
/* 872  */ 	color: #191970;
/* 873  */ }
/* 874  */
/* 875  */ a:hover, a:active {
/* 876  */ 	outline: 0;
/* 877  */ }
/* 878  */
/* 879  */ a:focus-within, a:focus {
/* 880  */ 	outline: thin dotted;
/* 881  */ 	outline-offset: -2px;
/* 882  */ }
/* 883  */
/* 884  */ ul.social-links {
/* 885  */ 	margin: 0;
/* 886  */ 	padding: 0;
/* 887  */ 	list-style: none;
/* 888  */ 	display: flex;
/* 889  */ 	gap: 10px;
/* 890  */ }
/* 891  */
/* 892  */ .author-social-contacts a,
/* 893  */ .teams-social a,
/* 894  */ ul.social-links a {
/* 895  */ 	width: 20px;
/* 896  */ 	height: 20px;
/* 897  */ 	opacity: 0.8;
/* 898  */ 	display: flex;
/* 899  */ 	font-size: 16px;
/* 900  */ 	overflow: hidden;

/* style.css */

/* 901  */ 	position: relative;
/* 902  */ 	align-items: center;
/* 903  */ 	text-decoration: none;
/* 904  */ 	justify-content: center;
/* 905  */ 	transition: all 0.3s ease;
/* 906  */ 	color: var(--color-text-white);
/* 907  */ }
/* 908  */
/* 909  */ .author-social-contacts a::before,
/* 910  */ .teams-social a::before,
/* 911  */ ul.social-links a::before {
/* 912  */ 	-webkit-font-smoothing: antialiased;
/* 913  */ 	-moz-osx-font-smoothing: grayscale;
/* 914  */ 	font-style: normal;
/* 915  */ 	font-variant: normal;
/* 916  */ 	font-weight: 400;
/* 917  */ 	line-height: 1;
/* 918  */ 	font-family: 'Font Awesome 5 brands';
/* 919  */ 	vertical-align: baseline;
/* 920  */ 	transition: all, ease, .3s;
/* 921  */ }
/* 922  */
/* 923  */ .author-social-contacts a[href*='facebook.com']::before,
/* 924  */ .teams-social a[href*='facebook.com']::before,
/* 925  */ ul.social-links a[href*='facebook.com']::before {
/* 926  */ 	content: "\f39e";
/* 927  */ }
/* 928  */
/* 929  */ .author-social-contacts a[href*="threads.com"]::before,
/* 930  */ .teams-social a[href*="threads.com"]::before,
/* 931  */ ul.social-links a[href*="threads.com"]::before {
/* 932  */ 	content: "\e618";
/* 933  */ }
/* 934  */
/* 935  */ .author-social-contacts a[href*="x.com"]::before, .author-social-contacts a[href*="twitter.com"]::before,
/* 936  */ .teams-social a[href*="x.com"]::before,
/* 937  */ .teams-social a[href*="twitter.com"]::before,
/* 938  */ ul.social-links a[href*="x.com"]::before,
/* 939  */ ul.social-links a[href*="twitter.com"]::before {
/* 940  */ 	content: "\e61b";
/* 941  */ }
/* 942  */
/* 943  */ .author-social-contacts a[href*='instagram.com']::before,
/* 944  */ .teams-social a[href*='instagram.com']::before,
/* 945  */ ul.social-links a[href*='instagram.com']::before {
/* 946  */ 	content: "\f16d";
/* 947  */ }
/* 948  */
/* 949  */ .author-social-contacts a[href*='youtube.com']::before,
/* 950  */ .teams-social a[href*='youtube.com']::before,

/* style.css */

/* 951  */ ul.social-links a[href*='youtube.com']::before {
/* 952  */ 	content: "\f167";
/* 953  */ }
/* 954  */
/* 955  */ .author-social-contacts a[href*='discord.com']::before,
/* 956  */ .teams-social a[href*='discord.com']::before,
/* 957  */ ul.social-links a[href*='discord.com']::before {
/* 958  */ 	content: "\f392";
/* 959  */ }
/* 960  */
/* 961  */ .author-social-contacts a[href*='dribbble.com']::before,
/* 962  */ .teams-social a[href*='dribbble.com']::before,
/* 963  */ ul.social-links a[href*='dribbble.com']::before {
/* 964  */ 	content: "\f17d";
/* 965  */ }
/* 966  */
/* 967  */ .author-social-contacts a[href*='google.com']::before,
/* 968  */ .teams-social a[href*='google.com']::before,
/* 969  */ ul.social-links a[href*='google.com']::before {
/* 970  */ 	content: "\f1a0";
/* 971  */ }
/* 972  */
/* 973  */ .author-social-contacts a[href*='line.me']::before,
/* 974  */ .teams-social a[href*='line.me']::before,
/* 975  */ ul.social-links a[href*='line.me']::before {
/* 976  */ 	content: "\f3c0";
/* 977  */ }
/* 978  */
/* 979  */ .author-social-contacts a[href*='linkedin.com']::before,
/* 980  */ .teams-social a[href*='linkedin.com']::before,
/* 981  */ ul.social-links a[href*='linkedin.com']::before {
/* 982  */ 	content: "\f08c";
/* 983  */ }
/* 984  */
/* 985  */ .author-social-contacts a[href*='medium.com']::before,
/* 986  */ .teams-social a[href*='medium.com']::before,
/* 987  */ ul.social-links a[href*='medium.com']::before {
/* 988  */ 	content: "\f23a";
/* 989  */ }
/* 990  */
/* 991  */ .author-social-contacts a[href*='messenger.com']::before,
/* 992  */ .teams-social a[href*='messenger.com']::before,
/* 993  */ ul.social-links a[href*='messenger.com']::before {
/* 994  */ 	content: "\f39f";
/* 995  */ }
/* 996  */
/* 997  */ .author-social-contacts a[href*='paypal.com']::before,
/* 998  */ .teams-social a[href*='paypal.com']::before,
/* 999  */ ul.social-links a[href*='paypal.com']::before {
/* 1000 */ 	content: "\f1ed";

/* style.css */

/* 1001 */ }
/* 1002 */
/* 1003 */ .author-social-contacts a[href*='pinterest.com']::before,
/* 1004 */ .teams-social a[href*='pinterest.com']::before,
/* 1005 */ ul.social-links a[href*='pinterest.com']::before {
/* 1006 */ 	content: "\f0d2";
/* 1007 */ }
/* 1008 */
/* 1009 */ .author-social-contacts a[href*='reddit.com']::before,
/* 1010 */ .teams-social a[href*='reddit.com']::before,
/* 1011 */ ul.social-links a[href*='reddit.com']::before {
/* 1012 */ 	content: "\f1a1";
/* 1013 */ }
/* 1014 */
/* 1015 */ .author-social-contacts a[href*='skype.com']::before,
/* 1016 */ .teams-social a[href*='skype.com']::before,
/* 1017 */ ul.social-links a[href*='skype.com']::before {
/* 1018 */ 	content: "\f17e";
/* 1019 */ }
/* 1020 */
/* 1021 */ .author-social-contacts a[href*='slack.com']::before,
/* 1022 */ .teams-social a[href*='slack.com']::before,
/* 1023 */ ul.social-links a[href*='slack.com']::before {
/* 1024 */ 	content: "\f198";
/* 1025 */ }
/* 1026 */
/* 1027 */ .author-social-contacts a[href*='snapchat.com']::before,
/* 1028 */ .teams-social a[href*='snapchat.com']::before,
/* 1029 */ ul.social-links a[href*='snapchat.com']::before {
/* 1030 */ 	content: "\f2ad";
/* 1031 */ }
/* 1032 */
/* 1033 */ .author-social-contacts a[href*='spotify.com']::before,
/* 1034 */ .teams-social a[href*='spotify.com']::before,
/* 1035 */ ul.social-links a[href*='spotify.com']::before {
/* 1036 */ 	content: "\f1bc";
/* 1037 */ }
/* 1038 */
/* 1039 */ .author-social-contacts a[href*='stackoverflow.com']::before,
/* 1040 */ .teams-social a[href*='stackoverflow.com']::before,
/* 1041 */ ul.social-links a[href*='stackoverflow.com']::before {
/* 1042 */ 	content: "\f16c";
/* 1043 */ }
/* 1044 */
/* 1045 */ .author-social-contacts a[href*='t.me']::before, .author-social-contacts a[href*='telegram.org']::before,
/* 1046 */ .teams-social a[href*='t.me']::before,
/* 1047 */ .teams-social a[href*='telegram.org']::before,
/* 1048 */ ul.social-links a[href*='t.me']::before,
/* 1049 */ ul.social-links a[href*='telegram.org']::before {
/* 1050 */ 	content: "\f3fe";

/* style.css */

/* 1051 */ }
/* 1052 */
/* 1053 */ .author-social-contacts a[href*='twitch.tv']::before,
/* 1054 */ .teams-social a[href*='twitch.tv']::before,
/* 1055 */ ul.social-links a[href*='twitch.tv']::before {
/* 1056 */ 	content: "\f1e8";
/* 1057 */ }
/* 1058 */
/* 1059 */ .author-social-contacts a[href*='vimeo.com']::before,
/* 1060 */ .teams-social a[href*='vimeo.com']::before,
/* 1061 */ ul.social-links a[href*='vimeo.com']::before {
/* 1062 */ 	content: "\f27d";
/* 1063 */ }
/* 1064 */
/* 1065 */ .author-social-contacts a[href*='whatsapp.com']::before,
/* 1066 */ .teams-social a[href*='whatsapp.com']::before,
/* 1067 */ ul.social-links a[href*='whatsapp.com']::before {
/* 1068 */ 	content: "\f232";
/* 1069 */ }
/* 1070 */
/* 1071 */ .author-social-contacts a[href*='wordpress.com']::before, .author-social-contacts a[href*='wordpress.org']::before,
/* 1072 */ .teams-social a[href*='wordpress.com']::before,
/* 1073 */ .teams-social a[href*='wordpress.org']::before,
/* 1074 */ ul.social-links a[href*='wordpress.com']::before,
/* 1075 */ ul.social-links a[href*='wordpress.org']::before {
/* 1076 */ 	content: "\f19a";
/* 1077 */ }
/* 1078 */
/* 1079 */ .author-social-contacts a[href*='youtube.com']::before,
/* 1080 */ .teams-social a[href*='youtube.com']::before,
/* 1081 */ ul.social-links a[href*='youtube.com']::before {
/* 1082 */ 	content: "\f167";
/* 1083 */ }
/* 1084 */
/* 1085 */ .author-social-contacts a[href*='tiktok.com']::before,
/* 1086 */ .teams-social a[href*='tiktok.com']::before,
/* 1087 */ ul.social-links a[href*='tiktok.com']::before {
/* 1088 */ 	content: "\e07b";
/* 1089 */ }
/* 1090 */
/* 1091 */ .author-social-contacts a[href*='vk.com']::before,
/* 1092 */ .teams-social a[href*='vk.com']::before,
/* 1093 */ ul.social-links a[href*='vk.com']::before {
/* 1094 */ 	content: "\f189";
/* 1095 */ }
/* 1096 */
/* 1097 */ .author-social-contacts a[href*='qq.com']::before,
/* 1098 */ .teams-social a[href*='qq.com']::before,
/* 1099 */ ul.social-links a[href*='qq.com']::before {
/* 1100 */ 	content: "\f1d6";

/* style.css */

/* 1101 */ }
/* 1102 */
/* 1103 */ .author-social-contacts a[href*='weibo.com']::before,
/* 1104 */ .teams-social a[href*='weibo.com']::before,
/* 1105 */ ul.social-links a[href*='weibo.com']::before {
/* 1106 */ 	content: "\f18a";
/* 1107 */ }
/* 1108 */
/* 1109 */ .author-social-contacts a:focus, .author-social-contacts a:hover,
/* 1110 */ .teams-social a:focus,
/* 1111 */ .teams-social a:hover,
/* 1112 */ ul.social-links a:focus,
/* 1113 */ ul.social-links a:hover {
/* 1114 */ 	opacity: 1;
/* 1115 */ }
/* 1116 */
/* 1117 */ .widget_legal_news_social_icons ul.social-links a {
/* 1118 */ 	font-size: var(--font-size-xs);
/* 1119 */ 	padding: 12px;
/* 1120 */ 	opacity: 1;
/* 1121 */ 	width: auto;
/* 1122 */ 	height: auto;
/* 1123 */ 	color: #fff;
/* 1124 */ 	line-height: 1;
/* 1125 */ 	border-radius: 5px;
/* 1126 */ 	overflow: visible;
/* 1127 */ 	display: flex;
/* 1128 */ 	align-items: center;
/* 1129 */ 	justify-content: center;
/* 1130 */ 	gap: 5px;
/* 1131 */ 	margin-inline-end: 10px;
/* 1132 */ 	margin-block-end: 10px;
/* 1133 */ 	opacity: 0.7;
/* 1134 */ }
/* 1135 */
/* 1136 */ .widget_legal_news_social_icons ul.social-links a[href*='facebook.com'] {
/* 1137 */ 	background-color: #3b5999;
/* 1138 */ }
/* 1139 */
/* 1140 */ .widget_legal_news_social_icons ul.social-links a[href*="threads.com"] {
/* 1141 */ 	background-color: #000000;
/* 1142 */ }
/* 1143 */
/* 1144 */ .widget_legal_news_social_icons ul.social-links a[href*='twitter.com'], .widget_legal_news_social_icons ul.social-links a[href*="x.com"] {
/* 1145 */ 	background-color: #000000;
/* 1146 */ }
/* 1147 */
/* 1148 */ .widget_legal_news_social_icons ul.social-links a[href*='instagram.com'] {
/* 1149 */ 	background-color: #3F729B;
/* 1150 */ }

/* style.css */

/* 1151 */
/* 1152 */ .widget_legal_news_social_icons ul.social-links a[href*='youtube.com'] {
/* 1153 */ 	background-color: #cd201f;
/* 1154 */ }
/* 1155 */
/* 1156 */ .widget_legal_news_social_icons ul.social-links a[href*='discord.com'] {
/* 1157 */ 	background-color: #5865F2;
/* 1158 */ }
/* 1159 */
/* 1160 */ .widget_legal_news_social_icons ul.social-links a[href*='dribbble.com'] {
/* 1161 */ 	background-color: #ea4c89;
/* 1162 */ }
/* 1163 */
/* 1164 */ .widget_legal_news_social_icons ul.social-links a[href*='google.com'] {
/* 1165 */ 	background-color: #dd4b39;
/* 1166 */ }
/* 1167 */
/* 1168 */ .widget_legal_news_social_icons ul.social-links a[href*='line.me'] {
/* 1169 */ 	background-color: #00b900;
/* 1170 */ }
/* 1171 */
/* 1172 */ .widget_legal_news_social_icons ul.social-links a[href*='linkedin.com'] {
/* 1173 */ 	background-color: #0e76a8;
/* 1174 */ }
/* 1175 */
/* 1176 */ .widget_legal_news_social_icons ul.social-links a[href*='medium.com'] {
/* 1177 */ 	background-color: #66cdaa;
/* 1178 */ }
/* 1179 */
/* 1180 */ .widget_legal_news_social_icons ul.social-links a[href*='messenger.com'] {
/* 1181 */ 	background-color: #006AFF;
/* 1182 */ }
/* 1183 */
/* 1184 */ .widget_legal_news_social_icons ul.social-links a[href*='paypal.com'] {
/* 1185 */ 	background-color: #3b7bbf;
/* 1186 */ }
/* 1187 */
/* 1188 */ .widget_legal_news_social_icons ul.social-links a[href*='pinterest.com'] {
/* 1189 */ 	background-color: #E60023;
/* 1190 */ }
/* 1191 */
/* 1192 */ .widget_legal_news_social_icons ul.social-links a[href*='reddit.com'] {
/* 1193 */ 	background-color: #ff5700;
/* 1194 */ }
/* 1195 */
/* 1196 */ .widget_legal_news_social_icons ul.social-links a[href*='skype.com'] {
/* 1197 */ 	background-color: #00aff0;
/* 1198 */ }
/* 1199 */
/* 1200 */ .widget_legal_news_social_icons ul.social-links a[href*='slack.com'] {

/* style.css */

/* 1201 */ 	background-color: #ECB22E;
/* 1202 */ }
/* 1203 */
/* 1204 */ .widget_legal_news_social_icons ul.social-links a[href*='snapchat.com'] {
/* 1205 */ 	background-color: #FFFC00;
/* 1206 */ }
/* 1207 */
/* 1208 */ .widget_legal_news_social_icons ul.social-links a[href*='spotify.com'] {
/* 1209 */ 	background-color: #1DB954;
/* 1210 */ }
/* 1211 */
/* 1212 */ .widget_legal_news_social_icons ul.social-links a[href*='stackoverflow.com'] {
/* 1213 */ 	background-color: #F47F24;
/* 1214 */ }
/* 1215 */
/* 1216 */ .widget_legal_news_social_icons ul.social-links a[href*='t.me'], .widget_legal_news_social_icons ul.social-links a[href*='telegram.org'] {
/* 1217 */ 	background-color: #229ED9;
/* 1218 */ }
/* 1219 */
/* 1220 */ .widget_legal_news_social_icons ul.social-links a[href*='twitch.tv'] {
/* 1221 */ 	background-color: #6441a5;
/* 1222 */ }
/* 1223 */
/* 1224 */ .widget_legal_news_social_icons ul.social-links a[href*='vimeo.com'] {
/* 1225 */ 	background-color: #86c9ef;
/* 1226 */ }
/* 1227 */
/* 1228 */ .widget_legal_news_social_icons ul.social-links a[href*='whatsapp.com'] {
/* 1229 */ 	background-color: #25d366;
/* 1230 */ }
/* 1231 */
/* 1232 */ .widget_legal_news_social_icons ul.social-links a[href*='wordpress.com'], .widget_legal_news_social_icons ul.social-links a[href*='wordpress.org'] {
/* 1233 */ 	background-color: #21759b;
/* 1234 */ }
/* 1235 */
/* 1236 */ .widget_legal_news_social_icons ul.social-links a[href*='youtube.com'] {
/* 1237 */ 	background-color: #c4302b;
/* 1238 */ }
/* 1239 */
/* 1240 */ .widget_legal_news_social_icons ul.social-links a[href*='tiktok.com'] {
/* 1241 */ 	background-color: #ff0050;
/* 1242 */ }
/* 1243 */
/* 1244 */ .widget_legal_news_social_icons ul.social-links a[href*='vk.com'] {
/* 1245 */ 	background-color: #45668e;
/* 1246 */ }
/* 1247 */
/* 1248 */ .widget_legal_news_social_icons ul.social-links a[href*='qq.com'] {
/* 1249 */ 	background-color: #09f;
/* 1250 */ }

/* style.css */

/* 1251 */
/* 1252 */ .widget_legal_news_social_icons ul.social-links a[href*='weibo.com'] {
/* 1253 */ 	background-color: #fa005e;
/* 1254 */ }
/* 1255 */
/* 1256 */ .widget_legal_news_social_icons ul.social-links a:focus, .widget_legal_news_social_icons ul.social-links a:hover {
/* 1257 */ 	opacity: 1;
/* 1258 */ }
/* 1259 */
/* 1260 */ .site-footer-bottom-wrapper ul.social-links li a {
/* 1261 */ 	color: var(--text-color-normal);
/* 1262 */ }
/* 1263 */
/* 1264 */ /* Forms
/* 1265 *| --------------------------------------------- */
/* 1266 */ button,
/* 1267 */ input[type="button"],
/* 1268 */ input[type="reset"],
/* 1269 */ input[type="submit"] {
/* 1270 */ 	border: 1px solid;
/* 1271 */ 	border-color: var(--theme-color);
/* 1272 */ 	border-radius: 0;
/* 1273 */ 	background: var(--theme-color);
/* 1274 */ 	color: var(--white);
/* 1275 */ 	font-size: var(--font-size-sm);
/* 1276 */ 	line-height: 1;
/* 1277 */ 	padding: 0.6em 1em;
/* 1278 */ }
/* 1279 */
/* 1280 */ button:focus, button:hover,
/* 1281 */ input[type="button"]:focus,
/* 1282 */ input[type="button"]:hover,
/* 1283 */ input[type="reset"]:focus,
/* 1284 */ input[type="reset"]:hover,
/* 1285 */ input[type="submit"]:focus,
/* 1286 */ input[type="submit"]:hover {
/* 1287 */ 	opacity: 0.8;
/* 1288 */ }
/* 1289 */
/* 1290 */ button:active, button:focus,
/* 1291 */ input[type="button"]:active,
/* 1292 */ input[type="button"]:focus,
/* 1293 */ input[type="reset"]:active,
/* 1294 */ input[type="reset"]:focus,
/* 1295 */ input[type="submit"]:active,
/* 1296 */ input[type="submit"]:focus {
/* 1297 */ 	border-color: #aaa #bbb #bbb;
/* 1298 */ }
/* 1299 */
/* 1300 */ input[type="text"],

/* style.css */

/* 1301 */ input[type="email"],
/* 1302 */ input[type="url"],
/* 1303 */ input[type="password"],
/* 1304 */ input[type="search"],
/* 1305 */ input[type="number"],
/* 1306 */ input[type="tel"],
/* 1307 */ input[type="range"],
/* 1308 */ input[type="date"],
/* 1309 */ input[type="month"],
/* 1310 */ input[type="week"],
/* 1311 */ input[type="time"],
/* 1312 */ input[type="datetime"],
/* 1313 */ input[type="datetime-local"],
/* 1314 */ input[type="color"],
/* 1315 */ textarea {
/* 1316 */ 	color: #666;
/* 1317 */ 	border: 1px solid #ccc;
/* 1318 */ 	border-radius: 0;
/* 1319 */ 	padding: 3px;
/* 1320 */ 	width: 100%;
/* 1321 */ }
/* 1322 */
/* 1323 */ input[type="text"]:focus,
/* 1324 */ input[type="email"]:focus,
/* 1325 */ input[type="url"]:focus,
/* 1326 */ input[type="password"]:focus,
/* 1327 */ input[type="search"]:focus,
/* 1328 */ input[type="number"]:focus,
/* 1329 */ input[type="tel"]:focus,
/* 1330 */ input[type="range"]:focus,
/* 1331 */ input[type="date"]:focus,
/* 1332 */ input[type="month"]:focus,
/* 1333 */ input[type="week"]:focus,
/* 1334 */ input[type="time"]:focus,
/* 1335 */ input[type="datetime"]:focus,
/* 1336 */ input[type="datetime-local"]:focus,
/* 1337 */ input[type="color"]:focus,
/* 1338 */ textarea:focus {
/* 1339 */ 	color: #111;
/* 1340 */ }
/* 1341 */
/* 1342 */ select {
/* 1343 */ 	border: 1px solid #ccc;
/* 1344 */ }
/* 1345 */
/* 1346 */ textarea {
/* 1347 */ 	width: 100%;
/* 1348 */ }
/* 1349 */
/* 1350 */ /*--------------------------------------------------------------

/* style.css *|

/* 1351 *| # Layouts
/* 1352 *| --------------------------------------------------------------*/
/* 1353 */ .right-sidebar .ascendoor-wrapper .ascendoor-page {
/* 1354 */ 	display: grid;
/* 1355 */ 	grid-gap: 30px;
/* 1356 */ 	grid-template-columns: auto 25%;
/* 1357 */ 	grid-template-areas: "main sidebar";
/* 1358 */ 	margin-top: 50px;
/* 1359 */ }
/* 1360 */
/* 1361 */ @media (max-width: 991px) {
/* 1362 */ 	.right-sidebar .ascendoor-wrapper .ascendoor-page {
/* 1363 */ 		display: block;
/* 1364 */ 	}
/* 1365 */ }
/* 1366 */
/* 1367 */ .right-sidebar .ascendoor-wrapper .ascendoor-page .site-main {
/* 1368 */ 	grid-area: main;
/* 1369 */ 	overflow: hidden;
/* 1370 */ 	/* Resolves issue with <pre> elements forcing full width. */
/* 1371 */ }
/* 1372 */
/* 1373 */ .right-sidebar .ascendoor-wrapper .ascendoor-page .widget-area {
/* 1374 */ 	grid-area: sidebar;
/* 1375 */ 	grid-area: sidebar;
/* 1376 */ 	position: sticky;
/* 1377 */ 	top: 40px;
/* 1378 */ 	align-self: flex-start;
/* 1379 */ }
/* 1380 */
/* 1381 */ .no-sidebar .ascendoor-wrapper .ascendoor-page {
/* 1382 */ 	display: block;
/* 1383 */ }
/* 1384 */
/* 1385 */ .left-sidebar .ascendoor-wrapper .ascendoor-page {
/* 1386 */ 	display: grid;
/* 1387 */ 	grid-gap: 30px;
/* 1388 */ 	grid-template-columns: 25% auto;
/* 1389 */ 	grid-template-areas: "sidebar main";
/* 1390 */ }
/* 1391 */
/* 1392 */ @media (max-width: 991px) {
/* 1393 */ 	.left-sidebar .ascendoor-wrapper .ascendoor-page {
/* 1394 */ 		display: block;
/* 1395 */ 	}
/* 1396 */ }
/* 1397 */
/* 1398 */ .left-sidebar .ascendoor-wrapper .ascendoor-page .site-main {
/* 1399 */ 	grid-area: main;
/* 1400 */ 	overflow: hidden;

/* style.css */

/* 1401 */ 	/* Resolves issue with <pre> elements forcing full width. */
/* 1402 */ }
/* 1403 */
/* 1404 */ .left-sidebar .ascendoor-wrapper .ascendoor-page .widget-area {
/* 1405 */ 	grid-area: sidebar;
/* 1406 */ 	position: sticky;
/* 1407 */ 	top: 40px;
/* 1408 */ 	align-self: flex-start;
/* 1409 */ }
/* 1410 */
/* 1411 */ .no-sidebar .ascendoor-wrapper .ascendoor-page {
/* 1412 */ 	display: block;
/* 1413 */ }
/* 1414 */
/* 1415 */ /*--------------------------------------------------------------
/* 1416 *| # Components
/* 1417 *| --------------------------------------------------------------*/
/* 1418 */ /* Navigation
/* 1419 *| --------------------------------------------- */
/* 1420 */ .main-navigation {
/* 1421 */ 	display: block;
/* 1422 */ 	width: 100%;
/* 1423 */ }
/* 1424 */
/* 1425 */ .main-navigation ul {
/* 1426 */ 	display: none;
/* 1427 */ 	list-style: none;
/* 1428 */ 	margin: 0;
/* 1429 */ 	padding-inline-start: 0;
/* 1430 */ }
/* 1431 */
/* 1432 */ .main-navigation ul ul {
/* 1433 */ 	z-index: 99999;
/* 1434 */ 	display: block;
/* 1435 */ }
/* 1436 */
/* 1437 */ .main-navigation ul ul ul {
/* 1438 */ 	inset-inline-start: -999em;
/* 1439 */ 	top: 0;
/* 1440 */ }
/* 1441 */
/* 1442 */ .main-navigation ul ul li:hover > ul,
/* 1443 */ .main-navigation ul ul li.focus > ul {
/* 1444 */ 	display: block;
/* 1445 */ 	inset-inline-start: auto;
/* 1446 */ }
/* 1447 */
/* 1448 */ .main-navigation ul ul a {
/* 1449 */ 	padding: 15px 20px;
/* 1450 */ 	text-transform: capitalize;

/* style.css */

/* 1451 */ 	color: var(--text-color-normal);
/* 1452 */ 	border-bottom: 1px solid var(--clr-sub-border);
/* 1453 */ }
/* 1454 */
/* 1455 */ .main-navigation ul ul a:focus, .main-navigation ul ul a:hover {
/* 1456 */ 	color: var(--theme-color);
/* 1457 */ }
/* 1458 */
/* 1459 */ .main-navigation ul li:hover > ul,
/* 1460 */ .main-navigation ul li:focus > ul {
/* 1461 */ 	inset-inline-start: auto;
/* 1462 */ }
/* 1463 */
/* 1464 */ .main-navigation li {
/* 1465 */ 	position: relative;
/* 1466 */ }
/* 1467 */
/* 1468 */ .main-navigation a {
/* 1469 */ 	padding: 17px 20px;
/* 1470 */ 	font-size: 0.9375rem;
/* 1471 */ 	color: var(--white);
/* 1472 */ 	text-transform: uppercase;
/* 1473 */ 	display: block;
/* 1474 */ 	position: relative;
/* 1475 */ 	text-decoration: none;
/* 1476 */ 	transition: all 0.3s ease;
/* 1477 */ }
/* 1478 */
/* 1479 */ @media (min-width: 992px) {
/* 1480 */ 	.main-navigation a {
/* 1481 */ 		font-weight: bold;
/* 1482 */ 	}
/* 1483 */ }
/* 1484 */
/* 1485 */ .main-navigation a:focus, .main-navigation a:hover {
/* 1486 */ 	color: var(--theme-color);
/* 1487 */ }
/* 1488 */
/* 1489 */ .main-navigation .current_page_item > a,
/* 1490 */ .main-navigation .current-menu-item > a,
/* 1491 */ .main-navigation .current_page_ancestor > a,
/* 1492 */ .main-navigation .current-menu-ancestor > a {
/* 1493 */ 	color: var(--theme-color);
/* 1494 */ }
/* 1495 */
/* 1496 */ .main-navigation .current_page_item > a:focus,
/* 1497 */ .main-navigation .current-menu-item > a:focus,
/* 1498 */ .main-navigation .current_page_ancestor > a:focus,
/* 1499 */ .main-navigation .current-menu-ancestor > a:focus {
/* 1500 */ 	outline: thin dotted;

/* style.css */

/* 1501 */ 	outline-offset: 2px;
/* 1502 */ }
/* 1503 */
/* 1504 */ @media (min-width: 992px) {
/* 1505 */ 	.main-navigation ul.menu li .children,
/* 1506 */ 	.main-navigation ul.menu li .sub-menu {
/* 1507 */ 		inset-inline-start: -999em;
/* 1508 */ 		padding: 0;
/* 1509 */ 		position: absolute;
/* 1510 */ 		top: 100%;
/* 1511 */ 		z-index: 999;
/* 1512 */ 		margin: 30px 0 0;
/* 1513 */ 		width: 230px;
/* 1514 */ 		background: var(--clr-sub-background);
/* 1515 */ 	}
/* 1516 */ 	.main-navigation ul.menu li .children > li .children,
/* 1517 */ 	.main-navigation ul.menu li .children > li .sub-menu,
/* 1518 */ 	.main-navigation ul.menu li .sub-menu > li .children,
/* 1519 */ 	.main-navigation ul.menu li .sub-menu > li .sub-menu {
/* 1520 */ 		top: 0;
/* 1521 */ 		margin-top: 0;
/* 1522 */ 		inset-inline-start: -999em;
/* 1523 */ 		margin-inline-start: 30px;
/* 1524 */ 	}
/* 1525 */ 	.main-navigation ul.menu li.menu-item-has-children > a::after {
/* 1526 */ 		-webkit-font-smoothing: antialiased;
/* 1527 */ 		-moz-osx-font-smoothing: grayscale;
/* 1528 */ 		display: inline-block;
/* 1529 */ 		font-style: normal;
/* 1530 */ 		font-variant: normal;
/* 1531 */ 		font-weight: 400;
/* 1532 */ 		line-height: 1;
/* 1533 */ 		font-family: Font Awesome\ 5 Free;
/* 1534 */ 		font-weight: 900;
/* 1535 */ 		line-height: inherit;
/* 1536 */ 		vertical-align: baseline;
/* 1537 */ 		content: "\f107";
/* 1538 */ 		display: inline-block;
/* 1539 */ 		margin-inline-start: 10px;
/* 1540 */ 	}
/* 1541 */ 	.main-navigation ul.menu > li:hover > .children,
/* 1542 */ 	.main-navigation ul.menu > li:hover > .sub-menu {
/* 1543 */ 		margin: 0;
/* 1544 */ 		margin-top: 0px;
/* 1545 */ 		inset-inline-start: 0;
/* 1546 */ 	}
/* 1547 */ 	.main-navigation ul.menu > li:focus-within > .children,
/* 1548 */ 	.main-navigation ul.menu > li:focus-within > .sub-menu {
/* 1549 */ 		margin: 0;
/* 1550 */ 		margin-top: 0px;

/* style.css */

/* 1551 */ 		inset-inline-start: 0;
/* 1552 */ 	}
/* 1553 */ 	.main-navigation ul.menu .children,
/* 1554 */ 	.main-navigation ul.menu .sub-menu {
/* 1555 */ 		box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
/* 1556 */ 	}
/* 1557 */ 	.main-navigation ul.menu .children li.menu-item-has-children > a,
/* 1558 */ 	.main-navigation ul.menu .sub-menu li.menu-item-has-children > a {
/* 1559 */ 		padding-inline-end: 25px;
/* 1560 */ 	}
/* 1561 */ 	.main-navigation ul.menu .children li.menu-item-has-children > a::after,
/* 1562 */ 	.main-navigation ul.menu .sub-menu li.menu-item-has-children > a::after {
/* 1563 */ 		-webkit-font-smoothing: antialiased;
/* 1564 */ 		-moz-osx-font-smoothing: grayscale;
/* 1565 */ 		display: inline-block;
/* 1566 */ 		font-style: normal;
/* 1567 */ 		font-variant: normal;
/* 1568 */ 		font-weight: 400;
/* 1569 */ 		line-height: 1;
/* 1570 */ 		font-family: Font Awesome\ 5 Free;
/* 1571 */ 		font-weight: 900;
/* 1572 */ 		line-height: inherit;
/* 1573 */ 		vertical-align: baseline;
/* 1574 */ 		content: "\f105";
/* 1575 */ 		display: inline-block;
/* 1576 */ 		margin-left: 10px;
/* 1577 */ 		position: absolute;
/* 1578 */ 		inset-inline-end: 10px;
/* 1579 */ 		top: 50%;
/* 1580 */ 		transform: translateY(-50%);
/* 1581 */ 	}
/* 1582 */ 	body.rtl .main-navigation ul.menu .children li.menu-item-has-children > a::after, body.rtl
/* 1583 */ 	.main-navigation ul.menu .sub-menu li.menu-item-has-children > a::after {
/* 1584 */ 		content: "\f104";
/* 1585 */ 	}
/* 1586 */ 	.main-navigation ul.menu .children > li:hover > .children,
/* 1587 */ 	.main-navigation ul.menu .children > li:hover > .sub-menu,
/* 1588 */ 	.main-navigation ul.menu .sub-menu > li:hover > .children,
/* 1589 */ 	.main-navigation ul.menu .sub-menu > li:hover > .sub-menu {
/* 1590 */ 		inset-inline-start: 100%;
/* 1591 */ 		margin-inline-start: 0px;
/* 1592 */ 		margin-top: 0px;
/* 1593 */ 	}
/* 1594 */ 	.main-navigation ul.menu .children > li:focus-within > .children,
/* 1595 */ 	.main-navigation ul.menu .children > li:focus-within > .sub-menu,
/* 1596 */ 	.main-navigation ul.menu .sub-menu > li:focus-within > .children,
/* 1597 */ 	.main-navigation ul.menu .sub-menu > li:focus-within > .sub-menu {
/* 1598 */ 		inset-inline-start: 100%;
/* 1599 */ 		margin-inline-start: 0px;
/* 1600 */ 		margin-top: 0px;

/* style.css */

/* 1601 */ 	}
/* 1602 */ }
/* 1603 */
/* 1604 */ /* Small menu. */
/* 1605 */ .menu-toggle,
/* 1606 */ .main-navigation.toggled ul {
/* 1607 */ 	display: block;
/* 1608 */ }
/* 1609 */
/* 1610 */ .site-main .comment-navigation, .site-main
/* 1611 */ .posts-navigation, .site-main
/* 1612 */ .post-navigation {
/* 1613 */ 	margin: 0 0 1.5em;
/* 1614 */ }
/* 1615 */
/* 1616 */ .comment-navigation .nav-links,
/* 1617 */ .posts-navigation .nav-links,
/* 1618 */ .post-navigation .nav-links {
/* 1619 */ 	display: flex;
/* 1620 */ }
/* 1621 */
/* 1622 */ @media only screen and (max-width: 480px) {
/* 1623 */ 	.comment-navigation .nav-links,
/* 1624 */ 	.posts-navigation .nav-links,
/* 1625 */ 	.post-navigation .nav-links {
/* 1626 */ 		flex-wrap: wrap;
/* 1627 */ 	}
/* 1628 */ }
/* 1629 */
/* 1630 */ .comment-navigation .nav-previous,
/* 1631 */ .posts-navigation .nav-previous,
/* 1632 */ .post-navigation .nav-previous {
/* 1633 */ 	flex: 1 0 50%;
/* 1634 */ }
/* 1635 */
/* 1636 */ .comment-navigation .nav-previous a,
/* 1637 */ .posts-navigation .nav-previous a,
/* 1638 */ .post-navigation .nav-previous a {
/* 1639 */ 	display: inline-flex;
/* 1640 */ 	gap: 5px;
/* 1641 */ 	color: var(--text-color-normal);
/* 1642 */ 	transition: all 0.3s ease;
/* 1643 */ 	text-decoration: none;
/* 1644 */ }
/* 1645 */
/* 1646 */ .comment-navigation .nav-previous a .nav-subtitle,
/* 1647 */ .posts-navigation .nav-previous a .nav-subtitle,
/* 1648 */ .post-navigation .nav-previous a .nav-subtitle {
/* 1649 */ 	font-size: var(--font-size-sm);
/* 1650 */ }

/* style.css */

/* 1651 */
/* 1652 */ .comment-navigation .nav-previous a:hover,
/* 1653 */ .posts-navigation .nav-previous a:hover,
/* 1654 */ .post-navigation .nav-previous a:hover {
/* 1655 */ 	color: var(--theme-color);
/* 1656 */ }
/* 1657 */
/* 1658 */ @media only screen and (max-width: 480px) {
/* 1659 */ 	.comment-navigation .nav-previous a,
/* 1660 */ 	.posts-navigation .nav-previous a,
/* 1661 */ 	.post-navigation .nav-previous a {
/* 1662 */ 		flex-direction: column;
/* 1663 */ 	}
/* 1664 */ }
/* 1665 */
/* 1666 */ .comment-navigation .nav-next,
/* 1667 */ .posts-navigation .nav-next,
/* 1668 */ .post-navigation .nav-next {
/* 1669 */ 	text-align: end;
/* 1670 */ 	flex: 1 0 50%;
/* 1671 */ }
/* 1672 */
/* 1673 */ .comment-navigation .nav-next a,
/* 1674 */ .posts-navigation .nav-next a,
/* 1675 */ .post-navigation .nav-next a {
/* 1676 */ 	display: inline-flex;
/* 1677 */ 	gap: 5px;
/* 1678 */ 	justify-content: flex-end;
/* 1679 */ 	color: var(--text-color-normal);
/* 1680 */ 	transition: all 0.3s ease;
/* 1681 */ 	text-decoration: none;
/* 1682 */ }
/* 1683 */
/* 1684 */ .comment-navigation .nav-next a .nav-subtitle,
/* 1685 */ .posts-navigation .nav-next a .nav-subtitle,
/* 1686 */ .post-navigation .nav-next a .nav-subtitle {
/* 1687 */ 	font-size: var(--font-size-sm);
/* 1688 */ }
/* 1689 */
/* 1690 */ .comment-navigation .nav-next a:focus, .comment-navigation .nav-next a:hover,
/* 1691 */ .posts-navigation .nav-next a:focus,
/* 1692 */ .posts-navigation .nav-next a:hover,
/* 1693 */ .post-navigation .nav-next a:focus,
/* 1694 */ .post-navigation .nav-next a:hover {
/* 1695 */ 	color: var(--theme-color);
/* 1696 */ }
/* 1697 */
/* 1698 */ @media only screen and (max-width: 480px) {
/* 1699 */ 	.comment-navigation .nav-next a,
/* 1700 */ 	.posts-navigation .nav-next a,

/* style.css */

/* 1701 */ 	.post-navigation .nav-next a {
/* 1702 */ 		flex-direction: column-reverse;
/* 1703 */ 	}
/* 1704 */ }
/* 1705 */
/* 1706 */ @media (max-width: 991px) {
/* 1707 */ 	.main-navigation ul a {
/* 1708 */ 		color: var(--clr-foreground);
/* 1709 */ 		padding: 17px 20px;
/* 1710 */ 	}
/* 1711 */ }
/* 1712 */
/* 1713 */ @media (max-width: 991px) {
/* 1714 */ 	.main-navigation ul ul {
/* 1715 */ 		position: relative;
/* 1716 */ 		position: unset;
/* 1717 */ 		float: none;
/* 1718 */ 		padding-inline-start: 5px;
/* 1719 */ 	}
/* 1720 */ }
/* 1721 */
/* 1722 */ .main-navigation li.menu-item-has-children > a::after {
/* 1723 */ 	-webkit-font-smoothing: antialiased;
/* 1724 */ 	-moz-osx-font-smoothing: grayscale;
/* 1725 */ 	display: inline-block;
/* 1726 */ 	font-style: normal;
/* 1727 */ 	font-variant: normal;
/* 1728 */ 	font-weight: 400;
/* 1729 */ 	line-height: 1;
/* 1730 */ 	font-family: Font Awesome\ 5 Free;
/* 1731 */ 	font-weight: 900;
/* 1732 */ 	line-height: inherit;
/* 1733 */ 	vertical-align: baseline;
/* 1734 */ 	content: "\f107";
/* 1735 */ 	display: inline-block;
/* 1736 */ 	margin-inline-start: 10px;
/* 1737 */ }
/* 1738 */
/* 1739 */ @media (max-width: 992px) {
/* 1740 */ 	.main-navigation li.menu-item-has-children > ul {
/* 1741 */ 		height: 0;
/* 1742 */ 		transform: scaleY(0);
/* 1743 */ 		transform-origin: top left;
/* 1744 */ 		overflow: hidden;
/* 1745 */ 		transition: all 0.5s ease-in-out;
/* 1746 */ 	}
/* 1747 */ }
/* 1748 */
/* 1749 */ @media (max-width: 1199.98px) {
/* 1750 */ 	.main-navigation li.menu-item-has-children:hover > ul, .main-navigation li.menu-item-has-children.focus > ul {

/* style.css */

/* 1751 */ 		height: auto;
/* 1752 */ 		transform: scaleY(1);
/* 1753 */ 	}
/* 1754 */ }
/* 1755 */
/* 1756 */ @media screen and (min-width: 992px) {
/* 1757 */ 	.menu-toggle {
/* 1758 */ 		display: none;
/* 1759 */ 	}
/* 1760 */ 	.main-navigation ul {
/* 1761 */ 		display: flex;
/* 1762 */ 		flex-wrap: wrap;
/* 1763 */ 	}
/* 1764 */ }
/* 1765 */
/* 1766 */ @media (max-width: 991px) {
/* 1767 */ 	body.admin-bar #site-navigation.toggled .main-navigation-links {
/* 1768 */ 		padding-top: 100px;
/* 1769 */ 	}
/* 1770 */ 	body.admin-bar #site-navigation button.menu-toggle.open {
/* 1771 */ 		top: 55px;
/* 1772 */ 	}
/* 1773 */ 	.bottom-header-part-wrapper .navigation-part {
/* 1774 */ 		align-items: center;
/* 1775 */ 	}
/* 1776 */ 	.bottom-header-part-wrapper .social-icons-part {
/* 1777 */ 		display: none;
/* 1778 */ 	}
/* 1779 */ 	#site-navigation button.menu-toggle {
/* 1780 */ 		width: 35px;
/* 1781 */ 		height: 35px;
/* 1782 */ 		position: relative;
/* 1783 */ 		transform: rotate(0deg);
/* 1784 */ 		transition: 0.5s ease-in-out;
/* 1785 */ 		cursor: pointer;
/* 1786 */ 		padding: 0;
/* 1787 */ 		background: none;
/* 1788 */ 		border: none;
/* 1789 */ 		margin: 5px;
/* 1790 */ 	}
/* 1791 */ 	#site-navigation button.menu-toggle span {
/* 1792 */ 		display: block;
/* 1793 */ 		position: absolute;
/* 1794 */ 		height: 3px;
/* 1795 */ 		width: 100%;
/* 1796 */ 		background: #fff;
/* 1797 */ 		border-radius: 3px;
/* 1798 */ 		opacity: 1;
/* 1799 */ 		left: 0;
/* 1800 */ 		transform: rotate(0deg);

/* style.css */

/* 1801 */ 		transition: 0.25s ease-in-out;
/* 1802 */ 	}
/* 1803 */ 	#site-navigation button.menu-toggle span:nth-child(1) {
/* 1804 */ 		top: calc(50% - 15px);
/* 1805 */ 	}
/* 1806 */ 	#site-navigation button.menu-toggle span:nth-child(2) {
/* 1807 */ 		top: 50%;
/* 1808 */ 		transform: translateY(-50%);
/* 1809 */ 	}
/* 1810 */ 	#site-navigation button.menu-toggle span:nth-child(3) {
/* 1811 */ 		bottom: calc(50% - 15px);
/* 1812 */ 	}
/* 1813 */ 	#site-navigation button.menu-toggle.open {
/* 1814 */ 		z-index: 18;
/* 1815 */ 		position: fixed !important;
/* 1816 */ 		inset-inline-end: 20px;
/* 1817 */ 		top: 20px;
/* 1818 */ 	}
/* 1819 */ 	#site-navigation button.menu-toggle.open span {
/* 1820 */ 		background-color: var(--clr-foreground);
/* 1821 */ 	}
/* 1822 */ 	#site-navigation button.menu-toggle.open span:nth-child(1) {
/* 1823 */ 		top: 14px;
/* 1824 */ 		width: 0%;
/* 1825 */ 		left: 50%;
/* 1826 */ 	}
/* 1827 */ 	#site-navigation button.menu-toggle.open span:nth-child(2) {
/* 1828 */ 		transform: rotate(45deg);
/* 1829 */ 	}
/* 1830 */ 	#site-navigation button.menu-toggle.open span:nth-child(3) {
/* 1831 */ 		top: 50%;
/* 1832 */ 		transform: translateY(-50%) rotate(-45deg);
/* 1833 */ 	}
/* 1834 */ 	#site-navigation .main-navigation-links {
/* 1835 */ 		position: fixed;
/* 1836 */ 		inset-inline-end: -130%;
/* 1837 */ 		height: 100%;
/* 1838 */ 		top: 0;
/* 1839 */ 		background-color: var(--clr-background);
/* 1840 */ 		min-width: 300px;
/* 1841 */ 		padding-top: 60px;
/* 1842 */ 		padding-inline-end: 10px;
/* 1843 */ 		width: 60%;
/* 1844 */ 		transition: all 400ms ease;
/* 1845 */ 		display: block;
/* 1846 */ 		border-inline-end: 1px solid #fff;
/* 1847 */ 		z-index: 13;
/* 1848 */ 		box-shadow: 2px 0 18px 0 rgba(0, 0, 0, 0.5);
/* 1849 */ 		opacity: 0;
/* 1850 */ 		visibility: hidden;

/* style.css */

/* 1851 */ 	}
/* 1852 */ 	#site-navigation.toggled .main-navigation-links {
/* 1853 */ 		inset-inline-end: 0;
/* 1854 */ 		inset-inline-start: auto;
/* 1855 */ 		overflow-x: auto;
/* 1856 */ 		opacity: 1;
/* 1857 */ 		visibility: visible;
/* 1858 */ 	}
/* 1859 */ 	#site-navigation.toggled .main-navigation-links li.current_page_item > a,
/* 1860 */ 	#site-navigation.toggled .main-navigation-links li.current-menu-item > a {
/* 1861 */ 		color: var(--theme-color);
/* 1862 */ 		font-weight: bold;
/* 1863 */ 	}
/* 1864 */ 	.navigation-part {
/* 1865 */ 		width: 100%;
/* 1866 */ 	}
/* 1867 */ }
/* 1868 */
/* 1869 */ @media (max-width: 480px) {
/* 1870 */ 	#site-navigation .main-navigation-links {
/* 1871 */ 		width: 80%;
/* 1872 */ 	}
/* 1873 */ 	body.admin-bar #site-navigation.toggled .main-navigation-links {
/* 1874 */ 		padding-top: 95px;
/* 1875 */ 	}
/* 1876 */ }
/* 1877 */
/* 1878 */ .magazine-carousel-slider-navigation .slick-arrow {
/* 1879 */ 	position: absolute;
/* 1880 */ 	top: 50%;
/* 1881 */ 	transform: translateY(-50%);
/* 1882 */ 	font-size: 18px;
/* 1883 */ 	width: 30px;
/* 1884 */ 	height: 30px;
/* 1885 */ 	background: #fff;
/* 1886 */ 	color: #4a4a4a;
/* 1887 */ 	text-align: center;
/* 1888 */ 	line-height: 30px;
/* 1889 */ 	z-index: 1;
/* 1890 */ 	cursor: pointer;
/* 1891 */ 	font-weight: 600;
/* 1892 */ 	visibility: hidden;
/* 1893 */ 	opacity: 0;
/* 1894 */ 	-webkit-transition: 0.4s;
/* 1895 */ 	-o-transition: 0.4s;
/* 1896 */ 	transition: 0.4s;
/* 1897 */ 	border: none;
/* 1898 */ 	padding: 0;
/* 1899 */ 	border-radius: 0;
/* 1900 */ }

/* style.css */

/* 1901 */
/* 1902 */ .magazine-carousel-slider-navigation .slick-arrow.slick-prev {
/* 1903 */ 	inset-inline-start: 0;
/* 1904 */ }
/* 1905 */
/* 1906 */ .magazine-carousel-slider-navigation .slick-arrow.slick-next {
/* 1907 */ 	inset-inline-end: 0;
/* 1908 */ }
/* 1909 */
/* 1910 */ .magazine-carousel-slider-navigation:hover .slick-arrow {
/* 1911 */ 	opacity: 1;
/* 1912 */ 	visibility: visible;
/* 1913 */ }
/* 1914 */
/* 1915 */ nav.navigation.pagination .nav-links {
/* 1916 */ 	display: flex;
/* 1917 */ 	gap: 5px;
/* 1918 */ 	margin: 10px 0 20px;
/* 1919 */ }
/* 1920 */
/* 1921 */ nav.navigation.pagination .nav-links span,
/* 1922 */ nav.navigation.pagination .nav-links a {
/* 1923 */ 	text-decoration: none;
/* 1924 */ 	width: 30px;
/* 1925 */ 	height: 30px;
/* 1926 */ 	display: flex;
/* 1927 */ 	align-items: center;
/* 1928 */ 	justify-content: center;
/* 1929 */ 	transition: all 0.3s ease;
/* 1930 */ 	color: var(--clr-foreground);
/* 1931 */ 	border: 1px solid var(--clr-foreground);
/* 1932 */ }
/* 1933 */
/* 1934 */ nav.navigation.pagination .nav-links span.prev, nav.navigation.pagination .nav-links span.next,
/* 1935 */ nav.navigation.pagination .nav-links a.prev,
/* 1936 */ nav.navigation.pagination .nav-links a.next {
/* 1937 */ 	font-size: 0;
/* 1938 */ }
/* 1939 */
/* 1940 */ nav.navigation.pagination .nav-links span.prev::after, nav.navigation.pagination .nav-links span.next::after,
/* 1941 */ nav.navigation.pagination .nav-links a.prev::after,
/* 1942 */ nav.navigation.pagination .nav-links a.next::after {
/* 1943 */ 	content: "\f30a";
/* 1944 */ 	font-size: 1rem;
/* 1945 */ 	display: inline-block;
/* 1946 */ 	font-style: normal;
/* 1947 */ 	font-variant: normal;
/* 1948 */ 	font-weight: 400;
/* 1949 */ 	line-height: 1;
/* 1950 */ 	font-weight: 900;

/* style.css */

/* 1951 */ 	line-height: inherit;
/* 1952 */ 	vertical-align: baseline;
/* 1953 */ 	font-family: Font Awesome\ 5 Free;
/* 1954 */ 	-moz-osx-font-smoothing: grayscale;
/* 1955 */ 	-webkit-font-smoothing: antialiased;
/* 1956 */ }
/* 1957 */
/* 1958 */ nav.navigation.pagination .nav-links span.next::after,
/* 1959 */ nav.navigation.pagination .nav-links a.next::after {
/* 1960 */ 	content: "\f30b";
/* 1961 */ }
/* 1962 */
/* 1963 */ nav.navigation.pagination .nav-links span:hover, nav.navigation.pagination .nav-links span:focus,
/* 1964 */ nav.navigation.pagination .nav-links a:hover,
/* 1965 */ nav.navigation.pagination .nav-links a:focus {
/* 1966 */ 	color: var(--theme-color);
/* 1967 */ 	border: 1px solid var(--theme-color);
/* 1968 */ }
/* 1969 */
/* 1970 */ nav.navigation.pagination .nav-links span.current {
/* 1971 */ 	color: var(--white);
/* 1972 */ 	background-color: var(--theme-color);
/* 1973 */ 	border: 1px solid var(--theme-color);
/* 1974 */ }
/* 1975 */
/* 1976 */ nav.navigation.pagination .nav-links span.dots {
/* 1977 */ 	border: none;
/* 1978 */ }
/* 1979 */
/* 1980 */ nav.navigation.pagination .nav-links span.dots:hover, nav.navigation.pagination .nav-links span.dots:focus {
/* 1981 */ 	color: var(--clr-foreground);
/* 1982 */ 	border: none;
/* 1983 */ }
/* 1984 */
/* 1985 */ /* Posts and pages
/* 1986 *| --------------------------------------------- */
/* 1987 */ .sticky {
/* 1988 */ 	display: block;
/* 1989 */ }
/* 1990 */
/* 1991 */ .post,
/* 1992 */ .page {
/* 1993 */ 	margin: 0 0 1.5em;
/* 1994 */ }
/* 1995 */
/* 1996 */ .updated:not(.published) {
/* 1997 */ 	display: none;
/* 1998 */ }
/* 1999 */
/* 2000 */ .page-content,

/* style.css */

/* 2001 */ .entry-content,
/* 2002 */ .entry-summary {
/* 2003 */ 	margin: 1.5em 0 0;
/* 2004 */ }
/* 2005 */
/* 2006 */ .page-links {
/* 2007 */ 	clear: both;
/* 2008 */ 	margin: 0 0 1.5em;
/* 2009 */ }
/* 2010 */
/* 2011 */ /*--------------------------------------------------------------
/* 2012 *| # 404 page
/* 2013 *| --------------------------------------------------------------*/
/* 2014 */ section.no-results.not-found {
/* 2015 */ 	margin-bottom: 50px;
/* 2016 */ }
/* 2017 */
/* 2018 */ /*--------------------------------------------------------------
/* 2019 *| # 404 page
/* 2020 *| --------------------------------------------------------------*/
/* 2021 */ /*--------------------------------------------------------------
/* 2022 *| # archive layouts
/* 2023 *| --------------------------------------------------------------*/
/* 2024 */ .magazine-archive-layout {
/* 2025 */ 	margin-bottom: 30px;
/* 2026 */ }
/* 2027 */
/* 2028 */ .magazine-archive-layout.grid-layout {
/* 2029 */ 	display: grid;
/* 2030 */ 	grid-gap: 30px;
/* 2031 */ }
/* 2032 */
/* 2033 */ .magazine-archive-layout.grid-layout article {
/* 2034 */ 	margin-bottom: 0;
/* 2035 */ }
/* 2036 */
/* 2037 */ .magazine-archive-layout.grid-layout.grid-column-2 {
/* 2038 */ 	grid-template-columns: repeat(2, 1fr);
/* 2039 */ }
/* 2040 */
/* 2041 */ @media (max-width: 480px) {
/* 2042 */ 	.magazine-archive-layout.grid-layout.grid-column-2 {
/* 2043 */ 		grid-template-columns: repeat(1, 1fr);
/* 2044 */ 	}
/* 2045 */ }
/* 2046 */
/* 2047 */ .magazine-archive-layout.grid-layout.grid-column-3 {
/* 2048 */ 	grid-template-columns: repeat(3, 1fr);
/* 2049 */ }
/* 2050 */

/* style.css */

/* 2051 */ @media (max-width: 480px) {
/* 2052 */ 	.magazine-archive-layout.grid-layout.grid-column-3 {
/* 2053 */ 		grid-template-columns: repeat(1, 1fr);
/* 2054 */ 	}
/* 2055 */ }
/* 2056 */
/* 2057 */ .magazine-archive-layout.grid-layout.grid-column-4 {
/* 2058 */ 	grid-template-columns: repeat(4, 1fr);
/* 2059 */ }
/* 2060 */
/* 2061 */ @media (max-width: 480px) {
/* 2062 */ 	.magazine-archive-layout.grid-layout.grid-column-4 {
/* 2063 */ 		grid-template-columns: repeat(1, 1fr);
/* 2064 */ 	}
/* 2065 */ }
/* 2066 */
/* 2067 */ /*--------------------------------------------------------------
/* 2068 *| # archive layouts
/* 2069 *| --------------------------------------------------------------*/
/* 2070 */ .site-main article .entry-header .entry-title {
/* 2071 */ 	font-size: var(--font-size-lg);
/* 2072 */ 	font-family: var(--font-main);
/* 2073 */ 	margin-top: 0;
/* 2074 */ 	margin-bottom: 1.3rem;
/* 2075 */ }
/* 2076 */
/* 2077 */ @media (min-width: 992px) {
/* 2078 */ 	.site-main article .entry-header .entry-title {
/* 2079 */ 		margin-bottom: 1.1rem;
/* 2080 */ 	}
/* 2081 */ }
/* 2082 */
/* 2083 */ .site-main article .entry-header .entry-title a {
/* 2084 */ 	text-decoration: none;
/* 2085 */ 	color: var(--text-color-normal);
/* 2086 */ }
/* 2087 */
/* 2088 */ .site-main article .entry-meta {
/* 2089 */ 	padding-bottom: 10px;
/* 2090 */ }
/* 2091 */
/* 2092 */ .site-main article .entry-meta span {
/* 2093 */ 	font-size: 1rem;
/* 2094 */ 	font-weight: normal;
/* 2095 */ }
/* 2096 */
/* 2097 */ .site-main article .entry-meta span a,
/* 2098 */ .site-main article .entry-meta span span {
/* 2099 */ 	font-weight: normal;
/* 2100 */ }

/* style.css */

/* 2101 */
/* 2102 */ .site-main article .entry-meta span a {
/* 2103 */ 	text-decoration: none;
/* 2104 */ 	color: var(--text-color-normal);
/* 2105 */ }
/* 2106 */
/* 2107 */ .site-main article .entry-meta span a:hover {
/* 2108 */ 	color: var(--theme-color);
/* 2109 */ }
/* 2110 */
/* 2111 */ .site-main article .entry-meta span.comments-link a {
/* 2112 */ 	font-weight: bold;
/* 2113 */ }
/* 2114 */
/* 2115 */ .site-main article .post-thumbnail {
/* 2116 */ 	display: block;
/* 2117 */ 	line-height: 0;
/* 2118 */ }
/* 2119 */
/* 2120 */ .site-main article .post-thumbnail img {
/* 2121 */ 	width: 100%;
/* 2122 */ 	transition: all 0.3s linear;
/* 2123 */ }
/* 2124 */
/* 2125 */ @media (min-width: 992px) {
/* 2126 */ 	.site-main article .entry-meta {
/* 2127 */ 		padding: 10px 0 20px;
/* 2128 */ 		padding-top: 0;
/* 2129 */ 	}
/* 2130 */ }
/* 2131 */
/* 2132 */ .site-main article .entry-content {
/* 2133 */ 	margin-top: 0;
/* 2134 */ }
/* 2135 */
/* 2136 */ .site-main article .entry-content p {
/* 2137 */ 	margin-bottom: 10px;
/* 2138 */ }
/* 2139 */
/* 2140 */ .site-main article .entry-footer {
/* 2141 */ 	display: flex;
/* 2142 */ 	flex-direction: column;
/* 2143 */ 	margin-top: 10px;
/* 2144 */ }
/* 2145 */
/* 2146 */ .site-main article .entry-footer span {
/* 2147 */ 	margin-bottom: 6px;
/* 2148 */ 	font-size: 1rem;
/* 2149 */ 	font-weight: bold;
/* 2150 */ }

/* style.css */

/* 2151 */
/* 2152 */ .site-main article .entry-footer span a,
/* 2153 */ .site-main article .entry-footer span span {
/* 2154 */ 	font-weight: normal;
/* 2155 */ }
/* 2156 */
/* 2157 */ .site-main article .entry-footer span a {
/* 2158 */ 	text-decoration: none;
/* 2159 */ 	color: var(--text-color-normal);
/* 2160 */ }
/* 2161 */
/* 2162 */ .site-main article .entry-footer span a:hover {
/* 2163 */ 	color: var(--theme-color);
/* 2164 */ }
/* 2165 */
/* 2166 */ .site-main article .entry-footer span.comments-link a {
/* 2167 */ 	font-weight: bold;
/* 2168 */ }
/* 2169 */
/* 2170 */ .related-posts h2 {
/* 2171 */ 	font-size: var(--font-size-lg);
/* 2172 */ 	font-family: var(--font-main);
/* 2173 */ 	line-height: 1.2;
/* 2174 */ }
/* 2175 */
/* 2176 */ .related-posts .row {
/* 2177 */ 	display: grid;
/* 2178 */ 	grid-gap: 30px;
/* 2179 */ 	grid-template-columns: var(--main-column-grid);
/* 2180 */ 	grid-template-columns: 1fr 1fr 1fr;
/* 2181 */ }
/* 2182 */
/* 2183 */ @media (max-width: 480px) {
/* 2184 */ 	.related-posts .row {
/* 2185 */ 		grid-template-columns: 1fr;
/* 2186 */ 	}
/* 2187 */ }
/* 2188 */
/* 2189 */ .related-posts .row article .post-thumbnail {
/* 2190 */ 	line-height: 0;
/* 2191 */ 	aspect-ratio: 1/0.7;
/* 2192 */ 	overflow: hidden;
/* 2193 */ }
/* 2194 */
/* 2195 */ .related-posts .row article .post-thumbnail img {
/* 2196 */ 	width: 100%;
/* 2197 */ }
/* 2198 */
/* 2199 */ .related-posts .row article .entry-header {
/* 2200 */ 	margin-top: 10px;

/* style.css */

/* 2201 */ }
/* 2202 */
/* 2203 */ .related-posts .row article .entry-header .entry-title {
/* 2204 */ 	font-size: var(--font-size-md);
/* 2205 */ }
/* 2206 */
/* 2207 */ .related-posts .row article .entry-header .entry-title a {
/* 2208 */ 	display: inline-block;
/* 2209 */ }
/* 2210 */
/* 2211 */ /*--------------------------------------------------------------
/* 2212 *| # single
/* 2213 *| --------------------------------------------------------------*/
/* 2214 */ body.single .site-main > article header {
/* 2215 */ 	margin-bottom: 10px;
/* 2216 */ }
/* 2217 */
/* 2218 */ body.single .site-main > article header .entry-title {
/* 2219 */ 	margin-bottom: 10px;
/* 2220 */ }
/* 2221 */
/* 2222 */ body.single .site-main > article header .entry-meta {
/* 2223 */ 	padding-bottom: 0;
/* 2224 */ 	margin-bottom: 10px;
/* 2225 */ }
/* 2226 */
/* 2227 */ /*------------##gutenberg support----------*/
/* 2228 */ img.alignright {
/* 2229 */ 	clear: right;
/* 2230 */ }
/* 2231 */
/* 2232 */ img.alignleft {
/* 2233 */ 	clear: left;
/* 2234 */ }
/* 2235 */
/* 2236 */ div.wp-block h6 a,
/* 2237 */ div.wp-block h5 a,
/* 2238 */ div.wp-block h4 a,
/* 2239 */ div.wp-block h3 a,
/* 2240 */ div.wp-block h2 a,
/* 2241 */ div.wp-block h1 a {
/* 2242 */ 	font-family: inherit;
/* 2243 */ 	font-size: inherit;
/* 2244 */ 	line-height: inherit;
/* 2245 */ 	font-weight: inherit;
/* 2246 */ 	font-style: inherit;
/* 2247 */ }
/* 2248 */
/* 2249 */ div.wp-block b,
/* 2250 */ div.wp-block strong {

/* style.css */

/* 2251 */ 	font-weight: bold;
/* 2252 */ }
/* 2253 */
/* 2254 */ div.wp-block .editor-rich-text__tinymce code,
/* 2255 */ div.wp-block .editor-rich-text__editable code {
/* 2256 */ 	background-color: transparent;
/* 2257 */ 	color: inherit;
/* 2258 */ 	font-family: monospace;
/* 2259 */ 	font-size: inherit;
/* 2260 */ 	line-height: inherit;
/* 2261 */ 	font-weight: inherit;
/* 2262 */ 	font-style: inherit;
/* 2263 */ 	letter-spacing: 1px;
/* 2264 */ }
/* 2265 */
/* 2266 */ .entry-content .aligncenter {
/* 2267 */ 	text-align: center;
/* 2268 */ }
/* 2269 */
/* 2270 */ .entry-content ol:not([class*="wp-"]),
/* 2271 */ .entry-content ul:not([class*="wp-"]) {
/* 2272 */ 	padding: 0;
/* 2273 */ 	margin: 0;
/* 2274 */ 	margin-inline-start: 15px;
/* 2275 */ 	margin-bottom: 15px;
/* 2276 */ 	list-style-position: inside;
/* 2277 */ }
/* 2278 */
/* 2279 */ .entry-content ol:not([class*="wp-"]) li,
/* 2280 */ .entry-content ul:not([class*="wp-"]) li {
/* 2281 */ 	padding-bottom: 5px;
/* 2282 */ 	padding-top: 5px;
/* 2283 */ }
/* 2284 */
/* 2285 */ .entry-content ol:not([class*="wp-"]) ol,
/* 2286 */ .entry-content ol:not([class*="wp-"]) ul,
/* 2287 */ .entry-content ul:not([class*="wp-"]) ol,
/* 2288 */ .entry-content ul:not([class*="wp-"]) ul {
/* 2289 */ 	margin-bottom: 0;
/* 2290 */ }
/* 2291 */
/* 2292 */ .entry-content ol:not([class*="wp-"]) ol li:last-child,
/* 2293 */ .entry-content ol:not([class*="wp-"]) ul li:last-child,
/* 2294 */ .entry-content ul:not([class*="wp-"]) ol li:last-child,
/* 2295 */ .entry-content ul:not([class*="wp-"]) ul li:last-child {
/* 2296 */ 	padding-bottom: 0;
/* 2297 */ }
/* 2298 */
/* 2299 */ .entry-content ol:not([class*="wp-"]) .alignwide,
/* 2300 */ .entry-content ul:not([class*="wp-"]) .alignwide {

/* style.css */

/* 2301 */ 	padding-inline-start: 30px;
/* 2302 */ }
/* 2303 */
/* 2304 */ .entry-content ol:not([class*="wp-"]) .alignfull,
/* 2305 */ .entry-content ul:not([class*="wp-"]) .alignfull {
/* 2306 */ 	margin-inline-start: calc(50% - 50vw - 10px);
/* 2307 */ 	padding-inline-start: 40px;
/* 2308 */ }
/* 2309 */
/* 2310 */ .entry-content ol:not([class*="wp-"]) {
/* 2311 */ 	list-style-type: decimal;
/* 2312 */ }
/* 2313 */
/* 2314 */ .entry-content ul:not([class*="wp-"]) {
/* 2315 */ 	list-style-type: disc;
/* 2316 */ }
/* 2317 */
/* 2318 */ .entry-content p.has-drop-cap:not(:focus):first-letter {
/* 2319 */ 	font-weight: normal;
/* 2320 */ }
/* 2321 */
/* 2322 */ .entry-content .wp-block-quote.is-style-large, .entry-content .wp-block-quote.is-large {
/* 2323 */ 	margin-top: 2.57143em;
/* 2324 */ 	margin-bottom: 2.14286em;
/* 2325 */ 	padding-top: 1.71429em;
/* 2326 */ 	padding-bottom: 1.71429em;
/* 2327 */ }
/* 2328 */
/* 2329 */ .entry-content .wp-block-image figcaption {
/* 2330 */ 	text-align: center;
/* 2331 */ }
/* 2332 */
/* 2333 */ .entry-content .wp-block-button:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright) {
/* 2334 */ 	margin-top: 1em;
/* 2335 */ 	margin-bottom: 1em;
/* 2336 */ }
/* 2337 */
/* 2338 */ .entry-content .wp-block-file {
/* 2339 */ 	margin: 0 0 20px;
/* 2340 */ }
/* 2341 */
/* 2342 */ .entry-content .wp-block-file > a:not([class]),
/* 2343 */ .entry-content .wp-block-file .wp-block-file__textlink {
/* 2344 */ 	display: inline-block;
/* 2345 */ 	margin: 0;
/* 2346 */ 	margin-inline-start: 20px;
/* 2347 */ }
/* 2348 */
/* 2349 */ .entry-content .wp-block-file .wp-block-file__button-richtext-wrapper {
/* 2350 */ 	display: inline-block;

/* style.css */

/* 2351 */ 	margin: 0;
/* 2352 */ }
/* 2353 */
/* 2354 */ .entry-content .wp-block-file .wp-block-file__button,
/* 2355 */ .entry-content .wp-block-file a.wp-block-file__button {
/* 2356 */ 	display: inline-block;
/* 2357 */ 	position: relative;
/* 2358 */ 	text-align: center;
/* 2359 */ 	border: none;
/* 2360 */ }
/* 2361 */
/* 2362 */ .entry-content [dir=rtl] .wp-block-file > a:not([class]),
/* 2363 */ .entry-content [dir=rtl] .wp-block-file .wp-block-file__textlink {
/* 2364 */ 	margin-inline-start: 20px;
/* 2365 */ 	margin-inline-end: 0;
/* 2366 */ }
/* 2367 */
/* 2368 */ .entry-content .wp-block-audio {
/* 2369 */ 	margin-bottom: 20px;
/* 2370 */ }
/* 2371 */
/* 2372 */ .entry-content .wp-block-audio figcaption {
/* 2373 */ 	margin: 0;
/* 2374 */ 	padding: 10px 0;
/* 2375 */ }
/* 2376 */
/* 2377 */ .entry-content .wp-block-video {
/* 2378 */ 	margin: 0 0 20px;
/* 2379 */ 	text-align: center;
/* 2380 */ }
/* 2381 */
/* 2382 */ .entry-content .wp-block-video video {
/* 2383 */ 	display: inline-block;
/* 2384 */ }
/* 2385 */
/* 2386 */ .entry-content .wp-block-video figcaption {
/* 2387 */ 	margin: 0;
/* 2388 */ 	padding: 6px 0 15px;
/* 2389 */ 	text-align: center;
/* 2390 */ }
/* 2391 */
/* 2392 */ .entry-content .wp-block-code {
/* 2393 */ 	background-color: #f3f3f3;
/* 2394 */ 	color: inherit;
/* 2395 */ 	font-family: monospace;
/* 2396 */ 	font-size: inherit;
/* 2397 */ 	line-height: inherit;
/* 2398 */ 	font-weight: inherit;
/* 2399 */ 	font-style: inherit;
/* 2400 */ 	letter-spacing: 1px;

/* style.css */

/* 2401 */ 	margin: 0 0 20px;
/* 2402 */ 	border: none;
/* 2403 */ }
/* 2404 */
/* 2405 */ .entry-content .wp-block-code code,
/* 2406 */ .entry-content .wp-block-code .editor-plain-text {
/* 2407 */ 	background-color: #000000;
/* 2408 */ 	padding: 10px;
/* 2409 */ 	color: inherit;
/* 2410 */ 	color: #fff;
/* 2411 */ 	font-family: inherit;
/* 2412 */ 	font-size: inherit;
/* 2413 */ 	line-height: inherit;
/* 2414 */ 	font-weight: inherit;
/* 2415 */ 	font-style: inherit;
/* 2416 */ 	letter-spacing: inherit;
/* 2417 */ 	display: block;
/* 2418 */ }
/* 2419 */
/* 2420 */ .entry-content .wp-block-preformatted {
/* 2421 */ 	margin: 0 0 20px;
/* 2422 */ }
/* 2423 */
/* 2424 */ .entry-content .wp-block-preformatted pre {
/* 2425 */ 	color: inherit;
/* 2426 */ 	font-family: monospace;
/* 2427 */ 	font-size: inherit;
/* 2428 */ 	line-height: inherit;
/* 2429 */ 	font-weight: inherit;
/* 2430 */ 	font-style: inherit;
/* 2431 */ 	letter-spacing: 1px;
/* 2432 */ }
/* 2433 */
/* 2434 */ .entry-content .wp-block-preformatted a {
/* 2435 */ 	text-decoration: underline;
/* 2436 */ }
/* 2437 */
/* 2438 */ .entry-content .wp-block-pullquote {
/* 2439 */ 	margin: 30px 0;
/* 2440 */ 	padding: 30px 0;
/* 2441 */ }
/* 2442 */
/* 2443 */ .entry-content .wp-block-pullquote p {
/* 2444 */ 	font-size: var(--font-size-md);
/* 2445 */ 	line-height: 1.6;
/* 2446 */ }
/* 2447 */
/* 2448 */ .entry-content .wp-block-pullquote.alignleft {
/* 2449 */ 	margin-inline-end: 2em;
/* 2450 */ }

/* style.css */

/* 2451 */
/* 2452 */ .entry-content .wp-block-pullquote.alignright {
/* 2453 */ 	margin-inline-start: 2em;
/* 2454 */ }
/* 2455 */
/* 2456 */ .entry-content .wp-block-pullquote:not(.is-style-solid-color) {
/* 2457 */ 	border-top-width: 4px;
/* 2458 */ 	border-top-style: solid;
/* 2459 */ 	border-bottom-width: 4px;
/* 2460 */ 	border-bottom-style: solid;
/* 2461 */ }
/* 2462 */
/* 2463 */ .entry-content .wp-block-pullquote.is-style-solid-color {
/* 2464 */ 	padding-inline: 50px;
/* 2465 */ }
/* 2466 */
/* 2467 */ .entry-content .wp-block-pullquote.is-style-solid-color blockquote {
/* 2468 */ 	max-width: 100%;
/* 2469 */ }
/* 2470 */
/* 2471 */ .entry-content .wp-block-pullquote blockquote,
/* 2472 */ .entry-content .wp-block-pullquote.alignleft blockquote,
/* 2473 */ .entry-content .wp-block-pullquote.alignright blockquote,
/* 2474 */ .entry-content .wp-block-pullquote.is-style-solid-color blockquote {
/* 2475 */ 	margin: 0;
/* 2476 */ 	padding: 16px;
/* 2477 */ 	border-width: 0;
/* 2478 */ 	border-style: solid;
/* 2479 */ 	text-align: center;
/* 2480 */ }
/* 2481 */
/* 2482 */ .entry-content .wp-block-pullquote blockquote::before,
/* 2483 */ .entry-content .wp-block-pullquote.alignleft blockquote::before,
/* 2484 */ .entry-content .wp-block-pullquote.alignright blockquote::before,
/* 2485 */ .entry-content .wp-block-pullquote.is-style-solid-color blockquote::before {
/* 2486 */ 	content: none;
/* 2487 */ }
/* 2488 */
/* 2489 */ .entry-content .wp-block-pullquote blockquote p:last-of-type,
/* 2490 */ .entry-content .wp-block-pullquote.alignleft blockquote p:last-of-type,
/* 2491 */ .entry-content .wp-block-pullquote.alignright blockquote p:last-of-type,
/* 2492 */ .entry-content .wp-block-pullquote.is-style-solid-color blockquote p:last-of-type {
/* 2493 */ 	margin: 0;
/* 2494 */ }
/* 2495 */
/* 2496 */ .entry-content .wp-block-pullquote blockquote > .editor-rich-text p:last-of-type,
/* 2497 */ .entry-content .wp-block-pullquote blockquote > .editor-rich-text p:last-of-type,
/* 2498 */ .entry-content .wp-block-pullquote blockquote > .editor-rich-text p:last-of-type,
/* 2499 */ .entry-content .wp-block-pullquote blockquote > .editor-rich-text p:last-of-type,
/* 2500 */ .entry-content .wp-block-pullquote.alignleft blockquote > .editor-rich-text p:last-of-type,

/* style.css */

/* 2501 */ .entry-content .wp-block-pullquote.alignleft blockquote > .editor-rich-text p:last-of-type,
/* 2502 */ .entry-content .wp-block-pullquote.alignleft blockquote > .editor-rich-text p:last-of-type,
/* 2503 */ .entry-content .wp-block-pullquote.alignleft blockquote > .editor-rich-text p:last-of-type,
/* 2504 */ .entry-content .wp-block-pullquote.alignright blockquote > .editor-rich-text p:last-of-type,
/* 2505 */ .entry-content .wp-block-pullquote.alignright blockquote > .editor-rich-text p:last-of-type,
/* 2506 */ .entry-content .wp-block-pullquote.alignright blockquote > .editor-rich-text p:last-of-type,
/* 2507 */ .entry-content .wp-block-pullquote.alignright blockquote > .editor-rich-text p:last-of-type,
/* 2508 */ .entry-content .wp-block-pullquote.is-style-solid-color blockquote > .editor-rich-text p:last-of-type,
/* 2509 */ .entry-content .wp-block-pullquote.is-style-solid-color blockquote > .editor-rich-text p:last-of-type,
/* 2510 */ .entry-content .wp-block-pullquote.is-style-solid-color blockquote > .editor-rich-text p:last-of-type,
/* 2511 */ .entry-content .wp-block-pullquote.is-style-solid-color blockquote > .editor-rich-text p:last-of-type {
/* 2512 */ 	margin: 0;
/* 2513 */ }
/* 2514 */
/* 2515 */ .entry-content .wp-block-pullquote blockquote cite,
/* 2516 */ .entry-content .wp-block-pullquote.alignleft blockquote cite,
/* 2517 */ .entry-content .wp-block-pullquote.alignright blockquote cite,
/* 2518 */ .entry-content .wp-block-pullquote.is-style-solid-color blockquote cite {
/* 2519 */ 	display: block;
/* 2520 */ 	margin-top: 15px;
/* 2521 */ }
/* 2522 */
/* 2523 */ .entry-content .wp-block-table {
/* 2524 */ 	border-spacing: 0;
/* 2525 */ 	border-collapse: collapse;
/* 2526 */ 	width: 100%;
/* 2527 */ 	margin-bottom: 20px;
/* 2528 */ }
/* 2529 */
/* 2530 */ .entry-content .wp-block-table caption {
/* 2531 */ 	text-align: center;
/* 2532 */ 	padding: 20px;
/* 2533 */ }
/* 2534 */
/* 2535 */ .entry-content .wp-block-table :not([class]):not([id]) {
/* 2536 */ 	border-spacing: 0;
/* 2537 */ 	border-collapse: collapse;
/* 2538 */ }
/* 2539 */
/* 2540 */ .entry-content .wp-block-table :not([class]):not([id]) th,
/* 2541 */ .entry-content .wp-block-table :not([class]):not([id]) td {
/* 2542 */ 	padding: 10px 20px;
/* 2543 */ 	border-width: 1px;
/* 2544 */ 	border-style: solid;
/* 2545 */ }
/* 2546 */
/* 2547 */ .entry-content .wp-block-table td,
/* 2548 */ .entry-content .wp-block-table th {
/* 2549 */ 	padding: 10px 20px;
/* 2550 */ 	border-top-width: 1px;

/* style.css */

/* 2551 */ 	border-top-style: solid;
/* 2552 */ 	border-left-width: 1px;
/* 2553 */ 	border-left-style: solid;
/* 2554 */ 	word-break: break-all;
/* 2555 */ }
/* 2556 */
/* 2557 */ .entry-content .wp-block-table td:last-child,
/* 2558 */ .entry-content .wp-block-table th:last-child {
/* 2559 */ 	border-right-width: 1px;
/* 2560 */ 	border-right-style: solid;
/* 2561 */ }
/* 2562 */
/* 2563 */ .entry-content .wp-block-table td:last-child td,
/* 2564 */ .entry-content .wp-block-table th:last-child td {
/* 2565 */ 	border-bottom-width: 1px;
/* 2566 */ 	border-bottom-style: solid;
/* 2567 */ }
/* 2568 */
/* 2569 */ .entry-content .wp-block-table.is-style-stripes {
/* 2570 */ 	border-width: 0;
/* 2571 */ 	border-style: solid;
/* 2572 */ }
/* 2573 */
/* 2574 */ .entry-content .wp-block-table .wp-block-table__cell-content {
/* 2575 */ 	color: inherit;
/* 2576 */ 	font-family: inherit;
/* 2577 */ 	font-size: inherit;
/* 2578 */ 	line-height: inherit;
/* 2579 */ 	font-weight: inherit;
/* 2580 */ 	font-style: inherit;
/* 2581 */ 	padding: 0;
/* 2582 */ }
/* 2583 */
/* 2584 */ .entry-content pre.wp-block-verse {
/* 2585 */ 	white-space: inherit;
/* 2586 */ 	margin: 0 0 20px;
/* 2587 */ 	padding: 40px 0;
/* 2588 */ 	padding-inline-start: 30px;
/* 2589 */ 	position: relative;
/* 2590 */ 	background-color: #e2e2e2;
/* 2591 */ 	color: inherit;
/* 2592 */ 	font-family: monospace;
/* 2593 */ 	font-size: inherit;
/* 2594 */ 	line-height: inherit;
/* 2595 */ 	border: none;
/* 2596 */ }
/* 2597 */
/* 2598 */ .entry-content .wp-block-spacer {
/* 2599 */ 	clear: both;
/* 2600 */ }

/* style.css */

/* 2601 */
/* 2602 */ .entry-content ul.wp-block-archives,
/* 2603 */ .entry-content ul.wp-block-categories,
/* 2604 */ .entry-content ul.wp-block-categories__list {
/* 2605 */ 	margin-bottom: 20px;
/* 2606 */ 	padding: 0;
/* 2607 */ 	position: relative;
/* 2608 */ }
/* 2609 */
/* 2610 */ .entry-content div.wp-block ul.wp-block-archives ul,
/* 2611 */ .entry-content div.wp-block ul.wp-block-categories ul,
/* 2612 */ .entry-content div.wp-block ul.wp-block-categories__list ul {
/* 2613 */ 	margin-bottom: 0;
/* 2614 */ 	padding: 10px 0 0;
/* 2615 */ }
/* 2616 */
/* 2617 */ .entry-content div.wp-block-archives.wp-block-archives-dropdown,
/* 2618 */ .entry-content div.wp-block-categories.wp-block-categories-dropdown {
/* 2619 */ 	margin-bottom: 20px;
/* 2620 */ }
/* 2621 */
/* 2622 */ .entry-content div.wp-block-archives.wp-block-archives-dropdown label,
/* 2623 */ .entry-content div.wp-block-categories.wp-block-categories-dropdown label {
/* 2624 */ 	display: none;
/* 2625 */ }
/* 2626 */
/* 2627 */ .entry-content .wp-block-latest-comments {
/* 2628 */ 	list-style: none;
/* 2629 */ 	margin-bottom: 20px;
/* 2630 */ }
/* 2631 */
/* 2632 */ .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment {
/* 2633 */ 	min-height: auto;
/* 2634 */ 	margin: 25px 0 0;
/* 2635 */ 	padding: 0;
/* 2636 */ 	overflow: hidden;
/* 2637 */ }
/* 2638 */
/* 2639 */ .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment:first-child {
/* 2640 */ 	margin: 0;
/* 2641 */ }
/* 2642 */
/* 2643 */ .entry-content .wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment {
/* 2644 */ 	min-height: 48px;
/* 2645 */ }
/* 2646 */
/* 2647 */ .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-avatar {
/* 2648 */ 	width: 48px;
/* 2649 */ 	height: 48px;
/* 2650 */ 	margin: 0;

/* style.css */

/* 2651 */ 	margin-inline-end: 17px;
/* 2652 */ 	float: left;
/* 2653 */ 	-webkit-border-radius: 50%;
/* 2654 */ 	border-radius: 50%;
/* 2655 */ }
/* 2656 */
/* 2657 */ .entry-content .wp-block-latest-comments article {
/* 2658 */ 	display: block;
/* 2659 */ 	padding: 0 0 0 3px;
/* 2660 */ 	overflow: hidden;
/* 2661 */ }
/* 2662 */
/* 2663 */ .entry-content .wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment-meta,
/* 2664 */ .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
/* 2665 */ 	margin: 0;
/* 2666 */ }
/* 2667 */
/* 2668 */ .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-date {
/* 2669 */ 	margin: -3px 0 0;
/* 2670 */ }
/* 2671 */
/* 2672 */ .entry-content .wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment-excerpt,
/* 2673 */ .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt {
/* 2674 */ 	margin: 5px 0 0;
/* 2675 */ }
/* 2676 */
/* 2677 */ .entry-content .wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment-excerpt p,
/* 2678 */ .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
/* 2679 */ 	margin: 0;
/* 2680 */ 	padding: 0 0 20px;
/* 2681 */ }
/* 2682 */
/* 2683 */ .entry-content .wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment-excerpt > *:last-child,
/* 2684 */ .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt > *:last-child {
/* 2685 */ 	margin: 0;
/* 2686 */ 	padding: 0;
/* 2687 */ }
/* 2688 */
/* 2689 */ .entry-content .wp-block-latest-comments.aligncenter .wp-block-latest-comments__comment-avatar {
/* 2690 */ 	margin: 0 auto 10px;
/* 2691 */ 	float: none;
/* 2692 */ }
/* 2693 */
/* 2694 */ .entry-content .wp-block-latest-comments.aligncenter article {
/* 2695 */ 	padding: 0 3px;
/* 2696 */ }
/* 2697 */
/* 2698 */ .entry-content .wp-block-latest-comments.aligncenter .wp-block-latest-comments__comment-excerpt {
/* 2699 */ 	text-align: center;
/* 2700 */ }

/* style.css */

/* 2701 */
/* 2702 */ .entry-content .wp-block-columns .wp-block-column {
/* 2703 */ 	margin-bottom: 20px;
/* 2704 */ }
/* 2705 */
/* 2706 */ .entry-content .wp-block-columns .wp-block-column > p {
/* 2707 */ 	margin-bottom: 0;
/* 2708 */ }
/* 2709 */
/* 2710 */ .entry-content .wp-block-columns .wp-block-column > p:not(.has-background) {
/* 2711 */ 	padding-bottom: 0;
/* 2712 */ }
/* 2713 */
/* 2714 */ .entry-content .wp-block-columns .wp-block-column .wp-block-paragraph {
/* 2715 */ 	margin-bottom: 0;
/* 2716 */ }
/* 2717 */
/* 2718 */ .entry-content .wp-block-columns .wp-block-column .wp-block-paragraph:not(.has-background) {
/* 2719 */ 	padding-bottom: 0;
/* 2720 */ }
/* 2721 */
/* 2722 */ [dir=rtl] .wp-block-latest-comments .wp-block-latest-comments__comment-avatar {
/* 2723 */ 	margin: 0 0 0 17px;
/* 2724 */ 	float: right;
/* 2725 */ }
/* 2726 */
/* 2727 */ [dir=rtl] .wp-block-latest-comments article {
/* 2728 */ 	margin: 0 3px 0 0;
/* 2729 */ }
/* 2730 */
/* 2731 */ /*no-align*/
/* 2732 */ .wp-block-embed-vimeo:not(.alignfull):not(.alignwide):not(.alignright):not(.alignleft) .wp-block-embed__wrapper iframe,
/* 2733 */ .wp-block-embed-youtube:not(.alignfull):not(.alignwide):not(.alignright):not(.alignleft) .wp-block-embed__wrapper iframe {
/* 2734 */ 	margin-left: auto !important;
/* 2735 */ 	margin-right: auto !important;
/* 2736 */ }
/* 2737 */
/* 2738 */ /*no-align*/
/* 2739 */ .wp-block-embed-youtube figcaption {
/* 2740 */ 	text-align: center;
/* 2741 */ }
/* 2742 */
/* 2743 */ /*alignfull*/
/* 2744 */ .wp-block-embed-vimeo.alignfull .wp-block-embed__wrapper,
/* 2745 */ .wp-block-embed-youtube.alignfull .wp-block-embed__wrapper {
/* 2746 */ 	position: relative;
/* 2747 */ 	padding-top: 56.25%;
/* 2748 */ }
/* 2749 */
/* 2750 */ .wp-block-embed-vimeo.alignfull iframe,

/* style.css */

/* 2751 */ .wp-block-embed-youtube.alignfull iframe {
/* 2752 */ 	position: absolute;
/* 2753 */ 	top: 0;
/* 2754 */ 	right: 0;
/* 2755 */ 	bottom: 0;
/* 2756 */ 	left: 0;
/* 2757 */ 	width: 100% !important;
/* 2758 */ 	height: 100% !important;
/* 2759 */ }
/* 2760 */
/* 2761 */ /*alignfull*/
/* 2762 */ /*alignwide*/
/* 2763 */ .wp-block-embed-vimeo.alignwide .wp-block-embed__wrapper,
/* 2764 */ .wp-block-embed-youtube.alignwide .wp-block-embed__wrapper {
/* 2765 */ 	position: relative;
/* 2766 */ 	padding-top: 56.25%;
/* 2767 */ }
/* 2768 */
/* 2769 */ .wp-block-embed-vimeo.alignwide iframe,
/* 2770 */ .wp-block-embed-youtube.alignwide iframe {
/* 2771 */ 	position: absolute;
/* 2772 */ 	top: 0;
/* 2773 */ 	right: 0;
/* 2774 */ 	bottom: 0;
/* 2775 */ 	left: 0;
/* 2776 */ 	width: 100% !important;
/* 2777 */ 	height: 100% !important;
/* 2778 */ }
/* 2779 */
/* 2780 */ /*alignwide*/
/* 2781 */ @media only screen and (min-width: 1025px) {
/* 2782 */ 	.wp-block-quote.is-large,
/* 2783 */ 	.wp-block-quote.is-style-large {
/* 2784 */ 		margin-top: 2.66667em;
/* 2785 */ 		margin-bottom: 2em;
/* 2786 */ 		padding: 0.66667em;
/* 2787 */ 		padding-top: 1.33333em;
/* 2788 */ 		padding-bottom: 1.33333em;
/* 2789 */ 	}
/* 2790 */ }
/* 2791 */
/* 2792 */ @media only screen and (max-width: 480px) {
/* 2793 */ 	.wp-block-media-text {
/* 2794 */ 		display: block;
/* 2795 */ 	}
/* 2796 */ 	.wp-block-media-text .wp-block-media-text__media {
/* 2797 */ 		margin: 10px auto;
/* 2798 */ 	}
/* 2799 */ 	.wp-block-media-text .wp-block-media-text__content {
/* 2800 */ 		padding: 0;

/* style.css */

/* 2801 */ 	}
/* 2802 */ }
/* 2803 */
/* 2804 */ .aligncener,
/* 2805 */ .alignfull,
/* 2806 */ .alignwide {
/* 2807 */ 	margin-top: 30px;
/* 2808 */ 	margin-bottom: 30px;
/* 2809 */ }
/* 2810 */
/* 2811 */ .alignfull .alignfull,
/* 2812 */ .alignwide .alignwide {
/* 2813 */ 	padding-top: 10px;
/* 2814 */ 	padding-bottom: 10px;
/* 2815 */ }
/* 2816 */
/* 2817 */ body.no-sidebar:not(.ascendoor-boxed-layout) .alignfull {
/* 2818 */ 	margin-left: calc(50% - 50vw - 10px);
/* 2819 */ 	margin-right: calc(50% - 50vw - 10px);
/* 2820 */ 	max-width: 100vw;
/* 2821 */ 	width: 100vw;
/* 2822 */ }
/* 2823 */
/* 2824 */ @media (max-width: 1200px) {
/* 2825 */ 	body.no-sidebar:not(.ascendoor-boxed-layout) .alignfull {
/* 2826 */ 		margin-left: calc(50% - 50vw);
/* 2827 */ 		margin-right: calc(50% - 50vw);
/* 2828 */ 		padding: 0 20px;
/* 2829 */ 	}
/* 2830 */ }
/* 2831 */
/* 2832 */ body.no-sidebar:not(.ascendoor-boxed-layout) .alignfull .alignwide {
/* 2833 */ 	margin-inline: auto;
/* 2834 */ }
/* 2835 */
/* 2836 */ body.no-sidebar:not(.ascendoor-boxed-layout) .alignfull .aligncenter {
/* 2837 */ 	margin-inline: auto;
/* 2838 */ }
/* 2839 */
/* 2840 */ body.no-sidebar:not(.ascendoor-boxed-layout) .alignwide {
/* 2841 */ 	max-width: 100vw;
/* 2842 */ }
/* 2843 */
/* 2844 */ @media (min-width: 768px) and (max-width: 1170px) {
/* 2845 */ 	body.no-sidebar:not(.ascendoor-boxed-layout) .alignwide {
/* 2846 */ 		width: calc(100% + (100vw - 100%) / 2);
/* 2847 */ 		margin-left: calc((100% - 100vw) / 4);
/* 2848 */ 	}
/* 2849 */ }
/* 2850 */

/* style.css */

/* 2851 */ @media (min-width: 1171px) {
/* 2852 */ 	body.no-sidebar:not(.ascendoor-boxed-layout) .alignwide {
/* 2853 */ 		width: 1140px;
/* 2854 */ 		margin-left: -195px;
/* 2855 */ 	}
/* 2856 */ }
/* 2857 */
/* 2858 */ body.no-sidebar:not(.ascendoor-boxed-layout) .alignwide .alignwide {
/* 2859 */ 	width: 100%;
/* 2860 */ 	margin-right: auto;
/* 2861 */ 	margin-left: auto;
/* 2862 */ }
/* 2863 */
/* 2864 */ body.no-sidebar figure.wp-block-embed.is-type-wp-embed.alignfull,
/* 2865 */ body.no-sidebar figure.wp-block-table.alignfull,
/* 2866 */ body.no-sidebar div.wp-block-text-columns.alignfull,
/* 2867 */ body.no-sidebar div.wp-block-columns.alignfull,
/* 2868 */ body.no-sidebar div.wp-block-categories-dropdown.alignfull,
/* 2869 */ body.no-sidebar div.wp-block-file.alignfull {
/* 2870 */ 	padding: 0 25px;
/* 2871 */ }
/* 2872 */
/* 2873 */ .wp-block-search .wp-block-search__label {
/* 2874 */ 	display: none;
/* 2875 */ }
/* 2876 */
/* 2877 */ .wp-block-search .wp-block-search__inside-wrapper {
/* 2878 */ 	display: flex;
/* 2879 */ }
/* 2880 */
/* 2881 */ .wp-block-search .wp-block-search__input {
/* 2882 */ 	border-radius: var(--border-radius-all-lefts);
/* 2883 */ }
/* 2884 */
/* 2885 */ .wp-block-search .wp-block-search__button {
/* 2886 */ 	margin: 0;
/* 2887 */ 	background-color: var(--theme-color);
/* 2888 */ 	border-color: var(--theme-color);
/* 2889 */ 	color: var(--white);
/* 2890 */ 	border-radius: var(--border-radius-all-rights);
/* 2891 */ }
/* 2892 */
/* 2893 */ .wp-block-latest-posts.wp-block-latest-posts__list {
/* 2894 */ 	list-style: none;
/* 2895 */ 	padding-left: 0;
/* 2896 */ 	margin-inline: 0;
/* 2897 */ }
/* 2898 */
/* 2899 */ .wp-block-latest-posts.wp-block-latest-posts__list li .wp-block-latest-posts__featured-image {
/* 2900 */ 	width: 50%;

/* style.css */

/* 2901 */ }
/* 2902 */
/* 2903 */ .wp-block-latest-posts.wp-block-latest-posts__list li .wp-block-latest-posts__featured-image > a {
/* 2904 */ 	line-height: 0;
/* 2905 */ }
/* 2906 */
/* 2907 */ .wp-block-latest-posts.wp-block-latest-posts__list li > a {
/* 2908 */ 	text-decoration: none;
/* 2909 */ 	color: var(--clr-foreground);
/* 2910 */ }
/* 2911 */
/* 2912 */ .wp-block-latest-posts.wp-block-latest-posts__list li > a:hover {
/* 2913 */ 	color: var(--theme-color);
/* 2914 */ }
/* 2915 */
/* 2916 */ .wp-block-latest-posts.wp-block-latest-posts__list.is-grid li .wp-block-latest-posts__featured-image {
/* 2917 */ 	width: 100%;
/* 2918 */ 	margin-inline: 0;
/* 2919 */ 	margin-block-end: 1.5em;
/* 2920 */ }
/* 2921 */
/* 2922 */ .wp-block-latest-posts__post-date,
/* 2923 */ .wp-block-latest-posts__post-author {
/* 2924 */ 	color: var(--text-color-normal);
/* 2925 */ }
/* 2926 */
/* 2927 */ /*------------##gutenberg support----------*/
/* 2928 */ .entry-content {
/* 2929 */ 	padding: 0 20px;
/* 2930 */ 	padding-bottom: 1px;
/* 2931 */ }
/* 2932 */
/* 2933 */ div:not(.mag-post-single) .entry-content {
/* 2934 */ 	padding: 20px;
/* 2935 */ 	background-color: var(--light-bg-color);
/* 2936 */ }
/* 2937 */
/* 2938 */ .no-sidebar:not(.ascendoor-boxed-layout) .entry-content {
/* 2939 */ 	max-width: 790px;
/* 2940 */ 	margin-inline: auto;
/* 2941 */ 	padding: 0 20px;
/* 2942 */ }
/* 2943 */
/* 2944 */ .no-sidebar:not(.ascendoor-boxed-layout) div:not(.mag-post-single) .entry-content {
/* 2945 */ 	max-width: none;
/* 2946 */ }
/* 2947 */
/* 2948 */ .no-sidebar.ascendoor-boxed-layout .entry-content {
/* 2949 */ 	padding: 20px;
/* 2950 */ }

/* style.css */

/* 2951 */
/* 2952 */ .ascendoor-author-box {
/* 2953 */ 	border: 1px solid rgba(155, 155, 155, 0.1);
/* 2954 */ 	padding: 15px;
/* 2955 */ 	margin: 15px 0;
/* 2956 */ 	display: flex;
/* 2957 */ 	align-items: center;
/* 2958 */ 	gap: 30px;
/* 2959 */ }
/* 2960 */
/* 2961 */ @media (max-width: 600px) {
/* 2962 */ 	.ascendoor-author-box {
/* 2963 */ 		align-items: flex-start;
/* 2964 */ 		flex-direction: column;
/* 2965 */ 		gap: 10px;
/* 2966 */ 	}
/* 2967 */ }
/* 2968 */
/* 2969 */ .ascendoor-author-box .author-img {
/* 2970 */ 	min-width: 120px;
/* 2971 */ 	align-self: flex-start;
/* 2972 */ }
/* 2973 */
/* 2974 */ .ascendoor-author-box .author-img img {
/* 2975 */ 	width: 120px;
/* 2976 */ 	height: 120px;
/* 2977 */ 	object-fit: cover;
/* 2978 */ }
/* 2979 */
/* 2980 */ .ascendoor-author-box .author-details .author-name {
/* 2981 */ 	margin: 0 0 10px;
/* 2982 */ 	font-size: var(--font-size-base);
/* 2983 */ 	font-weight: 700;
/* 2984 */ 	line-height: 1.3;
/* 2985 */ }
/* 2986 */
/* 2987 */ .ascendoor-author-box .author-details .author-description {
/* 2988 */ 	margin: 0;
/* 2989 */ }
/* 2990 */
/* 2991 */ .ascendoor-author-box .author-details .author-social-contacts {
/* 2992 */ 	display: inline-flex;
/* 2993 */ 	gap: 10px;
/* 2994 */ 	margin-top: 15px;
/* 2995 */ }
/* 2996 */
/* 2997 */ .ascendoor-author-box .author-details .author-social-contacts a {
/* 2998 */ 	width: 30px;
/* 2999 */ 	height: 30px;
/* 3000 */ }

/* style.css */

/* 3001 */
/* 3002 */ .ascendoor-author-box .author-details .author-social-contacts a::before {
/* 3003 */ 	z-index: 1;
/* 3004 */ 	position: relative;
/* 3005 */ }
/* 3006 */
/* 3007 */ .ascendoor-author-box .author-details .author-social-contacts a::after {
/* 3008 */ 	position: absolute;
/* 3009 */ 	content: '';
/* 3010 */ 	left: 0;
/* 3011 */ 	top: 0;
/* 3012 */ 	height: 100%;
/* 3013 */ 	width: 100%;
/* 3014 */ 	background-color: rgba(155, 155, 155, 0.1);
/* 3015 */ 	opacity: 0.5;
/* 3016 */ }
/* 3017 */
/* 3018 */ section.error-404.not-found {
/* 3019 */ 	margin-bottom: 50px;
/* 3020 */ }
/* 3021 */
/* 3022 */ /* Comments
/* 3023 *| --------------------------------------------- */
/* 3024 */ .comment-content a {
/* 3025 */ 	word-wrap: break-word;
/* 3026 */ }
/* 3027 */
/* 3028 */ .bypostauthor {
/* 3029 */ 	display: block;
/* 3030 */ }
/* 3031 */
/* 3032 */ /**
/* 3033 *|  * Comments Wrapper
/* 3034 *|  */
/* 3035 */ .comments-area {
/* 3036 */ 	padding-bottom: 30px;
/* 3037 */ }
/* 3038 */
/* 3039 */ .comments-area > * {
/* 3040 */ 	margin-top: 30px;
/* 3041 */ 	margin-bottom: 30px;
/* 3042 */ }
/* 3043 */
/* 3044 */ .comments-area > *:first-child {
/* 3045 */ 	margin-top: 0;
/* 3046 */ }
/* 3047 */
/* 3048 */ .comments-area > *:last-child {
/* 3049 */ 	margin-bottom: 0;
/* 3050 */ }

/* style.css */

/* 3051 */
/* 3052 */ .comments-area.show-avatars .avatar {
/* 3053 */ 	border-radius: 50%;
/* 3054 */ 	position: absolute;
/* 3055 */ 	top: 10px;
/* 3056 */ }
/* 3057 */
/* 3058 */ .comments-area.show-avatars .fn {
/* 3059 */ 	display: inline-block;
/* 3060 */ 	padding-inline-start: 85px;
/* 3061 */ }
/* 3062 */
/* 3063 */ .comments-area.show-avatars .comment-metadata {
/* 3064 */ 	padding: 8px 0 9px 85px;
/* 3065 */ }
/* 3066 */
/* 3067 */ /**
/* 3068 *|  * Comment Title
/* 3069 *|  */
/* 3070 */ .comment-reply-title {
/* 3071 */ 	display: flex;
/* 3072 */ 	justify-content: space-between;
/* 3073 */ }
/* 3074 */
/* 3075 */ .comment-reply-title small a {
/* 3076 */ 	font-size: var(--font-size-sm);
/* 3077 */ 	font-style: normal;
/* 3078 */ 	font-weight: normal;
/* 3079 */ 	letter-spacing: normal;
/* 3080 */ }
/* 3081 */
/* 3082 */ /* Nested comment reply title*/
/* 3083 */ .comment .comment-respond .comment-reply-title {
/* 3084 */ 	font-size: var(--font-size-md);
/* 3085 */ }
/* 3086 */
/* 3087 */ /**
/* 3088 *|  * Comment Lists
/* 3089 *|  */
/* 3090 */ .comments-area [type="checkbox"],
/* 3091 */ .comments-area [type="radio"] {
/* 3092 */ 	margin-bottom: 7px;
/* 3093 */ 	margin-inline-end: 10px;
/* 3094 */ }
/* 3095 */
/* 3096 */ .comment-list {
/* 3097 */ 	padding-inline-start: 0;
/* 3098 */ 	list-style: none;
/* 3099 */ 	margin-inline-start: 0;
/* 3100 */ }

/* style.css */

/* 3101 */
/* 3102 */ .comment-list ol {
/* 3103 */ 	margin-inline-start: 0;
/* 3104 */ }
/* 3105 */
/* 3106 */ .comment-list > li {
/* 3107 */ 	margin-top: 30px;
/* 3108 */ 	margin-bottom: 30px;
/* 3109 */ }
/* 3110 */
/* 3111 */ .comment-list .children {
/* 3112 */ 	list-style: none;
/* 3113 */ 	padding-inline-start: 0;
/* 3114 */ }
/* 3115 */
/* 3116 */ .comment-list .children > li {
/* 3117 */ 	margin-top: 30px;
/* 3118 */ 	margin-bottom: 30px;
/* 3119 */ }
/* 3120 */
/* 3121 */ @media only screen and (min-width: 482px) {
/* 3122 */ 	.comment-list .depth-2,
/* 3123 */ 	.comment-list .depth-3 {
/* 3124 */ 		padding-inline-start: calc(4 * 20px);
/* 3125 */ 	}
/* 3126 */ }
/* 3127 */
/* 3128 */ /**
/* 3129 *|  * Comment Meta
/* 3130 *|  */
/* 3131 */ .comment-meta .comment-author {
/* 3132 */ 	margin-bottom: calc(0.25 *20px);
/* 3133 */ }
/* 3134 */
/* 3135 */ @media only screen and (min-width: 482px) {
/* 3136 */ 	.comment-meta .comment-author {
/* 3137 */ 		margin-bottom: 0;
/* 3138 */ 		padding-inline-end: 0;
/* 3139 */ 	}
/* 3140 */ }
/* 3141 */
/* 3142 */ .comment-meta .comment-author .fn {
/* 3143 */ 	font-weight: normal;
/* 3144 */ 	hyphens: auto;
/* 3145 */ 	word-wrap: break-word;
/* 3146 */ 	word-break: break-word;
/* 3147 */ }
/* 3148 */
/* 3149 */ .comment-meta .comment-metadata {
/* 3150 */ 	color: var(--text-color-normal);

/* style.css */

/* 3151 */ 	padding: 8px 0 9px 0;
/* 3152 */ 	font-size: var(--font-size-sm);
/* 3153 */ 	display: flex;
/* 3154 */ 	justify-content: space-between;
/* 3155 */ }
/* 3156 */
/* 3157 */ .comment-meta .comment-metadata .edit-link {
/* 3158 */ 	margin-inline-start: 20px;
/* 3159 */ }
/* 3160 */
/* 3161 */ @media only screen and (min-width: 482px) {
/* 3162 */ 	.comment-meta {
/* 3163 */ 		margin-inline-end: inherit;
/* 3164 */ 	}
/* 3165 */ 	.comment-meta .comment-author {
/* 3166 */ 		max-width: inherit;
/* 3167 */ 	}
/* 3168 */ }
/* 3169 */
/* 3170 */ .bypostauthor {
/* 3171 */ 	display: block;
/* 3172 */ }
/* 3173 */
/* 3174 */ .says {
/* 3175 */ 	display: none;
/* 3176 */ }
/* 3177 */
/* 3178 */ .comment-meta {
/* 3179 */ 	margin-bottom: 10px;
/* 3180 */ }
/* 3181 */
/* 3182 */ .comment-body {
/* 3183 */ 	position: relative;
/* 3184 */ 	margin-bottom: 40px;
/* 3185 */ 	padding: 30px;
/* 3186 */ 	background-color: #f9f9f9;
/* 3187 */ 	border: 1px solid #eee;
/* 3188 */ }
/* 3189 */
/* 3190 */ .comment-body .reply {
/* 3191 */ 	margin: 0;
/* 3192 */ }
/* 3193 */
/* 3194 */ .comment-content {
/* 3195 */ 	word-wrap: break-word;
/* 3196 */ 	font-size: 1rem;
/* 3197 */ 	padding-bottom: 15px;
/* 3198 */ 	color: #555;
/* 3199 */ }
/* 3200 */

/* style.css */

/* 3201 */ .pingback .comment-body,
/* 3202 */ .trackback .comment-body {
/* 3203 */ 	margin-top: 30px;
/* 3204 */ 	margin-bottom: 30px;
/* 3205 */ }
/* 3206 */
/* 3207 */ .comment-respond {
/* 3208 */ 	margin-top: 30px;
/* 3209 */ }
/* 3210 */
/* 3211 */ .comment-respond > * {
/* 3212 */ 	margin-top: 20px;
/* 3213 */ 	margin-bottom: 20px;
/* 3214 */ }
/* 3215 */
/* 3216 */ .comment-respond > *:first-child {
/* 3217 */ 	margin-top: 0;
/* 3218 */ }
/* 3219 */
/* 3220 */ .comment-respond > *:last-child {
/* 3221 */ 	margin-bottom: 0;
/* 3222 */ }
/* 3223 */
/* 3224 */ .comment-respond > *:last-child.comment-form {
/* 3225 */ 	margin-bottom: 30px;
/* 3226 */ }
/* 3227 */
/* 3228 */ .comment-author {
/* 3229 */ 	padding-top: 3px;
/* 3230 */ }
/* 3231 */
/* 3232 */ .reply a,
/* 3233 */ .comment-content a,
/* 3234 */ .comment-meta .comment-metadata a,
/* 3235 */ .comment-author .url {
/* 3236 */ 	color: currentColor;
/* 3237 */ }
/* 3238 */
/* 3239 */ .reply a:focus, .reply a:hover,
/* 3240 */ .comment-content a:focus,
/* 3241 */ .comment-content a:hover,
/* 3242 */ .comment-meta .comment-metadata a:focus,
/* 3243 */ .comment-meta .comment-metadata a:hover,
/* 3244 */ .comment-author .url:focus,
/* 3245 */ .comment-author .url:hover {
/* 3246 */ 	color: var(--theme-color);
/* 3247 */ }
/* 3248 */
/* 3249 */ .comment-form {
/* 3250 */ 	display: flex;

/* style.css */

/* 3251 */ 	flex-wrap: wrap;
/* 3252 */ }
/* 3253 */
/* 3254 */ .comment-form > * {
/* 3255 */ 	flex-basis: 100%;
/* 3256 */ }
/* 3257 */
/* 3258 */ .comment-form .comment-form-url,
/* 3259 */ .comment-form .comment-form-comment {
/* 3260 */ 	width: 100%;
/* 3261 */ }
/* 3262 */
/* 3263 */ .comment-form .comment-form-author,
/* 3264 */ .comment-form .comment-form-email {
/* 3265 */ 	flex-basis: 0;
/* 3266 */ 	flex-grow: 1;
/* 3267 */ }
/* 3268 */
/* 3269 */ @media only screen and (max-width: 481px) {
/* 3270 */ 	.comment-form .comment-form-author,
/* 3271 */ 	.comment-form .comment-form-email {
/* 3272 */ 		flex-basis: 100%;
/* 3273 */ 	}
/* 3274 */ }
/* 3275 */
/* 3276 */ .comment-form .comment-form-cookies-consent > label,
/* 3277 */ .comment-form .comment-notes {
/* 3278 */ 	font-size: 1rem;
/* 3279 */ 	font-weight: normal;
/* 3280 */ }
/* 3281 */
/* 3282 */ .comment-form > p {
/* 3283 */ 	margin-bottom: 10px;
/* 3284 */ }
/* 3285 */
/* 3286 */ .comment-form > p a {
/* 3287 */ 	color: var(--text-color-normal);
/* 3288 */ 	transition: all 0.3s ease;
/* 3289 */ 	text-decoration: none;
/* 3290 */ }
/* 3291 */
/* 3292 */ .comment-form > p a:focus, .comment-form > p a:hover {
/* 3293 */ 	color: var(--theme-color);
/* 3294 */ }
/* 3295 */
/* 3296 */ .comment-form > p:first-of-type {
/* 3297 */ 	margin-top: 0;
/* 3298 */ }
/* 3299 */
/* 3300 */ .comment-form > p:last-of-type {

/* style.css */

/* 3301 */ 	margin-bottom: 0;
/* 3302 */ }
/* 3303 */
/* 3304 */ .comment-form > p label,
/* 3305 */ .comment-form > p input[type=email],
/* 3306 */ .comment-form > p input[type=text],
/* 3307 */ .comment-form > p input[type=url],
/* 3308 */ .comment-form > p textarea {
/* 3309 */ 	display: block;
/* 3310 */ 	font-size: var(--global--font-size-sm);
/* 3311 */ 	margin-bottom: calc(.5 *20px);
/* 3312 */ 	width: 100%;
/* 3313 */ 	font-weight: var(--form--label-weight);
/* 3314 */ }
/* 3315 */
/* 3316 */ .comment-form > p.comment-form-cookies-consent {
/* 3317 */ 	display: flex;
/* 3318 */ 	align-items: center;
/* 3319 */ }
/* 3320 */
/* 3321 */ @media only screen and (min-width: 482px) {
/* 3322 */ 	.comment-form > p.comment-form-author,
/* 3323 */ 	.woocommerce #review_form #respond p {
/* 3324 */ 		margin-inline-end: calc(1.5 * 20px);
/* 3325 */ 	}
/* 3326 */ 	.comment-form > p.comment-notes,
/* 3327 */ 	.comment-form > p.logged-in-as {
/* 3328 */ 		display: block;
/* 3329 */ 	}
/* 3330 */ }
/* 3331 */
/* 3332 */ nav.breadcrumb-trail ul.trail-items {
/* 3333 */ 	list-style: none;
/* 3334 */ 	padding: 0;
/* 3335 */ 	margin: 0;
/* 3336 */ 	color: var(--text-color-normal);
/* 3337 */ }
/* 3338 */
/* 3339 */ nav.breadcrumb-trail ul.trail-items li {
/* 3340 */ 	display: inline-block;
/* 3341 */ }
/* 3342 */
/* 3343 */ nav.breadcrumb-trail ul.trail-items li a {
/* 3344 */ 	text-decoration: none;
/* 3345 */ 	color: var(--text-color-normal);
/* 3346 */ }
/* 3347 */
/* 3348 */ nav.breadcrumb-trail ul.trail-items li a:focus, nav.breadcrumb-trail ul.trail-items li a:hover {
/* 3349 */ 	color: var(--theme-color);
/* 3350 */ }

/* style.css */

/* 3351 */
/* 3352 */ nav.breadcrumb-trail ul.trail-items li::after {
/* 3353 */ 	margin: 0 0.3rem;
/* 3354 */ }
/* 3355 */
/* 3356 */ nav.breadcrumb-trail ul.trail-items li:last-child::after {
/* 3357 */ 	display: none;
/* 3358 */ }
/* 3359 */
/* 3360 */ /*--------------------------------------------------------------
/* 3361 *| ## Comments
/* 3362 *| --------------------------------------------------------------*/
/* 3363 */ /*comments section====*/
/* 3364 */ #comments.comments-area {
/* 3365 */ 	margin-block: 20px;
/* 3366 */ }
/* 3367 */
/* 3368 */ #comments.comments-area .comments-title {
/* 3369 */ 	font-size: var(--font-size-lg);
/* 3370 */ 	font-family: var(--font-main);
/* 3371 */ 	line-height: 1.2;
/* 3372 */ }
/* 3373 */
/* 3374 */ #comments.comments-area .comment-list .comment .comment-author img {
/* 3375 */ 	float: left;
/* 3376 */ 	margin-inline-end: 20px;
/* 3377 */ 	margin-bottom: 20px;
/* 3378 */ 	width: 50px;
/* 3379 */ }
/* 3380 */
/* 3381 */ #comments.comments-area .comment-list .comment .comment-content p {
/* 3382 */ 	margin-bottom: 5px;
/* 3383 */ }
/* 3384 */
/* 3385 */ #comments.comments-area div#respond {
/* 3386 */ 	margin-top: 20px;
/* 3387 */ }
/* 3388 */
/* 3389 */ #comments.comments-area div#respond #reply-title {
/* 3390 */ 	margin-top: 0;
/* 3391 */ 	font-weight: 700;
/* 3392 */ 	font-size: var(--font-size-base);
/* 3393 */ }
/* 3394 */
/* 3395 */ #comments.comments-area div#respond p {
/* 3396 */ 	margin-bottom: 5px;
/* 3397 */ }
/* 3398 */
/* 3399 */ #comments.comments-area div#respond label {
/* 3400 */ 	font-weight: normal;

/* style.css */

/* 3401 */ }
/* 3402 */
/* 3403 */ #comments.comments-area div#respond textarea {
/* 3404 */ 	width: 100%;
/* 3405 */ 	background: #fafafa;
/* 3406 */ }
/* 3407 */
/* 3408 */ #comments.comments-area div#respond p.comment-form-url,
/* 3409 */ #comments.comments-area div#respond p.comment-form-email,
/* 3410 */ #comments.comments-area div#respond p.comment-form-author {
/* 3411 */ 	display: inline-block;
/* 3412 */ 	width: 100%;
/* 3413 */ }
/* 3414 */
/* 3415 */ #comments.comments-area div#respond p.comment-form-url label,
/* 3416 */ #comments.comments-area div#respond p.comment-form-email label,
/* 3417 */ #comments.comments-area div#respond p.comment-form-author label {
/* 3418 */ 	display: block;
/* 3419 */ }
/* 3420 */
/* 3421 */ #comments.comments-area div#respond p.comment-form-url input,
/* 3422 */ #comments.comments-area div#respond p.comment-form-email input,
/* 3423 */ #comments.comments-area div#respond p.comment-form-author input {
/* 3424 */ 	width: 100%;
/* 3425 */ }
/* 3426 */
/* 3427 */ #comments.comments-area div#respond p.comment-form-cookies-consent label {
/* 3428 */ 	margin-inline-start: 8px;
/* 3429 */ 	position: relative;
/* 3430 */ 	top: -1px;
/* 3431 */ }
/* 3432 */
/* 3433 */ #comments.comments-area div#respond input[type="submit"] {
/* 3434 */ 	display: inline-block;
/* 3435 */ 	margin-top: 10px;
/* 3436 */ }
/* 3437 */
/* 3438 */ #comments.comments-area div#respond #reply-title small a {
/* 3439 */ 	display: inline-block;
/* 3440 */ 	margin-inline-start: 10px;
/* 3441 */ }
/* 3442 */
/* 3443 */ .comment div#respond,
/* 3444 */ .comment-content {
/* 3445 */ 	margin-inline-start: 70px;
/* 3446 */ }
/* 3447 */
/* 3448 */ .comment-content a {
/* 3449 */ 	word-wrap: break-word;
/* 3450 */ }

/* style.css */

/* 3451 */
/* 3452 */ .bypostauthor {
/* 3453 */ 	display: block;
/* 3454 */ }
/* 3455 */
/* 3456 */ /*--------------------------------------------------------------
/* 3457 *| ## Comments
/* 3458 *| --------------------------------------------------------------*/
/* 3459 */ /* Widgets
/* 3460 *| --------------------------------------------- */
/* 3461 */ .widget {
/* 3462 */ 	margin: 0 0 1.5em;
/* 3463 */ }
/* 3464 */
/* 3465 */ .widget select {
/* 3466 */ 	max-width: 100%;
/* 3467 */ }
/* 3468 */
/* 3469 */ .ascendoor-widget {
/* 3470 */ 	margin-bottom: 30px;
/* 3471 */ }
/* 3472 */
/* 3473 */ .widget_block h1,
/* 3474 */ .widget_block h2,
/* 3475 */ .widget_block h3,
/* 3476 */ .widget_block h4,
/* 3477 */ .widget_block h5,
/* 3478 */ .widget_block h6 {
/* 3479 */ 	margin-top: 0;
/* 3480 */ 	margin-bottom: 10px;
/* 3481 */ 	line-height: 1.2;
/* 3482 */ }
/* 3483 */
/* 3484 */ /*widget title===============*/
/* 3485 */ .widgettitle,
/* 3486 */ .widget-title {
/* 3487 */ 	display: flex;
/* 3488 */ 	align-items: center;
/* 3489 */ 	justify-content: space-between;
/* 3490 */ 	padding-bottom: 0;
/* 3491 */ 	border-bottom: 2px solid var(--theme-color);
/* 3492 */ 	margin-bottom: 15px;
/* 3493 */ 	position: relative;
/* 3494 */ }
/* 3495 */
/* 3496 */ .widgettitle span,
/* 3497 */ .widget-title span {
/* 3498 */ 	font-size: var(--font-size-base);
/* 3499 */ 	line-height: 1.2;
/* 3500 */ 	margin-top: 0;

/* style.css */

/* 3501 */ 	font-weight: normal;
/* 3502 */ 	padding-bottom: 0;
/* 3503 */ 	margin-bottom: 0;
/* 3504 */ 	color: var(--white);
/* 3505 */ 	padding: 5px 10px;
/* 3506 */ 	background-color: var(--theme-color);
/* 3507 */ }
/* 3508 */
/* 3509 */ .widget:not(.ascendoor-widget) .section-title {
/* 3510 */ 	display: flex;
/* 3511 */ 	align-items: center;
/* 3512 */ 	justify-content: space-between;
/* 3513 */ 	padding-bottom: 0;
/* 3514 */ 	border-bottom: 2px solid var(--theme-color);
/* 3515 */ 	margin-bottom: 15px;
/* 3516 */ 	position: relative;
/* 3517 */ }
/* 3518 */
/* 3519 */ .widget:not(.ascendoor-widget) .section-title span {
/* 3520 */ 	font-size: var(--font-size-base);
/* 3521 */ 	line-height: 1.2;
/* 3522 */ 	margin-top: 0;
/* 3523 */ 	font-weight: normal;
/* 3524 */ 	padding-bottom: 0;
/* 3525 */ 	margin-bottom: 0;
/* 3526 */ 	color: var(--white);
/* 3527 */ 	padding: 5px 10px;
/* 3528 */ 	background-color: var(--theme-color);
/* 3529 */ }
/* 3530 */
/* 3531 */ /*widget title===============*/
/* 3532 */ /*widget list===============*/
/* 3533 */ .widget ol:not(.magazine-tabs),
/* 3534 */ .widget ul:not(.magazine-tabs) {
/* 3535 */ 	list-style: none;
/* 3536 */ 	padding: 0;
/* 3537 */ 	margin-inline: 0;
/* 3538 */ }
/* 3539 */
/* 3540 */ .widget ol:not(.magazine-tabs) li,
/* 3541 */ .widget ul:not(.magazine-tabs) li {
/* 3542 */ 	margin-bottom: 7px;
/* 3543 */ 	padding-bottom: 7px;
/* 3544 */ 	font-size: var(--font-size-sm);
/* 3545 */ 	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
/* 3546 */ }
/* 3547 */
/* 3548 */ .widget ol:not(.magazine-tabs) li a,
/* 3549 */ .widget ul:not(.magazine-tabs) li a {
/* 3550 */ 	text-decoration: none;

/* style.css */

/* 3551 */ 	color: var(--clr-foreground);
/* 3552 */ }
/* 3553 */
/* 3554 */ .widget ol:not(.magazine-tabs) li a:focus, .widget ol:not(.magazine-tabs) li a:hover,
/* 3555 */ .widget ul:not(.magazine-tabs) li a:focus,
/* 3556 */ .widget ul:not(.magazine-tabs) li a:hover {
/* 3557 */ 	color: var(--theme-color);
/* 3558 */ }
/* 3559 */
/* 3560 */ .widget ol:not(.magazine-tabs) ol,
/* 3561 */ .widget ol:not(.magazine-tabs) ul,
/* 3562 */ .widget ul:not(.magazine-tabs) ol,
/* 3563 */ .widget ul:not(.magazine-tabs) ul {
/* 3564 */ 	padding-top: 7px;
/* 3565 */ 	margin-inline-start: 10px;
/* 3566 */ 	padding-inline-start: 10px;
/* 3567 */ }
/* 3568 */
/* 3569 */ .widget > ol > li,
/* 3570 */ .widget > ul > li {
/* 3571 */ 	margin-bottom: 7px;
/* 3572 */ 	padding-bottom: 7px;
/* 3573 */ 	font-size: var(--font-size-sm);
/* 3574 */ 	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
/* 3575 */ }
/* 3576 */
/* 3577 */ .widget > ol > li a,
/* 3578 */ .widget > ul > li a {
/* 3579 */ 	color: var(--clr-foreground);
/* 3580 */ 	transition: all 0.5s linear;
/* 3581 */ }
/* 3582 */
/* 3583 */ .widget > ol > li a:focus, .widget > ol > li a:hover,
/* 3584 */ .widget > ul > li a:focus,
/* 3585 */ .widget > ul > li a:hover {
/* 3586 */ 	color: var(--theme-color);
/* 3587 */ }
/* 3588 */
/* 3589 */ .widget ol > li:last-child,
/* 3590 */ .widget ul > li:last-child {
/* 3591 */ 	margin-bottom: 0;
/* 3592 */ 	padding-bottom: 0;
/* 3593 */ 	border-bottom: none;
/* 3594 */ }
/* 3595 */
/* 3596 */ /*widget list===============*/
/* 3597 */ /*widget tag cloud ===============*/
/* 3598 */ .wp-block-tag-cloud a,
/* 3599 */ .tagcloud a {
/* 3600 */ 	display: inline-block;

/* style.css */

/* 3601 */ 	text-decoration: none;
/* 3602 */ 	font-size: var(--font-size-small) !important;
/* 3603 */ 	color: var(--clr-foreground);
/* 3604 */ 	border: 1px solid var(--clr-foreground);
/* 3605 */ 	padding: 3px 7px;
/* 3606 */ 	margin-inline-end: 5px;
/* 3607 */ 	margin-block-end: 5px;
/* 3608 */ 	line-height: 1.2;
/* 3609 */ }
/* 3610 */
/* 3611 */ .wp-block-tag-cloud a:focus, .wp-block-tag-cloud a:hover,
/* 3612 */ .tagcloud a:focus,
/* 3613 */ .tagcloud a:hover {
/* 3614 */ 	color: var(--theme-color);
/* 3615 */ 	border: 1px solid var(--theme-color);
/* 3616 */ }
/* 3617 */
/* 3618 */ .site-footer .wp-block-tag-cloud a, .site-footer
/* 3619 */ .tagcloud a {
/* 3620 */ 	border: 1px solid var(--white);
/* 3621 */ }
/* 3622 */
/* 3623 */ .site-footer .wp-block-tag-cloud a:focus, .site-footer .wp-block-tag-cloud a:hover, .site-footer
/* 3624 */ .tagcloud a:focus, .site-footer
/* 3625 */ .tagcloud a:hover {
/* 3626 */ 	color: var(--theme-color);
/* 3627 */ 	border: 1px solid var(--theme-color);
/* 3628 */ }
/* 3629 */
/* 3630 */ /*widget tag cloud ===============*/
/* 3631 */ /*widget search ===============*/
/* 3632 */ .widget.widget_search .wp-block-search__inside-wrapper {
/* 3633 */ 	display: flex;
/* 3634 */ }
/* 3635 */
/* 3636 */ .widget.widget_search .wp-block-search__inside-wrapper .wp-block-search__input {
/* 3637 */ 	border: 1px solid #d3ced2;
/* 3638 */ 	padding: 6px 16px;
/* 3639 */ 	font-size: 0.9rem;
/* 3640 */ }
/* 3641 */
/* 3642 */ .widget.widget_search .wp-block-search__inside-wrapper .wp-block-search__input:focus-visible {
/* 3643 */ 	outline: 0;
/* 3644 */ }
/* 3645 */
/* 3646 */ .widget.widget_search .wp-block-search__inside-wrapper .wp-block-search__button {
/* 3647 */ 	cursor: pointer;
/* 3648 */ 	color: var(--white);
/* 3649 */ 	background-color: var(--primary-color);
/* 3650 */ 	margin: 0;

/* style.css */

/* 3651 */ 	padding: 10px 25px;
/* 3652 */ }
/* 3653 */
/* 3654 */ .search-form {
/* 3655 */ 	display: flex;
/* 3656 */ }
/* 3657 */
/* 3658 */ .search-form label,
/* 3659 */ .search-form .search-field {
/* 3660 */ 	width: 100%;
/* 3661 */ }
/* 3662 */
/* 3663 */ .search-form .search-field {
/* 3664 */ 	border: 1px solid #d3ced2;
/* 3665 */ 	padding: 6px 16px;
/* 3666 */ 	font-size: 0.9rem;
/* 3667 */ 	border-radius: 0;
/* 3668 */ }
/* 3669 */
/* 3670 */ .search-form .search-submit {
/* 3671 */ 	border-radius: 0;
/* 3672 */ }
/* 3673 */
/* 3674 */ /*widget search ===============*/
/* 3675 */ .widget ul.wp-block-social-links li {
/* 3676 */ 	margin: unset;
/* 3677 */ 	padding: unset;
/* 3678 */ 	font-size: unset;
/* 3679 */ }
/* 3680 */
/* 3681 */ /* Media
/* 3682 *| --------------------------------------------- */
/* 3683 */ .page-content .wp-smiley,
/* 3684 */ .entry-content .wp-smiley,
/* 3685 */ .comment-content .wp-smiley {
/* 3686 */ 	border: none;
/* 3687 */ 	margin-bottom: 0;
/* 3688 */ 	margin-top: 0;
/* 3689 */ 	padding: 0;
/* 3690 */ }
/* 3691 */
/* 3692 */ /* Make sure logo link wraps around logo image. */
/* 3693 */ .custom-logo-link {
/* 3694 */ 	display: inline-block;
/* 3695 */ }
/* 3696 */
/* 3697 */ /* Captions
/* 3698 *| --------------------------------------------- */
/* 3699 */ .wp-caption {
/* 3700 */ 	margin-bottom: 1.5em;

/* style.css */

/* 3701 */ 	max-width: 100%;
/* 3702 */ }
/* 3703 */
/* 3704 */ .wp-caption img[class*="wp-image-"] {
/* 3705 */ 	display: block;
/* 3706 */ 	margin-left: auto;
/* 3707 */ 	margin-right: auto;
/* 3708 */ }
/* 3709 */
/* 3710 */ .wp-caption .wp-caption-text {
/* 3711 */ 	margin: 0.8075em 0;
/* 3712 */ }
/* 3713 */
/* 3714 */ .wp-caption-text {
/* 3715 */ 	text-align: center;
/* 3716 */ }
/* 3717 */
/* 3718 */ /* Galleries
/* 3719 *| --------------------------------------------- */
/* 3720 */ .gallery {
/* 3721 */ 	margin-bottom: 1.5em;
/* 3722 */ 	display: grid;
/* 3723 */ 	grid-gap: 1.5em;
/* 3724 */ }
/* 3725 */
/* 3726 */ .gallery-item {
/* 3727 */ 	display: inline-block;
/* 3728 */ 	text-align: center;
/* 3729 */ 	width: 100%;
/* 3730 */ }
/* 3731 */
/* 3732 */ .gallery-columns-2 {
/* 3733 */ 	grid-template-columns: repeat(2, 1fr);
/* 3734 */ }
/* 3735 */
/* 3736 */ .gallery-columns-3 {
/* 3737 */ 	grid-template-columns: repeat(3, 1fr);
/* 3738 */ }
/* 3739 */
/* 3740 */ .gallery-columns-4 {
/* 3741 */ 	grid-template-columns: repeat(4, 1fr);
/* 3742 */ }
/* 3743 */
/* 3744 */ .gallery-columns-5 {
/* 3745 */ 	grid-template-columns: repeat(5, 1fr);
/* 3746 */ }
/* 3747 */
/* 3748 */ .gallery-columns-6 {
/* 3749 */ 	grid-template-columns: repeat(6, 1fr);
/* 3750 */ }

/* style.css */

/* 3751 */
/* 3752 */ .gallery-columns-7 {
/* 3753 */ 	grid-template-columns: repeat(7, 1fr);
/* 3754 */ }
/* 3755 */
/* 3756 */ .gallery-columns-8 {
/* 3757 */ 	grid-template-columns: repeat(8, 1fr);
/* 3758 */ }
/* 3759 */
/* 3760 */ .gallery-columns-9 {
/* 3761 */ 	grid-template-columns: repeat(9, 1fr);
/* 3762 */ }
/* 3763 */
/* 3764 */ .gallery-caption {
/* 3765 */ 	display: block;
/* 3766 */ }
/* 3767 */
/* 3768 */ /*--------------------------------------------------------------
/* 3769 *| # Plugins
/* 3770 *| --------------------------------------------------------------*/
/* 3771 */ /* Jetpack infinite scroll
/* 3772 *| --------------------------------------------- */
/* 3773 */ /* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
/* 3774 */ .infinite-scroll .posts-navigation,
/* 3775 */ .infinite-scroll.neverending .site-footer {
/* 3776 */ 	display: none;
/* 3777 */ }
/* 3778 */
/* 3779 */ /* Re-display the Theme Footer when Infinite Scroll has reached its end. */
/* 3780 */ .infinity-end.neverending .site-footer {
/* 3781 */ 	display: block;
/* 3782 */ }
/* 3783 */
/* 3784 */ /*--------------------------------------------------------------
/* 3785 *| # Utilities
/* 3786 *| --------------------------------------------------------------*/
/* 3787 */ /* Accessibility
/* 3788 *| --------------------------------------------- */
/* 3789 */ /* Text meant only for screen readers. */
/* 3790 */ .screen-reader-text {
/* 3791 */ 	border: 0;
/* 3792 */ 	clip: rect(1px, 1px, 1px, 1px);
/* 3793 */ 	clip-path: inset(50%);
/* 3794 */ 	height: 1px;
/* 3795 */ 	margin: -1px;
/* 3796 */ 	overflow: hidden;
/* 3797 */ 	padding: 0;
/* 3798 */ 	position: absolute !important;
/* 3799 */ 	width: 1px;
/* 3800 */ 	word-wrap: normal !important;

/* style.css */

/* 3801 */ }
/* 3802 */
/* 3803 */ .screen-reader-text:focus {
/* 3804 */ 	background-color: #f1f1f1;
/* 3805 */ 	border-radius: 3px;
/* 3806 */ 	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
/* 3807 */ 	clip: auto !important;
/* 3808 */ 	clip-path: none;
/* 3809 */ 	color: #21759b;
/* 3810 */ 	display: block;
/* 3811 */ 	font-size: 0.875rem;
/* 3812 */ 	font-weight: 700;
/* 3813 */ 	height: auto;
/* 3814 */ 	left: 5px;
/* 3815 */ 	line-height: normal;
/* 3816 */ 	padding: 15px 23px 14px;
/* 3817 */ 	text-decoration: none;
/* 3818 */ 	top: 5px;
/* 3819 */ 	width: auto;
/* 3820 */ 	z-index: 100000;
/* 3821 */ }
/* 3822 */
/* 3823 */ /* Do not show the outline on the skip link target. */
/* 3824 */ #primary[tabindex="-1"]:focus {
/* 3825 */ 	outline: 0;
/* 3826 */ }
/* 3827 */
/* 3828 */ /* Alignments
/* 3829 *| --------------------------------------------- */
/* 3830 */ .alignleft {
/* 3831 */ 	/*rtl:ignore*/
/* 3832 */ 	float: left;
/* 3833 */ 	/*rtl:ignore*/
/* 3834 */ 	margin-right: 1.5em;
/* 3835 */ 	margin-bottom: 1.5em;
/* 3836 */ }
/* 3837 */
/* 3838 */ .alignright {
/* 3839 */ 	/*rtl:ignore*/
/* 3840 */ 	float: right;
/* 3841 */ 	/*rtl:ignore*/
/* 3842 */ 	margin-left: 1.5em;
/* 3843 */ 	margin-bottom: 1.5em;
/* 3844 */ }
/* 3845 */
/* 3846 */ .aligncenter {
/* 3847 */ 	clear: both;
/* 3848 */ 	display: block;
/* 3849 */ 	margin-left: auto;
/* 3850 */ 	margin-right: auto;

/* style.css */

/* 3851 */ 	margin-bottom: 1.5em;
/* 3852 */ }
/* 3853 */
/* 3854 */ /* preloader CSS start
/* 3855 *| --------------------------------------------- */
/* 3856 */ #loader {
/* 3857 */ 	overflow-x: hidden;
/* 3858 */ 	overflow-y: hidden;
/* 3859 */ 	vertical-align: middle;
/* 3860 */ 	background-color: var(--clr-background);
/* 3861 */ 	position: fixed;
/* 3862 */ 	display: table;
/* 3863 */ 	width: 100%;
/* 3864 */ 	left: 0;
/* 3865 */ 	top: 0;
/* 3866 */ 	height: 100%;
/* 3867 */ 	min-height: 100%;
/* 3868 */ 	z-index: 99999;
/* 3869 */ }
/* 3870 */
/* 3871 */ #loader .loader-container {
/* 3872 */ 	position: relative;
/* 3873 */ 	display: table-cell;
/* 3874 */ 	vertical-align: middle;
/* 3875 */ 	z-index: 12;
/* 3876 */ 	text-align: center;
/* 3877 */ 	text-transform: uppercase;
/* 3878 */ }
/* 3879 */
/* 3880 */ #loader #preloader {
/* 3881 */ 	position: relative;
/* 3882 */ 	margin: auto;
/* 3883 */ 	width: 100px;
/* 3884 */ }
/* 3885 */
/* 3886 */ .dark-theme #preloader img {
/* 3887 */ 	filter: invert(1);
/* 3888 */ }
/* 3889 */
/* 3890 */ /* preloader CSS end
/* 3891 *| --------------------------------------------- */
/* 3892 */ header {
/* 3893 */ 	margin-bottom: 10px;
/* 3894 */ }
/* 3895 */
/* 3896 */ header .top-header-part {
/* 3897 */ 	background: var(--light-bg-color);
/* 3898 */ 	padding: 8px 0;
/* 3899 */ 	font-size: var(--font-size-sm);
/* 3900 */ 	line-height: 1.2;

/* style.css */

/* 3901 */ 	color: var(--clr-foreground);
/* 3902 */ }
/* 3903 */
/* 3904 */ header .top-header-part .top-header-wrapper {
/* 3905 */ 	display: flex;
/* 3906 */ 	align-items: center;
/* 3907 */ 	justify-content: space-between;
/* 3908 */ }
/* 3909 */
/* 3910 */ @media (max-width: 480px) {
/* 3911 */ 	header .top-header-part .top-header-wrapper {
/* 3912 */ 		flex-direction: column;
/* 3913 */ 	}
/* 3914 */ }
/* 3915 */
/* 3916 */ @media (max-width: 480px) {
/* 3917 */ 	header .top-header-part .top-header-wrapper .top-header-left {
/* 3918 */ 		display: none;
/* 3919 */ 	}
/* 3920 */ }
/* 3921 */
/* 3922 */ header .top-header-part .top-header-wrapper .top-header-right {
/* 3923 */ 	display: flex;
/* 3924 */ 	align-items: center;
/* 3925 */ }
/* 3926 */
/* 3927 */ header .top-header-part .top-header-wrapper .top-header-right .dark-light-mode-switch {
/* 3928 */ 	padding-inline-start: 10px;
/* 3929 */ 	margin-inline-start: 10px;
/* 3930 */ 	border-inline-start: 1px solid #c8cacf;
/* 3931 */ }
/* 3932 */
/* 3933 */ header .middle-header-part .middle-header-wrapper {
/* 3934 */ 	display: flex;
/* 3935 */ 	justify-content: space-between;
/* 3936 */ 	align-items: center;
/* 3937 */ 	padding-block: 15px;
/* 3938 */ 	gap: 30px;
/* 3939 */ }
/* 3940 */
/* 3941 */ @media (max-width: 991px) {
/* 3942 */ 	header .middle-header-part .middle-header-wrapper {
/* 3943 */ 		flex-direction: column;
/* 3944 */ 	}
/* 3945 */ }
/* 3946 */
/* 3947 */ @media (min-width: 992px) {
/* 3948 */ 	header .middle-header-part .middle-header-wrapper .site-branding {
/* 3949 */ 		width: 40%;
/* 3950 */ 		flex-shrink: 0;

/* style.css */

/* 3951 */ 	}
/* 3952 */ }
/* 3953 */
/* 3954 */ @media (max-width: 991px) {
/* 3955 */ 	header .middle-header-part .middle-header-wrapper .site-branding {
/* 3956 */ 		text-align: center;
/* 3957 */ 	}
/* 3958 */ }
/* 3959 */
/* 3960 */ header .middle-header-part .middle-header-wrapper .site-branding .site-title {
/* 3961 */ 	font-size: var(--font-size-lg);
/* 3962 */ 	font-weight: 700;
/* 3963 */ 	line-height: 1.2;
/* 3964 */ 	margin: 0;
/* 3965 */ }
/* 3966 */
/* 3967 */ header .middle-header-part .middle-header-wrapper .site-branding .site-title a {
/* 3968 */ 	line-height: inherit;
/* 3969 */ 	text-decoration: none;
/* 3970 */ 	color: var(--header-text-color);
/* 3971 */ }
/* 3972 */
/* 3973 */ header .middle-header-part .middle-header-wrapper .site-branding .site-description {
/* 3974 */ 	margin: 0;
/* 3975 */ 	color: var(--clr-foreground);
/* 3976 */ }
/* 3977 */
/* 3978 */ @media (max-width: 480px) {
/* 3979 */ 	header .middle-header-part .middle-header-wrapper .site-branding .site-description {
/* 3980 */ 		font-size: 0.8rem;
/* 3981 */ 		margin-top: 0;
/* 3982 */ 	}
/* 3983 */ }
/* 3984 */
/* 3985 */ @media (min-width: 992px) {
/* 3986 */ 	header .middle-header-part .middle-header-wrapper .mag-adver-part {
/* 3987 */ 		width: 60%;
/* 3988 */ 	}
/* 3989 */ }
/* 3990 */
/* 3991 */ header .middle-header-part .middle-header-wrapper .mag-adver-part a {
/* 3992 */ 	display: block;
/* 3993 */ 	line-height: 0;
/* 3994 */ }
/* 3995 */
/* 3996 */ header .middle-header-part .middle-header-wrapper .mag-adver-part a img {
/* 3997 */ 	width: 100%;
/* 3998 */ }
/* 3999 */
/* 4000 */ header .middle-header-part .middle-header-wrapper .mag-adver-part a:focus {

/* style.css */

/* 4001 */ 	outline-color: var(--theme-color);
/* 4002 */ 	outline-offset: 2px;
/* 4003 */ }
/* 4004 */
/* 4005 */ header .middle-header-part.ascendoor-header-image {
/* 4006 */ 	position: relative;
/* 4007 */ 	padding: 10px 0;
/* 4008 */ 	background-position: center;
/* 4009 */ 	background-repeat: no-repeat;
/* 4010 */ 	background-size: cover;
/* 4011 */ }
/* 4012 */
/* 4013 */ header .middle-header-part.ascendoor-header-image::before {
/* 4014 */ 	position: absolute;
/* 4015 */ 	content: "";
/* 4016 */ 	left: 0;
/* 4017 */ 	top: 0;
/* 4018 */ 	width: 100%;
/* 4019 */ 	height: 100%;
/* 4020 */ 	background-color: #000000;
/* 4021 */ 	opacity: 0.4;
/* 4022 */ }
/* 4023 */
/* 4024 */ header .middle-header-part.ascendoor-header-image > * {
/* 4025 */ 	position: relative;
/* 4026 */ 	z-index: 1;
/* 4027 */ }
/* 4028 */
/* 4029 */ header .middle-header-part.ascendoor-header-image .middle-header-wrapper .site-branding .site-title a {
/* 4030 */ 	color: var(--white);
/* 4031 */ }
/* 4032 */
/* 4033 */ header .middle-header-part.ascendoor-header-image .middle-header-wrapper .site-branding .site-description {
/* 4034 */ 	color: var(--white);
/* 4035 */ }
/* 4036 */
/* 4037 */ header .bottom-header-part {
/* 4038 */ 	background-color: #151618;
/* 4039 */ }
/* 4040 */
/* 4041 */ header .bottom-header-part .bottom-header-wrapper {
/* 4042 */ 	min-height: 55px;
/* 4043 */ 	display: flex;
/* 4044 */ 	align-items: center;
/* 4045 */ 	justify-content: space-between;
/* 4046 */ }
/* 4047 */
/* 4048 */ @media (max-width: 480px) {
/* 4049 */ 	header .bottom-header-part .bottom-header-wrapper {
/* 4050 */ 		position: relative;

/* style.css */

/* 4051 */ 	}
/* 4052 */ }
/* 4053 */
/* 4054 */ header .bottom-header-part .bottom-header-wrapper .navigation-part {
/* 4055 */ 	display: flex;
/* 4056 */ }
/* 4057 */
/* 4058 */ header .bottom-header-part .bottom-header-wrapper .navigation-part .ascendoor-home-icon a {
/* 4059 */ 	text-decoration: none;
/* 4060 */ 	display: flex;
/* 4061 */ 	align-items: center;
/* 4062 */ 	justify-content: center;
/* 4063 */ 	color: var(--white);
/* 4064 */ 	background: var(--theme-color);
/* 4065 */ 	height: 57px;
/* 4066 */ 	width: 57px;
/* 4067 */ }
/* 4068 */
/* 4069 */ @media (max-width: 991px) {
/* 4070 */ 	header .bottom-header-part .bottom-header-wrapper .navigation-part .ascendoor-home-icon a {
/* 4071 */ 		height: 47px;
/* 4072 */ 		width: 47px;
/* 4073 */ 		margin-inline-end: 5px;
/* 4074 */ 	}
/* 4075 */ }
/* 4076 */
/* 4077 */ header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part {
/* 4078 */ 	display: flex;
/* 4079 */ 	align-items: center;
/* 4080 */ }
/* 4081 */
/* 4082 */ header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .ascendoor-offcanvas {
/* 4083 */ 	line-height: 1;
/* 4084 */ }
/* 4085 */
/* 4086 */ header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .ascendoor-offcanvas .ascendoor-offcanvas-menu {
/* 4087 */ 	padding: 0px;
/* 4088 */ 	cursor: pointer;
/* 4089 */ 	border: 0;
/* 4090 */ 	background: transparent;
/* 4091 */ 	position: relative;
/* 4092 */ 	z-index: 1;
/* 4093 */ 	width: 30px;
/* 4094 */ 	height: 24px;
/* 4095 */ }
/* 4096 */
/* 4097 */ header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .ascendoor-offcanvas .ascendoor-offcanvas-menu span {
/* 4098 */ 	position: absolute;
/* 4099 */ 	display: block;
/* 4100 */ 	content: "";

/* style.css */

/* 4101 */ 	background-color: var(--white);
/* 4102 */ 	height: 3px;
/* 4103 */ 	width: 70%;
/* 4104 */ 	inset-inline-start: 0;
/* 4105 */ 	top: 50%;
/* 4106 */ 	transform: translateY(-50%);
/* 4107 */ 	transition: width 500ms ease 0s;
/* 4108 */ }
/* 4109 */
/* 4110 */ header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .ascendoor-offcanvas .ascendoor-offcanvas-menu::before, header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .ascendoor-offcanvas .ascendoor-offcanvas-menu::after {
/* 4111 */ 	position: absolute;
/* 4112 */ 	display: block;
/* 4113 */ 	content: "";
/* 4114 */ 	background-color: var(--white);
/* 4115 */ 	height: 3px;
/* 4116 */ 	width: 70%;
/* 4117 */ 	inset-inline-end: 0;
/* 4118 */ 	transition: width 500ms ease 0s;
/* 4119 */ }
/* 4120 */
/* 4121 */ header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .ascendoor-offcanvas .ascendoor-offcanvas-menu::before {
/* 4122 */ 	top: 0;
/* 4123 */ }
/* 4124 */
/* 4125 */ header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .ascendoor-offcanvas .ascendoor-offcanvas-menu::after {
/* 4126 */ 	bottom: 0;
/* 4127 */ }
/* 4128 */
/* 4129 */ header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .ascendoor-offcanvas .ascendoor-offcanvas-menu:hover, header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .ascendoor-offcanvas .ascendoor-offcanvas-menu:focus {
/* 4130 */ 	opacity: 1;
/* 4131 */ }
/* 4132 */
/* 4133 */ header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .ascendoor-offcanvas .ascendoor-offcanvas-menu:hover span, header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .ascendoor-offcanvas .ascendoor-offcanvas-menu:focus span {
/* 4134 */ 	width: 100%;
/* 4135 */ }
/* 4136 */
/* 4137 */ header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .ascendoor-offcanvas .ascendoor-offcanvas-menu:hover::before, header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .ascendoor-offcanvas .ascendoor-offcanvas-menu:hover::after, header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .ascendoor-offcanvas .ascendoor-offcanvas-menu:focus::before, header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .ascendoor-offcanvas .ascendoor-offcanvas-menu:focus::after {
/* 4138 */ 	width: 100%;
/* 4139 */ }
/* 4140 */
/* 4141 */ header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .ascendoor-offcanvas .ascendoor-offcanvas-menu:focus {
/* 4142 */ 	outline: thin dotted;
/* 4143 */ 	outline-offset: 2px;
/* 4144 */ }
/* 4145 */
/* 4146 */ header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .header-search {
/* 4147 */ 	width: 40px;
/* 4148 */ 	position: relative;
/* 4149 */ 	display: inline-block;
/* 4150 */ 	text-align: center;

/* style.css */

/* 4151 */ 	border-inline-start: 1px solid rgba(255, 255, 255, 0.7);
/* 4152 */ 	padding-inline-start: 10px;
/* 4153 */ 	margin-inline-start: 13px;
/* 4154 */ }
/* 4155 */
/* 4156 */ @media (max-width: 480px) {
/* 4157 */ 	header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .header-search {
/* 4158 */ 		position: unset;
/* 4159 */ 	}
/* 4160 */ }
/* 4161 */
/* 4162 */ header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .header-search .header-search-wrap .header-search-icon {
/* 4163 */ 	font-size: var(--font-size-sm);
/* 4164 */ 	color: var(--white);
/* 4165 */ 	font-weight: 700;
/* 4166 */ 	text-align: center;
/* 4167 */ 	outline: 0;
/* 4168 */ 	height: 30px;
/* 4169 */ 	width: 30px;
/* 4170 */ 	display: flex;
/* 4171 */ 	align-items: center;
/* 4172 */ 	justify-content: center;
/* 4173 */ 	text-decoration: none;
/* 4174 */ 	background-color: rgba(255, 255, 255, 0.2);
/* 4175 */ 	border-radius: 50%;
/* 4176 */ }
/* 4177 */
/* 4178 */ header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .header-search .header-search-wrap .header-search-icon:focus-within {
/* 4179 */ 	outline: 1px dashed #fff;
/* 4180 */ }
/* 4181 */
/* 4182 */ header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .header-search .header-search-wrap .header-search-form {
/* 4183 */ 	position: absolute;
/* 4184 */ 	background: var(--clr-sub-background);
/* 4185 */ 	inset-inline-end: 0;
/* 4186 */ 	opacity: 0;
/* 4187 */ 	visibility: hidden;
/* 4188 */ 	top: 100%;
/* 4189 */ 	width: 325px;
/* 4190 */ 	padding: 14px;
/* 4191 */ 	z-index: 99;
/* 4192 */ }
/* 4193 */
/* 4194 */ @media (max-width: 480px) {
/* 4195 */ 	header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .header-search .header-search-wrap .header-search-form {
/* 4196 */ 		width: 100%;
/* 4197 */ 	}
/* 4198 */ }
/* 4199 */
/* 4200 */ header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .header-search .header-search-wrap .header-search-form .search-form {

/* style.css */

/* 4201 */ 	display: flex;
/* 4202 */ }
/* 4203 */
/* 4204 */ header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .header-search .header-search-wrap .header-search-form .search-form label {
/* 4205 */ 	width: 75%;
/* 4206 */ }
/* 4207 */
/* 4208 */ header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .header-search .header-search-wrap .header-search-form .search-form label input {
/* 4209 */ 	width: 100%;
/* 4210 */ 	border-radius: 0px;
/* 4211 */ }
/* 4212 */
/* 4213 */ header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .header-search .header-search-wrap .header-search-form .search-form input.search-submit {
/* 4214 */ 	border: 1px solid var(--theme-color);
/* 4215 */ 	border-radius: 0px;
/* 4216 */ 	padding: 0px;
/* 4217 */ 	font-size: var(--font-size-sm);
/* 4218 */ 	width: 25%;
/* 4219 */ 	margin: 0;
/* 4220 */ }
/* 4221 */
/* 4222 */ header .bottom-header-part .bottom-header-wrapper .bottom-header-right-part .header-search .header-search-wrap.show .header-search-form {
/* 4223 */ 	margin: 0;
/* 4224 */ 	opacity: 1;
/* 4225 */ 	visibility: visible;
/* 4226 */ }
/* 4227 */
/* 4228 */ .magazine-frontpage-section {
/* 4229 */ 	margin-bottom: 30px;
/* 4230 */ }
/* 4231 */
/* 4232 */ .section-header {
/* 4233 */ 	display: flex;
/* 4234 */ 	align-items: center;
/* 4235 */ 	justify-content: space-between;
/* 4236 */ 	padding-bottom: 0;
/* 4237 */ 	border-bottom: 2px solid var(--theme-color);
/* 4238 */ 	margin-bottom: 15px;
/* 4239 */ 	position: relative;
/* 4240 */ }
/* 4241 */
/* 4242 */ .section-header .widgettitle,
/* 4243 */ .section-header .widget-title,
/* 4244 */ .section-header .section-title {
/* 4245 */ 	font-size: var(--font-size-base);
/* 4246 */ 	line-height: 1.2;
/* 4247 */ 	margin-top: 0;
/* 4248 */ 	font-weight: normal;
/* 4249 */ 	padding-bottom: 0;
/* 4250 */ 	margin-bottom: 0;

/* style.css */

/* 4251 */ 	color: var(--white);
/* 4252 */ 	padding: 5px 10px;
/* 4253 */ 	background-color: var(--theme-color);
/* 4254 */ }
/* 4255 */
/* 4256 */ .section-header .widgettitle span,
/* 4257 */ .section-header .widget-title span,
/* 4258 */ .section-header .section-title span {
/* 4259 */ 	font-size: inherit;
/* 4260 */ 	line-height: inherit;
/* 4261 */ 	margin: 0;
/* 4262 */ 	padding: 0;
/* 4263 */ 	color: inherit;
/* 4264 */ 	background-color: transparent;
/* 4265 */ }
/* 4266 */
/* 4267 */ .section-header a {
/* 4268 */ 	padding: 5px 0;
/* 4269 */ 	font-size: var(--font-size-sm);
/* 4270 */ 	color: var(--clr-foreground);
/* 4271 */ 	text-decoration: none;
/* 4272 */ }
/* 4273 */
/* 4274 */ .section-header a:focus, .section-header a:hover {
/* 4275 */ 	color: var(--theme-color);
/* 4276 */ }
/* 4277 */
/* 4278 */ .section-header a::after {
/* 4279 */ 	-webkit-font-smoothing: antialiased;
/* 4280 */ 	-moz-osx-font-smoothing: grayscale;
/* 4281 */ 	display: inline-block;
/* 4282 */ 	font-style: normal;
/* 4283 */ 	font-variant: normal;
/* 4284 */ 	font-weight: 400;
/* 4285 */ 	line-height: 1;
/* 4286 */ 	font-family: Font Awesome\ 5 Free;
/* 4287 */ 	font-weight: 900;
/* 4288 */ 	line-height: inherit;
/* 4289 */ 	vertical-align: baseline;
/* 4290 */ 	content: "\f105";
/* 4291 */ 	display: inline-block;
/* 4292 */ 	margin-inline-start: 5px;
/* 4293 */ }
/* 4294 */
/* 4295 */ body.rtl .section-header a::after {
/* 4296 */ 	content: "\f104";
/* 4297 */ }
/* 4298 */
/* 4299 */ .widget:not(.ascendoor-widget) .section-header .section-title {
/* 4300 */ 	margin-bottom: 0;

/* style.css */

/* 4301 */ 	padding: 0;
/* 4302 */ }
/* 4303 */
/* 4304 */ .mag-post-category {
/* 4305 */ 	line-height: 1.2;
/* 4306 */ 	font-size: var(--font-size-xs);
/* 4307 */ }
/* 4308 */
/* 4309 */ .mag-post-category a {
/* 4310 */ 	display: inline-block;
/* 4311 */ 	margin-inline-end: 3px;
/* 4312 */ 	margin-block-end: 5px;
/* 4313 */ 	text-decoration: none;
/* 4314 */ 	color: #404040;
/* 4315 */ 	font-weight: 600;
/* 4316 */ 	text-transform: uppercase;
/* 4317 */ 	line-height: 1.2;
/* 4318 */ }
/* 4319 */
/* 4320 */ .mag-post-category:not(.with-background) a {
/* 4321 */ 	color: var(--theme-color);
/* 4322 */ }
/* 4323 */
/* 4324 */ .mag-post-category:not(.with-background) a::after {
/* 4325 */ 	content: "\2219";
/* 4326 */ 	color: var(--clr-foreground);
/* 4327 */ 	font-weight: bold;
/* 4328 */ 	padding: 0 0 0 3px;
/* 4329 */ 	opacity: 0.7;
/* 4330 */ }
/* 4331 */
/* 4332 */ .mag-post-category:not(.with-background) a:last-child::after {
/* 4333 */ 	display: none;
/* 4334 */ }
/* 4335 */
/* 4336 */ .mag-post-category.with-background a {
/* 4337 */ 	padding: 1px 5px;
/* 4338 */ 	border-radius: 4px;
/* 4339 */ 	margin-inline-end: 5px;
/* 4340 */ 	color: var(--white);
/* 4341 */ 	background-color: var(--theme-color);
/* 4342 */ }
/* 4343 */
/* 4344 */ .mag-post-single {
/* 4345 */ 	background-color: var(--light-bg-color);
/* 4346 */ }
/* 4347 */
/* 4348 */ .mag-post-single .mag-post-img {
/* 4349 */ 	border-radius: var(--border-radius-all);
/* 4350 */ 	position: relative;

/* style.css */

/* 4351 */ 	background-color: var(--light-bg-color);
/* 4352 */ }
/* 4353 */
/* 4354 */ .mag-post-single .mag-post-img > a {
/* 4355 */ 	display: block;
/* 4356 */ 	height: 100%;
/* 4357 */ 	width: 100%;
/* 4358 */ 	line-height: 0;
/* 4359 */ }
/* 4360 */
/* 4361 */ .mag-post-single .mag-post-img > a:focus {
/* 4362 */ 	outline-offset: 1px;
/* 4363 */ 	outline-color: var(--clr-foreground);
/* 4364 */ }
/* 4365 */
/* 4366 */ .mag-post-single .mag-post-img > a img {
/* 4367 */ 	width: 100%;
/* 4368 */ 	height: 100%;
/* 4369 */ 	aspect-ratio: 1/0.7;
/* 4370 */ 	object-fit: cover;
/* 4371 */ 	position: relative;
/* 4372 */ 	z-index: 1;
/* 4373 */ }
/* 4374 */
/* 4375 */ .mag-post-single .mag-post-detail {
/* 4376 */ 	padding: 20px;
/* 4377 */ }
/* 4378 */
/* 4379 */ .mag-post-single .mag-post-detail .mag-post-title {
/* 4380 */ 	margin: 0 0 10px;
/* 4381 */ 	font-size: var(--font-size-base);
/* 4382 */ 	font-weight: 700;
/* 4383 */ 	line-height: 1.3;
/* 4384 */ }
/* 4385 */
/* 4386 */ .mag-post-single .mag-post-detail .mag-post-title a {
/* 4387 */ 	display: inline-block;
/* 4388 */ 	text-decoration: none;
/* 4389 */ 	color: var(--clr-foreground);
/* 4390 */ 	transition: all 0.3s cubic-bezier(0.32, 0.74, 0.57, 1);
/* 4391 */ }
/* 4392 */
/* 4393 */ .mag-post-single .mag-post-detail .mag-post-title a:focus, .mag-post-single .mag-post-detail .mag-post-title a:hover {
/* 4394 */ 	color: var(--theme-color);
/* 4395 */ 	text-decoration: underline;
/* 4396 */ 	text-decoration-color: currentColor;
/* 4397 */ }
/* 4398 */
/* 4399 */ .site-footer .mag-post-single .mag-post-detail .mag-post-title {
/* 4400 */ 	font-size: var(--font-size-sm);

/* style.css */

/* 4401 */ }
/* 4402 */
/* 4403 */ .mag-post-single .mag-post-detail .mag-post-meta {
/* 4404 */ 	font-size: var(--font-size-xs);
/* 4405 */ 	line-height: 1.3;
/* 4406 */ }
/* 4407 */
/* 4408 */ .mag-post-single .mag-post-detail .mag-post-meta > span {
/* 4409 */ 	margin-inline-end: 5px;
/* 4410 */ }
/* 4411 */
/* 4412 */ .mag-post-single .mag-post-detail .mag-post-meta .byline a,
/* 4413 */ .mag-post-single .mag-post-detail .mag-post-meta .post-author a {
/* 4414 */ 	text-decoration: none;
/* 4415 */ 	color: var(--clr-foreground);
/* 4416 */ }
/* 4417 */
/* 4418 */ .mag-post-single .mag-post-detail .mag-post-meta .byline a i,
/* 4419 */ .mag-post-single .mag-post-detail .mag-post-meta .post-author a i {
/* 4420 */ 	margin-inline-end: 5px;
/* 4421 */ }
/* 4422 */
/* 4423 */ .mag-post-single .mag-post-detail .mag-post-meta .posted-on a,
/* 4424 */ .mag-post-single .mag-post-detail .mag-post-meta .post-date a {
/* 4425 */ 	text-decoration: none;
/* 4426 */ 	color: var(--clr-foreground);
/* 4427 */ }
/* 4428 */
/* 4429 */ .mag-post-single .mag-post-detail .mag-post-meta .posted-on a i,
/* 4430 */ .mag-post-single .mag-post-detail .mag-post-meta .post-date a i {
/* 4431 */ 	margin-inline-end: 5px;
/* 4432 */ }
/* 4433 */
/* 4434 */ .mag-post-single .mag-post-detail .mag-post-excerpt {
/* 4435 */ 	font-size: var(--font-size-sm);
/* 4436 */ 	color: var(--clr-foreground);
/* 4437 */ }
/* 4438 */
/* 4439 */ .mag-post-single .mag-post-detail .mag-post-excerpt p {
/* 4440 */ 	margin: 10px 0 0;
/* 4441 */ }
/* 4442 */
/* 4443 */ .mag-post-single.tile-design {
/* 4444 */ 	border-radius: var(--border-radius-all);
/* 4445 */ 	background-color: var(--light-bg-color);
/* 4446 */ 	overflow: hidden;
/* 4447 */ 	position: relative;
/* 4448 */ 	min-height: 220px;
/* 4449 */ 	display: flex !important;
/* 4450 */ 	flex-direction: column;

/* style.css */

/* 4451 */ 	justify-content: flex-end;
/* 4452 */ }
/* 4453 */
/* 4454 */ .mag-post-single.tile-design .mag-post-img {
/* 4455 */ 	position: absolute;
/* 4456 */ 	top: 0;
/* 4457 */ 	left: 0;
/* 4458 */ 	z-index: 0;
/* 4459 */ 	width: 100%;
/* 4460 */ 	height: 100%;
/* 4461 */ }
/* 4462 */
/* 4463 */ .mag-post-single.tile-design .mag-post-img::before {
/* 4464 */ 	content: "";
/* 4465 */ 	position: absolute;
/* 4466 */ 	top: 0;
/* 4467 */ 	left: 0;
/* 4468 */ 	width: 100%;
/* 4469 */ 	height: 100%;
/* 4470 */ 	z-index: 2;
/* 4471 */ 	background-image: var(--alpha-bg);
/* 4472 */ 	transition: all 0.4s;
/* 4473 */ }
/* 4474 */
/* 4475 */ .mag-post-single.tile-design .mag-post-detail {
/* 4476 */ 	position: relative;
/* 4477 */ 	padding: 20px;
/* 4478 */ 	padding-top: 50px;
/* 4479 */ 	z-index: 1;
/* 4480 */ }
/* 4481 */
/* 4482 */ .mag-post-single.tile-design.has-image .mag-post-detail {
/* 4483 */ 	background: var(--alpha-bg);
/* 4484 */ 	color: #fff;
/* 4485 */ 	transition: background 1s;
/* 4486 */ }
/* 4487 */
/* 4488 */ .mag-post-single.tile-design.has-image .mag-post-detail .mag-post-title a {
/* 4489 */ 	color: var(--white);
/* 4490 */ }
/* 4491 */
/* 4492 */ .mag-post-single.tile-design.has-image .mag-post-detail .mag-post-meta .post-author a {
/* 4493 */ 	color: var(--white);
/* 4494 */ }
/* 4495 */
/* 4496 */ .mag-post-single.tile-design.has-image .mag-post-detail .mag-post-meta .post-date a {
/* 4497 */ 	color: var(--white);
/* 4498 */ }
/* 4499 */
/* 4500 */ .mag-post-single.tile-design.has-image .mag-post-detail .mag-post-excerpt {

/* style.css */

/* 4501 */ 	color: var(--white);
/* 4502 */ }
/* 4503 */
/* 4504 */ .mag-post-single.tile-design:focus-within {
/* 4505 */ 	outline: thin dotted var(--clr-foreground);
/* 4506 */ 	outline-offset: 1px;
/* 4507 */ }
/* 4508 */
/* 4509 */ .mag-post-single.list-design {
/* 4510 */ 	display: flex;
/* 4511 */ 	gap: 20px;
/* 4512 */ }
/* 4513 */
/* 4514 */ .mag-post-single.list-design .mag-post-img {
/* 4515 */ 	width: 30%;
/* 4516 */ }
/* 4517 */
/* 4518 */ .mag-post-single.list-design .mag-post-img + .mag-post-detail {
/* 4519 */ 	padding: 15px 0;
/* 4520 */ 	padding-inline-end: 10px;
/* 4521 */ 	width: calc(70% - 20px);
/* 4522 */ }
/* 4523 */
/* 4524 */ .mag-post-single.list-design .mag-post-detail {
/* 4525 */ 	align-self: center;
/* 4526 */ }
/* 4527 */
/* 4528 */ .banner-section {
/* 4529 */ 	margin-bottom: 30px;
/* 4530 */ }
/* 4531 */
/* 4532 */ .banner-section .banner-slider .slick-track {
/* 4533 */ 	line-height: 0;
/* 4534 */ }
/* 4535 */
/* 4536 */ .banner-section.banner-section-with-trending-editor .banner-section-wrapper {
/* 4537 */ 	display: flex;
/* 4538 */ 	gap: 10px;
/* 4539 */ }
/* 4540 */
/* 4541 */ @media (max-width: 991px) {
/* 4542 */ 	.banner-section.banner-section-with-trending-editor .banner-section-wrapper {
/* 4543 */ 		flex-wrap: wrap;
/* 4544 */ 	}
/* 4545 */ }
/* 4546 */
/* 4547 */ @media (max-width: 767px) {
/* 4548 */ 	.banner-section.banner-section-with-trending-editor .banner-section-wrapper {
/* 4549 */ 		flex-wrap: wrap;
/* 4550 */ 	}

/* style.css */

/* 4551 */ }
/* 4552 */
/* 4553 */ .banner-section.banner-section-with-trending-editor .banner-section-wrapper .editor-picks-part {
/* 4554 */ 	width: 26.67%;
/* 4555 */ }
/* 4556 */
/* 4557 */ @media (max-width: 991px) {
/* 4558 */ 	.banner-section.banner-section-with-trending-editor .banner-section-wrapper .editor-picks-part {
/* 4559 */ 		width: calc(50% - 5px);
/* 4560 */ 		order: 2;
/* 4561 */ 	}
/* 4562 */ }
/* 4563 */
/* 4564 */ @media (max-width: 767px) {
/* 4565 */ 	.banner-section.banner-section-with-trending-editor .banner-section-wrapper .editor-picks-part {
/* 4566 */ 		width: 100%;
/* 4567 */ 	}
/* 4568 */ }
/* 4569 */
/* 4570 */ .banner-section.banner-section-with-trending-editor .banner-section-wrapper .editor-picks-part .editor-picks-wrapper {
/* 4571 */ 	display: flex;
/* 4572 */ 	flex-direction: column;
/* 4573 */ 	gap: 10px;
/* 4574 */ }
/* 4575 */
/* 4576 */ .banner-section.banner-section-with-trending-editor .banner-section-wrapper .editor-picks-part .editor-picks-wrapper .mag-post-single {
/* 4577 */ 	min-height: 245px;
/* 4578 */ }
/* 4579 */
/* 4580 */ .banner-section.banner-section-with-trending-editor .banner-section-wrapper .slider-part {
/* 4581 */ 	width: 50%;
/* 4582 */ }
/* 4583 */
/* 4584 */ @media (max-width: 991px) {
/* 4585 */ 	.banner-section.banner-section-with-trending-editor .banner-section-wrapper .slider-part {
/* 4586 */ 		width: 100%;
/* 4587 */ 		order: 1;
/* 4588 */ 	}
/* 4589 */ }
/* 4590 */
/* 4591 */ .banner-section.banner-section-with-trending-editor .banner-section-wrapper .slider-part .magazine-slider-wrapper .mag-post-single {
/* 4592 */ 	min-height: 500px;
/* 4593 */ }
/* 4594 */
/* 4595 */ @media (max-width: 767px) {
/* 4596 */ 	.banner-section.banner-section-with-trending-editor .banner-section-wrapper .slider-part .magazine-slider-wrapper .mag-post-single {
/* 4597 */ 		min-height: 350px;
/* 4598 */ 	}
/* 4599 */ }
/* 4600 */

/* style.css */

/* 4601 */ .banner-section.banner-section-with-trending-editor .banner-section-wrapper .slider-part .magazine-slider-wrapper .mag-post-single .mag-post-detail .mag-post-title {
/* 4602 */ 	font-size: var(--font-size-md);
/* 4603 */ }
/* 4604 */
/* 4605 */ .banner-section.banner-section-with-trending-editor .banner-section-wrapper .trending-part {
/* 4606 */ 	width: 23.33%;
/* 4607 */ }
/* 4608 */
/* 4609 */ @media (max-width: 991px) {
/* 4610 */ 	.banner-section.banner-section-with-trending-editor .banner-section-wrapper .trending-part {
/* 4611 */ 		width: calc(50% - 5px);
/* 4612 */ 		order: 3;
/* 4613 */ 	}
/* 4614 */ }
/* 4615 */
/* 4616 */ @media (max-width: 767px) {
/* 4617 */ 	.banner-section.banner-section-with-trending-editor .banner-section-wrapper .trending-part {
/* 4618 */ 		width: 100%;
/* 4619 */ 	}
/* 4620 */ }
/* 4621 */
/* 4622 */ .banner-section.banner-section-with-trending-editor .banner-section-wrapper .trending-part .trending-wrapper .slick-slide {
/* 4623 */ 	margin-bottom: 10px;
/* 4624 */ }
/* 4625 */
/* 4626 */ .banner-section.banner-section-with-trending-editor .banner-section-wrapper .trending-part .trending-wrapper .mag-post-single {
/* 4627 */ 	display: flex !important;
/* 4628 */ 	min-height: 90px;
/* 4629 */ 	gap: 15px;
/* 4630 */ }
/* 4631 */
/* 4632 */ .banner-section.banner-section-with-trending-editor .banner-section-wrapper .trending-part .trending-wrapper .mag-post-single .mag-post-img .trending-no {
/* 4633 */ 	position: absolute;
/* 4634 */ 	inset-inline-start: 0;
/* 4635 */ 	bottom: 0;
/* 4636 */ 	z-index: 1;
/* 4637 */ 	width: 20px;
/* 4638 */ 	height: 20px;
/* 4639 */ 	display: flex;
/* 4640 */ 	align-items: center;
/* 4641 */ 	justify-content: center;
/* 4642 */ 	background: var(--theme-color);
/* 4643 */ 	color: var(--white);
/* 4644 */ 	font-size: var(--font-size-sm);
/* 4645 */ 	line-height: 1;
/* 4646 */ }
/* 4647 */
/* 4648 */ .banner-section.banner-section-with-trending-editor .banner-section-wrapper .trending-part .trending-wrapper .mag-post-single .mag-post-detail {
/* 4649 */ 	padding: 0;
/* 4650 */ 	align-self: center;

/* style.css */

/* 4651 */ }
/* 4652 */
/* 4653 */ .banner-section.banner-section-with-trending-editor .banner-section-wrapper .trending-part .trending-wrapper .mag-post-single .mag-post-detail .mag-post-title {
/* 4654 */ 	font-size: var(--font-size-sm);
/* 4655 */ }
/* 4656 */
/* 4657 */ .flash-news-ticker {
/* 4658 */ 	margin-bottom: 10px;
/* 4659 */ }
/* 4660 */
/* 4661 */ .flash-news-ticker .flash-news-ticker-wrapper {
/* 4662 */ 	margin: 0;
/* 4663 */ 	position: relative;
/* 4664 */ 	display: flex;
/* 4665 */ 	align-items: center;
/* 4666 */ 	background: var(--light-bg-color);
/* 4667 */ }
/* 4668 */
/* 4669 */ .flash-news-ticker .flash-news-ticker-wrapper .title-part {
/* 4670 */ 	position: relative;
/* 4671 */ 	line-height: normal;
/* 4672 */ }
/* 4673 */
/* 4674 */ .flash-news-ticker .flash-news-ticker-wrapper .title-part::after {
/* 4675 */ 	content: "";
/* 4676 */ 	width: 15px;
/* 4677 */ 	height: 100%;
/* 4678 */ 	position: absolute;
/* 4679 */ 	z-index: 1;
/* 4680 */ 	top: 0;
/* 4681 */ 	inset-inline-end: -15px;
/* 4682 */ 	-webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 553.5 553.5" preserveAspectRatio="none"><polygon points="0.3,553.3 553.5,276.8 0.3,0.3 "/></svg>');
/* 4683 */ 	mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 553.5 553.5" preserveAspectRatio="none"><polygon points="0.3,553.3 553.5,276.8 0.3,0.3 "/></svg>');
/* 4684 */ 	-webkit-mask-position: center center;
/* 4685 */ 	mask-position: center center;
/* 4686 */ 	-webkit-mask-repeat: no-repeat;
/* 4687 */ 	mask-repeat: no-repeat;
/* 4688 */ 	mask-size: 100% 100%;
/* 4689 */ 	-webkit-mask-size: 100% 100%;
/* 4690 */ 	background-color: var(--theme-color);
/* 4691 */ }
/* 4692 */
/* 4693 */ body.rtl .flash-news-ticker .flash-news-ticker-wrapper .title-part::after {
/* 4694 */ 	transform: rotate(180deg);
/* 4695 */ }
/* 4696 */
/* 4697 */ @media (max-width: 425px) {
/* 4698 */ 	.flash-news-ticker .flash-news-ticker-wrapper .title-part::after {
/* 4699 */ 		display: none;
/* 4700 */ 	}

/* style.css */

/* 4701 */ }
/* 4702 */
/* 4703 */ .flash-news-ticker .flash-news-ticker-wrapper .title-part .title-wrap {
/* 4704 */ 	background-color: var(--theme-color);
/* 4705 */ 	min-height: 45px;
/* 4706 */ 	display: flex;
/* 4707 */ 	gap: 7px;
/* 4708 */ 	align-items: center;
/* 4709 */ 	padding: 10px;
/* 4710 */ 	width: max-content;
/* 4711 */ }
/* 4712 */
/* 4713 */ .flash-news-ticker .flash-news-ticker-wrapper .title-part .title-wrap .flash-loader {
/* 4714 */ 	width: 25px;
/* 4715 */ 	display: flex;
/* 4716 */ 	align-items: center;
/* 4717 */ }
/* 4718 */
/* 4719 */ .flash-news-ticker .flash-news-ticker-wrapper .title-part .title-wrap .flash-loader .loader {
/* 4720 */ 	background: #ffffff;
/* 4721 */ 	-webkit-animation: load1 1s infinite ease-in-out;
/* 4722 */ 	animation: load1 1s infinite ease-in-out;
/* 4723 */ 	width: 5px;
/* 4724 */ 	height: 10px;
/* 4725 */ 	color: #ffffff;
/* 4726 */ 	text-indent: -9999em;
/* 4727 */ 	margin: 0 auto;
/* 4728 */ 	position: relative;
/* 4729 */ 	font-size: 11px;
/* 4730 */ 	-webkit-transform: translateZ(0);
/* 4731 */ 	-ms-transform: translateZ(0);
/* 4732 */ 	transform: translateZ(0);
/* 4733 */ 	-webkit-animation-delay: -0.16s;
/* 4734 */ 	animation-delay: -0.16s;
/* 4735 */ }
/* 4736 */
/* 4737 */ .flash-news-ticker .flash-news-ticker-wrapper .title-part .title-wrap .flash-loader .loader::after, .flash-news-ticker .flash-news-ticker-wrapper .title-part .title-wrap .flash-loader .loader::before {
/* 4738 */ 	background: #ffffff;
/* 4739 */ 	-webkit-animation: load1 1s infinite ease-in-out;
/* 4740 */ 	animation: load1 1s infinite ease-in-out;
/* 4741 */ 	width: 5px;
/* 4742 */ 	height: 10px;
/* 4743 */ 	position: absolute;
/* 4744 */ 	top: 0;
/* 4745 */ 	content: '';
/* 4746 */ }
/* 4747 */
/* 4748 */ .flash-news-ticker .flash-news-ticker-wrapper .title-part .title-wrap .flash-loader .loader::before {
/* 4749 */ 	inset-inline-start: -8px;
/* 4750 */ 	-webkit-animation-delay: -0.32s;

/* style.css */

/* 4751 */ 	animation-delay: -0.32s;
/* 4752 */ }
/* 4753 */
/* 4754 */ .flash-news-ticker .flash-news-ticker-wrapper .title-part .title-wrap .flash-loader .loader::after {
/* 4755 */ 	inset-inline-start: 8px;
/* 4756 */ }
/* 4757 */
/* 4758 */ @keyframes load1 {
/* 4759 */ 	0%,
/* 4760 */ 	80%,
/* 4761 */ 	100% {
/* 4762 */ 		box-shadow: 0 0;
/* 4763 */ 		height: 15px;
/* 4764 */ 	}
/* 4765 */ 	40% {
/* 4766 */ 		box-shadow: 0 -2px;
/* 4767 */ 		height: 20px;
/* 4768 */ 	}
/* 4769 */ }
/* 4770 */
/* 4771 */ .flash-news-ticker .flash-news-ticker-wrapper .title-part .title-wrap .flash-title {
/* 4772 */ 	font-size: var(--font-size-sm);
/* 4773 */ 	font-weight: bold;
/* 4774 */ 	color: #fff;
/* 4775 */ 	margin: 0;
/* 4776 */ }
/* 4777 */
/* 4778 */ @media (max-width: 425px) {
/* 4779 */ 	.flash-news-ticker .flash-news-ticker-wrapper .title-part .title-wrap .flash-title {
/* 4780 */ 		display: none;
/* 4781 */ 	}
/* 4782 */ }
/* 4783 */
/* 4784 */ .flash-news-ticker .flash-news-ticker-wrapper .flash-news-part {
/* 4785 */ 	padding: 0 5px;
/* 4786 */ 	overflow: hidden;
/* 4787 */ 	position: relative;
/* 4788 */ }
/* 4789 */
/* 4790 */ .flash-news-ticker .flash-news-ticker-wrapper .flash-news-part .mag-post-title-wrap {
/* 4791 */ 	margin: 0;
/* 4792 */ 	display: flex;
/* 4793 */ 	align-items: center;
/* 4794 */ 	padding: 0 15px;
/* 4795 */ }
/* 4796 */
/* 4797 */ .flash-news-ticker .flash-news-ticker-wrapper .flash-news-part .mag-post-title-wrap .flash-img {
/* 4798 */ 	width: 40px;
/* 4799 */ 	min-width: 40px;
/* 4800 */ 	height: 40px;

/* style.css */

/* 4801 */ 	min-height: 40px;
/* 4802 */ 	overflow: hidden;
/* 4803 */ 	display: inline-block;
/* 4804 */ 	line-height: 1;
/* 4805 */ 	margin-inline-end: 10px;
/* 4806 */ 	position: relative;
/* 4807 */ }
/* 4808 */
/* 4809 */ .flash-news-ticker .flash-news-ticker-wrapper .flash-news-part .mag-post-title-wrap .flash-img img {
/* 4810 */ 	height: 40px;
/* 4811 */ 	width: 40px;
/* 4812 */ 	object-fit: cover;
/* 4813 */ 	margin: 0;
/* 4814 */ }
/* 4815 */
/* 4816 */ .flash-news-ticker .flash-news-ticker-wrapper .flash-news-part .mag-post-title-wrap .flash-title {
/* 4817 */ 	margin: 0;
/* 4818 */ 	flex-shrink: 0;
/* 4819 */ 	font-size: var(--font-size-sm);
/* 4820 */ }
/* 4821 */
/* 4822 */ .flash-news-ticker .flash-news-ticker-wrapper .flash-news-part .mag-post-title-wrap .flash-title a {
/* 4823 */ 	text-decoration: none;
/* 4824 */ 	color: var(--clr-foreground);
/* 4825 */ 	font-weight: 600;
/* 4826 */ }
/* 4827 */
/* 4828 */ .flash-news-ticker .flash-news-ticker-wrapper .flash-news-part .marquee {
/* 4829 */ 	width: 10000px;
/* 4830 */ 	overflow: hidden;
/* 4831 */ 	display: flex;
/* 4832 */ 	align-items: center;
/* 4833 */ }
/* 4834 */
/* 4835 */ .flash-news-ticker .flash-news-ticker-wrapper .flash-news-part .marquee .js-marquee-wrapper {
/* 4836 */ 	display: flex;
/* 4837 */ 	align-items: center;
/* 4838 */ }
/* 4839 */
/* 4840 */ .flash-news-ticker .flash-news-ticker-wrapper .flash-news-part .marquee .js-marquee-wrapper .js-marquee {
/* 4841 */ 	display: flex;
/* 4842 */ 	align-items: center;
/* 4843 */ }
/* 4844 */
/* 4845 */ .flash-news-ticker .flash-news-ticker-wrapper .flash-news-part .marquee .js-marquee-wrapper .js-marquee .mag-post-title-wrap {
/* 4846 */ 	margin: 0;
/* 4847 */ 	display: flex;
/* 4848 */ 	align-items: center;
/* 4849 */ 	padding: 0 15px;
/* 4850 */ }

/* style.css */

/* 4851 */
/* 4852 */ .flash-news-ticker .flash-news-ticker-wrapper .flash-news-part .marquee .js-marquee-wrapper .js-marquee .mag-post-title-wrap .flash-img {
/* 4853 */ 	width: 40px;
/* 4854 */ 	min-width: 40px;
/* 4855 */ 	height: 40px;
/* 4856 */ 	min-height: 40px;
/* 4857 */ 	overflow: hidden;
/* 4858 */ 	display: inline-block;
/* 4859 */ 	line-height: 1;
/* 4860 */ 	margin-inline-end: 10px;
/* 4861 */ 	position: relative;
/* 4862 */ }
/* 4863 */
/* 4864 */ .flash-news-ticker .flash-news-ticker-wrapper .flash-news-part .marquee .js-marquee-wrapper .js-marquee .mag-post-title-wrap .flash-img img {
/* 4865 */ 	height: 40px;
/* 4866 */ 	width: 40px;
/* 4867 */ 	object-fit: cover;
/* 4868 */ 	margin: 0;
/* 4869 */ }
/* 4870 */
/* 4871 */ .flash-news-ticker .flash-news-ticker-wrapper .flash-news-part .marquee .js-marquee-wrapper .js-marquee .mag-post-title-wrap .flash-title {
/* 4872 */ 	margin: 0;
/* 4873 */ 	flex-shrink: 0;
/* 4874 */ 	font-size: var(--font-size-sm);
/* 4875 */ }
/* 4876 */
/* 4877 */ .flash-news-ticker .flash-news-ticker-wrapper .flash-news-part .marquee .js-marquee-wrapper .js-marquee .mag-post-title-wrap .flash-title a {
/* 4878 */ 	text-decoration: none;
/* 4879 */ 	color: var(--clr-foreground);
/* 4880 */ 	font-weight: 600;
/* 4881 */ }
/* 4882 */
/* 4883 */ .magazine-grid-section .magazine-grid-section-wrapper {
/* 4884 */ 	display: grid;
/* 4885 */ 	grid-gap: 10px;
/* 4886 */ }
/* 4887 */
/* 4888 */ .magazine-grid-section.style-1 .magazine-grid-section-wrapper {
/* 4889 */ 	grid-template-columns: repeat(3, 1fr);
/* 4890 */ }
/* 4891 */
/* 4892 */ @media (max-width: 480px) {
/* 4893 */ 	.magazine-grid-section.style-1 .magazine-grid-section-wrapper {
/* 4894 */ 		grid-template-columns: repeat(1, 1fr);
/* 4895 */ 	}
/* 4896 */ }
/* 4897 */
/* 4898 */ #sidr.ascendoor-offcanvas-wrap .magazine-grid-section.style-1 .magazine-grid-section-wrapper,
/* 4899 */ aside#secondary.widget-area .magazine-grid-section.style-1 .magazine-grid-section-wrapper,
/* 4900 */ .footer-widget-single .magazine-grid-section.style-1 .magazine-grid-section-wrapper,

/* style.css */

/* 4901 */ .secondary-widgets-section .magazine-grid-section.style-1 .magazine-grid-section-wrapper {
/* 4902 */ 	grid-template-columns: repeat(1, 1fr);
/* 4903 */ }
/* 4904 */
/* 4905 */ .magazine-list-section .magazine-list-section-wrapper {
/* 4906 */ 	display: grid;
/* 4907 */ 	grid-gap: 10px;
/* 4908 */ }
/* 4909 */
/* 4910 */ @media (max-width: 480px) {
/* 4911 */ 	.magazine-list-section.style-1 .magazine-list-section-wrapper .mag-post-single.list-design {
/* 4912 */ 		flex-direction: column;
/* 4913 */ 	}
/* 4914 */ 	.magazine-list-section.style-1 .magazine-list-section-wrapper .mag-post-single.list-design .mag-post-img {
/* 4915 */ 		width: 100%;
/* 4916 */ 	}
/* 4917 */ 	.magazine-list-section.style-1 .magazine-list-section-wrapper .mag-post-single.list-design .mag-post-detail {
/* 4918 */ 		width: 100%;
/* 4919 */ 		padding: 20px;
/* 4920 */ 	}
/* 4921 */ }
/* 4922 */
/* 4923 */ #sidr.ascendoor-offcanvas-wrap .magazine-list-section.style-1 .magazine-list-section-wrapper .mag-post-single.list-design,
/* 4924 */ aside#secondary.widget-area .magazine-list-section.style-1 .magazine-list-section-wrapper .mag-post-single.list-design,
/* 4925 */ .footer-widget-single .magazine-list-section.style-1 .magazine-list-section-wrapper .mag-post-single.list-design,
/* 4926 */ .secondary-widgets-section .magazine-list-section.style-1 .magazine-list-section-wrapper .mag-post-single.list-design {
/* 4927 */ 	flex-direction: column;
/* 4928 */ }
/* 4929 */
/* 4930 */ #sidr.ascendoor-offcanvas-wrap .magazine-list-section.style-1 .magazine-list-section-wrapper .mag-post-single.list-design .mag-post-img,
/* 4931 */ aside#secondary.widget-area .magazine-list-section.style-1 .magazine-list-section-wrapper .mag-post-single.list-design .mag-post-img,
/* 4932 */ .footer-widget-single .magazine-list-section.style-1 .magazine-list-section-wrapper .mag-post-single.list-design .mag-post-img,
/* 4933 */ .secondary-widgets-section .magazine-list-section.style-1 .magazine-list-section-wrapper .mag-post-single.list-design .mag-post-img {
/* 4934 */ 	width: 100%;
/* 4935 */ }
/* 4936 */
/* 4937 */ #sidr.ascendoor-offcanvas-wrap .magazine-list-section.style-1 .magazine-list-section-wrapper .mag-post-single.list-design .mag-post-detail,
/* 4938 */ aside#secondary.widget-area .magazine-list-section.style-1 .magazine-list-section-wrapper .mag-post-single.list-design .mag-post-detail,
/* 4939 */ .footer-widget-single .magazine-list-section.style-1 .magazine-list-section-wrapper .mag-post-single.list-design .mag-post-detail,
/* 4940 */ .secondary-widgets-section .magazine-list-section.style-1 .magazine-list-section-wrapper .mag-post-single.list-design .mag-post-detail {
/* 4941 */ 	width: 100%;
/* 4942 */ 	padding: 20px;
/* 4943 */ }
/* 4944 */
/* 4945 */ .magazine-tile-section .magazine-tile-section-wrapper {
/* 4946 */ 	display: grid;
/* 4947 */ 	grid-gap: 10px;
/* 4948 */ }
/* 4949 */
/* 4950 */ .magazine-tile-section.style-1 .magazine-tile-section-wrapper {

/* style.css */

/* 4951 */ 	grid-template-columns: repeat(3, 1fr);
/* 4952 */ }
/* 4953 */
/* 4954 */ @media (max-width: 767px) {
/* 4955 */ 	.magazine-tile-section.style-1 .magazine-tile-section-wrapper {
/* 4956 */ 		grid-template-columns: repeat(2, 1fr);
/* 4957 */ 	}
/* 4958 */ }
/* 4959 */
/* 4960 */ @media (max-width: 480px) {
/* 4961 */ 	.magazine-tile-section.style-1 .magazine-tile-section-wrapper {
/* 4962 */ 		grid-template-columns: repeat(1, 1fr);
/* 4963 */ 	}
/* 4964 */ }
/* 4965 */
/* 4966 */ .magazine-tile-section.style-1 .magazine-tile-section-wrapper .mag-post-single:first-child {
/* 4967 */ 	grid-column: span 2;
/* 4968 */ 	grid-row: span 2;
/* 4969 */ }
/* 4970 */
/* 4971 */ @media (max-width: 480px) {
/* 4972 */ 	.magazine-tile-section.style-1 .magazine-tile-section-wrapper .mag-post-single:first-child {
/* 4973 */ 		grid-column: span 1;
/* 4974 */ 		grid-row: span 1;
/* 4975 */ 	}
/* 4976 */ }
/* 4977 */
/* 4978 */ @media (min-width: 481px) {
/* 4979 */ 	.magazine-tile-section.style-1 .magazine-tile-section-wrapper .mag-post-single:first-child .mag-post-detail .mag-post-title {
/* 4980 */ 		font-size: var(--font-size-md);
/* 4981 */ 	}
/* 4982 */ }
/* 4983 */
/* 4984 */ .magazine-tile-list-section .magazine-tile-list-section-wrapper {
/* 4985 */ 	display: grid;
/* 4986 */ 	grid-gap: 10px;
/* 4987 */ }
/* 4988 */
/* 4989 */ .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper {
/* 4990 */ 	grid-template-columns: repeat(4, 1fr);
/* 4991 */ }
/* 4992 */
/* 4993 */ @media (max-width: 600px) {
/* 4994 */ 	.magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper {
/* 4995 */ 		grid-template-columns: repeat(1, 1fr);
/* 4996 */ 	}
/* 4997 */ }
/* 4998 */
/* 4999 */ .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single {
/* 5000 */ 	grid-column: span 2;

/* style.css */

/* 5001 */ }
/* 5002 */
/* 5003 */ @media (max-width: 600px) {
/* 5004 */ 	.magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single {
/* 5005 */ 		grid-column: span 1;
/* 5006 */ 	}
/* 5007 */ }
/* 5008 */
/* 5009 */ .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single:first-child {
/* 5010 */ 	grid-row: span 3;
/* 5011 */ 	grid-column: span 2;
/* 5012 */ }
/* 5013 */
/* 5014 */ @media (max-width: 600px) {
/* 5015 */ 	.magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single:first-child {
/* 5016 */ 		grid-column: span 1;
/* 5017 */ 		grid-row: span 1;
/* 5018 */ 	}
/* 5019 */ }
/* 5020 */
/* 5021 */ @media (max-width: 480px) {
/* 5022 */ 	.magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single:first-child .mag-post-excerpt {
/* 5023 */ 		display: none;
/* 5024 */ 	}
/* 5025 */ }
/* 5026 */
/* 5027 */ @media (max-width: 480px) {
/* 5028 */ 	.magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single.list-design .mag-post-category,
/* 5029 */ 	.magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single.list-design .mag-post-excerpt {
/* 5030 */ 		display: none;
/* 5031 */ 	}
/* 5032 */ }
/* 5033 */
/* 5034 */ @media (max-width: 768px) {
/* 5035 */ 	div:not(.no-frontpage-sidebar) .primary-widgets-section .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper {
/* 5036 */ 		grid-template-columns: repeat(1, 1fr);
/* 5037 */ 	}
/* 5038 */ 	div:not(.no-frontpage-sidebar) .primary-widgets-section .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single {
/* 5039 */ 		grid-column: span 1;
/* 5040 */ 	}
/* 5041 */ 	div:not(.no-frontpage-sidebar) .primary-widgets-section .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single:first-child {
/* 5042 */ 		grid-row: span 1;
/* 5043 */ 		grid-column: span 1;
/* 5044 */ 	}
/* 5045 */ }
/* 5046 */
/* 5047 */ #sidr.ascendoor-offcanvas-wrap .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper,
/* 5048 */ aside#secondary.widget-area .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper,
/* 5049 */ .footer-widget-single .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper,
/* 5050 */ .secondary-widgets-section .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper {

/* style.css */

/* 5051 */ 	grid-template-columns: repeat(1, 1fr);
/* 5052 */ }
/* 5053 */
/* 5054 */ #sidr.ascendoor-offcanvas-wrap .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single,
/* 5055 */ aside#secondary.widget-area .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single,
/* 5056 */ .footer-widget-single .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single,
/* 5057 */ .secondary-widgets-section .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single {
/* 5058 */ 	grid-column: span 1;
/* 5059 */ }
/* 5060 */
/* 5061 */ #sidr.ascendoor-offcanvas-wrap .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single.list-design .mag-post-title,
/* 5062 */ aside#secondary.widget-area .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single.list-design .mag-post-title,
/* 5063 */ .footer-widget-single .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single.list-design .mag-post-title,
/* 5064 */ .secondary-widgets-section .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single.list-design .mag-post-title {
/* 5065 */ 	font-size: var(--font-size-sm);
/* 5066 */ }
/* 5067 */
/* 5068 */ #sidr.ascendoor-offcanvas-wrap .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single.list-design .mag-post-category,
/* 5069 */ #sidr.ascendoor-offcanvas-wrap .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single.list-design .mag-post-excerpt,
/* 5070 */ aside#secondary.widget-area .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single.list-design .mag-post-category,
/* 5071 */ aside#secondary.widget-area .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single.list-design .mag-post-excerpt,
/* 5072 */ .footer-widget-single .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single.list-design .mag-post-category,
/* 5073 */ .footer-widget-single .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single.list-design .mag-post-excerpt,
/* 5074 */ .secondary-widgets-section .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single.list-design .mag-post-category,
/* 5075 */ .secondary-widgets-section .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single.list-design .mag-post-excerpt {
/* 5076 */ 	display: none;
/* 5077 */ }
/* 5078 */
/* 5079 */ #sidr.ascendoor-offcanvas-wrap .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single:first-child,
/* 5080 */ aside#secondary.widget-area .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single:first-child,
/* 5081 */ .footer-widget-single .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single:first-child,
/* 5082 */ .secondary-widgets-section .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single:first-child {
/* 5083 */ 	grid-row: span 1;
/* 5084 */ 	grid-column: span 1;
/* 5085 */ }
/* 5086 */
/* 5087 */ #sidr.ascendoor-offcanvas-wrap .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single:first-child .mag-post-excerpt,
/* 5088 */ aside#secondary.widget-area .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single:first-child .mag-post-excerpt,
/* 5089 */ .footer-widget-single .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single:first-child .mag-post-excerpt,
/* 5090 */ .secondary-widgets-section .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single:first-child .mag-post-excerpt {
/* 5091 */ 	display: none;
/* 5092 */ }
/* 5093 */
/* 5094 */ .footer-widget-single .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper {
/* 5095 */ 	grid-template-columns: repeat(1, 1fr);
/* 5096 */ }
/* 5097 */
/* 5098 */ .footer-widget-single .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single {
/* 5099 */ 	grid-column: span 1;
/* 5100 */ }

/* style.css */

/* 5101 */
/* 5102 */ .footer-widget-single .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single.list-design .mag-post-title {
/* 5103 */ 	font-size: var(--font-size-sm);
/* 5104 */ }
/* 5105 */
/* 5106 */ .footer-widget-single .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single.list-design .mag-post-category,
/* 5107 */ .footer-widget-single .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single.list-design .mag-post-excerpt {
/* 5108 */ 	display: none;
/* 5109 */ }
/* 5110 */
/* 5111 */ .footer-widget-single .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single:first-child {
/* 5112 */ 	grid-row: span 1;
/* 5113 */ 	grid-column: span 1;
/* 5114 */ }
/* 5115 */
/* 5116 */ .footer-widget-single .magazine-tile-list-section.style-1 .magazine-tile-list-section-wrapper .mag-post-single:first-child .mag-post-excerpt {
/* 5117 */ 	display: none;
/* 5118 */ }
/* 5119 */
/* 5120 */ .magazine-post-slider-section .magazine-post-slider-section-wrapper .mag-post-single {
/* 5121 */ 	height: 500px;
/* 5122 */ }
/* 5123 */
/* 5124 */ @media (max-width: 768px) {
/* 5125 */ 	.magazine-post-slider-section .magazine-post-slider-section-wrapper .mag-post-single {
/* 5126 */ 		height: 400px;
/* 5127 */ 	}
/* 5128 */ }
/* 5129 */
/* 5130 */ .magazine-post-slider-section .magazine-post-slider-section-wrapper .mag-post-single .mag-post-detail .mag-post-title {
/* 5131 */ 	font-size: var(--font-size-lg);
/* 5132 */ }
/* 5133 */
/* 5134 */ #sidr.ascendoor-offcanvas-wrap .magazine-post-slider-section .magazine-post-slider-section-wrapper .mag-post-single,
/* 5135 */ aside#secondary.widget-area .magazine-post-slider-section .magazine-post-slider-section-wrapper .mag-post-single,
/* 5136 */ .footer-widget-single .magazine-post-slider-section .magazine-post-slider-section-wrapper .mag-post-single,
/* 5137 */ .secondary-widgets-section .magazine-post-slider-section .magazine-post-slider-section-wrapper .mag-post-single {
/* 5138 */ 	height: 250px;
/* 5139 */ }
/* 5140 */
/* 5141 */ #sidr.ascendoor-offcanvas-wrap .magazine-post-slider-section .magazine-post-slider-section-wrapper .mag-post-single .mag-post-detail .mag-post-title,
/* 5142 */ aside#secondary.widget-area .magazine-post-slider-section .magazine-post-slider-section-wrapper .mag-post-single .mag-post-detail .mag-post-title,
/* 5143 */ .footer-widget-single .magazine-post-slider-section .magazine-post-slider-section-wrapper .mag-post-single .mag-post-detail .mag-post-title,
/* 5144 */ .secondary-widgets-section .magazine-post-slider-section .magazine-post-slider-section-wrapper .mag-post-single .mag-post-detail .mag-post-title {
/* 5145 */ 	font-size: var(--font-size-base);
/* 5146 */ }
/* 5147 */
/* 5148 */ .magazine-post-carousel-section .magazine-post-carousel-section-wrapper.post-carousel {
/* 5149 */ 	overflow: hidden;
/* 5150 */ }

/* style.css */

/* 5151 */
/* 5152 */ .magazine-post-carousel-section .magazine-post-carousel-section-wrapper.post-carousel .slick-list {
/* 5153 */ 	margin: 0 -5px;
/* 5154 */ }
/* 5155 */
/* 5156 */ .magazine-post-carousel-section .magazine-post-carousel-section-wrapper.post-carousel .slick-list .slick-track .slick-slide {
/* 5157 */ 	padding: 0 5px;
/* 5158 */ }
/* 5159 */
/* 5160 */ .widget_legal_news_social_icons ul.social-links {
/* 5161 */ 	display: block;
/* 5162 */ 	font-size: 0;
/* 5163 */ }
/* 5164 */
/* 5165 */ .widget_legal_news_social_icons ul.social-links li {
/* 5166 */ 	border: none;
/* 5167 */ 	margin: 0;
/* 5168 */ 	padding: 0;
/* 5169 */ 	display: inline-block;
/* 5170 */ }
/* 5171 */
/* 5172 */ .widget_legal_news_social_icons ul.social-links li a {
/* 5173 */ 	color: #fff;
/* 5174 */ 	opacity: 1;
/* 5175 */ 	border-radius: 0;
/* 5176 */ 	margin: 0;
/* 5177 */ 	margin-inline-end: 5px;
/* 5178 */ 	margin-block-end: 5px;
/* 5179 */ 	overflow: hidden;
/* 5180 */ 	padding: 0;
/* 5181 */ 	height: 34px;
/* 5182 */ 	padding-inline-end: 15px;
/* 5183 */ }
/* 5184 */
/* 5185 */ .widget_legal_news_social_icons ul.social-links li a::before {
/* 5186 */ 	display: flex;
/* 5187 */ 	align-items: center;
/* 5188 */ 	justify-content: center;
/* 5189 */ 	flex-shrink: 0;
/* 5190 */ 	height: 100%;
/* 5191 */ 	width: 34px;
/* 5192 */ 	line-height: 0;
/* 5193 */ 	background-color: rgba(255, 255, 255, 0.08);
/* 5194 */ }
/* 5195 */
/* 5196 */ .widget_legal_news_social_icons ul.social-links li a .screen-reader-text {
/* 5197 */ 	clip: unset;
/* 5198 */ 	clip-path: unset;
/* 5199 */ 	height: auto;
/* 5200 */ 	width: auto;

/* style.css */

/* 5201 */ 	margin: 0;
/* 5202 */ 	position: relative !important;
/* 5203 */ 	overflow: visible;
/* 5204 */ 	color: #fff;
/* 5205 */ 	top: inherit;
/* 5206 */ 	margin-inline-start: 5px;
/* 5207 */ }
/* 5208 */
/* 5209 */ .widget_legal_news_social_icons ul.social-links li a:focus, .widget_legal_news_social_icons ul.social-links li a:hover {
/* 5210 */ 	color: #fff;
/* 5211 */ 	opacity: 0.8;
/* 5212 */ }
/* 5213 */
/* 5214 */ #sidr.ascendoor-offcanvas-wrap .widget_legal_news_social_icons ul.social-links li,
/* 5215 */ aside#secondary.widget-area .widget_legal_news_social_icons ul.social-links li,
/* 5216 */ .footer-widget-single .widget_legal_news_social_icons ul.social-links li,
/* 5217 */ .secondary-widgets-section .widget_legal_news_social_icons ul.social-links li {
/* 5218 */ 	width: 50%;
/* 5219 */ }
/* 5220 */
/* 5221 */ #sidr.ascendoor-offcanvas-wrap .widget_legal_news_social_icons ul.social-links li a,
/* 5222 */ aside#secondary.widget-area .widget_legal_news_social_icons ul.social-links li a,
/* 5223 */ .footer-widget-single .widget_legal_news_social_icons ul.social-links li a,
/* 5224 */ .secondary-widgets-section .widget_legal_news_social_icons ul.social-links li a {
/* 5225 */ 	justify-content: flex-start;
/* 5226 */ }
/* 5227 */
/* 5228 */ .author-info {
/* 5229 */ 	border: 1px solid rgba(155, 155, 155, 0.1);
/* 5230 */ 	padding: 15px;
/* 5231 */ 	text-align: center;
/* 5232 */ }
/* 5233 */
/* 5234 */ .author-info .author-img img {
/* 5235 */ 	width: 200px;
/* 5236 */ 	height: 200px;
/* 5237 */ 	object-fit: cover;
/* 5238 */ 	margin: 15px 0;
/* 5239 */ 	border-radius: 50%;
/* 5240 */ }
/* 5241 */
/* 5242 */ .author-info .author-details .author-name {
/* 5243 */ 	margin: 0 0 10px;
/* 5244 */ 	font-size: var(--font-size-base);
/* 5245 */ 	font-weight: 700;
/* 5246 */ 	line-height: 1.3;
/* 5247 */ }
/* 5248 */
/* 5249 */ .author-info .author-details .author-social-contacts {
/* 5250 */ 	display: inline-flex;

/* style.css */

/* 5251 */ 	gap: 10px;
/* 5252 */ }
/* 5253 */
/* 5254 */ /* footer CSS start
/* 5255 *| --------------------------------------------- */
/* 5256 */ .site-footer {
/* 5257 */ 	background: var(--footer-bg-color);
/* 5258 */ }
/* 5259 */
/* 5260 */ .site-footer .site-footer-top {
/* 5261 */ 	padding-top: 30px;
/* 5262 */ }
/* 5263 */
/* 5264 */ .site-footer .site-footer-top .footer-widgets-wrapper {
/* 5265 */ 	display: flex;
/* 5266 */ 	flex-wrap: wrap;
/* 5267 */ 	gap: 30px;
/* 5268 */ }
/* 5269 */
/* 5270 */ .site-footer .site-footer-top .footer-widgets-wrapper .footer-widget-single {
/* 5271 */ 	width: calc(25% - 30px);
/* 5272 */ 	flex-shrink: 0;
/* 5273 */ 	color: var(--white);
/* 5274 */ }
/* 5275 */
/* 5276 */ @media (max-width: 991px) {
/* 5277 */ 	.site-footer .site-footer-top .footer-widgets-wrapper .footer-widget-single {
/* 5278 */ 		width: calc(50% - 30px);
/* 5279 */ 	}
/* 5280 */ }
/* 5281 */
/* 5282 */ @media (max-width: 480px) {
/* 5283 */ 	.site-footer .site-footer-top .footer-widgets-wrapper .footer-widget-single {
/* 5284 */ 		width: 100%;
/* 5285 */ 	}
/* 5286 */ }
/* 5287 */
/* 5288 */ .site-footer .site-footer-top .footer-widgets-wrapper .footer-widget-single h1,
/* 5289 */ .site-footer .site-footer-top .footer-widgets-wrapper .footer-widget-single h2,
/* 5290 */ .site-footer .site-footer-top .footer-widgets-wrapper .footer-widget-single h3,
/* 5291 */ .site-footer .site-footer-top .footer-widgets-wrapper .footer-widget-single h4,
/* 5292 */ .site-footer .site-footer-top .footer-widgets-wrapper .footer-widget-single h5,
/* 5293 */ .site-footer .site-footer-top .footer-widgets-wrapper .footer-widget-single h6 {
/* 5294 */ 	margin-top: 0;
/* 5295 */ }
/* 5296 */
/* 5297 */ .site-footer .site-footer-top .footer-widgets-wrapper .footer-widget-single a {
/* 5298 */ 	color: var(--white);
/* 5299 */ 	opacity: 0.8;
/* 5300 */ 	transition: all 0.3s ease;

/* style.css */

/* 5301 */ }
/* 5302 */
/* 5303 */ .site-footer .site-footer-top .footer-widgets-wrapper .footer-widget-single a:focus, .site-footer .site-footer-top .footer-widgets-wrapper .footer-widget-single a:hover {
/* 5304 */ 	opacity: 1;
/* 5305 */ }
/* 5306 */
/* 5307 */ .site-footer .site-footer-top .footer-widgets-wrapper .footer-widget-single .mag-post-single .mag-post-img > a {
/* 5308 */ 	opacity: 1;
/* 5309 */ }
/* 5310 */
/* 5311 */ .site-footer .site-footer-top .footer-widgets-wrapper .footer-widget-single .mag-post-single {
/* 5312 */ 	background-color: #131820;
/* 5313 */ }
/* 5314 */
/* 5315 */ .site-footer .site-footer-top .footer-widgets-wrapper .footer-widget-single .widget .widget-title {
/* 5316 */ 	color: var(--white);
/* 5317 */ }
/* 5318 */
/* 5319 */ .site-footer .site-footer-top .footer-widgets-wrapper .footer-widget-single .widget ul li a,
/* 5320 */ .site-footer .site-footer-top .footer-widgets-wrapper .footer-widget-single .widget ol li a {
/* 5321 */ 	color: var(--white);
/* 5322 */ 	opacity: 0.8;
/* 5323 */ 	transition: all 0.3s ease;
/* 5324 */ }
/* 5325 */
/* 5326 */ .site-footer .site-footer-top .footer-widgets-wrapper .footer-widget-single .widget ul li a:focus, .site-footer .site-footer-top .footer-widgets-wrapper .footer-widget-single .widget ul li a:hover,
/* 5327 */ .site-footer .site-footer-top .footer-widgets-wrapper .footer-widget-single .widget ol li a:focus,
/* 5328 */ .site-footer .site-footer-top .footer-widgets-wrapper .footer-widget-single .widget ol li a:hover {
/* 5329 */ 	opacity: 1;
/* 5330 */ }
/* 5331 */
/* 5332 */ .site-footer .site-footer-top .footer-widgets-wrapper .footer-widget-single .mag-post-excerpt {
/* 5333 */ 	color: var(--white);
/* 5334 */ }
/* 5335 */
/* 5336 */ .site-footer .site-footer-bottom {
/* 5337 */ 	position: relative;
/* 5338 */ 	padding: 15px 0;
/* 5339 */ 	z-index: 1;
/* 5340 */ }
/* 5341 */
/* 5342 */ .site-footer .site-footer-bottom .site-footer-bottom-wrapper {
/* 5343 */ 	display: flex;
/* 5344 */ 	flex-wrap: wrap;
/* 5345 */ 	align-items: center;
/* 5346 */ 	justify-content: center;
/* 5347 */ 	color: var(--white);
/* 5348 */ 	position: relative;
/* 5349 */ }
/* 5350 */

/* style.css */

/* 5351 */ .site-footer .site-footer-bottom .site-footer-bottom-wrapper .site-info a {
/* 5352 */ 	text-decoration: none;
/* 5353 */ 	color: var(--white);
/* 5354 */ 	opacity: 0.8;
/* 5355 */ 	transition: all 0.3s ease;
/* 5356 */ }
/* 5357 */
/* 5358 */ .site-footer .site-footer-bottom .site-footer-bottom-wrapper .site-info a:focus, .site-footer .site-footer-bottom .site-footer-bottom-wrapper .site-info a:hover {
/* 5359 */ 	opacity: 1;
/* 5360 */ }
/* 5361 */
/* 5362 */ .site-footer .site-footer-bottom .site-footer-bottom-wrapper .social-icons ul.social-links {
/* 5363 */ 	margin: 0;
/* 5364 */ 	padding: 0;
/* 5365 */ 	list-style: none;
/* 5366 */ }
/* 5367 */
/* 5368 */ .site-footer .site-footer-bottom::before {
/* 5369 */ 	position: absolute;
/* 5370 */ 	content: '';
/* 5371 */ 	top: 0;
/* 5372 */ 	left: 0;
/* 5373 */ 	height: 100%;
/* 5374 */ 	width: 100%;
/* 5375 */ 	background: #d9d9d9;
/* 5376 */ 	opacity: 0.1;
/* 5377 */ }
/* 5378 */
/* 5379 */ /* footer CSS end
/* 5380 *| --------------------------------------------- */
/* 5381 */ /* scroll to top CSS start
/* 5382 *| --------------------------------------------- */
/* 5383 */ a.magazine-scroll-to-top {
/* 5384 */ 	position: fixed;
/* 5385 */ 	bottom: 55px;
/* 5386 */ 	inset-inline-end: 30px;
/* 5387 */ 	height: 50px;
/* 5388 */ 	width: 50px;
/* 5389 */ 	opacity: 0;
/* 5390 */ 	visibility: hidden;
/* 5391 */ 	z-index: 17;
/* 5392 */ 	display: flex;
/* 5393 */ 	align-items: center;
/* 5394 */ 	justify-content: center;
/* 5395 */ 	text-decoration: none;
/* 5396 */ 	color: var(--white);
/* 5397 */ 	background-color: var(--theme-color);
/* 5398 */ 	border: 1px solid var(--white);
/* 5399 */ 	transition: all 0.3s ease;
/* 5400 */ }

/* style.css */

/* 5401 */
/* 5402 */ a.magazine-scroll-to-top:hover, a.magazine-scroll-to-top:focus {
/* 5403 */ 	box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.15);
/* 5404 */ 	transform: translateY(-10px);
/* 5405 */ }
/* 5406 */
/* 5407 */ a.magazine-scroll-to-top.show {
/* 5408 */ 	opacity: 1;
/* 5409 */ 	visibility: visible;
/* 5410 */ }
/* 5411 */
/* 5412 */ /* scroll to top CSS end
/* 5413 *| --------------------------------------------- */
/* 5414 */
/* 5415 */ /*# sourceMappingURL=style.css.map */
