/* 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

*/

/* sr7.css */

/* 1  */ /*!
/* 2  *|               - C S S -
/* 3  *|         VERSION 1.0.0 - DATE: 2023-01-06
/* 4  *| 	@author: Krisztian Horvath ThemePunch OHG.
/* 5  *|         - Slider Revolution 7.0 -
/* 6  *|
/* 7  *|         GET LICENSE AT:
/* 8  *| https://www.themepunch.com/links/slider_revolution_wordpress_regular_license
/* 9  *|
/* 10 *| LICENSE:
/* 11 *| Copyright (c) 2023, ThemePunch. All rights reserved.
/* 12 *| This work is subject to the terms at https://www.themepunch.com/links/slider_revolution_wordpress_regular_license (Regular / Extended)
/* 13 *| */.rs-p-wp-fix{display:none!important;margin:0!important;height:0!important}body{--sr-7-css-loaded:1}.wp-block-themepunch-revslider{position:relative}.wp-block-themepunch-revslider.revslider{margin:0}canvas.sr7-pbar{z-index:500;position:absolute;pointer-events:none}sr7-module{display:block;position:relative;overflow-x:visible;-webkit-tap-highlight-color:transparent}sr7-adjuster{position:relative;display:block;width:100%}sr7-content{position:absolute;top:0;height:100%;contain:size layout style;z-index:1;overflow-x:visible}sr7-carousel{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden;z-index:1}sr7-slide{position:absolute;width:100%;height:100%;contain:strict;top:0;left:0;z-index:1;visibility:hidden;pointer-events:none}.sr7-overflow-force sr7-slide,sr7-carousel sr7-slide{contain:layout style}sr7-module-bg{top:0;z-index:0;position:absolute}sr7-3dwrap{pointer-events:none;position:absolute;top:0;left:0;width:100%;height:100%;z-index:2}sr7-overlay{display:block;width:100%;height:100%;top:0;left:0;position:absolute;z-index:3;background-repeat:repeat}sr7-btn,sr7-col,sr7-content .sr7-layer,sr7-grp,sr7-img,sr7-layer,sr7-linebrk,sr7-row,sr7-shp,sr7-svg,sr7-txt,sr7-zone{user-select:none;visibility:hidden;display:none;box-sizing:border-box;backface-visibility:hidden}.sr7-layer[data-subtype=slidebg],sr7bg{pointer-events:none}sr7-content .sr7-layer.sr7-withclip,sr7-content .sr7-layer.sr7-withclip .sr7-layer{backface-visibility:visible}sr7-grp.sr7-clear:after{content:"";clear:both;display:block;height:0}sr7-zone{pointer-events:none}sr7-row.sr7-layer.sr7-galign{box-sizing:border-box}.sr7-layer[data-type=svg]>svg,sr7-layer[data-type=svg]>svg{width:100%;height:100%}sr7-row-con{table-layout:fixed;font-size:0;display:block}sr7-module .sr7-layer,sr7-module sr7-layer{-webkit-font-smoothing:antialiased!important;-webkit-tap-highlight-color:transparent;-moz-osx-font-smoothing:grayscale;font-display:swap}sr7-slide.sr7-staticslide-low{z-index:0!important}sr7-slide.sr7-staticslide-high{z-index:105!important}@-moz-document url-prefix(){sr7-slide.sr7-staticslide{transform:scale(1)}}sr7-slide a{transition:none}sr7-module.sr7-top-fixed{width:100%;height:auto!important;backface-visibility:hidden}sr7-module.sr7-top-fixed sr7-adjuster{height:auto!important}sr7-module.sr7-top-fixed sr7-content,sr7-module.sr7-top-fixed sr7-content .sr7-layer:not(.sr7-ignore-pe) *{pointer-events:none}sr7-prl{top:50%;left:50%;z-index:10000;position:absolute}sr7-prl.off{display:none!important}sr7-prl.sr7-fade-in{animation:tp-fade-in 1s linear}.sr-force-hidden{display:none!important}@keyframes tp-rotateplane{0%{transform:perspective(120px) rotateX(0) rotateY(0)}50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0)}100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}@keyframes tp-fade-in{0%{opacity:0}20%{opacity:0}100%{opacity:100}}@keyframes tp-rotate{100%{transform:rotate(360deg)}}sr7-fonttest{width:auto;display:inline-block;white-space:nowrap;font-size:12px;color:#000}sr7-fonttest-wrap{position:absolute;contain:strict;top:-1500px;left:-1500px;width:1500px;height:1000px;pointer-events:none;opacity:0}.fn-wrap{display:flex;position:fixed;width:100px;height:50px;z-index:100;background-color:rgba(66,66,66,.2);justify-content:space-around;align-items:center;bottom:0;left:50%;transform:translateX(-50%)}.fn-left,.fn-right{display:flex;width:40px;height:40px;justify-content:center;align-items:center;background-color:gray;color:#fff;font-weight:700;font-size:20px;cursor:pointer}.sr7-layer .materical-icons,sr7-module .material-icons,sr7-txt .material-icons{font-size:inherit;vertical-align:top;line-height:inherit}#sr-announcer{position:absolute!important;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
