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

*/

/* meanmenu.css */

/* 1   */
/* 2   */ /*! #######################################################################
/* 3   *|
/* 4   *| 	MeanMenu 2.0.7
/* 5   *| 	--------
/* 6   *|
/* 7   *| 	To be used with jquery.meanmenu.js by Chris Wharton (http://www.meanthemes.com/plugins/meanmenu/)
/* 8   *|
/* 9   *| ####################################################################### */
/* 10  */
/* 11  */ /* hide the link until viewport size is reached */
/* 12  */ a.meanmenu-reveal {
/* 13  */ 	display: none;
/* 14  */ }
/* 15  */
/* 16  */ /* when under viewport size, .mean-container is added to body */
/* 17  */ .mean-container .mean-bar {
/* 18  */ 	float: left;
/* 19  */ 	width: 100%;
/* 20  */ 	position: relative;
/* 21  */ 	background: #0c1923;
/* 22  */ 	padding: 4px 0;
/* 23  */ 	min-height: 42px;
/* 24  */ 	z-index: 999999;
/* 25  */ }
/* 26  */
/* 27  */ .mean-container a.meanmenu-reveal {
/* 28  */ 	width: 22px;
/* 29  */ 	height: 22px;
/* 30  */ 	padding: 13px 13px 11px 13px;
/* 31  */ 	position: absolute;
/* 32  */ 	top: 0;
/* 33  */ 	right: 0;
/* 34  */ 	cursor: pointer;
/* 35  */ 	color: #fff;
/* 36  */ 	text-decoration: none;
/* 37  */ 	font-size: 16px;
/* 38  */ 	text-indent: -9999em;
/* 39  */ 	line-height: 22px;
/* 40  */ 	font-size: 1px;
/* 41  */ 	display: block;
/* 42  */ 	font-family: Arial, Helvetica, sans-serif;
/* 43  */ 	font-weight: 700;
/* 44  */ }
/* 45  */
/* 46  */ .mean-container a.meanmenu-reveal span {
/* 47  */ 	display: block;
/* 48  */ 	background: #fff;
/* 49  */ 	height: 3px;
/* 50  */ 	margin-top: 3px;

/* meanmenu.css */

/* 51  */ }
/* 52  */
/* 53  */ .mean-container .mean-nav {
/* 54  */ 	float: left;
/* 55  */ 	width: 100%;
/* 56  */ 	background: #0c1923;
/* 57  */ 	margin-top: 44px;
/* 58  */ }
/* 59  */
/* 60  */ .mean-container .mean-nav ul {
/* 61  */ 	padding: 0;
/* 62  */ 	margin: 0;
/* 63  */ 	width: 100%;
/* 64  */ 	list-style-type: none;
/* 65  */ }
/* 66  */
/* 67  */ .mean-container .mean-nav ul li {
/* 68  */ 	position: relative;
/* 69  */ 	float: left;
/* 70  */ 	width: 100%;
/* 71  */ }
/* 72  */
/* 73  */ .mean-container .mean-nav ul li a {
/* 74  */ 	display: block;
/* 75  */ 	float: left;
/* 76  */ 	width: 90%;
/* 77  */ 	padding: 1em 5%;
/* 78  */ 	margin: 0;
/* 79  */ 	text-align: left;
/* 80  */ 	color: #fff;
/* 81  */ 	border-top: 1px solid #383838;
/* 82  */ 	border-top: 1px solid rgba(255,255,255,0.5);
/* 83  */ 	text-decoration: none;
/* 84  */ 	text-transform: uppercase;
/* 85  */ }
/* 86  */
/* 87  */ .mean-container .mean-nav ul li li a {
/* 88  */ 	width: 80%;
/* 89  */ 	padding: 1em 10%;
/* 90  */ 	border-top: 1px solid #f1f1f1;
/* 91  */ 	border-top: 1px solid rgba(255,255,255,0.25);
/* 92  */ 	opacity: 0.75;
/* 93  */ 	filter: alpha(opacity=75);
/* 94  */ 	text-shadow: none !important;
/* 95  */ 	visibility: visible;
/* 96  */ }
/* 97  */
/* 98  */ .mean-container .mean-nav ul li.mean-last a {
/* 99  */ 	border-bottom: none;
/* 100 */ 	margin-bottom: 0;

/* meanmenu.css */

/* 101 */ }
/* 102 */
/* 103 */ .mean-container .mean-nav ul li li li a {
/* 104 */ 	width: 70%;
/* 105 */ 	padding: 1em 15%;
/* 106 */ }
/* 107 */
/* 108 */ .mean-container .mean-nav ul li li li li a {
/* 109 */ 	width: 60%;
/* 110 */ 	padding: 1em 20%;
/* 111 */ }
/* 112 */
/* 113 */ .mean-container .mean-nav ul li li li li li a {
/* 114 */ 	width: 50%;
/* 115 */ 	padding: 1em 25%;
/* 116 */ }
/* 117 */
/* 118 */ .mean-container .mean-nav ul li a:hover {
/* 119 */ 	background: #252525;
/* 120 */ 	background: rgba(255,255,255,0.1);
/* 121 */ }
/* 122 */
/* 123 */ .mean-container .mean-nav ul li a.mean-expand {
/* 124 */ 	margin-top: 1px;
/* 125 */ 	width: 26px;
/* 126 */ 	height: 32px;
/* 127 */ 	padding: 12px !important;
/* 128 */ 	text-align: center;
/* 129 */ 	position: absolute;
/* 130 */ 	right: 0;
/* 131 */ 	top: 0;
/* 132 */ 	z-index: 2;
/* 133 */ 	font-weight: 700;
/* 134 */ 	background: rgba(255,255,255,0.1);
/* 135 */ 	border: none !important;
/* 136 */ 	border-left: 1px solid rgba(255,255,255,0.4) !important;
/* 137 */ 	border-bottom: 1px solid rgba(255,255,255,0.2) !important;
/* 138 */ }
/* 139 */
/* 140 */ .mean-container .mean-nav ul li a.mean-expand:hover {
/* 141 */ 	background: rgba(0,0,0,0.9);
/* 142 */ }
/* 143 */
/* 144 */ .mean-container .mean-push {
/* 145 */ 	float: left;
/* 146 */ 	width: 100%;
/* 147 */ 	padding: 0;
/* 148 */ 	margin: 0;
/* 149 */ 	clear: both;
/* 150 */ }

/* meanmenu.css */

/* 151 */
/* 152 */ .mean-nav .wrapper {
/* 153 */ 	width: 100%;
/* 154 */ 	padding: 0;
/* 155 */ 	margin: 0;
/* 156 */ }
/* 157 */
/* 158 */ /* Fix for box sizing on Foundation Framework etc. */
/* 159 */ .mean-container .mean-bar, .mean-container .mean-bar * {
/* 160 */ 	-webkit-box-sizing: content-box;
/* 161 */ 	-moz-box-sizing: content-box;
/* 162 */ 	box-sizing: content-box;
/* 163 */ }
/* 164 */
/* 165 */
/* 166 */ .mean-remove {
/* 167 */ 	display: none !important;
/* 168 */ }
/* 169 */
/* Minify_CSS_UriRewriter::$debugText

*/

/* flexslider.css */

/* 1   */ /*
/* 2   *|  * jQuery FlexSlider v2.6.0
/* 3   *|  * http://www.woothemes.com/flexslider/
/* 4   *|  *
/* 5   *|  * Copyright 2012 WooThemes
/* 6   *|  * Free to use under the GPLv2 and later license.
/* 7   *|  * http://www.gnu.org/licenses/gpl-2.0.html
/* 8   *|  *
/* 9   *|  * Contributing author: Tyler Smith (@mbmufffin)
/* 10  *|  *
/* 11  *|  */
/* 12  */ /* ====================================================================================================================
/* 13  *|  * FONT-FACE
/* 14  *|  * ====================================================================================================================*/
/* 15  */ @font-face {
/* 16  */   font-family: 'flexslider-icon';
/* 17  */   src: url('../fonts/flexslider-icon.eot');
/* 18  */   src: url('../fonts/flexslider-icon.eot?#iefix') format('embedded-opentype'), url('../fonts/flexslider-icon.woff') format('woff'), url('../fonts/flexslider-icon.ttf') format('truetype'), url('../fonts/flexslider-icon.svg#flexslider-icon') format('svg');
/* 19  */   font-weight: normal;
/* 20  */   font-style: normal;
/* 21  */ }
/* 22  */ /* ====================================================================================================================
/* 23  *|  * RESETS
/* 24  *|  * ====================================================================================================================*/
/* 25  */ .flex-container a:hover,
/* 26  */ .flex-slider a:hover {
/* 27  */   outline: none;
/* 28  */ }
/* 29  */ .slides,
/* 30  */ .slides > li,
/* 31  */ .flex-control-nav,
/* 32  */ .flex-direction-nav {
/* 33  */   margin: 0;
/* 34  */   padding: 0;
/* 35  */   list-style: none;
/* 36  */ }
/* 37  */ .flex-pauseplay span {
/* 38  */   text-transform: capitalize;
/* 39  */ }
/* 40  */ /* ====================================================================================================================
/* 41  *|  * BASE STYLES
/* 42  *|  * ====================================================================================================================*/
/* 43  */ .flexslider {
/* 44  */   margin: 0;
/* 45  */   padding: 0;
/* 46  */ }
/* 47  */ .flexslider .slides > li {
/* 48  */   display: none;
/* 49  */   -webkit-backface-visibility: hidden;
/* 50  */ }

/* flexslider.css */

/* 51  */ .flexslider .slides img {
/* 52  */   width: 100%;
/* 53  */   display: block;
/* 54  */ }
/* 55  */ .flexslider .slides:after {
/* 56  */   content: "\0020";
/* 57  */   display: block;
/* 58  */   clear: both;
/* 59  */   visibility: hidden;
/* 60  */   line-height: 0;
/* 61  */   height: 0;
/* 62  */ }
/* 63  */ html[xmlns] .flexslider .slides {
/* 64  */   display: block;
/* 65  */ }
/* 66  */ * html .flexslider .slides {
/* 67  */   height: 1%;
/* 68  */ }
/* 69  */ .no-js .flexslider .slides > li:first-child {
/* 70  */   display: block;
/* 71  */ }
/* 72  */ /* ====================================================================================================================
/* 73  *|  * DEFAULT THEME
/* 74  *|  * ====================================================================================================================*/
/* 75  */ .flexslider {
/* 76  */   margin: 0 0 60px;
/* 77  */   background: #ffffff;
/* 78  */   border: 4px solid #ffffff;
/* 79  */   position: relative;
/* 80  */   zoom: 1;
/* 81  */   -webkit-border-radius: 4px;
/* 82  */   -moz-border-radius: 4px;
/* 83  */   border-radius: 4px;
/* 84  */   -webkit-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
/* 85  */   -moz-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
/* 86  */   -o-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
/* 87  */   box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
/* 88  */ }
/* 89  */ .flexslider .slides {
/* 90  */   zoom: 1;
/* 91  */ }
/* 92  */ .flexslider .slides img {
/* 93  */   height: auto;
/* 94  */   -moz-user-select: none;
/* 95  */ }
/* 96  */ .flex-viewport {
/* 97  */   max-height: 2000px;
/* 98  */   -webkit-transition: all 1s ease;
/* 99  */   -moz-transition: all 1s ease;
/* 100 */   -ms-transition: all 1s ease;

/* flexslider.css */

/* 101 */   -o-transition: all 1s ease;
/* 102 */   transition: all 1s ease;
/* 103 */ }
/* 104 */ .loading .flex-viewport {
/* 105 */   max-height: 300px;
/* 106 */ }
/* 107 */ .carousel li {
/* 108 */   margin-right: 5px;
/* 109 */ }
/* 110 */ .flex-direction-nav {
/* 111 */   *height: 0;
/* 112 */ }
/* 113 */ .flex-direction-nav a {
/* 114 */   text-decoration: none;
/* 115 */   display: block;
/* 116 */   width: 40px;
/* 117 */   height: 40px;
/* 118 */   margin: -20px 0 0;
/* 119 */   position: absolute;
/* 120 */   top: 50%;
/* 121 */   z-index: 10;
/* 122 */   overflow: hidden;
/* 123 */   opacity: 0;
/* 124 */   cursor: pointer;
/* 125 */   color: rgba(0, 0, 0, 0.8);
/* 126 */   text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
/* 127 */   -webkit-transition: all 0.3s ease-in-out;
/* 128 */   -moz-transition: all 0.3s ease-in-out;
/* 129 */   -ms-transition: all 0.3s ease-in-out;
/* 130 */   -o-transition: all 0.3s ease-in-out;
/* 131 */   transition: all 0.3s ease-in-out;
/* 132 */ }
/* 133 */ .flex-direction-nav a:before {
/* 134 */   font-family: "flexslider-icon";
/* 135 */   font-size: 40px;
/* 136 */   display: inline-block;
/* 137 */   content: '\f001';
/* 138 */   color: rgba(0, 0, 0, 0.8);
/* 139 */   text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
/* 140 */ }
/* 141 */ .flex-direction-nav a.flex-next:before {
/* 142 */   content: '\f002';
/* 143 */ }
/* 144 */ .flex-direction-nav .flex-prev {
/* 145 */   left: -50px;
/* 146 */ }
/* 147 */ .flex-direction-nav .flex-next {
/* 148 */   right: -50px;
/* 149 */   text-align: right;
/* 150 */ }

/* flexslider.css */

/* 151 */ .flexslider:hover .flex-direction-nav .flex-prev {
/* 152 */   opacity: 0.7;
/* 153 */   left: 10px;
/* 154 */ }
/* 155 */ .flexslider:hover .flex-direction-nav .flex-prev:hover {
/* 156 */   opacity: 1;
/* 157 */ }
/* 158 */ .flexslider:hover .flex-direction-nav .flex-next {
/* 159 */   opacity: 0.7;
/* 160 */   right: 10px;
/* 161 */ }
/* 162 */ .flexslider:hover .flex-direction-nav .flex-next:hover {
/* 163 */   opacity: 1;
/* 164 */ }
/* 165 */ .flex-direction-nav .flex-disabled {
/* 166 */   opacity: 0!important;
/* 167 */   filter: alpha(opacity=0);
/* 168 */   cursor: default;
/* 169 */   z-index: -1;
/* 170 */ }
/* 171 */ .flex-pauseplay a {
/* 172 */   display: block;
/* 173 */   width: 20px;
/* 174 */   height: 20px;
/* 175 */   position: absolute;
/* 176 */   bottom: 5px;
/* 177 */   left: 10px;
/* 178 */   opacity: 0.8;
/* 179 */   z-index: 10;
/* 180 */   overflow: hidden;
/* 181 */   cursor: pointer;
/* 182 */   color: #000;
/* 183 */ }
/* 184 */ .flex-pauseplay a:before {
/* 185 */   font-family: "flexslider-icon";
/* 186 */   font-size: 20px;
/* 187 */   display: inline-block;
/* 188 */   content: '\f004';
/* 189 */ }
/* 190 */ .flex-pauseplay a:hover {
/* 191 */   opacity: 1;
/* 192 */ }
/* 193 */ .flex-pauseplay a.flex-play:before {
/* 194 */   content: '\f003';
/* 195 */ }
/* 196 */ .flex-control-nav {
/* 197 */   width: 100%;
/* 198 */   position: absolute;
/* 199 */   bottom: -40px;
/* 200 */   text-align: center;

/* flexslider.css */

/* 201 */ }
/* 202 */ .flex-control-nav li {
/* 203 */   margin: 0 6px;
/* 204 */   display: inline-block;
/* 205 */   zoom: 1;
/* 206 */   *display: inline;
/* 207 */ }
/* 208 */ .flex-control-paging li a {
/* 209 */   width: 11px;
/* 210 */   height: 11px;
/* 211 */   display: block;
/* 212 */   background: #666;
/* 213 */   background: rgba(0, 0, 0, 0.5);
/* 214 */   cursor: pointer;
/* 215 */   text-indent: -9999px;
/* 216 */   -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
/* 217 */   -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
/* 218 */   -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
/* 219 */   box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
/* 220 */   -webkit-border-radius: 20px;
/* 221 */   -moz-border-radius: 20px;
/* 222 */   border-radius: 20px;
/* 223 */ }
/* 224 */ .flex-control-paging li a:hover {
/* 225 */   background: #333;
/* 226 */   background: rgba(0, 0, 0, 0.7);
/* 227 */ }
/* 228 */ .flex-control-paging li a.flex-active {
/* 229 */   background: #000;
/* 230 */   background: rgba(0, 0, 0, 0.9);
/* 231 */   cursor: default;
/* 232 */ }
/* 233 */ .flex-control-thumbs {
/* 234 */   margin: 5px 0 0;
/* 235 */   position: static;
/* 236 */   overflow: hidden;
/* 237 */ }
/* 238 */ .flex-control-thumbs li {
/* 239 */   width: 25%;
/* 240 */   float: left;
/* 241 */   margin: 0;
/* 242 */ }
/* 243 */ .flex-control-thumbs img {
/* 244 */   width: 100%;
/* 245 */   height: auto;
/* 246 */   display: block;
/* 247 */   opacity: .7;
/* 248 */   cursor: pointer;
/* 249 */   -moz-user-select: none;
/* 250 */   -webkit-transition: all 1s ease;

/* flexslider.css */

/* 251 */   -moz-transition: all 1s ease;
/* 252 */   -ms-transition: all 1s ease;
/* 253 */   -o-transition: all 1s ease;
/* 254 */   transition: all 1s ease;
/* 255 */ }
/* 256 */ .flex-control-thumbs img:hover {
/* 257 */   opacity: 1;
/* 258 */ }
/* 259 */ .flex-control-thumbs .flex-active {
/* 260 */   opacity: 1;
/* 261 */   cursor: default;
/* 262 */ }
/* 263 */ /* ====================================================================================================================
/* 264 *|  * RESPONSIVE
/* 265 *|  * ====================================================================================================================*/
/* 266 */ @media screen and (max-width: 860px) {
/* 267 */   .flex-direction-nav .flex-prev {
/* 268 */     opacity: 1;
/* 269 */     left: 10px;
/* 270 */   }
/* 271 */   .flex-direction-nav .flex-next {
/* 272 */     opacity: 1;
/* 273 */     right: 10px;
/* 274 */   }
/* 275 */ }
/* 276 */
/* Minify_CSS_UriRewriter::$debugText

*/

/* animate.css */

/* 1    */ @charset "UTF-8";
/* 2    */
/* 3    */ /*!
/* 4    *|  * animate.css -http://daneden.me/animate
/* 5    *|  * Version - 3.5.1
/* 6    *|  * Licensed under the MIT license - http://opensource.org/licenses/MIT
/* 7    *|  *
/* 8    *|  * Copyright (c) 2016 Daniel Eden
/* 9    *|  */
/* 10   */
/* 11   */ .animated {
/* 12   */   -webkit-animation-duration: 1s;
/* 13   */   animation-duration: 1s;
/* 14   */   -webkit-animation-fill-mode: both;
/* 15   */   animation-fill-mode: both;
/* 16   */ }
/* 17   */
/* 18   */ .animated.infinite {
/* 19   */   -webkit-animation-iteration-count: infinite;
/* 20   */   animation-iteration-count: infinite;
/* 21   */ }
/* 22   */
/* 23   */ .animated.hinge {
/* 24   */   -webkit-animation-duration: 2s;
/* 25   */   animation-duration: 2s;
/* 26   */ }
/* 27   */
/* 28   */ .animated.flipOutX,
/* 29   */ .animated.flipOutY,
/* 30   */ .animated.bounceIn,
/* 31   */ .animated.bounceOut {
/* 32   */   -webkit-animation-duration: .75s;
/* 33   */   animation-duration: .75s;
/* 34   */ }
/* 35   */
/* 36   */ @-webkit-keyframes bounce {
/* 37   */   from, 20%, 53%, 80%, to {
/* 38   */     -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 39   */     animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 40   */     -webkit-transform: translate3d(0,0,0);
/* 41   */     transform: translate3d(0,0,0);
/* 42   */   }
/* 43   */
/* 44   */   40%, 43% {
/* 45   */     -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
/* 46   */     animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
/* 47   */     -webkit-transform: translate3d(0, -30px, 0);
/* 48   */     transform: translate3d(0, -30px, 0);
/* 49   */   }
/* 50   */

/* animate.css */

/* 51   */   70% {
/* 52   */     -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
/* 53   */     animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
/* 54   */     -webkit-transform: translate3d(0, -15px, 0);
/* 55   */     transform: translate3d(0, -15px, 0);
/* 56   */   }
/* 57   */
/* 58   */   90% {
/* 59   */     -webkit-transform: translate3d(0,-4px,0);
/* 60   */     transform: translate3d(0,-4px,0);
/* 61   */   }
/* 62   */ }
/* 63   */
/* 64   */ @keyframes bounce {
/* 65   */   from, 20%, 53%, 80%, to {
/* 66   */     -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 67   */     animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 68   */     -webkit-transform: translate3d(0,0,0);
/* 69   */     transform: translate3d(0,0,0);
/* 70   */   }
/* 71   */
/* 72   */   40%, 43% {
/* 73   */     -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
/* 74   */     animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
/* 75   */     -webkit-transform: translate3d(0, -30px, 0);
/* 76   */     transform: translate3d(0, -30px, 0);
/* 77   */   }
/* 78   */
/* 79   */   70% {
/* 80   */     -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
/* 81   */     animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
/* 82   */     -webkit-transform: translate3d(0, -15px, 0);
/* 83   */     transform: translate3d(0, -15px, 0);
/* 84   */   }
/* 85   */
/* 86   */   90% {
/* 87   */     -webkit-transform: translate3d(0,-4px,0);
/* 88   */     transform: translate3d(0,-4px,0);
/* 89   */   }
/* 90   */ }
/* 91   */
/* 92   */ .bounce {
/* 93   */   -webkit-animation-name: bounce;
/* 94   */   animation-name: bounce;
/* 95   */   -webkit-transform-origin: center bottom;
/* 96   */   transform-origin: center bottom;
/* 97   */ }
/* 98   */
/* 99   */ @-webkit-keyframes flash {
/* 100  */   from, 50%, to {

/* animate.css */

/* 101  */     opacity: 1;
/* 102  */   }
/* 103  */
/* 104  */   25%, 75% {
/* 105  */     opacity: 0;
/* 106  */   }
/* 107  */ }
/* 108  */
/* 109  */ @keyframes flash {
/* 110  */   from, 50%, to {
/* 111  */     opacity: 1;
/* 112  */   }
/* 113  */
/* 114  */   25%, 75% {
/* 115  */     opacity: 0;
/* 116  */   }
/* 117  */ }
/* 118  */
/* 119  */ .flash {
/* 120  */   -webkit-animation-name: flash;
/* 121  */   animation-name: flash;
/* 122  */ }
/* 123  */
/* 124  */ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
/* 125  */
/* 126  */ @-webkit-keyframes pulse {
/* 127  */   from {
/* 128  */     -webkit-transform: scale3d(1, 1, 1);
/* 129  */     transform: scale3d(1, 1, 1);
/* 130  */   }
/* 131  */
/* 132  */   50% {
/* 133  */     -webkit-transform: scale3d(1.05, 1.05, 1.05);
/* 134  */     transform: scale3d(1.05, 1.05, 1.05);
/* 135  */   }
/* 136  */
/* 137  */   to {
/* 138  */     -webkit-transform: scale3d(1, 1, 1);
/* 139  */     transform: scale3d(1, 1, 1);
/* 140  */   }
/* 141  */ }
/* 142  */
/* 143  */ @keyframes pulse {
/* 144  */   from {
/* 145  */     -webkit-transform: scale3d(1, 1, 1);
/* 146  */     transform: scale3d(1, 1, 1);
/* 147  */   }
/* 148  */
/* 149  */   50% {
/* 150  */     -webkit-transform: scale3d(1.05, 1.05, 1.05);

/* animate.css */

/* 151  */     transform: scale3d(1.05, 1.05, 1.05);
/* 152  */   }
/* 153  */
/* 154  */   to {
/* 155  */     -webkit-transform: scale3d(1, 1, 1);
/* 156  */     transform: scale3d(1, 1, 1);
/* 157  */   }
/* 158  */ }
/* 159  */
/* 160  */ .pulse {
/* 161  */   -webkit-animation-name: pulse;
/* 162  */   animation-name: pulse;
/* 163  */ }
/* 164  */
/* 165  */ @-webkit-keyframes rubberBand {
/* 166  */   from {
/* 167  */     -webkit-transform: scale3d(1, 1, 1);
/* 168  */     transform: scale3d(1, 1, 1);
/* 169  */   }
/* 170  */
/* 171  */   30% {
/* 172  */     -webkit-transform: scale3d(1.25, 0.75, 1);
/* 173  */     transform: scale3d(1.25, 0.75, 1);
/* 174  */   }
/* 175  */
/* 176  */   40% {
/* 177  */     -webkit-transform: scale3d(0.75, 1.25, 1);
/* 178  */     transform: scale3d(0.75, 1.25, 1);
/* 179  */   }
/* 180  */
/* 181  */   50% {
/* 182  */     -webkit-transform: scale3d(1.15, 0.85, 1);
/* 183  */     transform: scale3d(1.15, 0.85, 1);
/* 184  */   }
/* 185  */
/* 186  */   65% {
/* 187  */     -webkit-transform: scale3d(.95, 1.05, 1);
/* 188  */     transform: scale3d(.95, 1.05, 1);
/* 189  */   }
/* 190  */
/* 191  */   75% {
/* 192  */     -webkit-transform: scale3d(1.05, .95, 1);
/* 193  */     transform: scale3d(1.05, .95, 1);
/* 194  */   }
/* 195  */
/* 196  */   to {
/* 197  */     -webkit-transform: scale3d(1, 1, 1);
/* 198  */     transform: scale3d(1, 1, 1);
/* 199  */   }
/* 200  */ }

/* animate.css */

/* 201  */
/* 202  */ @keyframes rubberBand {
/* 203  */   from {
/* 204  */     -webkit-transform: scale3d(1, 1, 1);
/* 205  */     transform: scale3d(1, 1, 1);
/* 206  */   }
/* 207  */
/* 208  */   30% {
/* 209  */     -webkit-transform: scale3d(1.25, 0.75, 1);
/* 210  */     transform: scale3d(1.25, 0.75, 1);
/* 211  */   }
/* 212  */
/* 213  */   40% {
/* 214  */     -webkit-transform: scale3d(0.75, 1.25, 1);
/* 215  */     transform: scale3d(0.75, 1.25, 1);
/* 216  */   }
/* 217  */
/* 218  */   50% {
/* 219  */     -webkit-transform: scale3d(1.15, 0.85, 1);
/* 220  */     transform: scale3d(1.15, 0.85, 1);
/* 221  */   }
/* 222  */
/* 223  */   65% {
/* 224  */     -webkit-transform: scale3d(.95, 1.05, 1);
/* 225  */     transform: scale3d(.95, 1.05, 1);
/* 226  */   }
/* 227  */
/* 228  */   75% {
/* 229  */     -webkit-transform: scale3d(1.05, .95, 1);
/* 230  */     transform: scale3d(1.05, .95, 1);
/* 231  */   }
/* 232  */
/* 233  */   to {
/* 234  */     -webkit-transform: scale3d(1, 1, 1);
/* 235  */     transform: scale3d(1, 1, 1);
/* 236  */   }
/* 237  */ }
/* 238  */
/* 239  */ .rubberBand {
/* 240  */   -webkit-animation-name: rubberBand;
/* 241  */   animation-name: rubberBand;
/* 242  */ }
/* 243  */
/* 244  */ @-webkit-keyframes shake {
/* 245  */   from, to {
/* 246  */     -webkit-transform: translate3d(0, 0, 0);
/* 247  */     transform: translate3d(0, 0, 0);
/* 248  */   }
/* 249  */
/* 250  */   10%, 30%, 50%, 70%, 90% {

/* animate.css */

/* 251  */     -webkit-transform: translate3d(-10px, 0, 0);
/* 252  */     transform: translate3d(-10px, 0, 0);
/* 253  */   }
/* 254  */
/* 255  */   20%, 40%, 60%, 80% {
/* 256  */     -webkit-transform: translate3d(10px, 0, 0);
/* 257  */     transform: translate3d(10px, 0, 0);
/* 258  */   }
/* 259  */ }
/* 260  */
/* 261  */ @keyframes shake {
/* 262  */   from, to {
/* 263  */     -webkit-transform: translate3d(0, 0, 0);
/* 264  */     transform: translate3d(0, 0, 0);
/* 265  */   }
/* 266  */
/* 267  */   10%, 30%, 50%, 70%, 90% {
/* 268  */     -webkit-transform: translate3d(-10px, 0, 0);
/* 269  */     transform: translate3d(-10px, 0, 0);
/* 270  */   }
/* 271  */
/* 272  */   20%, 40%, 60%, 80% {
/* 273  */     -webkit-transform: translate3d(10px, 0, 0);
/* 274  */     transform: translate3d(10px, 0, 0);
/* 275  */   }
/* 276  */ }
/* 277  */
/* 278  */ .shake {
/* 279  */   -webkit-animation-name: shake;
/* 280  */   animation-name: shake;
/* 281  */ }
/* 282  */
/* 283  */ @-webkit-keyframes headShake {
/* 284  */   0% {
/* 285  */     -webkit-transform: translateX(0);
/* 286  */     transform: translateX(0);
/* 287  */   }
/* 288  */
/* 289  */   6.5% {
/* 290  */     -webkit-transform: translateX(-6px) rotateY(-9deg);
/* 291  */     transform: translateX(-6px) rotateY(-9deg);
/* 292  */   }
/* 293  */
/* 294  */   18.5% {
/* 295  */     -webkit-transform: translateX(5px) rotateY(7deg);
/* 296  */     transform: translateX(5px) rotateY(7deg);
/* 297  */   }
/* 298  */
/* 299  */   31.5% {
/* 300  */     -webkit-transform: translateX(-3px) rotateY(-5deg);

/* animate.css */

/* 301  */     transform: translateX(-3px) rotateY(-5deg);
/* 302  */   }
/* 303  */
/* 304  */   43.5% {
/* 305  */     -webkit-transform: translateX(2px) rotateY(3deg);
/* 306  */     transform: translateX(2px) rotateY(3deg);
/* 307  */   }
/* 308  */
/* 309  */   50% {
/* 310  */     -webkit-transform: translateX(0);
/* 311  */     transform: translateX(0);
/* 312  */   }
/* 313  */ }
/* 314  */
/* 315  */ @keyframes headShake {
/* 316  */   0% {
/* 317  */     -webkit-transform: translateX(0);
/* 318  */     transform: translateX(0);
/* 319  */   }
/* 320  */
/* 321  */   6.5% {
/* 322  */     -webkit-transform: translateX(-6px) rotateY(-9deg);
/* 323  */     transform: translateX(-6px) rotateY(-9deg);
/* 324  */   }
/* 325  */
/* 326  */   18.5% {
/* 327  */     -webkit-transform: translateX(5px) rotateY(7deg);
/* 328  */     transform: translateX(5px) rotateY(7deg);
/* 329  */   }
/* 330  */
/* 331  */   31.5% {
/* 332  */     -webkit-transform: translateX(-3px) rotateY(-5deg);
/* 333  */     transform: translateX(-3px) rotateY(-5deg);
/* 334  */   }
/* 335  */
/* 336  */   43.5% {
/* 337  */     -webkit-transform: translateX(2px) rotateY(3deg);
/* 338  */     transform: translateX(2px) rotateY(3deg);
/* 339  */   }
/* 340  */
/* 341  */   50% {
/* 342  */     -webkit-transform: translateX(0);
/* 343  */     transform: translateX(0);
/* 344  */   }
/* 345  */ }
/* 346  */
/* 347  */ .headShake {
/* 348  */   -webkit-animation-timing-function: ease-in-out;
/* 349  */   animation-timing-function: ease-in-out;
/* 350  */   -webkit-animation-name: headShake;

/* animate.css */

/* 351  */   animation-name: headShake;
/* 352  */ }
/* 353  */
/* 354  */ @-webkit-keyframes swing {
/* 355  */   20% {
/* 356  */     -webkit-transform: rotate3d(0, 0, 1, 15deg);
/* 357  */     transform: rotate3d(0, 0, 1, 15deg);
/* 358  */   }
/* 359  */
/* 360  */   40% {
/* 361  */     -webkit-transform: rotate3d(0, 0, 1, -10deg);
/* 362  */     transform: rotate3d(0, 0, 1, -10deg);
/* 363  */   }
/* 364  */
/* 365  */   60% {
/* 366  */     -webkit-transform: rotate3d(0, 0, 1, 5deg);
/* 367  */     transform: rotate3d(0, 0, 1, 5deg);
/* 368  */   }
/* 369  */
/* 370  */   80% {
/* 371  */     -webkit-transform: rotate3d(0, 0, 1, -5deg);
/* 372  */     transform: rotate3d(0, 0, 1, -5deg);
/* 373  */   }
/* 374  */
/* 375  */   to {
/* 376  */     -webkit-transform: rotate3d(0, 0, 1, 0deg);
/* 377  */     transform: rotate3d(0, 0, 1, 0deg);
/* 378  */   }
/* 379  */ }
/* 380  */
/* 381  */ @keyframes swing {
/* 382  */   20% {
/* 383  */     -webkit-transform: rotate3d(0, 0, 1, 15deg);
/* 384  */     transform: rotate3d(0, 0, 1, 15deg);
/* 385  */   }
/* 386  */
/* 387  */   40% {
/* 388  */     -webkit-transform: rotate3d(0, 0, 1, -10deg);
/* 389  */     transform: rotate3d(0, 0, 1, -10deg);
/* 390  */   }
/* 391  */
/* 392  */   60% {
/* 393  */     -webkit-transform: rotate3d(0, 0, 1, 5deg);
/* 394  */     transform: rotate3d(0, 0, 1, 5deg);
/* 395  */   }
/* 396  */
/* 397  */   80% {
/* 398  */     -webkit-transform: rotate3d(0, 0, 1, -5deg);
/* 399  */     transform: rotate3d(0, 0, 1, -5deg);
/* 400  */   }

/* animate.css */

/* 401  */
/* 402  */   to {
/* 403  */     -webkit-transform: rotate3d(0, 0, 1, 0deg);
/* 404  */     transform: rotate3d(0, 0, 1, 0deg);
/* 405  */   }
/* 406  */ }
/* 407  */
/* 408  */ .swing {
/* 409  */   -webkit-transform-origin: top center;
/* 410  */   transform-origin: top center;
/* 411  */   -webkit-animation-name: swing;
/* 412  */   animation-name: swing;
/* 413  */ }
/* 414  */
/* 415  */ @-webkit-keyframes tada {
/* 416  */   from {
/* 417  */     -webkit-transform: scale3d(1, 1, 1);
/* 418  */     transform: scale3d(1, 1, 1);
/* 419  */   }
/* 420  */
/* 421  */   10%, 20% {
/* 422  */     -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
/* 423  */     transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
/* 424  */   }
/* 425  */
/* 426  */   30%, 50%, 70%, 90% {
/* 427  */     -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
/* 428  */     transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
/* 429  */   }
/* 430  */
/* 431  */   40%, 60%, 80% {
/* 432  */     -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
/* 433  */     transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
/* 434  */   }
/* 435  */
/* 436  */   to {
/* 437  */     -webkit-transform: scale3d(1, 1, 1);
/* 438  */     transform: scale3d(1, 1, 1);
/* 439  */   }
/* 440  */ }
/* 441  */
/* 442  */ @keyframes tada {
/* 443  */   from {
/* 444  */     -webkit-transform: scale3d(1, 1, 1);
/* 445  */     transform: scale3d(1, 1, 1);
/* 446  */   }
/* 447  */
/* 448  */   10%, 20% {
/* 449  */     -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
/* 450  */     transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);

/* animate.css */

/* 451  */   }
/* 452  */
/* 453  */   30%, 50%, 70%, 90% {
/* 454  */     -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
/* 455  */     transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
/* 456  */   }
/* 457  */
/* 458  */   40%, 60%, 80% {
/* 459  */     -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
/* 460  */     transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
/* 461  */   }
/* 462  */
/* 463  */   to {
/* 464  */     -webkit-transform: scale3d(1, 1, 1);
/* 465  */     transform: scale3d(1, 1, 1);
/* 466  */   }
/* 467  */ }
/* 468  */
/* 469  */ .tada {
/* 470  */   -webkit-animation-name: tada;
/* 471  */   animation-name: tada;
/* 472  */ }
/* 473  */
/* 474  */ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
/* 475  */
/* 476  */ @-webkit-keyframes wobble {
/* 477  */   from {
/* 478  */     -webkit-transform: none;
/* 479  */     transform: none;
/* 480  */   }
/* 481  */
/* 482  */   15% {
/* 483  */     -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
/* 484  */     transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
/* 485  */   }
/* 486  */
/* 487  */   30% {
/* 488  */     -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
/* 489  */     transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
/* 490  */   }
/* 491  */
/* 492  */   45% {
/* 493  */     -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
/* 494  */     transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
/* 495  */   }
/* 496  */
/* 497  */   60% {
/* 498  */     -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
/* 499  */     transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
/* 500  */   }

/* animate.css */

/* 501  */
/* 502  */   75% {
/* 503  */     -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
/* 504  */     transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
/* 505  */   }
/* 506  */
/* 507  */   to {
/* 508  */     -webkit-transform: none;
/* 509  */     transform: none;
/* 510  */   }
/* 511  */ }
/* 512  */
/* 513  */ @keyframes wobble {
/* 514  */   from {
/* 515  */     -webkit-transform: none;
/* 516  */     transform: none;
/* 517  */   }
/* 518  */
/* 519  */   15% {
/* 520  */     -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
/* 521  */     transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
/* 522  */   }
/* 523  */
/* 524  */   30% {
/* 525  */     -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
/* 526  */     transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
/* 527  */   }
/* 528  */
/* 529  */   45% {
/* 530  */     -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
/* 531  */     transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
/* 532  */   }
/* 533  */
/* 534  */   60% {
/* 535  */     -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
/* 536  */     transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
/* 537  */   }
/* 538  */
/* 539  */   75% {
/* 540  */     -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
/* 541  */     transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
/* 542  */   }
/* 543  */
/* 544  */   to {
/* 545  */     -webkit-transform: none;
/* 546  */     transform: none;
/* 547  */   }
/* 548  */ }
/* 549  */
/* 550  */ .wobble {

/* animate.css */

/* 551  */   -webkit-animation-name: wobble;
/* 552  */   animation-name: wobble;
/* 553  */ }
/* 554  */
/* 555  */ @-webkit-keyframes jello {
/* 556  */   from, 11.1%, to {
/* 557  */     -webkit-transform: none;
/* 558  */     transform: none;
/* 559  */   }
/* 560  */
/* 561  */   22.2% {
/* 562  */     -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
/* 563  */     transform: skewX(-12.5deg) skewY(-12.5deg);
/* 564  */   }
/* 565  */
/* 566  */   33.3% {
/* 567  */     -webkit-transform: skewX(6.25deg) skewY(6.25deg);
/* 568  */     transform: skewX(6.25deg) skewY(6.25deg);
/* 569  */   }
/* 570  */
/* 571  */   44.4% {
/* 572  */     -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
/* 573  */     transform: skewX(-3.125deg) skewY(-3.125deg);
/* 574  */   }
/* 575  */
/* 576  */   55.5% {
/* 577  */     -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
/* 578  */     transform: skewX(1.5625deg) skewY(1.5625deg);
/* 579  */   }
/* 580  */
/* 581  */   66.6% {
/* 582  */     -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
/* 583  */     transform: skewX(-0.78125deg) skewY(-0.78125deg);
/* 584  */   }
/* 585  */
/* 586  */   77.7% {
/* 587  */     -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
/* 588  */     transform: skewX(0.390625deg) skewY(0.390625deg);
/* 589  */   }
/* 590  */
/* 591  */   88.8% {
/* 592  */     -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
/* 593  */     transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
/* 594  */   }
/* 595  */ }
/* 596  */
/* 597  */ @keyframes jello {
/* 598  */   from, 11.1%, to {
/* 599  */     -webkit-transform: none;
/* 600  */     transform: none;

/* animate.css */

/* 601  */   }
/* 602  */
/* 603  */   22.2% {
/* 604  */     -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
/* 605  */     transform: skewX(-12.5deg) skewY(-12.5deg);
/* 606  */   }
/* 607  */
/* 608  */   33.3% {
/* 609  */     -webkit-transform: skewX(6.25deg) skewY(6.25deg);
/* 610  */     transform: skewX(6.25deg) skewY(6.25deg);
/* 611  */   }
/* 612  */
/* 613  */   44.4% {
/* 614  */     -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
/* 615  */     transform: skewX(-3.125deg) skewY(-3.125deg);
/* 616  */   }
/* 617  */
/* 618  */   55.5% {
/* 619  */     -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
/* 620  */     transform: skewX(1.5625deg) skewY(1.5625deg);
/* 621  */   }
/* 622  */
/* 623  */   66.6% {
/* 624  */     -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
/* 625  */     transform: skewX(-0.78125deg) skewY(-0.78125deg);
/* 626  */   }
/* 627  */
/* 628  */   77.7% {
/* 629  */     -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
/* 630  */     transform: skewX(0.390625deg) skewY(0.390625deg);
/* 631  */   }
/* 632  */
/* 633  */   88.8% {
/* 634  */     -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
/* 635  */     transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
/* 636  */   }
/* 637  */ }
/* 638  */
/* 639  */ .jello {
/* 640  */   -webkit-animation-name: jello;
/* 641  */   animation-name: jello;
/* 642  */   -webkit-transform-origin: center;
/* 643  */   transform-origin: center;
/* 644  */ }
/* 645  */
/* 646  */ @-webkit-keyframes bounceIn {
/* 647  */   from, 20%, 40%, 60%, 80%, to {
/* 648  */     -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 649  */     animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 650  */   }

/* animate.css */

/* 651  */
/* 652  */   0% {
/* 653  */     opacity: 0;
/* 654  */     -webkit-transform: scale3d(.3, .3, .3);
/* 655  */     transform: scale3d(.3, .3, .3);
/* 656  */   }
/* 657  */
/* 658  */   20% {
/* 659  */     -webkit-transform: scale3d(1.1, 1.1, 1.1);
/* 660  */     transform: scale3d(1.1, 1.1, 1.1);
/* 661  */   }
/* 662  */
/* 663  */   40% {
/* 664  */     -webkit-transform: scale3d(.9, .9, .9);
/* 665  */     transform: scale3d(.9, .9, .9);
/* 666  */   }
/* 667  */
/* 668  */   60% {
/* 669  */     opacity: 1;
/* 670  */     -webkit-transform: scale3d(1.03, 1.03, 1.03);
/* 671  */     transform: scale3d(1.03, 1.03, 1.03);
/* 672  */   }
/* 673  */
/* 674  */   80% {
/* 675  */     -webkit-transform: scale3d(.97, .97, .97);
/* 676  */     transform: scale3d(.97, .97, .97);
/* 677  */   }
/* 678  */
/* 679  */   to {
/* 680  */     opacity: 1;
/* 681  */     -webkit-transform: scale3d(1, 1, 1);
/* 682  */     transform: scale3d(1, 1, 1);
/* 683  */   }
/* 684  */ }
/* 685  */
/* 686  */ @keyframes bounceIn {
/* 687  */   from, 20%, 40%, 60%, 80%, to {
/* 688  */     -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 689  */     animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 690  */   }
/* 691  */
/* 692  */   0% {
/* 693  */     opacity: 0;
/* 694  */     -webkit-transform: scale3d(.3, .3, .3);
/* 695  */     transform: scale3d(.3, .3, .3);
/* 696  */   }
/* 697  */
/* 698  */   20% {
/* 699  */     -webkit-transform: scale3d(1.1, 1.1, 1.1);
/* 700  */     transform: scale3d(1.1, 1.1, 1.1);

/* animate.css */

/* 701  */   }
/* 702  */
/* 703  */   40% {
/* 704  */     -webkit-transform: scale3d(.9, .9, .9);
/* 705  */     transform: scale3d(.9, .9, .9);
/* 706  */   }
/* 707  */
/* 708  */   60% {
/* 709  */     opacity: 1;
/* 710  */     -webkit-transform: scale3d(1.03, 1.03, 1.03);
/* 711  */     transform: scale3d(1.03, 1.03, 1.03);
/* 712  */   }
/* 713  */
/* 714  */   80% {
/* 715  */     -webkit-transform: scale3d(.97, .97, .97);
/* 716  */     transform: scale3d(.97, .97, .97);
/* 717  */   }
/* 718  */
/* 719  */   to {
/* 720  */     opacity: 1;
/* 721  */     -webkit-transform: scale3d(1, 1, 1);
/* 722  */     transform: scale3d(1, 1, 1);
/* 723  */   }
/* 724  */ }
/* 725  */
/* 726  */ .bounceIn {
/* 727  */   -webkit-animation-name: bounceIn;
/* 728  */   animation-name: bounceIn;
/* 729  */ }
/* 730  */
/* 731  */ @-webkit-keyframes bounceInDown {
/* 732  */   from, 60%, 75%, 90%, to {
/* 733  */     -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 734  */     animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 735  */   }
/* 736  */
/* 737  */   0% {
/* 738  */     opacity: 0;
/* 739  */     -webkit-transform: translate3d(0, -3000px, 0);
/* 740  */     transform: translate3d(0, -3000px, 0);
/* 741  */   }
/* 742  */
/* 743  */   60% {
/* 744  */     opacity: 1;
/* 745  */     -webkit-transform: translate3d(0, 25px, 0);
/* 746  */     transform: translate3d(0, 25px, 0);
/* 747  */   }
/* 748  */
/* 749  */   75% {
/* 750  */     -webkit-transform: translate3d(0, -10px, 0);

/* animate.css */

/* 751  */     transform: translate3d(0, -10px, 0);
/* 752  */   }
/* 753  */
/* 754  */   90% {
/* 755  */     -webkit-transform: translate3d(0, 5px, 0);
/* 756  */     transform: translate3d(0, 5px, 0);
/* 757  */   }
/* 758  */
/* 759  */   to {
/* 760  */     -webkit-transform: none;
/* 761  */     transform: none;
/* 762  */   }
/* 763  */ }
/* 764  */
/* 765  */ @keyframes bounceInDown {
/* 766  */   from, 60%, 75%, 90%, to {
/* 767  */     -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 768  */     animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 769  */   }
/* 770  */
/* 771  */   0% {
/* 772  */     opacity: 0;
/* 773  */     -webkit-transform: translate3d(0, -3000px, 0);
/* 774  */     transform: translate3d(0, -3000px, 0);
/* 775  */   }
/* 776  */
/* 777  */   60% {
/* 778  */     opacity: 1;
/* 779  */     -webkit-transform: translate3d(0, 25px, 0);
/* 780  */     transform: translate3d(0, 25px, 0);
/* 781  */   }
/* 782  */
/* 783  */   75% {
/* 784  */     -webkit-transform: translate3d(0, -10px, 0);
/* 785  */     transform: translate3d(0, -10px, 0);
/* 786  */   }
/* 787  */
/* 788  */   90% {
/* 789  */     -webkit-transform: translate3d(0, 5px, 0);
/* 790  */     transform: translate3d(0, 5px, 0);
/* 791  */   }
/* 792  */
/* 793  */   to {
/* 794  */     -webkit-transform: none;
/* 795  */     transform: none;
/* 796  */   }
/* 797  */ }
/* 798  */
/* 799  */ .bounceInDown {
/* 800  */   -webkit-animation-name: bounceInDown;

/* animate.css */

/* 801  */   animation-name: bounceInDown;
/* 802  */ }
/* 803  */
/* 804  */ @-webkit-keyframes bounceInLeft {
/* 805  */   from, 60%, 75%, 90%, to {
/* 806  */     -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 807  */     animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 808  */   }
/* 809  */
/* 810  */   0% {
/* 811  */     opacity: 0;
/* 812  */     -webkit-transform: translate3d(-3000px, 0, 0);
/* 813  */     transform: translate3d(-3000px, 0, 0);
/* 814  */   }
/* 815  */
/* 816  */   60% {
/* 817  */     opacity: 1;
/* 818  */     -webkit-transform: translate3d(25px, 0, 0);
/* 819  */     transform: translate3d(25px, 0, 0);
/* 820  */   }
/* 821  */
/* 822  */   75% {
/* 823  */     -webkit-transform: translate3d(-10px, 0, 0);
/* 824  */     transform: translate3d(-10px, 0, 0);
/* 825  */   }
/* 826  */
/* 827  */   90% {
/* 828  */     -webkit-transform: translate3d(5px, 0, 0);
/* 829  */     transform: translate3d(5px, 0, 0);
/* 830  */   }
/* 831  */
/* 832  */   to {
/* 833  */     -webkit-transform: none;
/* 834  */     transform: none;
/* 835  */   }
/* 836  */ }
/* 837  */
/* 838  */ @keyframes bounceInLeft {
/* 839  */   from, 60%, 75%, 90%, to {
/* 840  */     -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 841  */     animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 842  */   }
/* 843  */
/* 844  */   0% {
/* 845  */     opacity: 0;
/* 846  */     -webkit-transform: translate3d(-3000px, 0, 0);
/* 847  */     transform: translate3d(-3000px, 0, 0);
/* 848  */   }
/* 849  */
/* 850  */   60% {

/* animate.css */

/* 851  */     opacity: 1;
/* 852  */     -webkit-transform: translate3d(25px, 0, 0);
/* 853  */     transform: translate3d(25px, 0, 0);
/* 854  */   }
/* 855  */
/* 856  */   75% {
/* 857  */     -webkit-transform: translate3d(-10px, 0, 0);
/* 858  */     transform: translate3d(-10px, 0, 0);
/* 859  */   }
/* 860  */
/* 861  */   90% {
/* 862  */     -webkit-transform: translate3d(5px, 0, 0);
/* 863  */     transform: translate3d(5px, 0, 0);
/* 864  */   }
/* 865  */
/* 866  */   to {
/* 867  */     -webkit-transform: none;
/* 868  */     transform: none;
/* 869  */   }
/* 870  */ }
/* 871  */
/* 872  */ .bounceInLeft {
/* 873  */   -webkit-animation-name: bounceInLeft;
/* 874  */   animation-name: bounceInLeft;
/* 875  */ }
/* 876  */
/* 877  */ @-webkit-keyframes bounceInRight {
/* 878  */   from, 60%, 75%, 90%, to {
/* 879  */     -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 880  */     animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 881  */   }
/* 882  */
/* 883  */   from {
/* 884  */     opacity: 0;
/* 885  */     -webkit-transform: translate3d(3000px, 0, 0);
/* 886  */     transform: translate3d(3000px, 0, 0);
/* 887  */   }
/* 888  */
/* 889  */   60% {
/* 890  */     opacity: 1;
/* 891  */     -webkit-transform: translate3d(-25px, 0, 0);
/* 892  */     transform: translate3d(-25px, 0, 0);
/* 893  */   }
/* 894  */
/* 895  */   75% {
/* 896  */     -webkit-transform: translate3d(10px, 0, 0);
/* 897  */     transform: translate3d(10px, 0, 0);
/* 898  */   }
/* 899  */
/* 900  */   90% {

/* animate.css */

/* 901  */     -webkit-transform: translate3d(-5px, 0, 0);
/* 902  */     transform: translate3d(-5px, 0, 0);
/* 903  */   }
/* 904  */
/* 905  */   to {
/* 906  */     -webkit-transform: none;
/* 907  */     transform: none;
/* 908  */   }
/* 909  */ }
/* 910  */
/* 911  */ @keyframes bounceInRight {
/* 912  */   from, 60%, 75%, 90%, to {
/* 913  */     -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 914  */     animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 915  */   }
/* 916  */
/* 917  */   from {
/* 918  */     opacity: 0;
/* 919  */     -webkit-transform: translate3d(3000px, 0, 0);
/* 920  */     transform: translate3d(3000px, 0, 0);
/* 921  */   }
/* 922  */
/* 923  */   60% {
/* 924  */     opacity: 1;
/* 925  */     -webkit-transform: translate3d(-25px, 0, 0);
/* 926  */     transform: translate3d(-25px, 0, 0);
/* 927  */   }
/* 928  */
/* 929  */   75% {
/* 930  */     -webkit-transform: translate3d(10px, 0, 0);
/* 931  */     transform: translate3d(10px, 0, 0);
/* 932  */   }
/* 933  */
/* 934  */   90% {
/* 935  */     -webkit-transform: translate3d(-5px, 0, 0);
/* 936  */     transform: translate3d(-5px, 0, 0);
/* 937  */   }
/* 938  */
/* 939  */   to {
/* 940  */     -webkit-transform: none;
/* 941  */     transform: none;
/* 942  */   }
/* 943  */ }
/* 944  */
/* 945  */ .bounceInRight {
/* 946  */   -webkit-animation-name: bounceInRight;
/* 947  */   animation-name: bounceInRight;
/* 948  */ }
/* 949  */
/* 950  */ @-webkit-keyframes bounceInUp {

/* animate.css */

/* 951  */   from, 60%, 75%, 90%, to {
/* 952  */     -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 953  */     animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 954  */   }
/* 955  */
/* 956  */   from {
/* 957  */     opacity: 0;
/* 958  */     -webkit-transform: translate3d(0, 3000px, 0);
/* 959  */     transform: translate3d(0, 3000px, 0);
/* 960  */   }
/* 961  */
/* 962  */   60% {
/* 963  */     opacity: 1;
/* 964  */     -webkit-transform: translate3d(0, -20px, 0);
/* 965  */     transform: translate3d(0, -20px, 0);
/* 966  */   }
/* 967  */
/* 968  */   75% {
/* 969  */     -webkit-transform: translate3d(0, 10px, 0);
/* 970  */     transform: translate3d(0, 10px, 0);
/* 971  */   }
/* 972  */
/* 973  */   90% {
/* 974  */     -webkit-transform: translate3d(0, -5px, 0);
/* 975  */     transform: translate3d(0, -5px, 0);
/* 976  */   }
/* 977  */
/* 978  */   to {
/* 979  */     -webkit-transform: translate3d(0, 0, 0);
/* 980  */     transform: translate3d(0, 0, 0);
/* 981  */   }
/* 982  */ }
/* 983  */
/* 984  */ @keyframes bounceInUp {
/* 985  */   from, 60%, 75%, 90%, to {
/* 986  */     -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 987  */     animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
/* 988  */   }
/* 989  */
/* 990  */   from {
/* 991  */     opacity: 0;
/* 992  */     -webkit-transform: translate3d(0, 3000px, 0);
/* 993  */     transform: translate3d(0, 3000px, 0);
/* 994  */   }
/* 995  */
/* 996  */   60% {
/* 997  */     opacity: 1;
/* 998  */     -webkit-transform: translate3d(0, -20px, 0);
/* 999  */     transform: translate3d(0, -20px, 0);
/* 1000 */   }

/* animate.css */

/* 1001 */
/* 1002 */   75% {
/* 1003 */     -webkit-transform: translate3d(0, 10px, 0);
/* 1004 */     transform: translate3d(0, 10px, 0);
/* 1005 */   }
/* 1006 */
/* 1007 */   90% {
/* 1008 */     -webkit-transform: translate3d(0, -5px, 0);
/* 1009 */     transform: translate3d(0, -5px, 0);
/* 1010 */   }
/* 1011 */
/* 1012 */   to {
/* 1013 */     -webkit-transform: translate3d(0, 0, 0);
/* 1014 */     transform: translate3d(0, 0, 0);
/* 1015 */   }
/* 1016 */ }
/* 1017 */
/* 1018 */ .bounceInUp {
/* 1019 */   -webkit-animation-name: bounceInUp;
/* 1020 */   animation-name: bounceInUp;
/* 1021 */ }
/* 1022 */
/* 1023 */ @-webkit-keyframes bounceOut {
/* 1024 */   20% {
/* 1025 */     -webkit-transform: scale3d(.9, .9, .9);
/* 1026 */     transform: scale3d(.9, .9, .9);
/* 1027 */   }
/* 1028 */
/* 1029 */   50%, 55% {
/* 1030 */     opacity: 1;
/* 1031 */     -webkit-transform: scale3d(1.1, 1.1, 1.1);
/* 1032 */     transform: scale3d(1.1, 1.1, 1.1);
/* 1033 */   }
/* 1034 */
/* 1035 */   to {
/* 1036 */     opacity: 0;
/* 1037 */     -webkit-transform: scale3d(.3, .3, .3);
/* 1038 */     transform: scale3d(.3, .3, .3);
/* 1039 */   }
/* 1040 */ }
/* 1041 */
/* 1042 */ @keyframes bounceOut {
/* 1043 */   20% {
/* 1044 */     -webkit-transform: scale3d(.9, .9, .9);
/* 1045 */     transform: scale3d(.9, .9, .9);
/* 1046 */   }
/* 1047 */
/* 1048 */   50%, 55% {
/* 1049 */     opacity: 1;
/* 1050 */     -webkit-transform: scale3d(1.1, 1.1, 1.1);

/* animate.css */

/* 1051 */     transform: scale3d(1.1, 1.1, 1.1);
/* 1052 */   }
/* 1053 */
/* 1054 */   to {
/* 1055 */     opacity: 0;
/* 1056 */     -webkit-transform: scale3d(.3, .3, .3);
/* 1057 */     transform: scale3d(.3, .3, .3);
/* 1058 */   }
/* 1059 */ }
/* 1060 */
/* 1061 */ .bounceOut {
/* 1062 */   -webkit-animation-name: bounceOut;
/* 1063 */   animation-name: bounceOut;
/* 1064 */ }
/* 1065 */
/* 1066 */ @-webkit-keyframes bounceOutDown {
/* 1067 */   20% {
/* 1068 */     -webkit-transform: translate3d(0, 10px, 0);
/* 1069 */     transform: translate3d(0, 10px, 0);
/* 1070 */   }
/* 1071 */
/* 1072 */   40%, 45% {
/* 1073 */     opacity: 1;
/* 1074 */     -webkit-transform: translate3d(0, -20px, 0);
/* 1075 */     transform: translate3d(0, -20px, 0);
/* 1076 */   }
/* 1077 */
/* 1078 */   to {
/* 1079 */     opacity: 0;
/* 1080 */     -webkit-transform: translate3d(0, 2000px, 0);
/* 1081 */     transform: translate3d(0, 2000px, 0);
/* 1082 */   }
/* 1083 */ }
/* 1084 */
/* 1085 */ @keyframes bounceOutDown {
/* 1086 */   20% {
/* 1087 */     -webkit-transform: translate3d(0, 10px, 0);
/* 1088 */     transform: translate3d(0, 10px, 0);
/* 1089 */   }
/* 1090 */
/* 1091 */   40%, 45% {
/* 1092 */     opacity: 1;
/* 1093 */     -webkit-transform: translate3d(0, -20px, 0);
/* 1094 */     transform: translate3d(0, -20px, 0);
/* 1095 */   }
/* 1096 */
/* 1097 */   to {
/* 1098 */     opacity: 0;
/* 1099 */     -webkit-transform: translate3d(0, 2000px, 0);
/* 1100 */     transform: translate3d(0, 2000px, 0);

/* animate.css */

/* 1101 */   }
/* 1102 */ }
/* 1103 */
/* 1104 */ .bounceOutDown {
/* 1105 */   -webkit-animation-name: bounceOutDown;
/* 1106 */   animation-name: bounceOutDown;
/* 1107 */ }
/* 1108 */
/* 1109 */ @-webkit-keyframes bounceOutLeft {
/* 1110 */   20% {
/* 1111 */     opacity: 1;
/* 1112 */     -webkit-transform: translate3d(20px, 0, 0);
/* 1113 */     transform: translate3d(20px, 0, 0);
/* 1114 */   }
/* 1115 */
/* 1116 */   to {
/* 1117 */     opacity: 0;
/* 1118 */     -webkit-transform: translate3d(-2000px, 0, 0);
/* 1119 */     transform: translate3d(-2000px, 0, 0);
/* 1120 */   }
/* 1121 */ }
/* 1122 */
/* 1123 */ @keyframes bounceOutLeft {
/* 1124 */   20% {
/* 1125 */     opacity: 1;
/* 1126 */     -webkit-transform: translate3d(20px, 0, 0);
/* 1127 */     transform: translate3d(20px, 0, 0);
/* 1128 */   }
/* 1129 */
/* 1130 */   to {
/* 1131 */     opacity: 0;
/* 1132 */     -webkit-transform: translate3d(-2000px, 0, 0);
/* 1133 */     transform: translate3d(-2000px, 0, 0);
/* 1134 */   }
/* 1135 */ }
/* 1136 */
/* 1137 */ .bounceOutLeft {
/* 1138 */   -webkit-animation-name: bounceOutLeft;
/* 1139 */   animation-name: bounceOutLeft;
/* 1140 */ }
/* 1141 */
/* 1142 */ @-webkit-keyframes bounceOutRight {
/* 1143 */   20% {
/* 1144 */     opacity: 1;
/* 1145 */     -webkit-transform: translate3d(-20px, 0, 0);
/* 1146 */     transform: translate3d(-20px, 0, 0);
/* 1147 */   }
/* 1148 */
/* 1149 */   to {
/* 1150 */     opacity: 0;

/* animate.css */

/* 1151 */     -webkit-transform: translate3d(2000px, 0, 0);
/* 1152 */     transform: translate3d(2000px, 0, 0);
/* 1153 */   }
/* 1154 */ }
/* 1155 */
/* 1156 */ @keyframes bounceOutRight {
/* 1157 */   20% {
/* 1158 */     opacity: 1;
/* 1159 */     -webkit-transform: translate3d(-20px, 0, 0);
/* 1160 */     transform: translate3d(-20px, 0, 0);
/* 1161 */   }
/* 1162 */
/* 1163 */   to {
/* 1164 */     opacity: 0;
/* 1165 */     -webkit-transform: translate3d(2000px, 0, 0);
/* 1166 */     transform: translate3d(2000px, 0, 0);
/* 1167 */   }
/* 1168 */ }
/* 1169 */
/* 1170 */ .bounceOutRight {
/* 1171 */   -webkit-animation-name: bounceOutRight;
/* 1172 */   animation-name: bounceOutRight;
/* 1173 */ }
/* 1174 */
/* 1175 */ @-webkit-keyframes bounceOutUp {
/* 1176 */   20% {
/* 1177 */     -webkit-transform: translate3d(0, -10px, 0);
/* 1178 */     transform: translate3d(0, -10px, 0);
/* 1179 */   }
/* 1180 */
/* 1181 */   40%, 45% {
/* 1182 */     opacity: 1;
/* 1183 */     -webkit-transform: translate3d(0, 20px, 0);
/* 1184 */     transform: translate3d(0, 20px, 0);
/* 1185 */   }
/* 1186 */
/* 1187 */   to {
/* 1188 */     opacity: 0;
/* 1189 */     -webkit-transform: translate3d(0, -2000px, 0);
/* 1190 */     transform: translate3d(0, -2000px, 0);
/* 1191 */   }
/* 1192 */ }
/* 1193 */
/* 1194 */ @keyframes bounceOutUp {
/* 1195 */   20% {
/* 1196 */     -webkit-transform: translate3d(0, -10px, 0);
/* 1197 */     transform: translate3d(0, -10px, 0);
/* 1198 */   }
/* 1199 */
/* 1200 */   40%, 45% {

/* animate.css */

/* 1201 */     opacity: 1;
/* 1202 */     -webkit-transform: translate3d(0, 20px, 0);
/* 1203 */     transform: translate3d(0, 20px, 0);
/* 1204 */   }
/* 1205 */
/* 1206 */   to {
/* 1207 */     opacity: 0;
/* 1208 */     -webkit-transform: translate3d(0, -2000px, 0);
/* 1209 */     transform: translate3d(0, -2000px, 0);
/* 1210 */   }
/* 1211 */ }
/* 1212 */
/* 1213 */ .bounceOutUp {
/* 1214 */   -webkit-animation-name: bounceOutUp;
/* 1215 */   animation-name: bounceOutUp;
/* 1216 */ }
/* 1217 */
/* 1218 */ @-webkit-keyframes fadeIn {
/* 1219 */   from {
/* 1220 */     opacity: 0;
/* 1221 */   }
/* 1222 */
/* 1223 */   to {
/* 1224 */     opacity: 1;
/* 1225 */   }
/* 1226 */ }
/* 1227 */
/* 1228 */ @keyframes fadeIn {
/* 1229 */   from {
/* 1230 */     opacity: 0;
/* 1231 */   }
/* 1232 */
/* 1233 */   to {
/* 1234 */     opacity: 1;
/* 1235 */   }
/* 1236 */ }
/* 1237 */
/* 1238 */ .fadeIn {
/* 1239 */   -webkit-animation-name: fadeIn;
/* 1240 */   animation-name: fadeIn;
/* 1241 */ }
/* 1242 */
/* 1243 */ @-webkit-keyframes fadeInDown {
/* 1244 */   from {
/* 1245 */     opacity: 0;
/* 1246 */     -webkit-transform: translate3d(0, -100%, 0);
/* 1247 */     transform: translate3d(0, -100%, 0);
/* 1248 */   }
/* 1249 */
/* 1250 */   to {

/* animate.css */

/* 1251 */     opacity: 1;
/* 1252 */     -webkit-transform: none;
/* 1253 */     transform: none;
/* 1254 */   }
/* 1255 */ }
/* 1256 */
/* 1257 */ @keyframes fadeInDown {
/* 1258 */   from {
/* 1259 */     opacity: 0;
/* 1260 */     -webkit-transform: translate3d(0, -100%, 0);
/* 1261 */     transform: translate3d(0, -100%, 0);
/* 1262 */   }
/* 1263 */
/* 1264 */   to {
/* 1265 */     opacity: 1;
/* 1266 */     -webkit-transform: none;
/* 1267 */     transform: none;
/* 1268 */   }
/* 1269 */ }
/* 1270 */
/* 1271 */ .fadeInDown {
/* 1272 */   -webkit-animation-name: fadeInDown;
/* 1273 */   animation-name: fadeInDown;
/* 1274 */ }
/* 1275 */
/* 1276 */ @-webkit-keyframes fadeInDownBig {
/* 1277 */   from {
/* 1278 */     opacity: 0;
/* 1279 */     -webkit-transform: translate3d(0, -2000px, 0);
/* 1280 */     transform: translate3d(0, -2000px, 0);
/* 1281 */   }
/* 1282 */
/* 1283 */   to {
/* 1284 */     opacity: 1;
/* 1285 */     -webkit-transform: none;
/* 1286 */     transform: none;
/* 1287 */   }
/* 1288 */ }
/* 1289 */
/* 1290 */ @keyframes fadeInDownBig {
/* 1291 */   from {
/* 1292 */     opacity: 0;
/* 1293 */     -webkit-transform: translate3d(0, -2000px, 0);
/* 1294 */     transform: translate3d(0, -2000px, 0);
/* 1295 */   }
/* 1296 */
/* 1297 */   to {
/* 1298 */     opacity: 1;
/* 1299 */     -webkit-transform: none;
/* 1300 */     transform: none;

/* animate.css */

/* 1301 */   }
/* 1302 */ }
/* 1303 */
/* 1304 */ .fadeInDownBig {
/* 1305 */   -webkit-animation-name: fadeInDownBig;
/* 1306 */   animation-name: fadeInDownBig;
/* 1307 */ }
/* 1308 */
/* 1309 */ @-webkit-keyframes fadeInLeft {
/* 1310 */   from {
/* 1311 */     opacity: 0;
/* 1312 */     -webkit-transform: translate3d(-100%, 0, 0);
/* 1313 */     transform: translate3d(-100%, 0, 0);
/* 1314 */   }
/* 1315 */
/* 1316 */   to {
/* 1317 */     opacity: 1;
/* 1318 */     -webkit-transform: none;
/* 1319 */     transform: none;
/* 1320 */   }
/* 1321 */ }
/* 1322 */
/* 1323 */ @keyframes fadeInLeft {
/* 1324 */   from {
/* 1325 */     opacity: 0;
/* 1326 */     -webkit-transform: translate3d(-100%, 0, 0);
/* 1327 */     transform: translate3d(-100%, 0, 0);
/* 1328 */   }
/* 1329 */
/* 1330 */   to {
/* 1331 */     opacity: 1;
/* 1332 */     -webkit-transform: none;
/* 1333 */     transform: none;
/* 1334 */   }
/* 1335 */ }
/* 1336 */
/* 1337 */ .fadeInLeft {
/* 1338 */   -webkit-animation-name: fadeInLeft;
/* 1339 */   animation-name: fadeInLeft;
/* 1340 */ }
/* 1341 */
/* 1342 */ @-webkit-keyframes fadeInLeftBig {
/* 1343 */   from {
/* 1344 */     opacity: 0;
/* 1345 */     -webkit-transform: translate3d(-2000px, 0, 0);
/* 1346 */     transform: translate3d(-2000px, 0, 0);
/* 1347 */   }
/* 1348 */
/* 1349 */   to {
/* 1350 */     opacity: 1;

/* animate.css */

/* 1351 */     -webkit-transform: none;
/* 1352 */     transform: none;
/* 1353 */   }
/* 1354 */ }
/* 1355 */
/* 1356 */ @keyframes fadeInLeftBig {
/* 1357 */   from {
/* 1358 */     opacity: 0;
/* 1359 */     -webkit-transform: translate3d(-2000px, 0, 0);
/* 1360 */     transform: translate3d(-2000px, 0, 0);
/* 1361 */   }
/* 1362 */
/* 1363 */   to {
/* 1364 */     opacity: 1;
/* 1365 */     -webkit-transform: none;
/* 1366 */     transform: none;
/* 1367 */   }
/* 1368 */ }
/* 1369 */
/* 1370 */ .fadeInLeftBig {
/* 1371 */   -webkit-animation-name: fadeInLeftBig;
/* 1372 */   animation-name: fadeInLeftBig;
/* 1373 */ }
/* 1374 */
/* 1375 */ @-webkit-keyframes fadeInRight {
/* 1376 */   from {
/* 1377 */     opacity: 0;
/* 1378 */     -webkit-transform: translate3d(100%, 0, 0);
/* 1379 */     transform: translate3d(100%, 0, 0);
/* 1380 */   }
/* 1381 */
/* 1382 */   to {
/* 1383 */     opacity: 1;
/* 1384 */     -webkit-transform: none;
/* 1385 */     transform: none;
/* 1386 */   }
/* 1387 */ }
/* 1388 */
/* 1389 */ @keyframes fadeInRight {
/* 1390 */   from {
/* 1391 */     opacity: 0;
/* 1392 */     -webkit-transform: translate3d(100%, 0, 0);
/* 1393 */     transform: translate3d(100%, 0, 0);
/* 1394 */   }
/* 1395 */
/* 1396 */   to {
/* 1397 */     opacity: 1;
/* 1398 */     -webkit-transform: none;
/* 1399 */     transform: none;
/* 1400 */   }

/* animate.css */

/* 1401 */ }
/* 1402 */
/* 1403 */ .fadeInRight {
/* 1404 */   -webkit-animation-name: fadeInRight;
/* 1405 */   animation-name: fadeInRight;
/* 1406 */ }
/* 1407 */
/* 1408 */ @-webkit-keyframes fadeInRightBig {
/* 1409 */   from {
/* 1410 */     opacity: 0;
/* 1411 */     -webkit-transform: translate3d(2000px, 0, 0);
/* 1412 */     transform: translate3d(2000px, 0, 0);
/* 1413 */   }
/* 1414 */
/* 1415 */   to {
/* 1416 */     opacity: 1;
/* 1417 */     -webkit-transform: none;
/* 1418 */     transform: none;
/* 1419 */   }
/* 1420 */ }
/* 1421 */
/* 1422 */ @keyframes fadeInRightBig {
/* 1423 */   from {
/* 1424 */     opacity: 0;
/* 1425 */     -webkit-transform: translate3d(2000px, 0, 0);
/* 1426 */     transform: translate3d(2000px, 0, 0);
/* 1427 */   }
/* 1428 */
/* 1429 */   to {
/* 1430 */     opacity: 1;
/* 1431 */     -webkit-transform: none;
/* 1432 */     transform: none;
/* 1433 */   }
/* 1434 */ }
/* 1435 */
/* 1436 */ .fadeInRightBig {
/* 1437 */   -webkit-animation-name: fadeInRightBig;
/* 1438 */   animation-name: fadeInRightBig;
/* 1439 */ }
/* 1440 */
/* 1441 */ @-webkit-keyframes fadeInUp {
/* 1442 */   from {
/* 1443 */     opacity: 0;
/* 1444 */     -webkit-transform: translate3d(0, 100%, 0);
/* 1445 */     transform: translate3d(0, 100%, 0);
/* 1446 */   }
/* 1447 */
/* 1448 */   to {
/* 1449 */     opacity: 1;
/* 1450 */     -webkit-transform: none;

/* animate.css */

/* 1451 */     transform: none;
/* 1452 */   }
/* 1453 */ }
/* 1454 */
/* 1455 */ @keyframes fadeInUp {
/* 1456 */   from {
/* 1457 */     opacity: 0;
/* 1458 */     -webkit-transform: translate3d(0, 100%, 0);
/* 1459 */     transform: translate3d(0, 100%, 0);
/* 1460 */   }
/* 1461 */
/* 1462 */   to {
/* 1463 */     opacity: 1;
/* 1464 */     -webkit-transform: none;
/* 1465 */     transform: none;
/* 1466 */   }
/* 1467 */ }
/* 1468 */
/* 1469 */ .fadeInUp {
/* 1470 */   -webkit-animation-name: fadeInUp;
/* 1471 */   animation-name: fadeInUp;
/* 1472 */ }
/* 1473 */
/* 1474 */ @-webkit-keyframes fadeInUpBig {
/* 1475 */   from {
/* 1476 */     opacity: 0;
/* 1477 */     -webkit-transform: translate3d(0, 2000px, 0);
/* 1478 */     transform: translate3d(0, 2000px, 0);
/* 1479 */   }
/* 1480 */
/* 1481 */   to {
/* 1482 */     opacity: 1;
/* 1483 */     -webkit-transform: none;
/* 1484 */     transform: none;
/* 1485 */   }
/* 1486 */ }
/* 1487 */
/* 1488 */ @keyframes fadeInUpBig {
/* 1489 */   from {
/* 1490 */     opacity: 0;
/* 1491 */     -webkit-transform: translate3d(0, 2000px, 0);
/* 1492 */     transform: translate3d(0, 2000px, 0);
/* 1493 */   }
/* 1494 */
/* 1495 */   to {
/* 1496 */     opacity: 1;
/* 1497 */     -webkit-transform: none;
/* 1498 */     transform: none;
/* 1499 */   }
/* 1500 */ }

/* animate.css */

/* 1501 */
/* 1502 */ .fadeInUpBig {
/* 1503 */   -webkit-animation-name: fadeInUpBig;
/* 1504 */   animation-name: fadeInUpBig;
/* 1505 */ }
/* 1506 */
/* 1507 */ @-webkit-keyframes fadeOut {
/* 1508 */   from {
/* 1509 */     opacity: 1;
/* 1510 */   }
/* 1511 */
/* 1512 */   to {
/* 1513 */     opacity: 0;
/* 1514 */   }
/* 1515 */ }
/* 1516 */
/* 1517 */ @keyframes fadeOut {
/* 1518 */   from {
/* 1519 */     opacity: 1;
/* 1520 */   }
/* 1521 */
/* 1522 */   to {
/* 1523 */     opacity: 0;
/* 1524 */   }
/* 1525 */ }
/* 1526 */
/* 1527 */ .fadeOut {
/* 1528 */   -webkit-animation-name: fadeOut;
/* 1529 */   animation-name: fadeOut;
/* 1530 */ }
/* 1531 */
/* 1532 */ @-webkit-keyframes fadeOutDown {
/* 1533 */   from {
/* 1534 */     opacity: 1;
/* 1535 */   }
/* 1536 */
/* 1537 */   to {
/* 1538 */     opacity: 0;
/* 1539 */     -webkit-transform: translate3d(0, 100%, 0);
/* 1540 */     transform: translate3d(0, 100%, 0);
/* 1541 */   }
/* 1542 */ }
/* 1543 */
/* 1544 */ @keyframes fadeOutDown {
/* 1545 */   from {
/* 1546 */     opacity: 1;
/* 1547 */   }
/* 1548 */
/* 1549 */   to {
/* 1550 */     opacity: 0;

/* animate.css */

/* 1551 */     -webkit-transform: translate3d(0, 100%, 0);
/* 1552 */     transform: translate3d(0, 100%, 0);
/* 1553 */   }
/* 1554 */ }
/* 1555 */
/* 1556 */ .fadeOutDown {
/* 1557 */   -webkit-animation-name: fadeOutDown;
/* 1558 */   animation-name: fadeOutDown;
/* 1559 */ }
/* 1560 */
/* 1561 */ @-webkit-keyframes fadeOutDownBig {
/* 1562 */   from {
/* 1563 */     opacity: 1;
/* 1564 */   }
/* 1565 */
/* 1566 */   to {
/* 1567 */     opacity: 0;
/* 1568 */     -webkit-transform: translate3d(0, 2000px, 0);
/* 1569 */     transform: translate3d(0, 2000px, 0);
/* 1570 */   }
/* 1571 */ }
/* 1572 */
/* 1573 */ @keyframes fadeOutDownBig {
/* 1574 */   from {
/* 1575 */     opacity: 1;
/* 1576 */   }
/* 1577 */
/* 1578 */   to {
/* 1579 */     opacity: 0;
/* 1580 */     -webkit-transform: translate3d(0, 2000px, 0);
/* 1581 */     transform: translate3d(0, 2000px, 0);
/* 1582 */   }
/* 1583 */ }
/* 1584 */
/* 1585 */ .fadeOutDownBig {
/* 1586 */   -webkit-animation-name: fadeOutDownBig;
/* 1587 */   animation-name: fadeOutDownBig;
/* 1588 */ }
/* 1589 */
/* 1590 */ @-webkit-keyframes fadeOutLeft {
/* 1591 */   from {
/* 1592 */     opacity: 1;
/* 1593 */   }
/* 1594 */
/* 1595 */   to {
/* 1596 */     opacity: 0;
/* 1597 */     -webkit-transform: translate3d(-100%, 0, 0);
/* 1598 */     transform: translate3d(-100%, 0, 0);
/* 1599 */   }
/* 1600 */ }

/* animate.css */

/* 1601 */
/* 1602 */ @keyframes fadeOutLeft {
/* 1603 */   from {
/* 1604 */     opacity: 1;
/* 1605 */   }
/* 1606 */
/* 1607 */   to {
/* 1608 */     opacity: 0;
/* 1609 */     -webkit-transform: translate3d(-100%, 0, 0);
/* 1610 */     transform: translate3d(-100%, 0, 0);
/* 1611 */   }
/* 1612 */ }
/* 1613 */
/* 1614 */ .fadeOutLeft {
/* 1615 */   -webkit-animation-name: fadeOutLeft;
/* 1616 */   animation-name: fadeOutLeft;
/* 1617 */ }
/* 1618 */
/* 1619 */ @-webkit-keyframes fadeOutLeftBig {
/* 1620 */   from {
/* 1621 */     opacity: 1;
/* 1622 */   }
/* 1623 */
/* 1624 */   to {
/* 1625 */     opacity: 0;
/* 1626 */     -webkit-transform: translate3d(-2000px, 0, 0);
/* 1627 */     transform: translate3d(-2000px, 0, 0);
/* 1628 */   }
/* 1629 */ }
/* 1630 */
/* 1631 */ @keyframes fadeOutLeftBig {
/* 1632 */   from {
/* 1633 */     opacity: 1;
/* 1634 */   }
/* 1635 */
/* 1636 */   to {
/* 1637 */     opacity: 0;
/* 1638 */     -webkit-transform: translate3d(-2000px, 0, 0);
/* 1639 */     transform: translate3d(-2000px, 0, 0);
/* 1640 */   }
/* 1641 */ }
/* 1642 */
/* 1643 */ .fadeOutLeftBig {
/* 1644 */   -webkit-animation-name: fadeOutLeftBig;
/* 1645 */   animation-name: fadeOutLeftBig;
/* 1646 */ }
/* 1647 */
/* 1648 */ @-webkit-keyframes fadeOutRight {
/* 1649 */   from {
/* 1650 */     opacity: 1;

/* animate.css */

/* 1651 */   }
/* 1652 */
/* 1653 */   to {
/* 1654 */     opacity: 0;
/* 1655 */     -webkit-transform: translate3d(100%, 0, 0);
/* 1656 */     transform: translate3d(100%, 0, 0);
/* 1657 */   }
/* 1658 */ }
/* 1659 */
/* 1660 */ @keyframes fadeOutRight {
/* 1661 */   from {
/* 1662 */     opacity: 1;
/* 1663 */   }
/* 1664 */
/* 1665 */   to {
/* 1666 */     opacity: 0;
/* 1667 */     -webkit-transform: translate3d(100%, 0, 0);
/* 1668 */     transform: translate3d(100%, 0, 0);
/* 1669 */   }
/* 1670 */ }
/* 1671 */
/* 1672 */ .fadeOutRight {
/* 1673 */   -webkit-animation-name: fadeOutRight;
/* 1674 */   animation-name: fadeOutRight;
/* 1675 */ }
/* 1676 */
/* 1677 */ @-webkit-keyframes fadeOutRightBig {
/* 1678 */   from {
/* 1679 */     opacity: 1;
/* 1680 */   }
/* 1681 */
/* 1682 */   to {
/* 1683 */     opacity: 0;
/* 1684 */     -webkit-transform: translate3d(2000px, 0, 0);
/* 1685 */     transform: translate3d(2000px, 0, 0);
/* 1686 */   }
/* 1687 */ }
/* 1688 */
/* 1689 */ @keyframes fadeOutRightBig {
/* 1690 */   from {
/* 1691 */     opacity: 1;
/* 1692 */   }
/* 1693 */
/* 1694 */   to {
/* 1695 */     opacity: 0;
/* 1696 */     -webkit-transform: translate3d(2000px, 0, 0);
/* 1697 */     transform: translate3d(2000px, 0, 0);
/* 1698 */   }
/* 1699 */ }
/* 1700 */

/* animate.css */

/* 1701 */ .fadeOutRightBig {
/* 1702 */   -webkit-animation-name: fadeOutRightBig;
/* 1703 */   animation-name: fadeOutRightBig;
/* 1704 */ }
/* 1705 */
/* 1706 */ @-webkit-keyframes fadeOutUp {
/* 1707 */   from {
/* 1708 */     opacity: 1;
/* 1709 */   }
/* 1710 */
/* 1711 */   to {
/* 1712 */     opacity: 0;
/* 1713 */     -webkit-transform: translate3d(0, -100%, 0);
/* 1714 */     transform: translate3d(0, -100%, 0);
/* 1715 */   }
/* 1716 */ }
/* 1717 */
/* 1718 */ @keyframes fadeOutUp {
/* 1719 */   from {
/* 1720 */     opacity: 1;
/* 1721 */   }
/* 1722 */
/* 1723 */   to {
/* 1724 */     opacity: 0;
/* 1725 */     -webkit-transform: translate3d(0, -100%, 0);
/* 1726 */     transform: translate3d(0, -100%, 0);
/* 1727 */   }
/* 1728 */ }
/* 1729 */
/* 1730 */ .fadeOutUp {
/* 1731 */   -webkit-animation-name: fadeOutUp;
/* 1732 */   animation-name: fadeOutUp;
/* 1733 */ }
/* 1734 */
/* 1735 */ @-webkit-keyframes fadeOutUpBig {
/* 1736 */   from {
/* 1737 */     opacity: 1;
/* 1738 */   }
/* 1739 */
/* 1740 */   to {
/* 1741 */     opacity: 0;
/* 1742 */     -webkit-transform: translate3d(0, -2000px, 0);
/* 1743 */     transform: translate3d(0, -2000px, 0);
/* 1744 */   }
/* 1745 */ }
/* 1746 */
/* 1747 */ @keyframes fadeOutUpBig {
/* 1748 */   from {
/* 1749 */     opacity: 1;
/* 1750 */   }

/* animate.css */

/* 1751 */
/* 1752 */   to {
/* 1753 */     opacity: 0;
/* 1754 */     -webkit-transform: translate3d(0, -2000px, 0);
/* 1755 */     transform: translate3d(0, -2000px, 0);
/* 1756 */   }
/* 1757 */ }
/* 1758 */
/* 1759 */ .fadeOutUpBig {
/* 1760 */   -webkit-animation-name: fadeOutUpBig;
/* 1761 */   animation-name: fadeOutUpBig;
/* 1762 */ }
/* 1763 */
/* 1764 */ @-webkit-keyframes flip {
/* 1765 */   from {
/* 1766 */     -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
/* 1767 */     transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
/* 1768 */     -webkit-animation-timing-function: ease-out;
/* 1769 */     animation-timing-function: ease-out;
/* 1770 */   }
/* 1771 */
/* 1772 */   40% {
/* 1773 */     -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
/* 1774 */     transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
/* 1775 */     -webkit-animation-timing-function: ease-out;
/* 1776 */     animation-timing-function: ease-out;
/* 1777 */   }
/* 1778 */
/* 1779 */   50% {
/* 1780 */     -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
/* 1781 */     transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
/* 1782 */     -webkit-animation-timing-function: ease-in;
/* 1783 */     animation-timing-function: ease-in;
/* 1784 */   }
/* 1785 */
/* 1786 */   80% {
/* 1787 */     -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
/* 1788 */     transform: perspective(400px) scale3d(.95, .95, .95);
/* 1789 */     -webkit-animation-timing-function: ease-in;
/* 1790 */     animation-timing-function: ease-in;
/* 1791 */   }
/* 1792 */
/* 1793 */   to {
/* 1794 */     -webkit-transform: perspective(400px);
/* 1795 */     transform: perspective(400px);
/* 1796 */     -webkit-animation-timing-function: ease-in;
/* 1797 */     animation-timing-function: ease-in;
/* 1798 */   }
/* 1799 */ }
/* 1800 */

/* animate.css */

/* 1801 */ @keyframes flip {
/* 1802 */   from {
/* 1803 */     -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
/* 1804 */     transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
/* 1805 */     -webkit-animation-timing-function: ease-out;
/* 1806 */     animation-timing-function: ease-out;
/* 1807 */   }
/* 1808 */
/* 1809 */   40% {
/* 1810 */     -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
/* 1811 */     transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
/* 1812 */     -webkit-animation-timing-function: ease-out;
/* 1813 */     animation-timing-function: ease-out;
/* 1814 */   }
/* 1815 */
/* 1816 */   50% {
/* 1817 */     -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
/* 1818 */     transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
/* 1819 */     -webkit-animation-timing-function: ease-in;
/* 1820 */     animation-timing-function: ease-in;
/* 1821 */   }
/* 1822 */
/* 1823 */   80% {
/* 1824 */     -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
/* 1825 */     transform: perspective(400px) scale3d(.95, .95, .95);
/* 1826 */     -webkit-animation-timing-function: ease-in;
/* 1827 */     animation-timing-function: ease-in;
/* 1828 */   }
/* 1829 */
/* 1830 */   to {
/* 1831 */     -webkit-transform: perspective(400px);
/* 1832 */     transform: perspective(400px);
/* 1833 */     -webkit-animation-timing-function: ease-in;
/* 1834 */     animation-timing-function: ease-in;
/* 1835 */   }
/* 1836 */ }
/* 1837 */
/* 1838 */ .animated.flip {
/* 1839 */   -webkit-backface-visibility: visible;
/* 1840 */   backface-visibility: visible;
/* 1841 */   -webkit-animation-name: flip;
/* 1842 */   animation-name: flip;
/* 1843 */ }
/* 1844 */
/* 1845 */ @-webkit-keyframes flipInX {
/* 1846 */   from {
/* 1847 */     -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
/* 1848 */     transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
/* 1849 */     -webkit-animation-timing-function: ease-in;
/* 1850 */     animation-timing-function: ease-in;

/* animate.css */

/* 1851 */     opacity: 0;
/* 1852 */   }
/* 1853 */
/* 1854 */   40% {
/* 1855 */     -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
/* 1856 */     transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
/* 1857 */     -webkit-animation-timing-function: ease-in;
/* 1858 */     animation-timing-function: ease-in;
/* 1859 */   }
/* 1860 */
/* 1861 */   60% {
/* 1862 */     -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
/* 1863 */     transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
/* 1864 */     opacity: 1;
/* 1865 */   }
/* 1866 */
/* 1867 */   80% {
/* 1868 */     -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
/* 1869 */     transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
/* 1870 */   }
/* 1871 */
/* 1872 */   to {
/* 1873 */     -webkit-transform: perspective(400px);
/* 1874 */     transform: perspective(400px);
/* 1875 */   }
/* 1876 */ }
/* 1877 */
/* 1878 */ @keyframes flipInX {
/* 1879 */   from {
/* 1880 */     -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
/* 1881 */     transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
/* 1882 */     -webkit-animation-timing-function: ease-in;
/* 1883 */     animation-timing-function: ease-in;
/* 1884 */     opacity: 0;
/* 1885 */   }
/* 1886 */
/* 1887 */   40% {
/* 1888 */     -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
/* 1889 */     transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
/* 1890 */     -webkit-animation-timing-function: ease-in;
/* 1891 */     animation-timing-function: ease-in;
/* 1892 */   }
/* 1893 */
/* 1894 */   60% {
/* 1895 */     -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
/* 1896 */     transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
/* 1897 */     opacity: 1;
/* 1898 */   }
/* 1899 */
/* 1900 */   80% {

/* animate.css */

/* 1901 */     -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
/* 1902 */     transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
/* 1903 */   }
/* 1904 */
/* 1905 */   to {
/* 1906 */     -webkit-transform: perspective(400px);
/* 1907 */     transform: perspective(400px);
/* 1908 */   }
/* 1909 */ }
/* 1910 */
/* 1911 */ .flipInX {
/* 1912 */   -webkit-backface-visibility: visible !important;
/* 1913 */   backface-visibility: visible !important;
/* 1914 */   -webkit-animation-name: flipInX;
/* 1915 */   animation-name: flipInX;
/* 1916 */ }
/* 1917 */
/* 1918 */ @-webkit-keyframes flipInY {
/* 1919 */   from {
/* 1920 */     -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
/* 1921 */     transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
/* 1922 */     -webkit-animation-timing-function: ease-in;
/* 1923 */     animation-timing-function: ease-in;
/* 1924 */     opacity: 0;
/* 1925 */   }
/* 1926 */
/* 1927 */   40% {
/* 1928 */     -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
/* 1929 */     transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
/* 1930 */     -webkit-animation-timing-function: ease-in;
/* 1931 */     animation-timing-function: ease-in;
/* 1932 */   }
/* 1933 */
/* 1934 */   60% {
/* 1935 */     -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
/* 1936 */     transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
/* 1937 */     opacity: 1;
/* 1938 */   }
/* 1939 */
/* 1940 */   80% {
/* 1941 */     -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
/* 1942 */     transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
/* 1943 */   }
/* 1944 */
/* 1945 */   to {
/* 1946 */     -webkit-transform: perspective(400px);
/* 1947 */     transform: perspective(400px);
/* 1948 */   }
/* 1949 */ }
/* 1950 */

/* animate.css */

/* 1951 */ @keyframes flipInY {
/* 1952 */   from {
/* 1953 */     -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
/* 1954 */     transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
/* 1955 */     -webkit-animation-timing-function: ease-in;
/* 1956 */     animation-timing-function: ease-in;
/* 1957 */     opacity: 0;
/* 1958 */   }
/* 1959 */
/* 1960 */   40% {
/* 1961 */     -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
/* 1962 */     transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
/* 1963 */     -webkit-animation-timing-function: ease-in;
/* 1964 */     animation-timing-function: ease-in;
/* 1965 */   }
/* 1966 */
/* 1967 */   60% {
/* 1968 */     -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
/* 1969 */     transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
/* 1970 */     opacity: 1;
/* 1971 */   }
/* 1972 */
/* 1973 */   80% {
/* 1974 */     -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
/* 1975 */     transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
/* 1976 */   }
/* 1977 */
/* 1978 */   to {
/* 1979 */     -webkit-transform: perspective(400px);
/* 1980 */     transform: perspective(400px);
/* 1981 */   }
/* 1982 */ }
/* 1983 */
/* 1984 */ .flipInY {
/* 1985 */   -webkit-backface-visibility: visible !important;
/* 1986 */   backface-visibility: visible !important;
/* 1987 */   -webkit-animation-name: flipInY;
/* 1988 */   animation-name: flipInY;
/* 1989 */ }
/* 1990 */
/* 1991 */ @-webkit-keyframes flipOutX {
/* 1992 */   from {
/* 1993 */     -webkit-transform: perspective(400px);
/* 1994 */     transform: perspective(400px);
/* 1995 */   }
/* 1996 */
/* 1997 */   30% {
/* 1998 */     -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
/* 1999 */     transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
/* 2000 */     opacity: 1;

/* animate.css */

/* 2001 */   }
/* 2002 */
/* 2003 */   to {
/* 2004 */     -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
/* 2005 */     transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
/* 2006 */     opacity: 0;
/* 2007 */   }
/* 2008 */ }
/* 2009 */
/* 2010 */ @keyframes flipOutX {
/* 2011 */   from {
/* 2012 */     -webkit-transform: perspective(400px);
/* 2013 */     transform: perspective(400px);
/* 2014 */   }
/* 2015 */
/* 2016 */   30% {
/* 2017 */     -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
/* 2018 */     transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
/* 2019 */     opacity: 1;
/* 2020 */   }
/* 2021 */
/* 2022 */   to {
/* 2023 */     -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
/* 2024 */     transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
/* 2025 */     opacity: 0;
/* 2026 */   }
/* 2027 */ }
/* 2028 */
/* 2029 */ .flipOutX {
/* 2030 */   -webkit-animation-name: flipOutX;
/* 2031 */   animation-name: flipOutX;
/* 2032 */   -webkit-backface-visibility: visible !important;
/* 2033 */   backface-visibility: visible !important;
/* 2034 */ }
/* 2035 */
/* 2036 */ @-webkit-keyframes flipOutY {
/* 2037 */   from {
/* 2038 */     -webkit-transform: perspective(400px);
/* 2039 */     transform: perspective(400px);
/* 2040 */   }
/* 2041 */
/* 2042 */   30% {
/* 2043 */     -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
/* 2044 */     transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
/* 2045 */     opacity: 1;
/* 2046 */   }
/* 2047 */
/* 2048 */   to {
/* 2049 */     -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
/* 2050 */     transform: perspective(400px) rotate3d(0, 1, 0, 90deg);

/* animate.css */

/* 2051 */     opacity: 0;
/* 2052 */   }
/* 2053 */ }
/* 2054 */
/* 2055 */ @keyframes flipOutY {
/* 2056 */   from {
/* 2057 */     -webkit-transform: perspective(400px);
/* 2058 */     transform: perspective(400px);
/* 2059 */   }
/* 2060 */
/* 2061 */   30% {
/* 2062 */     -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
/* 2063 */     transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
/* 2064 */     opacity: 1;
/* 2065 */   }
/* 2066 */
/* 2067 */   to {
/* 2068 */     -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
/* 2069 */     transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
/* 2070 */     opacity: 0;
/* 2071 */   }
/* 2072 */ }
/* 2073 */
/* 2074 */ .flipOutY {
/* 2075 */   -webkit-backface-visibility: visible !important;
/* 2076 */   backface-visibility: visible !important;
/* 2077 */   -webkit-animation-name: flipOutY;
/* 2078 */   animation-name: flipOutY;
/* 2079 */ }
/* 2080 */
/* 2081 */ @-webkit-keyframes lightSpeedIn {
/* 2082 */   from {
/* 2083 */     -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
/* 2084 */     transform: translate3d(100%, 0, 0) skewX(-30deg);
/* 2085 */     opacity: 0;
/* 2086 */   }
/* 2087 */
/* 2088 */   60% {
/* 2089 */     -webkit-transform: skewX(20deg);
/* 2090 */     transform: skewX(20deg);
/* 2091 */     opacity: 1;
/* 2092 */   }
/* 2093 */
/* 2094 */   80% {
/* 2095 */     -webkit-transform: skewX(-5deg);
/* 2096 */     transform: skewX(-5deg);
/* 2097 */     opacity: 1;
/* 2098 */   }
/* 2099 */
/* 2100 */   to {

/* animate.css */

/* 2101 */     -webkit-transform: none;
/* 2102 */     transform: none;
/* 2103 */     opacity: 1;
/* 2104 */   }
/* 2105 */ }
/* 2106 */
/* 2107 */ @keyframes lightSpeedIn {
/* 2108 */   from {
/* 2109 */     -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
/* 2110 */     transform: translate3d(100%, 0, 0) skewX(-30deg);
/* 2111 */     opacity: 0;
/* 2112 */   }
/* 2113 */
/* 2114 */   60% {
/* 2115 */     -webkit-transform: skewX(20deg);
/* 2116 */     transform: skewX(20deg);
/* 2117 */     opacity: 1;
/* 2118 */   }
/* 2119 */
/* 2120 */   80% {
/* 2121 */     -webkit-transform: skewX(-5deg);
/* 2122 */     transform: skewX(-5deg);
/* 2123 */     opacity: 1;
/* 2124 */   }
/* 2125 */
/* 2126 */   to {
/* 2127 */     -webkit-transform: none;
/* 2128 */     transform: none;
/* 2129 */     opacity: 1;
/* 2130 */   }
/* 2131 */ }
/* 2132 */
/* 2133 */ .lightSpeedIn {
/* 2134 */   -webkit-animation-name: lightSpeedIn;
/* 2135 */   animation-name: lightSpeedIn;
/* 2136 */   -webkit-animation-timing-function: ease-out;
/* 2137 */   animation-timing-function: ease-out;
/* 2138 */ }
/* 2139 */
/* 2140 */ @-webkit-keyframes lightSpeedOut {
/* 2141 */   from {
/* 2142 */     opacity: 1;
/* 2143 */   }
/* 2144 */
/* 2145 */   to {
/* 2146 */     -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
/* 2147 */     transform: translate3d(100%, 0, 0) skewX(30deg);
/* 2148 */     opacity: 0;
/* 2149 */   }
/* 2150 */ }

/* animate.css */

/* 2151 */
/* 2152 */ @keyframes lightSpeedOut {
/* 2153 */   from {
/* 2154 */     opacity: 1;
/* 2155 */   }
/* 2156 */
/* 2157 */   to {
/* 2158 */     -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
/* 2159 */     transform: translate3d(100%, 0, 0) skewX(30deg);
/* 2160 */     opacity: 0;
/* 2161 */   }
/* 2162 */ }
/* 2163 */
/* 2164 */ .lightSpeedOut {
/* 2165 */   -webkit-animation-name: lightSpeedOut;
/* 2166 */   animation-name: lightSpeedOut;
/* 2167 */   -webkit-animation-timing-function: ease-in;
/* 2168 */   animation-timing-function: ease-in;
/* 2169 */ }
/* 2170 */
/* 2171 */ @-webkit-keyframes rotateIn {
/* 2172 */   from {
/* 2173 */     -webkit-transform-origin: center;
/* 2174 */     transform-origin: center;
/* 2175 */     -webkit-transform: rotate3d(0, 0, 1, -200deg);
/* 2176 */     transform: rotate3d(0, 0, 1, -200deg);
/* 2177 */     opacity: 0;
/* 2178 */   }
/* 2179 */
/* 2180 */   to {
/* 2181 */     -webkit-transform-origin: center;
/* 2182 */     transform-origin: center;
/* 2183 */     -webkit-transform: none;
/* 2184 */     transform: none;
/* 2185 */     opacity: 1;
/* 2186 */   }
/* 2187 */ }
/* 2188 */
/* 2189 */ @keyframes rotateIn {
/* 2190 */   from {
/* 2191 */     -webkit-transform-origin: center;
/* 2192 */     transform-origin: center;
/* 2193 */     -webkit-transform: rotate3d(0, 0, 1, -200deg);
/* 2194 */     transform: rotate3d(0, 0, 1, -200deg);
/* 2195 */     opacity: 0;
/* 2196 */   }
/* 2197 */
/* 2198 */   to {
/* 2199 */     -webkit-transform-origin: center;
/* 2200 */     transform-origin: center;

/* animate.css */

/* 2201 */     -webkit-transform: none;
/* 2202 */     transform: none;
/* 2203 */     opacity: 1;
/* 2204 */   }
/* 2205 */ }
/* 2206 */
/* 2207 */ .rotateIn {
/* 2208 */   -webkit-animation-name: rotateIn;
/* 2209 */   animation-name: rotateIn;
/* 2210 */ }
/* 2211 */
/* 2212 */ @-webkit-keyframes rotateInDownLeft {
/* 2213 */   from {
/* 2214 */     -webkit-transform-origin: left bottom;
/* 2215 */     transform-origin: left bottom;
/* 2216 */     -webkit-transform: rotate3d(0, 0, 1, -45deg);
/* 2217 */     transform: rotate3d(0, 0, 1, -45deg);
/* 2218 */     opacity: 0;
/* 2219 */   }
/* 2220 */
/* 2221 */   to {
/* 2222 */     -webkit-transform-origin: left bottom;
/* 2223 */     transform-origin: left bottom;
/* 2224 */     -webkit-transform: none;
/* 2225 */     transform: none;
/* 2226 */     opacity: 1;
/* 2227 */   }
/* 2228 */ }
/* 2229 */
/* 2230 */ @keyframes rotateInDownLeft {
/* 2231 */   from {
/* 2232 */     -webkit-transform-origin: left bottom;
/* 2233 */     transform-origin: left bottom;
/* 2234 */     -webkit-transform: rotate3d(0, 0, 1, -45deg);
/* 2235 */     transform: rotate3d(0, 0, 1, -45deg);
/* 2236 */     opacity: 0;
/* 2237 */   }
/* 2238 */
/* 2239 */   to {
/* 2240 */     -webkit-transform-origin: left bottom;
/* 2241 */     transform-origin: left bottom;
/* 2242 */     -webkit-transform: none;
/* 2243 */     transform: none;
/* 2244 */     opacity: 1;
/* 2245 */   }
/* 2246 */ }
/* 2247 */
/* 2248 */ .rotateInDownLeft {
/* 2249 */   -webkit-animation-name: rotateInDownLeft;
/* 2250 */   animation-name: rotateInDownLeft;

/* animate.css */

/* 2251 */ }
/* 2252 */
/* 2253 */ @-webkit-keyframes rotateInDownRight {
/* 2254 */   from {
/* 2255 */     -webkit-transform-origin: right bottom;
/* 2256 */     transform-origin: right bottom;
/* 2257 */     -webkit-transform: rotate3d(0, 0, 1, 45deg);
/* 2258 */     transform: rotate3d(0, 0, 1, 45deg);
/* 2259 */     opacity: 0;
/* 2260 */   }
/* 2261 */
/* 2262 */   to {
/* 2263 */     -webkit-transform-origin: right bottom;
/* 2264 */     transform-origin: right bottom;
/* 2265 */     -webkit-transform: none;
/* 2266 */     transform: none;
/* 2267 */     opacity: 1;
/* 2268 */   }
/* 2269 */ }
/* 2270 */
/* 2271 */ @keyframes rotateInDownRight {
/* 2272 */   from {
/* 2273 */     -webkit-transform-origin: right bottom;
/* 2274 */     transform-origin: right bottom;
/* 2275 */     -webkit-transform: rotate3d(0, 0, 1, 45deg);
/* 2276 */     transform: rotate3d(0, 0, 1, 45deg);
/* 2277 */     opacity: 0;
/* 2278 */   }
/* 2279 */
/* 2280 */   to {
/* 2281 */     -webkit-transform-origin: right bottom;
/* 2282 */     transform-origin: right bottom;
/* 2283 */     -webkit-transform: none;
/* 2284 */     transform: none;
/* 2285 */     opacity: 1;
/* 2286 */   }
/* 2287 */ }
/* 2288 */
/* 2289 */ .rotateInDownRight {
/* 2290 */   -webkit-animation-name: rotateInDownRight;
/* 2291 */   animation-name: rotateInDownRight;
/* 2292 */ }
/* 2293 */
/* 2294 */ @-webkit-keyframes rotateInUpLeft {
/* 2295 */   from {
/* 2296 */     -webkit-transform-origin: left bottom;
/* 2297 */     transform-origin: left bottom;
/* 2298 */     -webkit-transform: rotate3d(0, 0, 1, 45deg);
/* 2299 */     transform: rotate3d(0, 0, 1, 45deg);
/* 2300 */     opacity: 0;

/* animate.css */

/* 2301 */   }
/* 2302 */
/* 2303 */   to {
/* 2304 */     -webkit-transform-origin: left bottom;
/* 2305 */     transform-origin: left bottom;
/* 2306 */     -webkit-transform: none;
/* 2307 */     transform: none;
/* 2308 */     opacity: 1;
/* 2309 */   }
/* 2310 */ }
/* 2311 */
/* 2312 */ @keyframes rotateInUpLeft {
/* 2313 */   from {
/* 2314 */     -webkit-transform-origin: left bottom;
/* 2315 */     transform-origin: left bottom;
/* 2316 */     -webkit-transform: rotate3d(0, 0, 1, 45deg);
/* 2317 */     transform: rotate3d(0, 0, 1, 45deg);
/* 2318 */     opacity: 0;
/* 2319 */   }
/* 2320 */
/* 2321 */   to {
/* 2322 */     -webkit-transform-origin: left bottom;
/* 2323 */     transform-origin: left bottom;
/* 2324 */     -webkit-transform: none;
/* 2325 */     transform: none;
/* 2326 */     opacity: 1;
/* 2327 */   }
/* 2328 */ }
/* 2329 */
/* 2330 */ .rotateInUpLeft {
/* 2331 */   -webkit-animation-name: rotateInUpLeft;
/* 2332 */   animation-name: rotateInUpLeft;
/* 2333 */ }
/* 2334 */
/* 2335 */ @-webkit-keyframes rotateInUpRight {
/* 2336 */   from {
/* 2337 */     -webkit-transform-origin: right bottom;
/* 2338 */     transform-origin: right bottom;
/* 2339 */     -webkit-transform: rotate3d(0, 0, 1, -90deg);
/* 2340 */     transform: rotate3d(0, 0, 1, -90deg);
/* 2341 */     opacity: 0;
/* 2342 */   }
/* 2343 */
/* 2344 */   to {
/* 2345 */     -webkit-transform-origin: right bottom;
/* 2346 */     transform-origin: right bottom;
/* 2347 */     -webkit-transform: none;
/* 2348 */     transform: none;
/* 2349 */     opacity: 1;
/* 2350 */   }

/* animate.css */

/* 2351 */ }
/* 2352 */
/* 2353 */ @keyframes rotateInUpRight {
/* 2354 */   from {
/* 2355 */     -webkit-transform-origin: right bottom;
/* 2356 */     transform-origin: right bottom;
/* 2357 */     -webkit-transform: rotate3d(0, 0, 1, -90deg);
/* 2358 */     transform: rotate3d(0, 0, 1, -90deg);
/* 2359 */     opacity: 0;
/* 2360 */   }
/* 2361 */
/* 2362 */   to {
/* 2363 */     -webkit-transform-origin: right bottom;
/* 2364 */     transform-origin: right bottom;
/* 2365 */     -webkit-transform: none;
/* 2366 */     transform: none;
/* 2367 */     opacity: 1;
/* 2368 */   }
/* 2369 */ }
/* 2370 */
/* 2371 */ .rotateInUpRight {
/* 2372 */   -webkit-animation-name: rotateInUpRight;
/* 2373 */   animation-name: rotateInUpRight;
/* 2374 */ }
/* 2375 */
/* 2376 */ @-webkit-keyframes rotateOut {
/* 2377 */   from {
/* 2378 */     -webkit-transform-origin: center;
/* 2379 */     transform-origin: center;
/* 2380 */     opacity: 1;
/* 2381 */   }
/* 2382 */
/* 2383 */   to {
/* 2384 */     -webkit-transform-origin: center;
/* 2385 */     transform-origin: center;
/* 2386 */     -webkit-transform: rotate3d(0, 0, 1, 200deg);
/* 2387 */     transform: rotate3d(0, 0, 1, 200deg);
/* 2388 */     opacity: 0;
/* 2389 */   }
/* 2390 */ }
/* 2391 */
/* 2392 */ @keyframes rotateOut {
/* 2393 */   from {
/* 2394 */     -webkit-transform-origin: center;
/* 2395 */     transform-origin: center;
/* 2396 */     opacity: 1;
/* 2397 */   }
/* 2398 */
/* 2399 */   to {
/* 2400 */     -webkit-transform-origin: center;

/* animate.css */

/* 2401 */     transform-origin: center;
/* 2402 */     -webkit-transform: rotate3d(0, 0, 1, 200deg);
/* 2403 */     transform: rotate3d(0, 0, 1, 200deg);
/* 2404 */     opacity: 0;
/* 2405 */   }
/* 2406 */ }
/* 2407 */
/* 2408 */ .rotateOut {
/* 2409 */   -webkit-animation-name: rotateOut;
/* 2410 */   animation-name: rotateOut;
/* 2411 */ }
/* 2412 */
/* 2413 */ @-webkit-keyframes rotateOutDownLeft {
/* 2414 */   from {
/* 2415 */     -webkit-transform-origin: left bottom;
/* 2416 */     transform-origin: left bottom;
/* 2417 */     opacity: 1;
/* 2418 */   }
/* 2419 */
/* 2420 */   to {
/* 2421 */     -webkit-transform-origin: left bottom;
/* 2422 */     transform-origin: left bottom;
/* 2423 */     -webkit-transform: rotate3d(0, 0, 1, 45deg);
/* 2424 */     transform: rotate3d(0, 0, 1, 45deg);
/* 2425 */     opacity: 0;
/* 2426 */   }
/* 2427 */ }
/* 2428 */
/* 2429 */ @keyframes rotateOutDownLeft {
/* 2430 */   from {
/* 2431 */     -webkit-transform-origin: left bottom;
/* 2432 */     transform-origin: left bottom;
/* 2433 */     opacity: 1;
/* 2434 */   }
/* 2435 */
/* 2436 */   to {
/* 2437 */     -webkit-transform-origin: left bottom;
/* 2438 */     transform-origin: left bottom;
/* 2439 */     -webkit-transform: rotate3d(0, 0, 1, 45deg);
/* 2440 */     transform: rotate3d(0, 0, 1, 45deg);
/* 2441 */     opacity: 0;
/* 2442 */   }
/* 2443 */ }
/* 2444 */
/* 2445 */ .rotateOutDownLeft {
/* 2446 */   -webkit-animation-name: rotateOutDownLeft;
/* 2447 */   animation-name: rotateOutDownLeft;
/* 2448 */ }
/* 2449 */
/* 2450 */ @-webkit-keyframes rotateOutDownRight {

/* animate.css */

/* 2451 */   from {
/* 2452 */     -webkit-transform-origin: right bottom;
/* 2453 */     transform-origin: right bottom;
/* 2454 */     opacity: 1;
/* 2455 */   }
/* 2456 */
/* 2457 */   to {
/* 2458 */     -webkit-transform-origin: right bottom;
/* 2459 */     transform-origin: right bottom;
/* 2460 */     -webkit-transform: rotate3d(0, 0, 1, -45deg);
/* 2461 */     transform: rotate3d(0, 0, 1, -45deg);
/* 2462 */     opacity: 0;
/* 2463 */   }
/* 2464 */ }
/* 2465 */
/* 2466 */ @keyframes rotateOutDownRight {
/* 2467 */   from {
/* 2468 */     -webkit-transform-origin: right bottom;
/* 2469 */     transform-origin: right bottom;
/* 2470 */     opacity: 1;
/* 2471 */   }
/* 2472 */
/* 2473 */   to {
/* 2474 */     -webkit-transform-origin: right bottom;
/* 2475 */     transform-origin: right bottom;
/* 2476 */     -webkit-transform: rotate3d(0, 0, 1, -45deg);
/* 2477 */     transform: rotate3d(0, 0, 1, -45deg);
/* 2478 */     opacity: 0;
/* 2479 */   }
/* 2480 */ }
/* 2481 */
/* 2482 */ .rotateOutDownRight {
/* 2483 */   -webkit-animation-name: rotateOutDownRight;
/* 2484 */   animation-name: rotateOutDownRight;
/* 2485 */ }
/* 2486 */
/* 2487 */ @-webkit-keyframes rotateOutUpLeft {
/* 2488 */   from {
/* 2489 */     -webkit-transform-origin: left bottom;
/* 2490 */     transform-origin: left bottom;
/* 2491 */     opacity: 1;
/* 2492 */   }
/* 2493 */
/* 2494 */   to {
/* 2495 */     -webkit-transform-origin: left bottom;
/* 2496 */     transform-origin: left bottom;
/* 2497 */     -webkit-transform: rotate3d(0, 0, 1, -45deg);
/* 2498 */     transform: rotate3d(0, 0, 1, -45deg);
/* 2499 */     opacity: 0;
/* 2500 */   }

/* animate.css */

/* 2501 */ }
/* 2502 */
/* 2503 */ @keyframes rotateOutUpLeft {
/* 2504 */   from {
/* 2505 */     -webkit-transform-origin: left bottom;
/* 2506 */     transform-origin: left bottom;
/* 2507 */     opacity: 1;
/* 2508 */   }
/* 2509 */
/* 2510 */   to {
/* 2511 */     -webkit-transform-origin: left bottom;
/* 2512 */     transform-origin: left bottom;
/* 2513 */     -webkit-transform: rotate3d(0, 0, 1, -45deg);
/* 2514 */     transform: rotate3d(0, 0, 1, -45deg);
/* 2515 */     opacity: 0;
/* 2516 */   }
/* 2517 */ }
/* 2518 */
/* 2519 */ .rotateOutUpLeft {
/* 2520 */   -webkit-animation-name: rotateOutUpLeft;
/* 2521 */   animation-name: rotateOutUpLeft;
/* 2522 */ }
/* 2523 */
/* 2524 */ @-webkit-keyframes rotateOutUpRight {
/* 2525 */   from {
/* 2526 */     -webkit-transform-origin: right bottom;
/* 2527 */     transform-origin: right bottom;
/* 2528 */     opacity: 1;
/* 2529 */   }
/* 2530 */
/* 2531 */   to {
/* 2532 */     -webkit-transform-origin: right bottom;
/* 2533 */     transform-origin: right bottom;
/* 2534 */     -webkit-transform: rotate3d(0, 0, 1, 90deg);
/* 2535 */     transform: rotate3d(0, 0, 1, 90deg);
/* 2536 */     opacity: 0;
/* 2537 */   }
/* 2538 */ }
/* 2539 */
/* 2540 */ @keyframes rotateOutUpRight {
/* 2541 */   from {
/* 2542 */     -webkit-transform-origin: right bottom;
/* 2543 */     transform-origin: right bottom;
/* 2544 */     opacity: 1;
/* 2545 */   }
/* 2546 */
/* 2547 */   to {
/* 2548 */     -webkit-transform-origin: right bottom;
/* 2549 */     transform-origin: right bottom;
/* 2550 */     -webkit-transform: rotate3d(0, 0, 1, 90deg);

/* animate.css */

/* 2551 */     transform: rotate3d(0, 0, 1, 90deg);
/* 2552 */     opacity: 0;
/* 2553 */   }
/* 2554 */ }
/* 2555 */
/* 2556 */ .rotateOutUpRight {
/* 2557 */   -webkit-animation-name: rotateOutUpRight;
/* 2558 */   animation-name: rotateOutUpRight;
/* 2559 */ }
/* 2560 */
/* 2561 */ @-webkit-keyframes hinge {
/* 2562 */   0% {
/* 2563 */     -webkit-transform-origin: top left;
/* 2564 */     transform-origin: top left;
/* 2565 */     -webkit-animation-timing-function: ease-in-out;
/* 2566 */     animation-timing-function: ease-in-out;
/* 2567 */   }
/* 2568 */
/* 2569 */   20%, 60% {
/* 2570 */     -webkit-transform: rotate3d(0, 0, 1, 80deg);
/* 2571 */     transform: rotate3d(0, 0, 1, 80deg);
/* 2572 */     -webkit-transform-origin: top left;
/* 2573 */     transform-origin: top left;
/* 2574 */     -webkit-animation-timing-function: ease-in-out;
/* 2575 */     animation-timing-function: ease-in-out;
/* 2576 */   }
/* 2577 */
/* 2578 */   40%, 80% {
/* 2579 */     -webkit-transform: rotate3d(0, 0, 1, 60deg);
/* 2580 */     transform: rotate3d(0, 0, 1, 60deg);
/* 2581 */     -webkit-transform-origin: top left;
/* 2582 */     transform-origin: top left;
/* 2583 */     -webkit-animation-timing-function: ease-in-out;
/* 2584 */     animation-timing-function: ease-in-out;
/* 2585 */     opacity: 1;
/* 2586 */   }
/* 2587 */
/* 2588 */   to {
/* 2589 */     -webkit-transform: translate3d(0, 700px, 0);
/* 2590 */     transform: translate3d(0, 700px, 0);
/* 2591 */     opacity: 0;
/* 2592 */   }
/* 2593 */ }
/* 2594 */
/* 2595 */ @keyframes hinge {
/* 2596 */   0% {
/* 2597 */     -webkit-transform-origin: top left;
/* 2598 */     transform-origin: top left;
/* 2599 */     -webkit-animation-timing-function: ease-in-out;
/* 2600 */     animation-timing-function: ease-in-out;

/* animate.css */

/* 2601 */   }
/* 2602 */
/* 2603 */   20%, 60% {
/* 2604 */     -webkit-transform: rotate3d(0, 0, 1, 80deg);
/* 2605 */     transform: rotate3d(0, 0, 1, 80deg);
/* 2606 */     -webkit-transform-origin: top left;
/* 2607 */     transform-origin: top left;
/* 2608 */     -webkit-animation-timing-function: ease-in-out;
/* 2609 */     animation-timing-function: ease-in-out;
/* 2610 */   }
/* 2611 */
/* 2612 */   40%, 80% {
/* 2613 */     -webkit-transform: rotate3d(0, 0, 1, 60deg);
/* 2614 */     transform: rotate3d(0, 0, 1, 60deg);
/* 2615 */     -webkit-transform-origin: top left;
/* 2616 */     transform-origin: top left;
/* 2617 */     -webkit-animation-timing-function: ease-in-out;
/* 2618 */     animation-timing-function: ease-in-out;
/* 2619 */     opacity: 1;
/* 2620 */   }
/* 2621 */
/* 2622 */   to {
/* 2623 */     -webkit-transform: translate3d(0, 700px, 0);
/* 2624 */     transform: translate3d(0, 700px, 0);
/* 2625 */     opacity: 0;
/* 2626 */   }
/* 2627 */ }
/* 2628 */
/* 2629 */ .hinge {
/* 2630 */   -webkit-animation-name: hinge;
/* 2631 */   animation-name: hinge;
/* 2632 */ }
/* 2633 */
/* 2634 */ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
/* 2635 */
/* 2636 */ @-webkit-keyframes rollIn {
/* 2637 */   from {
/* 2638 */     opacity: 0;
/* 2639 */     -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
/* 2640 */     transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
/* 2641 */   }
/* 2642 */
/* 2643 */   to {
/* 2644 */     opacity: 1;
/* 2645 */     -webkit-transform: none;
/* 2646 */     transform: none;
/* 2647 */   }
/* 2648 */ }
/* 2649 */
/* 2650 */ @keyframes rollIn {

/* animate.css */

/* 2651 */   from {
/* 2652 */     opacity: 0;
/* 2653 */     -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
/* 2654 */     transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
/* 2655 */   }
/* 2656 */
/* 2657 */   to {
/* 2658 */     opacity: 1;
/* 2659 */     -webkit-transform: none;
/* 2660 */     transform: none;
/* 2661 */   }
/* 2662 */ }
/* 2663 */
/* 2664 */ .rollIn {
/* 2665 */   -webkit-animation-name: rollIn;
/* 2666 */   animation-name: rollIn;
/* 2667 */ }
/* 2668 */
/* 2669 */ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
/* 2670 */
/* 2671 */ @-webkit-keyframes rollOut {
/* 2672 */   from {
/* 2673 */     opacity: 1;
/* 2674 */   }
/* 2675 */
/* 2676 */   to {
/* 2677 */     opacity: 0;
/* 2678 */     -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
/* 2679 */     transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
/* 2680 */   }
/* 2681 */ }
/* 2682 */
/* 2683 */ @keyframes rollOut {
/* 2684 */   from {
/* 2685 */     opacity: 1;
/* 2686 */   }
/* 2687 */
/* 2688 */   to {
/* 2689 */     opacity: 0;
/* 2690 */     -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
/* 2691 */     transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
/* 2692 */   }
/* 2693 */ }
/* 2694 */
/* 2695 */ .rollOut {
/* 2696 */   -webkit-animation-name: rollOut;
/* 2697 */   animation-name: rollOut;
/* 2698 */ }
/* 2699 */
/* 2700 */ @-webkit-keyframes zoomIn {

/* animate.css */

/* 2701 */   from {
/* 2702 */     opacity: 0;
/* 2703 */     -webkit-transform: scale3d(.3, .3, .3);
/* 2704 */     transform: scale3d(.3, .3, .3);
/* 2705 */   }
/* 2706 */
/* 2707 */   50% {
/* 2708 */     opacity: 1;
/* 2709 */   }
/* 2710 */ }
/* 2711 */
/* 2712 */ @keyframes zoomIn {
/* 2713 */   from {
/* 2714 */     opacity: 0;
/* 2715 */     -webkit-transform: scale3d(.3, .3, .3);
/* 2716 */     transform: scale3d(.3, .3, .3);
/* 2717 */   }
/* 2718 */
/* 2719 */   50% {
/* 2720 */     opacity: 1;
/* 2721 */   }
/* 2722 */ }
/* 2723 */
/* 2724 */ .zoomIn {
/* 2725 */   -webkit-animation-name: zoomIn;
/* 2726 */   animation-name: zoomIn;
/* 2727 */ }
/* 2728 */
/* 2729 */ @-webkit-keyframes zoomInDown {
/* 2730 */   from {
/* 2731 */     opacity: 0;
/* 2732 */     -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
/* 2733 */     transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
/* 2734 */     -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 2735 */     animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 2736 */   }
/* 2737 */
/* 2738 */   60% {
/* 2739 */     opacity: 1;
/* 2740 */     -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
/* 2741 */     transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
/* 2742 */     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 2743 */     animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 2744 */   }
/* 2745 */ }
/* 2746 */
/* 2747 */ @keyframes zoomInDown {
/* 2748 */   from {
/* 2749 */     opacity: 0;
/* 2750 */     -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);

/* animate.css */

/* 2751 */     transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
/* 2752 */     -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 2753 */     animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 2754 */   }
/* 2755 */
/* 2756 */   60% {
/* 2757 */     opacity: 1;
/* 2758 */     -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
/* 2759 */     transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
/* 2760 */     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 2761 */     animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 2762 */   }
/* 2763 */ }
/* 2764 */
/* 2765 */ .zoomInDown {
/* 2766 */   -webkit-animation-name: zoomInDown;
/* 2767 */   animation-name: zoomInDown;
/* 2768 */ }
/* 2769 */
/* 2770 */ @-webkit-keyframes zoomInLeft {
/* 2771 */   from {
/* 2772 */     opacity: 0;
/* 2773 */     -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
/* 2774 */     transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
/* 2775 */     -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 2776 */     animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 2777 */   }
/* 2778 */
/* 2779 */   60% {
/* 2780 */     opacity: 1;
/* 2781 */     -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
/* 2782 */     transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
/* 2783 */     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 2784 */     animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 2785 */   }
/* 2786 */ }
/* 2787 */
/* 2788 */ @keyframes zoomInLeft {
/* 2789 */   from {
/* 2790 */     opacity: 0;
/* 2791 */     -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
/* 2792 */     transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
/* 2793 */     -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 2794 */     animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 2795 */   }
/* 2796 */
/* 2797 */   60% {
/* 2798 */     opacity: 1;
/* 2799 */     -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
/* 2800 */     transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);

/* animate.css */

/* 2801 */     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 2802 */     animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 2803 */   }
/* 2804 */ }
/* 2805 */
/* 2806 */ .zoomInLeft {
/* 2807 */   -webkit-animation-name: zoomInLeft;
/* 2808 */   animation-name: zoomInLeft;
/* 2809 */ }
/* 2810 */
/* 2811 */ @-webkit-keyframes zoomInRight {
/* 2812 */   from {
/* 2813 */     opacity: 0;
/* 2814 */     -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
/* 2815 */     transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
/* 2816 */     -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 2817 */     animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 2818 */   }
/* 2819 */
/* 2820 */   60% {
/* 2821 */     opacity: 1;
/* 2822 */     -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
/* 2823 */     transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
/* 2824 */     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 2825 */     animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 2826 */   }
/* 2827 */ }
/* 2828 */
/* 2829 */ @keyframes zoomInRight {
/* 2830 */   from {
/* 2831 */     opacity: 0;
/* 2832 */     -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
/* 2833 */     transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
/* 2834 */     -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 2835 */     animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 2836 */   }
/* 2837 */
/* 2838 */   60% {
/* 2839 */     opacity: 1;
/* 2840 */     -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
/* 2841 */     transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
/* 2842 */     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 2843 */     animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 2844 */   }
/* 2845 */ }
/* 2846 */
/* 2847 */ .zoomInRight {
/* 2848 */   -webkit-animation-name: zoomInRight;
/* 2849 */   animation-name: zoomInRight;
/* 2850 */ }

/* animate.css */

/* 2851 */
/* 2852 */ @-webkit-keyframes zoomInUp {
/* 2853 */   from {
/* 2854 */     opacity: 0;
/* 2855 */     -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
/* 2856 */     transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
/* 2857 */     -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 2858 */     animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 2859 */   }
/* 2860 */
/* 2861 */   60% {
/* 2862 */     opacity: 1;
/* 2863 */     -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
/* 2864 */     transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
/* 2865 */     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 2866 */     animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 2867 */   }
/* 2868 */ }
/* 2869 */
/* 2870 */ @keyframes zoomInUp {
/* 2871 */   from {
/* 2872 */     opacity: 0;
/* 2873 */     -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
/* 2874 */     transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
/* 2875 */     -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 2876 */     animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 2877 */   }
/* 2878 */
/* 2879 */   60% {
/* 2880 */     opacity: 1;
/* 2881 */     -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
/* 2882 */     transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
/* 2883 */     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 2884 */     animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 2885 */   }
/* 2886 */ }
/* 2887 */
/* 2888 */ .zoomInUp {
/* 2889 */   -webkit-animation-name: zoomInUp;
/* 2890 */   animation-name: zoomInUp;
/* 2891 */ }
/* 2892 */
/* 2893 */ @-webkit-keyframes zoomOut {
/* 2894 */   from {
/* 2895 */     opacity: 1;
/* 2896 */   }
/* 2897 */
/* 2898 */   50% {
/* 2899 */     opacity: 0;
/* 2900 */     -webkit-transform: scale3d(.3, .3, .3);

/* animate.css */

/* 2901 */     transform: scale3d(.3, .3, .3);
/* 2902 */   }
/* 2903 */
/* 2904 */   to {
/* 2905 */     opacity: 0;
/* 2906 */   }
/* 2907 */ }
/* 2908 */
/* 2909 */ @keyframes zoomOut {
/* 2910 */   from {
/* 2911 */     opacity: 1;
/* 2912 */   }
/* 2913 */
/* 2914 */   50% {
/* 2915 */     opacity: 0;
/* 2916 */     -webkit-transform: scale3d(.3, .3, .3);
/* 2917 */     transform: scale3d(.3, .3, .3);
/* 2918 */   }
/* 2919 */
/* 2920 */   to {
/* 2921 */     opacity: 0;
/* 2922 */   }
/* 2923 */ }
/* 2924 */
/* 2925 */ .zoomOut {
/* 2926 */   -webkit-animation-name: zoomOut;
/* 2927 */   animation-name: zoomOut;
/* 2928 */ }
/* 2929 */
/* 2930 */ @-webkit-keyframes zoomOutDown {
/* 2931 */   40% {
/* 2932 */     opacity: 1;
/* 2933 */     -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
/* 2934 */     transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
/* 2935 */     -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 2936 */     animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 2937 */   }
/* 2938 */
/* 2939 */   to {
/* 2940 */     opacity: 0;
/* 2941 */     -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
/* 2942 */     transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
/* 2943 */     -webkit-transform-origin: center bottom;
/* 2944 */     transform-origin: center bottom;
/* 2945 */     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 2946 */     animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 2947 */   }
/* 2948 */ }
/* 2949 */
/* 2950 */ @keyframes zoomOutDown {

/* animate.css */

/* 2951 */   40% {
/* 2952 */     opacity: 1;
/* 2953 */     -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
/* 2954 */     transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
/* 2955 */     -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 2956 */     animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 2957 */   }
/* 2958 */
/* 2959 */   to {
/* 2960 */     opacity: 0;
/* 2961 */     -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
/* 2962 */     transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
/* 2963 */     -webkit-transform-origin: center bottom;
/* 2964 */     transform-origin: center bottom;
/* 2965 */     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 2966 */     animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 2967 */   }
/* 2968 */ }
/* 2969 */
/* 2970 */ .zoomOutDown {
/* 2971 */   -webkit-animation-name: zoomOutDown;
/* 2972 */   animation-name: zoomOutDown;
/* 2973 */ }
/* 2974 */
/* 2975 */ @-webkit-keyframes zoomOutLeft {
/* 2976 */   40% {
/* 2977 */     opacity: 1;
/* 2978 */     -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
/* 2979 */     transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
/* 2980 */   }
/* 2981 */
/* 2982 */   to {
/* 2983 */     opacity: 0;
/* 2984 */     -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
/* 2985 */     transform: scale(.1) translate3d(-2000px, 0, 0);
/* 2986 */     -webkit-transform-origin: left center;
/* 2987 */     transform-origin: left center;
/* 2988 */   }
/* 2989 */ }
/* 2990 */
/* 2991 */ @keyframes zoomOutLeft {
/* 2992 */   40% {
/* 2993 */     opacity: 1;
/* 2994 */     -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
/* 2995 */     transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
/* 2996 */   }
/* 2997 */
/* 2998 */   to {
/* 2999 */     opacity: 0;
/* 3000 */     -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);

/* animate.css */

/* 3001 */     transform: scale(.1) translate3d(-2000px, 0, 0);
/* 3002 */     -webkit-transform-origin: left center;
/* 3003 */     transform-origin: left center;
/* 3004 */   }
/* 3005 */ }
/* 3006 */
/* 3007 */ .zoomOutLeft {
/* 3008 */   -webkit-animation-name: zoomOutLeft;
/* 3009 */   animation-name: zoomOutLeft;
/* 3010 */ }
/* 3011 */
/* 3012 */ @-webkit-keyframes zoomOutRight {
/* 3013 */   40% {
/* 3014 */     opacity: 1;
/* 3015 */     -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
/* 3016 */     transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
/* 3017 */   }
/* 3018 */
/* 3019 */   to {
/* 3020 */     opacity: 0;
/* 3021 */     -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
/* 3022 */     transform: scale(.1) translate3d(2000px, 0, 0);
/* 3023 */     -webkit-transform-origin: right center;
/* 3024 */     transform-origin: right center;
/* 3025 */   }
/* 3026 */ }
/* 3027 */
/* 3028 */ @keyframes zoomOutRight {
/* 3029 */   40% {
/* 3030 */     opacity: 1;
/* 3031 */     -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
/* 3032 */     transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
/* 3033 */   }
/* 3034 */
/* 3035 */   to {
/* 3036 */     opacity: 0;
/* 3037 */     -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
/* 3038 */     transform: scale(.1) translate3d(2000px, 0, 0);
/* 3039 */     -webkit-transform-origin: right center;
/* 3040 */     transform-origin: right center;
/* 3041 */   }
/* 3042 */ }
/* 3043 */
/* 3044 */ .zoomOutRight {
/* 3045 */   -webkit-animation-name: zoomOutRight;
/* 3046 */   animation-name: zoomOutRight;
/* 3047 */ }
/* 3048 */
/* 3049 */ @-webkit-keyframes zoomOutUp {
/* 3050 */   40% {

/* animate.css */

/* 3051 */     opacity: 1;
/* 3052 */     -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
/* 3053 */     transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
/* 3054 */     -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 3055 */     animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 3056 */   }
/* 3057 */
/* 3058 */   to {
/* 3059 */     opacity: 0;
/* 3060 */     -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
/* 3061 */     transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
/* 3062 */     -webkit-transform-origin: center bottom;
/* 3063 */     transform-origin: center bottom;
/* 3064 */     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 3065 */     animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 3066 */   }
/* 3067 */ }
/* 3068 */
/* 3069 */ @keyframes zoomOutUp {
/* 3070 */   40% {
/* 3071 */     opacity: 1;
/* 3072 */     -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
/* 3073 */     transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
/* 3074 */     -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 3075 */     animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
/* 3076 */   }
/* 3077 */
/* 3078 */   to {
/* 3079 */     opacity: 0;
/* 3080 */     -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
/* 3081 */     transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
/* 3082 */     -webkit-transform-origin: center bottom;
/* 3083 */     transform-origin: center bottom;
/* 3084 */     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 3085 */     animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
/* 3086 */   }
/* 3087 */ }
/* 3088 */
/* 3089 */ .zoomOutUp {
/* 3090 */   -webkit-animation-name: zoomOutUp;
/* 3091 */   animation-name: zoomOutUp;
/* 3092 */ }
/* 3093 */
/* 3094 */ @-webkit-keyframes slideInDown {
/* 3095 */   from {
/* 3096 */     -webkit-transform: translate3d(0, -100%, 0);
/* 3097 */     transform: translate3d(0, -100%, 0);
/* 3098 */     visibility: visible;
/* 3099 */   }
/* 3100 */

/* animate.css */

/* 3101 */   to {
/* 3102 */     -webkit-transform: translate3d(0, 0, 0);
/* 3103 */     transform: translate3d(0, 0, 0);
/* 3104 */   }
/* 3105 */ }
/* 3106 */
/* 3107 */ @keyframes slideInDown {
/* 3108 */   from {
/* 3109 */     -webkit-transform: translate3d(0, -100%, 0);
/* 3110 */     transform: translate3d(0, -100%, 0);
/* 3111 */     visibility: visible;
/* 3112 */   }
/* 3113 */
/* 3114 */   to {
/* 3115 */     -webkit-transform: translate3d(0, 0, 0);
/* 3116 */     transform: translate3d(0, 0, 0);
/* 3117 */   }
/* 3118 */ }
/* 3119 */
/* 3120 */ .slideInDown {
/* 3121 */   -webkit-animation-name: slideInDown;
/* 3122 */   animation-name: slideInDown;
/* 3123 */ }
/* 3124 */
/* 3125 */ @-webkit-keyframes slideInLeft {
/* 3126 */   from {
/* 3127 */     -webkit-transform: translate3d(-100%, 0, 0);
/* 3128 */     transform: translate3d(-100%, 0, 0);
/* 3129 */     visibility: visible;
/* 3130 */   }
/* 3131 */
/* 3132 */   to {
/* 3133 */     -webkit-transform: translate3d(0, 0, 0);
/* 3134 */     transform: translate3d(0, 0, 0);
/* 3135 */   }
/* 3136 */ }
/* 3137 */
/* 3138 */ @keyframes slideInLeft {
/* 3139 */   from {
/* 3140 */     -webkit-transform: translate3d(-100%, 0, 0);
/* 3141 */     transform: translate3d(-100%, 0, 0);
/* 3142 */     visibility: visible;
/* 3143 */   }
/* 3144 */
/* 3145 */   to {
/* 3146 */     -webkit-transform: translate3d(0, 0, 0);
/* 3147 */     transform: translate3d(0, 0, 0);
/* 3148 */   }
/* 3149 */ }
/* 3150 */

/* animate.css */

/* 3151 */ .slideInLeft {
/* 3152 */   -webkit-animation-name: slideInLeft;
/* 3153 */   animation-name: slideInLeft;
/* 3154 */ }
/* 3155 */
/* 3156 */ @-webkit-keyframes slideInRight {
/* 3157 */   from {
/* 3158 */     -webkit-transform: translate3d(100%, 0, 0);
/* 3159 */     transform: translate3d(100%, 0, 0);
/* 3160 */     visibility: visible;
/* 3161 */   }
/* 3162 */
/* 3163 */   to {
/* 3164 */     -webkit-transform: translate3d(0, 0, 0);
/* 3165 */     transform: translate3d(0, 0, 0);
/* 3166 */   }
/* 3167 */ }
/* 3168 */
/* 3169 */ @keyframes slideInRight {
/* 3170 */   from {
/* 3171 */     -webkit-transform: translate3d(100%, 0, 0);
/* 3172 */     transform: translate3d(100%, 0, 0);
/* 3173 */     visibility: visible;
/* 3174 */   }
/* 3175 */
/* 3176 */   to {
/* 3177 */     -webkit-transform: translate3d(0, 0, 0);
/* 3178 */     transform: translate3d(0, 0, 0);
/* 3179 */   }
/* 3180 */ }
/* 3181 */
/* 3182 */ .slideInRight {
/* 3183 */   -webkit-animation-name: slideInRight;
/* 3184 */   animation-name: slideInRight;
/* 3185 */ }
/* 3186 */
/* 3187 */ @-webkit-keyframes slideInUp {
/* 3188 */   from {
/* 3189 */     -webkit-transform: translate3d(0, 100%, 0);
/* 3190 */     transform: translate3d(0, 100%, 0);
/* 3191 */     visibility: visible;
/* 3192 */   }
/* 3193 */
/* 3194 */   to {
/* 3195 */     -webkit-transform: translate3d(0, 0, 0);
/* 3196 */     transform: translate3d(0, 0, 0);
/* 3197 */   }
/* 3198 */ }
/* 3199 */
/* 3200 */ @keyframes slideInUp {

/* animate.css */

/* 3201 */   from {
/* 3202 */     -webkit-transform: translate3d(0, 100%, 0);
/* 3203 */     transform: translate3d(0, 100%, 0);
/* 3204 */     visibility: visible;
/* 3205 */   }
/* 3206 */
/* 3207 */   to {
/* 3208 */     -webkit-transform: translate3d(0, 0, 0);
/* 3209 */     transform: translate3d(0, 0, 0);
/* 3210 */   }
/* 3211 */ }
/* 3212 */
/* 3213 */ .slideInUp {
/* 3214 */   -webkit-animation-name: slideInUp;
/* 3215 */   animation-name: slideInUp;
/* 3216 */ }
/* 3217 */
/* 3218 */ @-webkit-keyframes slideOutDown {
/* 3219 */   from {
/* 3220 */     -webkit-transform: translate3d(0, 0, 0);
/* 3221 */     transform: translate3d(0, 0, 0);
/* 3222 */   }
/* 3223 */
/* 3224 */   to {
/* 3225 */     visibility: hidden;
/* 3226 */     -webkit-transform: translate3d(0, 100%, 0);
/* 3227 */     transform: translate3d(0, 100%, 0);
/* 3228 */   }
/* 3229 */ }
/* 3230 */
/* 3231 */ @keyframes slideOutDown {
/* 3232 */   from {
/* 3233 */     -webkit-transform: translate3d(0, 0, 0);
/* 3234 */     transform: translate3d(0, 0, 0);
/* 3235 */   }
/* 3236 */
/* 3237 */   to {
/* 3238 */     visibility: hidden;
/* 3239 */     -webkit-transform: translate3d(0, 100%, 0);
/* 3240 */     transform: translate3d(0, 100%, 0);
/* 3241 */   }
/* 3242 */ }
/* 3243 */
/* 3244 */ .slideOutDown {
/* 3245 */   -webkit-animation-name: slideOutDown;
/* 3246 */   animation-name: slideOutDown;
/* 3247 */ }
/* 3248 */
/* 3249 */ @-webkit-keyframes slideOutLeft {
/* 3250 */   from {

/* animate.css */

/* 3251 */     -webkit-transform: translate3d(0, 0, 0);
/* 3252 */     transform: translate3d(0, 0, 0);
/* 3253 */   }
/* 3254 */
/* 3255 */   to {
/* 3256 */     visibility: hidden;
/* 3257 */     -webkit-transform: translate3d(-100%, 0, 0);
/* 3258 */     transform: translate3d(-100%, 0, 0);
/* 3259 */   }
/* 3260 */ }
/* 3261 */
/* 3262 */ @keyframes slideOutLeft {
/* 3263 */   from {
/* 3264 */     -webkit-transform: translate3d(0, 0, 0);
/* 3265 */     transform: translate3d(0, 0, 0);
/* 3266 */   }
/* 3267 */
/* 3268 */   to {
/* 3269 */     visibility: hidden;
/* 3270 */     -webkit-transform: translate3d(-100%, 0, 0);
/* 3271 */     transform: translate3d(-100%, 0, 0);
/* 3272 */   }
/* 3273 */ }
/* 3274 */
/* 3275 */ .slideOutLeft {
/* 3276 */   -webkit-animation-name: slideOutLeft;
/* 3277 */   animation-name: slideOutLeft;
/* 3278 */ }
/* 3279 */
/* 3280 */ @-webkit-keyframes slideOutRight {
/* 3281 */   from {
/* 3282 */     -webkit-transform: translate3d(0, 0, 0);
/* 3283 */     transform: translate3d(0, 0, 0);
/* 3284 */   }
/* 3285 */
/* 3286 */   to {
/* 3287 */     visibility: hidden;
/* 3288 */     -webkit-transform: translate3d(100%, 0, 0);
/* 3289 */     transform: translate3d(100%, 0, 0);
/* 3290 */   }
/* 3291 */ }
/* 3292 */
/* 3293 */ @keyframes slideOutRight {
/* 3294 */   from {
/* 3295 */     -webkit-transform: translate3d(0, 0, 0);
/* 3296 */     transform: translate3d(0, 0, 0);
/* 3297 */   }
/* 3298 */
/* 3299 */   to {
/* 3300 */     visibility: hidden;

/* animate.css */

/* 3301 */     -webkit-transform: translate3d(100%, 0, 0);
/* 3302 */     transform: translate3d(100%, 0, 0);
/* 3303 */   }
/* 3304 */ }
/* 3305 */
/* 3306 */ .slideOutRight {
/* 3307 */   -webkit-animation-name: slideOutRight;
/* 3308 */   animation-name: slideOutRight;
/* 3309 */ }
/* 3310 */
/* 3311 */ @-webkit-keyframes slideOutUp {
/* 3312 */   from {
/* 3313 */     -webkit-transform: translate3d(0, 0, 0);
/* 3314 */     transform: translate3d(0, 0, 0);
/* 3315 */   }
/* 3316 */
/* 3317 */   to {
/* 3318 */     visibility: hidden;
/* 3319 */     -webkit-transform: translate3d(0, -100%, 0);
/* 3320 */     transform: translate3d(0, -100%, 0);
/* 3321 */   }
/* 3322 */ }
/* 3323 */
/* 3324 */ @keyframes slideOutUp {
/* 3325 */   from {
/* 3326 */     -webkit-transform: translate3d(0, 0, 0);
/* 3327 */     transform: translate3d(0, 0, 0);
/* 3328 */   }
/* 3329 */
/* 3330 */   to {
/* 3331 */     visibility: hidden;
/* 3332 */     -webkit-transform: translate3d(0, -100%, 0);
/* 3333 */     transform: translate3d(0, -100%, 0);
/* 3334 */   }
/* 3335 */ }
/* 3336 */
/* 3337 */ .slideOutUp {
/* 3338 */   -webkit-animation-name: slideOutUp;
/* 3339 */   animation-name: slideOutUp;
/* 3340 */ }
/* 3341 */
/* Minify_CSS_UriRewriter::$debugText

*/

/* main.css */

/* 1    */ /**
/* 2    *|  * Table of Contents
/* 3    *|  *
/* 4    *|  * 1.0 Buttons
/* 5    *|  * 2.0 Header
/* 6    *|  *    2.1 Header Top Section
/* 7    *|  *    2.2 Top Social Nav
/* 8    *|  *    2.3 Header Logo
/* 9    *|  *    2.4 Header Contacts
/* 10   *|  *    2.5 Header Request Quote button
/* 11   *|  *    2.6 Header Main Nav
/* 12   *|  *    2.7 Header Cart Icon
/* 13   *|  * 3.0 Banner
/* 14   *|  * 4.0 Home
/* 15   *|  * 5.0 Testimonials
/* 16   *|  * 6.0 Footer
/* 17   *|  *    6.1 sidebar widgets
/* 18   *|  *    6.2 footer widgets
/* 19   *|  * 7.0 Blog
/* 20   *|  * 8.0 Footer
/* 21   *|  * 9.0 Visual Composer
/* 22   *|  * 10.0 Responsive Styles
/* 23   *|  *    10.1 Large Screen Devices
/* 24   *|  *    10.2 Medium Screen Devices
/* 25   *|  *    10.3 Small Screen Devices
/* 26   *|  *    10.4 Extra Small Screen Devices
/* 27   *|  * 11.0 Page Loader
/* 28   *|  * 12.0 Shortcodes
/* 29   *|  */
/* 30   */ .poppins, .poppins-bold, .poppins-semibold, .poppins-medium, .contact-box, .poppins-regular, .poppins-light, .header-top-section, .bp-tag-line, .mini-cart, .banner h1, .banner h2, .section-heading-intro, .slide-content .slider-detail-inner h1, .special-home-var2 .wrapper-special-feature p, .container-special-features .specialty-intro p, .wrapper-portfolio-slider .overlay-slide h3, .wrapper-quote-box h2, .testimonials-slider.variation-2 p, .testimonials-slider.variation-2 .author-designation, .pages-contents-area h2, .pages-contents-area h3, .pages-contents-area h4, .heading-wrapper h2, .heading-wrapper .categories-single, .single-service-box h3, .contact-detail-list, .sidebar .widget ul, .sidebar .widget ol, .sidebar .widget_tag_cloud a, .wrapper-page-contents .post-heading, .wrapper-page-contents .psost-heading-single, .the-content-wrapper h1, .the-content-wrapper h2, .the-content-wrapper h3, .the-content-wrapper h4, .the-content-wrapper h5, .the-content-wrapper h6, .the-content-wrapper th, .the-content-wrapper dt, .bp-page-contents h1, .bp-page-contents h2, .bp-page-contents h3, .bp-page-contents h4, .bp-page-contents h5, .bp-page-contents h6, .bp-page-contents th, .bp-page-contents dt, .author-detail-wrapper h2, .author-detail-wrapper h3, .comments-single .comment-wrapper h1, .comments-single .comment-wrapper h2, .comments-single .comment-wrapper h3, .comments-single .comment-wrapper h4, .comments-single .comment-wrapper h5, .comments-single .comment-wrapper h6, .comments-single .comment-wrapper th, .comments-single .comment-wrapper dt, .comments-single .comment-wrapper .comment-reply-link, .comment-respond h3, .tag-links a, .vc-pages-contents-area h1, .vc-pages-contents-area h2, .vc-pages-contents-area h3, .vc-pages-contents-area h4, .vc-pages-contents-area h5, .vc-pages-contents-area h6, .vc-wrapper-quote-box h2 {
/* 31   */   font-family: 'Poppins', sans-serif;
/* 32   */ }
/* 33   */
/* 34   */ .poppins-bold {
/* 35   */   font-weight: 700;
/* 36   */ }
/* 37   */
/* 38   */ .poppins-semibold {
/* 39   */   font-weight: 600;
/* 40   */ }
/* 41   */
/* 42   */ .poppins-medium, .contact-box {
/* 43   */   font-weight: 500;
/* 44   */ }
/* 45   */
/* 46   */ .poppins-regular {
/* 47   */   font-weight: 400;
/* 48   */ }
/* 49   */
/* 50   */ .poppins-light {

/* main.css */

/* 51   */   font-weight: 300;
/* 52   */ }
/* 53   */
/* 54   */ .montserrat, .montserrat-regular, .main-menu ul li, .montserrat-bold, .bp-button, .common-vc-class .bp-button, .wrapper-logo a, .request-quote-btn, .testimonials-section .author-designation, .footer-widgets-area h3, .Shortcode_btn.bp-button, p, .mont-upper-light-gray, .read-more, .mini-cart a.button-mini-cart, .slide-content .slider-detail-inner p, .special-home-section .wrapper-special-feature p, .wrapper-special-feature p, .special-home-var2 .wrapper-special-feature-item p, .services-section .service-single-content P, .services-section .service-box-var2 p, .wrapper-featured-contents .wrapper-location p.featured-location, .featured-section-var2 .wrapper-left-tabs .text-wrapper p, .wrapper-portfolio-slider .overlay-slide p, #customDots .owl-dot, .wrapper-quote-box p, .wrapper-recent-single p, .qualities-box p, .projects-category-lists ul, .single-project-box p, .single-project-box .location, .categories-fall a, .breadcrumbs, .bp-breadcrumbs a, .bp-breadcrumbs span, .page-content-area .post-meta, .side-related-projects .wrapper-location p.featured-location, .single-service-box p, .services-content-wrapper, .side-services-list a, .side-brochures a, .wpcf7-form, .nf-form-cont, .about-into, .sidebar .widget h3, .sidebar .widget label, .sidebar .select2-container, .select2-container--open .select2-dropdown--below, .select2-container--open .select2-dropdown--above, .footer-widgets-area, .wrapper-page-contents .post-meta span, .wrapper-page-contents .post-meta a, .the-content-wrapper, .bp-page-contents, .comments-single .comment-wrapper, .comments-single .comment-list-heading .comment-date, .name-social-wrapper .comment-date, .pagination, .page-links, .footer-intro-section p, .vc-wrapper-quote-box p, .Shortcode_btn.read-more {
/* 55   */   font-family: 'Montserrat', sans-serif;
/* 56   */ }
/* 57   */
/* 58   */ .montserrat-regular, .main-menu ul li {
/* 59   */   font-weight: 400;
/* 60   */ }
/* 61   */
/* 62   */ .montserrat-bold, .bp-button, .common-vc-class .bp-button, .wrapper-logo a, .request-quote-btn, .testimonials-section .author-designation, .footer-widgets-area h3, .Shortcode_btn.bp-button {
/* 63   */   font-weight: 700;
/* 64   */ }
/* 65   */
/* 66   */ .bg-light-gray {
/* 67   */   background: #f5f5f5;
/* 68   */ }
/* 69   */
/* 70   */ .theme-box-shadow, .featured-section-var2 .wrapper-left-tabs li .wrapper-inner-single-feature:hover, .featured-section-var2 .wrapper-left-tabs .ui-tabs-active .wrapper-inner-single-feature {
/* 71   */   -webkit-box-shadow: 0px 0px 15px 2px #ededed;
/* 72   */   -moz-box-shadow: 0px 0px 15px 2px #ededed;
/* 73   */   box-shadow: 0px 0px 15px 2px #ededed;
/* 74   */ }
/* 75   */
/* 76   */ .theme-box-shadow-hover:hover {
/* 77   */   -webkit-box-shadow: 0px 0px 15px 2px #b3b3b3;
/* 78   */   -moz-box-shadow: 0px 0px 15px 2px #b3b3b3;
/* 79   */   box-shadow: 0px 0px 15px 2px #b3b3b3;
/* 80   */ }
/* 81   */
/* 82   */ html {
/* 83   */   background: #1a1a1a;
/* 84   */ }
/* 85   */
/* 86   */ ::selection {
/* 87   */   background: #ffd800;
/* 88   */   /* WebKit/Blink Browsers */
/* 89   */ }
/* 90   */
/* 91   */ ::-moz-selection {
/* 92   */   background: #ffd800;
/* 93   */   /* Gecko Browsers */
/* 94   */ }
/* 95   */
/* 96   */ body {
/* 97   */   font-size: 14px;
/* 98   */   -webkit-font-smoothing: antialiased;
/* 99   */   overflow-x: hidden;
/* 100  */ }

/* main.css */

/* 101  */
/* 102  */ body ul, body ol {
/* 103  */   padding-left: 20px;
/* 104  */ }
/* 105  */
/* 106  */ body input {
/* 107  */   outline: none;
/* 108  */ }
/* 109  */
/* 110  */ body a, body button {
/* 111  */   outline: none;
/* 112  */ }
/* 113  */
/* 114  */ body a:active {
/* 115  */   outline: 0;
/* 116  */ }
/* 117  */
/* 118  */ body a:focus {
/* 119  */   outline: 0;
/* 120  */ }
/* 121  */
/* 122  */ .transition-200ms, a, .services-section .services-box .single-service, .wrapper-recent-single .wrapper-recent-thumbs {
/* 123  */   transition: all .2s ease-in-out;
/* 124  */ }
/* 125  */
/* 126  */ a {
/* 127  */   text-decoration: none !important;
/* 128  */ }
/* 129  */
/* 130  */ p {
/* 131  */   font-size: 15px;
/* 132  */   color: #808080;
/* 133  */   line-height: 24px;
/* 134  */   margin-bottom: 25px;
/* 135  */ }
/* 136  */
/* 137  */ .container-icon-pulley {
/* 138  */   position: relative;
/* 139  */ }
/* 140  */
/* 141  */ .pulley {
/* 142  */   position: absolute;
/* 143  */   top: 0;
/* 144  */   text-align: center;
/* 145  */ }
/* 146  */
/* 147  */ .pulley-center {
/* 148  */   left: 0;
/* 149  */   right: 0;
/* 150  */   margin: auto;

/* main.css */

/* 151  */ }
/* 152  */
/* 153  */ .pulley-left {
/* 154  */   left: 0;
/* 155  */ }
/* 156  */
/* 157  */ .pulley-right {
/* 158  */   right: 0;
/* 159  */ }
/* 160  */
/* 161  */ img {
/* 162  */   height: auto;
/* 163  */ }
/* 164  */
/* 165  */ .mont-upper-light-gray {
/* 166  */   text-transform: uppercase;
/* 167  */   color: #808080;
/* 168  */ }
/* 169  */
/* 170  */ .mont-upper-light-gray:hover {
/* 171  */   color: #1a1a1a;
/* 172  */ }
/* 173  */
/* 174  */ .read-more {
/* 175  */   text-transform: uppercase;
/* 176  */   color: #1a1a1a;
/* 177  */   font-weight: 700;
/* 178  */ }
/* 179  */
/* 180  */ .read-more:hover {
/* 181  */   color: #1a1a1a;
/* 182  */ }
/* 183  */
/* 184  */ .bp-lined {
/* 185  */   display: inline-block;
/* 186  */   position: relative;
/* 187  */ }
/* 188  */
/* 189  */ .bp-lined:after {
/* 190  */   content: "";
/* 191  */   display: block;
/* 192  */   width: 0;
/* 193  */   height: 2px;
/* 194  */   background: #ffd800;
/* 195  */   position: absolute;
/* 196  */   bottom: -15px;
/* 197  */   transition: .2s all ease-in-out;
/* 198  */   pointer-events: none;
/* 199  */ }
/* 200  */

/* main.css */

/* 201  */ .bp-lined:hover:after {
/* 202  */   width: 100%;
/* 203  */ }
/* 204  */
/* 205  */ .bp-lined i {
/* 206  */   margin-left: 15px;
/* 207  */ }
/* 208  */
/* 209  */ .bp-active:after {
/* 210  */   width: 100%;
/* 211  */ }
/* 212  */
/* 213  */ .bp-li-active {
/* 214  */   display: inline-block;
/* 215  */ }
/* 216  */
/* 217  */ .bp-li-active a:after {
/* 218  */   width: 100%;
/* 219  */ }
/* 220  */
/* 221  */ .bp-list-lined {
/* 222  */   list-style: none;
/* 223  */   padding-left: 0;
/* 224  */ }
/* 225  */
/* 226  */ .bp-list-lined li {
/* 227  */   display: inline-block;
/* 228  */ }
/* 229  */
/* 230  */ .bp-list-lined li a {
/* 231  */   display: inline-block;
/* 232  */   position: relative;
/* 233  */ }
/* 234  */
/* 235  */ .bp-list-lined li a:after {
/* 236  */   content: "";
/* 237  */   display: block;
/* 238  */   width: 0;
/* 239  */   height: 2px;
/* 240  */   background: #ffd800;
/* 241  */   position: absolute;
/* 242  */   bottom: -15px;
/* 243  */   transition: .2s all ease-in-out;
/* 244  */   pointer-events: none;
/* 245  */ }
/* 246  */
/* 247  */ .bp-list-lined li a:hover:after {
/* 248  */   width: 100%;
/* 249  */ }
/* 250  */

/* main.css */

/* 251  */ .bp-list-lined li.active a:after {
/* 252  */   width: 100%;
/* 253  */ }
/* 254  */
/* 255  */ .post-thumbnail {
/* 256  */   margin-bottom: 10px;
/* 257  */ }
/* 258  */
/* 259  */ .post-thumbnail img {
/* 260  */   max-width: 100%;
/* 261  */ }
/* 262  */
/* 263  */ .list-caret-wrapper ul {
/* 264  */   position: relative;
/* 265  */   list-style: none;
/* 266  */ }
/* 267  */
/* 268  */ .list-caret-wrapper ul li:before {
/* 269  */   font-family: FontAwesome;
/* 270  */   content: "\f0da";
/* 271  */   position: absolute;
/* 272  */   left: 3px;
/* 273  */ }
/* 274  */
/* 275  */ .inspiry-page-comments {
/* 276  */   padding-bottom: 60px;
/* 277  */ }
/* 278  */
/* 279  */ .prev-next-wrapper {
/* 280  */   padding-top: 40px;
/* 281  */   overflow: hidden;
/* 282  */ }
/* 283  */
/* 284  */ .prev-next-wrapper .nav-previous a:after {
/* 285  */   right: 0;
/* 286  */ }
/* 287  */
/* 288  */ .prev-next-wrapper .nav-previous i {
/* 289  */   margin-right: 15px;
/* 290  */ }
/* 291  */
/* 292  */ .prev-next-wrapper .nav-next {
/* 293  */   text-align: right;
/* 294  */ }
/* 295  */
/* 296  */ .prev-next-wrapper .nav-next i {
/* 297  */   margin-left: 15px;
/* 298  */ }
/* 299  */
/* 300  */ .prev-next-wrapper a {

/* main.css */

/* 301  */   font-family: 'Montserrat', sans-serif;
/* 302  */   margin-bottom: 20px;
/* 303  */   display: inline-block;
/* 304  */   position: relative;
/* 305  */   text-transform: uppercase;
/* 306  */   color: #808080;
/* 307  */ }
/* 308  */
/* 309  */ .prev-next-wrapper a:after {
/* 310  */   content: "";
/* 311  */   display: block;
/* 312  */   width: 0;
/* 313  */   height: 2px;
/* 314  */   background: #ffd800;
/* 315  */   position: absolute;
/* 316  */   bottom: -15px;
/* 317  */   transition: .2s all ease-in-out;
/* 318  */   pointer-events: none;
/* 319  */ }
/* 320  */
/* 321  */ .prev-next-wrapper a:hover {
/* 322  */   color: #1a1a1a;
/* 323  */ }
/* 324  */
/* 325  */ .prev-next-wrapper a:hover:after {
/* 326  */   width: 100%;
/* 327  */ }
/* 328  */
/* 329  */ .project-post-nav {
/* 330  */   width: 100%;
/* 331  */ }
/* 332  */
/* 333  */ .builderpress-content-fullwidth .col-md-8 {
/* 334  */   width: 100%;
/* 335  */ }
/* 336  */
/* 337  */ /*-----------------------------------------------------------------------------------*/
/* 338  */ /* 1.0	Buttons
/* 339  *| /*-----------------------------------------------------------------------------------*/
/* 340  */ .bp-button {
/* 341  */   font-size: 14px;
/* 342  */   text-transform: uppercase;
/* 343  */   white-space: nowrap;
/* 344  */   color: #1a1a1a;
/* 345  */   display: inline-block;
/* 346  */ }
/* 347  */
/* 348  */ .bp-button-plain {
/* 349  */   padding: 14px 30px;
/* 350  */ }

/* main.css */

/* 351  */
/* 352  */ .button-yellow-border {
/* 353  */   border: 2px solid #ffd800;
/* 354  */   padding: 12px 28px;
/* 355  */ }
/* 356  */
/* 357  */ .button-dark {
/* 358  */   background: #1a1a1a;
/* 359  */   color: #ffffff;
/* 360  */ }
/* 361  */
/* 362  */ .button-dark:hover {
/* 363  */   background: #ffffff;
/* 364  */   color: #1a1a1a;
/* 365  */ }
/* 366  */
/* 367  */ .button-dark.hover-to-yellow:hover {
/* 368  */   background: #ffd800;
/* 369  */   color: #1a1a1a;
/* 370  */ }
/* 371  */
/* 372  */ .button-yellow {
/* 373  */   background: #ffd800;
/* 374  */ }
/* 375  */
/* 376  */ .button-yellow:hover {
/* 377  */   color: #ffd800;
/* 378  */   background: #1a1a1a;
/* 379  */ }
/* 380  */
/* 381  */ .common-vc-class .bp-button {
/* 382  */   font-size: 14px;
/* 383  */   text-transform: uppercase;
/* 384  */   white-space: nowrap;
/* 385  */   color: #1a1a1a;
/* 386  */   display: inline-block;
/* 387  */ }
/* 388  */
/* 389  */ .common-vc-class .bp-button-plain {
/* 390  */   padding: 14px 30px;
/* 391  */ }
/* 392  */
/* 393  */ .common-vc-class .button-yellow-border {
/* 394  */   border: 2px solid #ffd800;
/* 395  */   padding: 12px 28px;
/* 396  */ }
/* 397  */
/* 398  */ .common-vc-class .button-dark {
/* 399  */   background: #1a1a1a;
/* 400  */   color: #ffffff;

/* main.css */

/* 401  */ }
/* 402  */
/* 403  */ .common-vc-class .button-dark:hover {
/* 404  */   background: #ffffff;
/* 405  */   color: #1a1a1a;
/* 406  */ }
/* 407  */
/* 408  */ .common-vc-class .button-dark.hover-to-yellow:hover {
/* 409  */   background: #ffd800;
/* 410  */   color: #1a1a1a;
/* 411  */ }
/* 412  */
/* 413  */ .common-vc-class .button-yellow {
/* 414  */   background: #ffd800;
/* 415  */ }
/* 416  */
/* 417  */ .common-vc-class .button-yellow:hover {
/* 418  */   color: #ffd800;
/* 419  */   background: #1a1a1a;
/* 420  */ }
/* 421  */
/* 422  */ /*-----------------------------------------------------------------------------------*/
/* 423  */ /*	2.0 Header
/* 424  *| /*-----------------------------------------------------------------------------------*/
/* 425  */ /*------------------------------------*/
/* 426  */ /* 2.1 Header Top Section
/* 427  *| /*------------------------------------*/
/* 428  */ .header-top-section {
/* 429  */   clear: both;
/* 430  */   background: #1a1a1a;
/* 431  */   font-size: 1em;
/* 432  */   padding-top: 14px;
/* 433  */   color: #989898;
/* 434  */ }
/* 435  */
/* 436  */ .header-top-section span {
/* 437  */   font-weight: 600;
/* 438  */ }
/* 439  */
/* 440  */ .header-top-section a {
/* 441  */   color: #989898;
/* 442  */ }
/* 443  */
/* 444  */ .header-top-section p {
/* 445  */   margin-bottom: 14px;
/* 446  */ }
/* 447  */
/* 448  */ .wrapper-top-right {
/* 449  */   text-align: right;
/* 450  */ }

/* main.css */

/* 451  */
/* 452  */ .top-section-time {
/* 453  */   display: inline-block;
/* 454  */   padding-left: 20px;
/* 455  */   position: relative;
/* 456  */ }
/* 457  */
/* 458  */ .top-section-time:before {
/* 459  */   font-family: FontAwesome;
/* 460  */   content: "\f017";
/* 461  */   font-size: 18px;
/* 462  */   position: absolute;
/* 463  */   left: 0;
/* 464  */   color: #989898;
/* 465  */ }
/* 466  */
/* 467  */ .top-section-time .sep-timings {
/* 468  */   display: inline-block;
/* 469  */   margin-left: 5px;
/* 470  */   margin-right: 5px;
/* 471  */ }
/* 472  */
/* 473  */ /*------------------------------------*/
/* 474  */ /* 2.2 Top Social Nav
/* 475  *| /*------------------------------------*/
/* 476  */ .top-social-nav {
/* 477  */   display: inline-block;
/* 478  */   list-style: none;
/* 479  */   margin-bottom: 14px;
/* 480  */ }
/* 481  */
/* 482  */ .top-social-nav li {
/* 483  */   display: inline-block;
/* 484  */   margin-left: 10px;
/* 485  */ }
/* 486  */
/* 487  */ .top-social-nav li a {
/* 488  */   color: #989898;
/* 489  */ }
/* 490  */
/* 491  */ .top-social-nav li a:hover {
/* 492  */   color: #ffd800;
/* 493  */ }
/* 494  */
/* 495  */ /*------------------------------------*/
/* 496  */ /* 2.3 Header Logo
/* 497  *| /*------------------------------------*/
/* 498  */ .header-logo-contact-section {
/* 499  */   padding-top: 18px;
/* 500  */   padding-bottom: 18px;

/* main.css */

/* 501  */   background: #ffffff;
/* 502  */   clear: both;
/* 503  */ }
/* 504  */
/* 505  */ .header-box {
/* 506  */   display: flex;
/* 507  */   align-items: center;
/* 508  */   width: 100%;
/* 509  */ }
/* 510  */
/* 511  */ .header-box .header-box-logo {
/* 512  */   width: 33%;
/* 513  */ }
/* 514  */
/* 515  */ .header-box .header-box-contact {
/* 516  */   width: 67%;
/* 517  */ }
/* 518  */
/* 519  */ .header-box .site-title {
/* 520  */   margin-top: 0;
/* 521  */   margin-bottom: 5px;
/* 522  */ }
/* 523  */
/* 524  */ .header-box h1 {
/* 525  */   line-height: 24px;
/* 526  */ }
/* 527  */
/* 528  */ .wrapper-logo a {
/* 529  */   display: block;
/* 530  */   font-size: 24px;
/* 531  */   color: #1a1a1a;
/* 532  */ }
/* 533  */
/* 534  */ .wrapper-logo a:hover {
/* 535  */   opacity: .8;
/* 536  */ }
/* 537  */
/* 538  */ .wrapper-logo img {
/* 539  */   max-width: 100%;
/* 540  */   margin-bottom: 5px;
/* 541  */ }
/* 542  */
/* 543  */ .bp-tag-line {
/* 544  */   display: inline-block;
/* 545  */ }
/* 546  */
/* 547  */ /*------------------------------------*/
/* 548  */ /* 2.4 Header Contacts
/* 549  *| /*------------------------------------*/
/* 550  */ .wrapper-header-contact {

/* main.css */

/* 551  */   text-align: right;
/* 552  */ }
/* 553  */
/* 554  */ .contact-box {
/* 555  */   display: inline-block;
/* 556  */   text-align: left;
/* 557  */   padding-left: 35px;
/* 558  */   position: relative;
/* 559  */   margin-left: 30px;
/* 560  */   vertical-align: middle;
/* 561  */ }
/* 562  */
/* 563  */ .contact-box span {
/* 564  */   font-size: 12px;
/* 565  */   color: #8b8b8b;
/* 566  */ }
/* 567  */
/* 568  */ .contact-box p {
/* 569  */   font-size: 16px;
/* 570  */   margin-bottom: 0;
/* 571  */   color: #1a1a1a;
/* 572  */ }
/* 573  */
/* 574  */ .contact-box p a {
/* 575  */   color: #1a1a1a;
/* 576  */ }
/* 577  */
/* 578  */ .contact-box p a:hover {
/* 579  */   color: #808080;
/* 580  */ }
/* 581  */
/* 582  */ .contact-box .icon-contacts {
/* 583  */   position: absolute;
/* 584  */   left: 0;
/* 585  */   top: 0;
/* 586  */   bottom: 0;
/* 587  */   margin-top: auto;
/* 588  */   margin-bottom: auto;
/* 589  */   width: 27px;
/* 590  */   height: 27px;
/* 591  */   display: inline-block;
/* 592  */ }
/* 593  */
/* 594  */ .contact-box .icon-contacts svg {
/* 595  */   width: 27px;
/* 596  */   height: 27px;
/* 597  */   fill: #1a1a1a;
/* 598  */ }
/* 599  */
/* 600  */ .contact-box .icon-contacts img {

/* main.css */

/* 601  */   max-width: 100%;
/* 602  */ }
/* 603  */
/* 604  */ .contact-box.contact-phone {
/* 605  */   margin-left: 0;
/* 606  */ }
/* 607  */
/* 608  */ /*------------------------------------*/
/* 609  */ /* 2.5 Header Request Quote button
/* 610  *| /*------------------------------------*/
/* 611  */ .request-quote-btn {
/* 612  */   margin-left: 30px;
/* 613  */   display: inline-block;
/* 614  */   border: 2px solid #ffd800;
/* 615  */   padding: 16px 22px;
/* 616  */   text-transform: uppercase;
/* 617  */   font-size: 13px;
/* 618  */   color: #1a1a1a;
/* 619  */ }
/* 620  */
/* 621  */ .request-quote-btn:hover {
/* 622  */   color: #ffd800;
/* 623  */   background: #1a1a1a;
/* 624  */   border-color: #1a1a1a;
/* 625  */ }
/* 626  */
/* 627  */ .header-nav-section {
/* 628  */   background: #ffd800;
/* 629  */ }
/* 630  */
/* 631  */ /*------------------------------------*/
/* 632  */ /* 2.6 Header Main Nav
/* 633  *| /*------------------------------------*/
/* 634  */ .main-menu {
/* 635  */   display: inline-block;
/* 636  */ }
/* 637  */
/* 638  */ .main-menu ul {
/* 639  */   list-style: none;
/* 640  */   display: inline-block;
/* 641  */   padding-left: 0;
/* 642  */   margin-bottom: 0;
/* 643  */ }
/* 644  */
/* 645  */ .main-menu ul > li.current-menu-item > a {
/* 646  */   color: #1a1a1a;
/* 647  */   font-weight: 700;
/* 648  */ }
/* 649  */
/* 650  */ .main-menu ul li {

/* main.css */

/* 651  */   position: relative;
/* 652  */   display: inline-block;
/* 653  */   font-size: 13px;
/* 654  */   text-transform: uppercase;
/* 655  */   margin-right: 30px;
/* 656  */ }
/* 657  */
/* 658  */ .main-menu ul li:hover a {
/* 659  */   color: #1a1a1a;
/* 660  */ }
/* 661  */
/* 662  */ .main-menu ul li a {
/* 663  */   color: #515151;
/* 664  */   display: inline-block;
/* 665  */ }
/* 666  */
/* 667  */ .main-menu ul li a:after {
/* 668  */   font-family: FontAwesome;
/* 669  */   content: "\f107";
/* 670  */   margin-left: 5px;
/* 671  */ }
/* 672  */
/* 673  */ .main-menu ul li a:only-child:after {
/* 674  */   content: "";
/* 675  */ }
/* 676  */
/* 677  */ .main-menu ul li ul {
/* 678  */   position: absolute;
/* 679  */   top: 100%;
/* 680  */   min-width: 230px;
/* 681  */   background: #ffd800;
/* 682  */   z-index: 999;
/* 683  */   transition: all .2s ease-in-out;
/* 684  */   transform: scaleY(0);
/* 685  */   transform-origin: top;
/* 686  */ }
/* 687  */
/* 688  */ .main-menu ul li ul li {
/* 689  */   margin-right: 0;
/* 690  */   display: block;
/* 691  */ }
/* 692  */
/* 693  */ .main-menu ul li ul li a {
/* 694  */   padding: 15px 20px;
/* 695  */   display: block;
/* 696  */ }
/* 697  */
/* 698  */ .main-menu ul li ul li a:after {
/* 699  */   content: "\f105";
/* 700  */   float: right;

/* main.css */

/* 701  */ }
/* 702  */
/* 703  */ .main-menu ul li ul li:hover > a {
/* 704  */   background: #f5b800;
/* 705  */ }
/* 706  */
/* 707  */ .main-menu ul li ul li ul {
/* 708  */   left: 100%;
/* 709  */   top: 0;
/* 710  */ }
/* 711  */
/* 712  */ .main-menu ul li > ul {
/* 713  */   left: -20px;
/* 714  */ }
/* 715  */
/* 716  */ .main-menu ul li:hover > ul {
/* 717  */   transform: scaleY(1);
/* 718  */ }
/* 719  */
/* 720  */ .main-menu > ul > li > a {
/* 721  */   padding-top: 20px;
/* 722  */   padding-bottom: 20px;
/* 723  */ }
/* 724  */
/* 725  */ /*------------------------------------*/
/* 726  */ /* 2.7 Header Cart Icon
/* 727  *| /*------------------------------------*/
/* 728  */ .shopping-cart-btn {
/* 729  */   display: inline-block;
/* 730  */   float: right;
/* 731  */   width: 58px;
/* 732  */   height: 58px;
/* 733  */   line-height: 58px;
/* 734  */   text-align: center;
/* 735  */   background: #efcb01;
/* 736  */   color: #1a1a1a;
/* 737  */ }
/* 738  */
/* 739  */ .shopping-cart-btn:hover {
/* 740  */   color: #ffd800;
/* 741  */   background: #1a1a1a;
/* 742  */ }
/* 743  */
/* 744  */ .shopping-cart-btn-var2 {
/* 745  */   float: left;
/* 746  */   display: inline-block;
/* 747  */   padding-top: 20px;
/* 748  */   padding-bottom: 20px;
/* 749  */   width: 58px;
/* 750  */   text-align: center;

/* main.css */

/* 751  */   color: #a2a1a1;
/* 752  */   border-right: 1px solid #e3e3e3;
/* 753  */   border-left: 1px solid #e3e3e3;
/* 754  */ }
/* 755  */
/* 756  */ .shopping-cart-btn-var2:hover {
/* 757  */   color: #1a1a1a;
/* 758  */ }
/* 759  */
/* 760  */ .mean-container .mean-bar {
/* 761  */   background: #ffd800;
/* 762  */   padding-bottom: 0;
/* 763  */ }
/* 764  */
/* 765  */ .mean-container a.meanmenu-reveal {
/* 766  */   padding: 15px 13px 11px 13px;
/* 767  */   color: #1a1a1a;
/* 768  */ }
/* 769  */
/* 770  */ .mean-container a.meanmenu-reveal span {
/* 771  */   background: #1a1a1a;
/* 772  */ }
/* 773  */
/* 774  */ .mean-container .mean-nav {
/* 775  */   margin-top: 48px;
/* 776  */   border-bottom: 1px solid #ffd800;
/* 777  */ }
/* 778  */
/* 779  */ .mean-container .mean-nav ul li a.mean-expand {
/* 780  */   padding: 8px 16px !important;
/* 781  */   background: #1a1a1a;
/* 782  */   border-color: #ffd800 !important;
/* 783  */ }
/* 784  */
/* 785  */ .mean-container .mean-nav ul li a.mean-expand:hover {
/* 786  */   background: #ffd800;
/* 787  */   color: #1a1a1a;
/* 788  */ }
/* 789  */
/* 790  */ .mean-container .mean-nav ul li a {
/* 791  */   background: #1a1a1a;
/* 792  */   border-top-color: #efcb01;
/* 793  */   color: #ffffff;
/* 794  */ }
/* 795  */
/* 796  */ .mean-container .mean-nav ul li a:hover {
/* 797  */   background: #ffd800;
/* 798  */   color: #1a1a1a;
/* 799  */ }
/* 800  */

/* main.css */

/* 801  */ .mean-container .mean-nav ul li ul li a {
/* 802  */   background: #1a1a1a;
/* 803  */   border-top-color: #efcb01;
/* 804  */   opacity: 1;
/* 805  */ }
/* 806  */
/* 807  */ .mean-container .mean-nav ul li ul li a:hover {
/* 808  */   background: #ffd800;
/* 809  */   color: #1a1a1a;
/* 810  */ }
/* 811  */
/* 812  */ .wrapper-header-var2 {
/* 813  */   position: relative;
/* 814  */ }
/* 815  */
/* 816  */ .wrapper-header-var2 .main-menu ul li a {
/* 817  */   color: #a2a1a1;
/* 818  */   line-height: 21px;
/* 819  */ }
/* 820  */
/* 821  */ .wrapper-header-var2 .main-menu ul li a:hover {
/* 822  */   color: #1a1a1a;
/* 823  */ }
/* 824  */
/* 825  */ .wrapper-header-var2 .wrapper-right-social {
/* 826  */   float: right;
/* 827  */ }
/* 828  */
/* 829  */ .wrapper-header-var2 .wrapper-right-social a {
/* 830  */   font-size: 15px;
/* 831  */ }
/* 832  */
/* 833  */ .wrapper-header-var2 .wrapper-right-social .top-social-nav {
/* 834  */   padding-top: 20px;
/* 835  */   padding-bottom: 20px;
/* 836  */ }
/* 837  */
/* 838  */ .wrapper-header-var2 .wrapper-right-social .top-social-nav li {
/* 839  */   margin-right: 0;
/* 840  */   margin-left: 15px;
/* 841  */ }
/* 842  */
/* 843  */ .wrapper-header-var2 .logo-contact-wrapper {
/* 844  */   padding-top: 20px;
/* 845  */   position: absolute;
/* 846  */   width: 100%;
/* 847  */   top: 100%;
/* 848  */   left: 0;
/* 849  */   color: #ffffff;
/* 850  */ }

/* main.css */

/* 851  */
/* 852  */ .wrapper-header-var2 .logo-contact-wrapper p {
/* 853  */   color: #ffffff;
/* 854  */ }
/* 855  */
/* 856  */ .mini-cart {
/* 857  */   display: inline-block;
/* 858  */   min-width: 58px;
/* 859  */   height: 59px;
/* 860  */   line-height: 57px;
/* 861  */   text-align: center;
/* 862  */   cursor: pointer;
/* 863  */   position: relative;
/* 864  */   transition: .2s all;
/* 865  */ }
/* 866  */
/* 867  */ .mini-cart svg {
/* 868  */   fill: #808080;
/* 869  */   vertical-align: middle;
/* 870  */   width: 18px !important;
/* 871  */   transition: .2s all ease-in-out;
/* 872  */ }
/* 873  */
/* 874  */ .mini-cart:hover .cart-icon i {
/* 875  */   color: #efcb01;
/* 876  */ }
/* 877  */
/* 878  */ .mini-cart:hover .nav-dropdown {
/* 879  */   opacity: 1;
/* 880  */   visibility: visible;
/* 881  */ }
/* 882  */
/* 883  */ .mini-cart:hover svg {
/* 884  */   fill: #efcb01;
/* 885  */ }
/* 886  */
/* 887  */ .mini-cart .cart-icon i {
/* 888  */   transition: .2s all;
/* 889  */   font-size: 18px;
/* 890  */   color: #1a1a1a;
/* 891  */ }
/* 892  */
/* 893  */ .mini-cart .cart-icon strong {
/* 894  */   font-size: 18px;
/* 895  */   display: none;
/* 896  */ }
/* 897  */
/* 898  */ .mini-cart .nav-dropdown {
/* 899  */   transition: .2s all ease-in-out;
/* 900  */   opacity: 0;

/* main.css */

/* 901  */   visibility: hidden;
/* 902  */   position: absolute;
/* 903  */   right: 0;
/* 904  */   top: 100%;
/* 905  */   width: 320px;
/* 906  */   padding: 0 15px 15px;
/* 907  */   background: #ffffff;
/* 908  */   z-index: 9999999;
/* 909  */   border: 1px solid #e8e8e8;
/* 910  */ }
/* 911  */
/* 912  */ .mini-cart .nav-dropdown .nav-dropdown-inner .empty-cart-message {
/* 913  */   padding-top: 15px;
/* 914  */   margin-bottom: 0;
/* 915  */ }
/* 916  */
/* 917  */ .mini-cart .mini-cart-item {
/* 918  */   line-height: initial;
/* 919  */ }
/* 920  */
/* 921  */ .mini-cart .cart_list_product_title {
/* 922  */   display: block;
/* 923  */   line-height: 24px;
/* 924  */   font-size: 16px;
/* 925  */   color: #1a1a1a;
/* 926  */   font-weight: 600;
/* 927  */ }
/* 928  */
/* 929  */ .mini-cart .cart_list_product_title:hover {
/* 930  */   color: #efcb01;
/* 931  */ }
/* 932  */
/* 933  */ .mini-cart .cart_list_product_price, .mini-cart .cart_list_product_quantity {
/* 934  */   display: inline-block;
/* 935  */   color: #808080;
/* 936  */   line-height: 24px;
/* 937  */ }
/* 938  */
/* 939  */ .mini-cart .cart_list_product_img img {
/* 940  */   width: 100%;
/* 941  */ }
/* 942  */
/* 943  */ .mini-cart a.remove {
/* 944  */   margin-top: 12px;
/* 945  */ }
/* 946  */
/* 947  */ .mini-cart a.remove:hover {
/* 948  */   background: transparent;
/* 949  */ }
/* 950  */

/* main.css */

/* 951  */ .mini-cart a.remove:hover i {
/* 952  */   color: #1a1a1a;
/* 953  */ }
/* 954  */
/* 955  */ .mini-cart a.remove i {
/* 956  */   color: #808080;
/* 957  */   font-size: 18px;
/* 958  */ }
/* 959  */
/* 960  */ .mini-cart .mini-cart-item {
/* 961  */   padding-top: 15px;
/* 962  */   padding-bottom: 15px;
/* 963  */   border-bottom: 1px solid #e8e8e8;
/* 964  */ }
/* 965  */
/* 966  */ .mini-cart .minicart_total_checkout {
/* 967  */   margin-left: -15px;
/* 968  */   margin-right: -15px;
/* 969  */   color: #1a1a1a;
/* 970  */   font-weight: 700;
/* 971  */   text-transform: uppercase;
/* 972  */   background: #e8e8e8;
/* 973  */ }
/* 974  */
/* 975  */ .mini-cart .minicart_total_checkout > span {
/* 976  */   margin-left: 10px;
/* 977  */   color: #808080;
/* 978  */ }
/* 979  */
/* 980  */ .mini-cart a.button-mini-cart {
/* 981  */   margin-top: 10px;
/* 982  */   padding-right: 15px;
/* 983  */   padding-left: 15px;
/* 984  */   display: block;
/* 985  */   font-weight: 700;
/* 986  */   font-size: 14px;
/* 987  */   text-transform: uppercase;
/* 988  */   white-space: nowrap;
/* 989  */   color: #1a1a1a;
/* 990  */   background: #FFD800;
/* 991  */ }
/* 992  */
/* 993  */ .mini-cart a.button-mini-cart:hover {
/* 994  */   color: #FFD800;
/* 995  */   background: #1a1a1a;
/* 996  */ }
/* 997  */
/* 998  */ .mini-cart.cart-fixed {
/* 999  */   background: #ffd800;
/* 1000 */   color: #1a1a1a;

/* main.css */

/* 1001 */   float: right;
/* 1002 */ }
/* 1003 */
/* 1004 */ .mini-cart.cart-fixed svg {
/* 1005 */   fill: #1a1a1a;
/* 1006 */   vertical-align: middle;
/* 1007 */   transition: .2s all;
/* 1008 */ }
/* 1009 */
/* 1010 */ .mini-cart.cart-fixed:hover {
/* 1011 */   background: #efcb01;
/* 1012 */   color: #1a1a1a;
/* 1013 */ }
/* 1014 */
/* 1015 */ .mini-cart.cart-fixed:hover svg {
/* 1016 */   fill: #1a1a1a;
/* 1017 */ }
/* 1018 */
/* 1019 */ .mini-cart.cart-fixed a.cart-link {
/* 1020 */   padding-top: 2px;
/* 1021 */   display: block;
/* 1022 */ }
/* 1023 */
/* 1024 */ .main-header.bp-header-2 {
/* 1025 */   background: #1a1a1a;
/* 1026 */ }
/* 1027 */
/* 1028 */ .main-header.bp-header-2 .wrapper-header-boxed {
/* 1029 */   position: relative;
/* 1030 */ }
/* 1031 */
/* 1032 */ .main-header.bp-header-2 .header-logo-contact-section {
/* 1033 */   padding-left: 20px;
/* 1034 */   padding-right: 20px;
/* 1035 */ }
/* 1036 */
/* 1037 */ .main-header.bp-header-2 .header-nav-section {
/* 1038 */   position: absolute;
/* 1039 */   z-index: 999;
/* 1040 */   width: 100%;
/* 1041 */   top: 100%;
/* 1042 */   padding-left: 20px;
/* 1043 */ }
/* 1044 */
/* 1045 */ .header-nav-top {
/* 1046 */   background: #1a1a1a;
/* 1047 */   position: relative;
/* 1048 */ }
/* 1049 */
/* 1050 */ .header-nav-top .main-menu {

/* main.css */

/* 1051 */   display: inline-block;
/* 1052 */ }
/* 1053 */
/* 1054 */ .header-nav-top .main-menu ul > li.current-menu-item > a {
/* 1055 */   color: #ffffff;
/* 1056 */ }
/* 1057 */
/* 1058 */ .header-nav-top .main-menu li a {
/* 1059 */   color: #979797;
/* 1060 */ }
/* 1061 */
/* 1062 */ .header-nav-top .main-menu li:hover > a {
/* 1063 */   color: #ffffff;
/* 1064 */ }
/* 1065 */
/* 1066 */ .header-nav-top .main-menu li ul li.current-menu-item a {
/* 1067 */   color: #1a1a1a;
/* 1068 */ }
/* 1069 */
/* 1070 */ .header-nav-top .main-menu li ul li a {
/* 1071 */   color: #1a1a1a;
/* 1072 */ }
/* 1073 */
/* 1074 */ .header-nav-top .main-menu li ul li:hover a {
/* 1075 */   color: #1a1a1a;
/* 1076 */ }
/* 1077 */
/* 1078 */ .header-nav-top .mini-cart {
/* 1079 */   line-height: 58px;
/* 1080 */   z-index: 999999;
/* 1081 */ }
/* 1082 */
/* 1083 */ .header-nav-top .mini-cart .cart-icon i {
/* 1084 */   color: #979797;
/* 1085 */ }
/* 1086 */
/* 1087 */ .header-nav-top .mini-cart .cart-inner {
/* 1088 */   border-right: 1px solid #343434;
/* 1089 */   border-left: 1px solid #343434;
/* 1090 */ }
/* 1091 */
/* 1092 */ .header-nav-top .mini-cart .cart-inner:hover .cart-icon i {
/* 1093 */   color: #ffd800;
/* 1094 */ }
/* 1095 */
/* 1096 */ .header-nav-top .wrapper-top-bar-menu {
/* 1097 */   display: inline-block;
/* 1098 */ }
/* 1099 */
/* 1100 */ .header-nav-top .cart-and-social-wrapper {

/* main.css */

/* 1101 */   display: inline-block;
/* 1102 */   float: right;
/* 1103 */ }
/* 1104 */
/* 1105 */ .header-nav-top .top-social-nav {
/* 1106 */   padding-left: 5px;
/* 1107 */   padding-top: 20px;
/* 1108 */ }
/* 1109 */
/* 1110 */ /*------------------------------------*/
/* 1111 */ /* Sticky Header
/* 1112 *| /*------------------------------------*/
/* 1113 */ .bp-sticky-header {
/* 1114 */   position: fixed !important;
/* 1115 */   top: 0 !important;
/* 1116 */   left: 0;
/* 1117 */   right: 0;
/* 1118 */   margin-right: auto;
/* 1119 */   margin-left: auto;
/* 1120 */   z-index: 999;
/* 1121 */ }
/* 1122 */
/* 1123 */ .admin-bar .bp-sticky-header {
/* 1124 */   top: 32px !important;
/* 1125 */ }
/* 1126 */
/* 1127 */ .wrapper-nav-section-2 {
/* 1128 */   position: relative;
/* 1129 */ }
/* 1130 */
/* 1131 */ .wrapper-nav-section-2 .header-nav-section-2 {
/* 1132 */   position: absolute;
/* 1133 */   z-index: 999;
/* 1134 */   width: 100%;
/* 1135 */   top: 100%;
/* 1136 */ }
/* 1137 */
/* 1138 */ .wrapper-nav-section-2 .main-menu {
/* 1139 */   background: #ffd800;
/* 1140 */   padding-left: 20px;
/* 1141 */ }
/* 1142 */
/* 1143 */ /*-----------------------------------------------------------------------------------*/
/* 1144 */ /*	header styles ends
/* 1145 *| /*-----------------------------------------------------------------------------------*/
/* 1146 */ /*-----------------------------------------------------------------------------------*/
/* 1147 */ /*	3.0 Banner
/* 1148 *| /*-----------------------------------------------------------------------------------*/
/* 1149 */ .banner {
/* 1150 */   background-image: url("../images/banner.jpg");

/* main.css */

/* 1151 */   text-align: center;
/* 1152 */   overflow: hidden;
/* 1153 */   background-size: cover;
/* 1154 */   background-position: center;
/* 1155 */   min-height: 180px;
/* 1156 */   display: flex;
/* 1157 */   justify-content: center;
/* 1158 */   align-items: center;
/* 1159 */   padding-top: 40px;
/* 1160 */   padding-bottom: 40px;
/* 1161 */   width: 100%;
/* 1162 */ }
/* 1163 */
/* 1164 */ .banner h1, .banner h2 {
/* 1165 */   margin-top: 0;
/* 1166 */   margin-bottom: 0;
/* 1167 */   font-weight: 700;
/* 1168 */   line-height: 48px;
/* 1169 */   max-width: 550px;
/* 1170 */   color: #1a1a1a;
/* 1171 */   font-size: 36px;
/* 1172 */ }
/* 1173 */
/* 1174 */ .banner.banner-header-2 {
/* 1175 */   padding-top: 80px;
/* 1176 */   min-height: 220px;
/* 1177 */ }
/* 1178 */
/* 1179 */ .page-template-default .banner {
/* 1180 */   margin-bottom: 35px;
/* 1181 */ }
/* 1182 */
/* 1183 */ /*-----------------------------------------------------------------------------------*/
/* 1184 */ /*	4.0 Home
/* 1185 *| /*-----------------------------------------------------------------------------------*/
/* 1186 */ .section-common {
/* 1187 */   padding-top: 100px;
/* 1188 */   padding-bottom: 100px;
/* 1189 */ }
/* 1190 */
/* 1191 */ .section-heading-intro {
/* 1192 */   margin-bottom: 30px;
/* 1193 */   overflow: hidden;
/* 1194 */ }
/* 1195 */
/* 1196 */ .section-heading-intro h2 {
/* 1197 */   font-size: 30px;
/* 1198 */   margin-top: 0;
/* 1199 */   margin-bottom: 20px;
/* 1200 */   color: #1a1a1a;

/* main.css */

/* 1201 */   line-height: 46px;
/* 1202 */ }
/* 1203 */
/* 1204 */ .section-heading-intro .section-text {
/* 1205 */   color: #808080;
/* 1206 */   font-size: 18px;
/* 1207 */   line-height: 27px;
/* 1208 */   margin-bottom: 25px;
/* 1209 */   max-width: 700px;
/* 1210 */   margin-left: auto;
/* 1211 */   margin-right: auto;
/* 1212 */ }
/* 1213 */
/* 1214 */ .slide-content {
/* 1215 */   position: relative;
/* 1216 */ }
/* 1217 */
/* 1218 */ .slide-content img {
/* 1219 */   width: 100%;
/* 1220 */ }
/* 1221 */
/* 1222 */ .slide-content .slider-detail {
/* 1223 */   position: absolute;
/* 1224 */   left: 0;
/* 1225 */   top: 0;
/* 1226 */   width: 100%;
/* 1227 */   height: 100%;
/* 1228 */   display: flex;
/* 1229 */   align-items: center;
/* 1230 */ }
/* 1231 */
/* 1232 */ .slide-content .custom-container-slider {
/* 1233 */   position: relative;
/* 1234 */   padding-bottom: 24px;
/* 1235 */   overflow: hidden;
/* 1236 */ }
/* 1237 */
/* 1238 */ .slide-content .slider-detail-inner {
/* 1239 */   position: relative;
/* 1240 */   max-width: 460px;
/* 1241 */   background: #ffffff;
/* 1242 */   padding: 50px 30px;
/* 1243 */ }
/* 1244 */
/* 1245 */ .slide-content .slider-detail-inner.icon-padding {
/* 1246 */   padding-top: 80px;
/* 1247 */ }
/* 1248 */
/* 1249 */ .slide-content .slider-detail-inner .slide-icon {
/* 1250 */   position: absolute;

/* main.css */

/* 1251 */ }
/* 1252 */
/* 1253 */ .slide-content .slider-detail-inner img {
/* 1254 */   width: auto !important;
/* 1255 */ }
/* 1256 */
/* 1257 */ .slide-content .slider-detail-inner h1 {
/* 1258 */   margin-top: 0;
/* 1259 */   font-size: 36px;
/* 1260 */ }
/* 1261 */
/* 1262 */ .slide-content .slider-detail-inner p {
/* 1263 */   line-height: 27px;
/* 1264 */   font-size: 16px;
/* 1265 */   color: #808080;
/* 1266 */ }
/* 1267 */
/* 1268 */ .slide-content .slider-detail-inner a.button-slider {
/* 1269 */   float: right;
/* 1270 */   position: relative;
/* 1271 */   bottom: -24px;
/* 1272 */ }
/* 1273 */
/* 1274 */ .slide-content .slider-detail-inner.content-animate {
/* 1275 */   background: rgba(255, 255, 255, 0);
/* 1276 */   transition: .5s background ease-in-out;
/* 1277 */   transition-delay: 1s;
/* 1278 */ }
/* 1279 */
/* 1280 */ .slide-content .slider-detail-inner.content-animate .slide-icon {
/* 1281 */   top: -100%;
/* 1282 */   transition: .3s all;
/* 1283 */   transition-delay: 1.7s;
/* 1284 */ }
/* 1285 */
/* 1286 */ .slide-content .slider-detail-inner.content-animate h1 {
/* 1287 */   position: relative;
/* 1288 */   top: -200px;
/* 1289 */   transition: .3s all;
/* 1290 */   transition-delay: 1.5s;
/* 1291 */ }
/* 1292 */
/* 1293 */ .slide-content .slider-detail-inner.content-animate p {
/* 1294 */   position: relative;
/* 1295 */   left: -500px;
/* 1296 */   transition: .3s all;
/* 1297 */   transition-delay: 1.7s;
/* 1298 */ }
/* 1299 */
/* 1300 */ .slide-content .slider-detail-inner.content-animate a.button-slider {

/* main.css */

/* 1301 */   opacity: 0;
/* 1302 */   transition: opacity .2s ease-in-out 2s, background .2s ease-in-out 0s, color .2s ease-in-out 0s;
/* 1303 */ }
/* 1304 */
/* 1305 */ .main-slider {
/* 1306 */   position: relative;
/* 1307 */ }
/* 1308 */
/* 1309 */ .main-slider .owl-dots {
/* 1310 */   position: absolute;
/* 1311 */   bottom: 45px;
/* 1312 */   left: 0;
/* 1313 */   right: 0;
/* 1314 */   margin: auto;
/* 1315 */ }
/* 1316 */
/* 1317 */ .main-slider .owl-dots .owl-dot span {
/* 1318 */   width: 36px;
/* 1319 */   height: 7px;
/* 1320 */   display: inline-block;
/* 1321 */   background: #ffffff;
/* 1322 */   transition: .2s all ease-in-out;
/* 1323 */ }
/* 1324 */
/* 1325 */ .main-slider .owl-dots .owl-dot.active span {
/* 1326 */   background: #1a1a1a;
/* 1327 */ }
/* 1328 */
/* 1329 */ .main-slider .owl-dots .owl-dot:hover span {
/* 1330 */   background: #1a1a1a;
/* 1331 */ }
/* 1332 */
/* 1333 */ .main-slider .active .slider-detail-inner.content-animate {
/* 1334 */   background: rgba(255, 255, 255, 0.9);
/* 1335 */ }
/* 1336 */
/* 1337 */ .main-slider .active .slider-detail-inner.content-animate .slide-icon {
/* 1338 */   top: 0;
/* 1339 */ }
/* 1340 */
/* 1341 */ .main-slider .active .slider-detail-inner.content-animate h1 {
/* 1342 */   top: 0;
/* 1343 */ }
/* 1344 */
/* 1345 */ .main-slider .active .slider-detail-inner.content-animate p {
/* 1346 */   left: 0;
/* 1347 */ }
/* 1348 */
/* 1349 */ .main-slider .active .slider-detail-inner.content-animate a.button-slider {
/* 1350 */   opacity: 1;

/* main.css */

/* 1351 */ }
/* 1352 */
/* 1353 */ .feature-icon svg .a {
/* 1354 */   stroke: #f5b800;
/* 1355 */ }
/* 1356 */
/* 1357 */ .feature-icon .filler-class .a {
/* 1358 */   stroke: none;
/* 1359 */   fill: #f5b800;
/* 1360 */ }
/* 1361 */
/* 1362 */ .special-home-section .wrapper-special-feature h2 {
/* 1363 */   margin-top: 20px;
/* 1364 */   margin-bottom: 10px;
/* 1365 */   font-size: 16px;
/* 1366 */ }
/* 1367 */
/* 1368 */ .special-home-section .wrapper-special-feature p {
/* 1369 */   font-size: 14px;
/* 1370 */   color: #808080;
/* 1371 */   line-height: 24px;
/* 1372 */ }
/* 1373 */
/* 1374 */ .wrapper-special-feature h2 {
/* 1375 */   margin-top: 20px;
/* 1376 */   margin-bottom: 10px;
/* 1377 */   font-size: 16px;
/* 1378 */ }
/* 1379 */
/* 1380 */ .wrapper-special-feature p {
/* 1381 */   font-size: 14px;
/* 1382 */   color: #808080;
/* 1383 */   line-height: 24px;
/* 1384 */ }
/* 1385 */
/* 1386 */ .specialties-box {
/* 1387 */   display: flex;
/* 1388 */   margin-right: -15px;
/* 1389 */   margin-left: -15px;
/* 1390 */ }
/* 1391 */
/* 1392 */ .wrapper-special-feature-item {
/* 1393 */   -webkit-box-shadow: 0px 0px 50px 14px #ededed;
/* 1394 */   -moz-box-shadow: 0px 0px 50px 14px #ededed;
/* 1395 */   box-shadow: 0px 0px 50px 14px #ededed;
/* 1396 */   margin-right: 15px;
/* 1397 */   margin-left: 15px;
/* 1398 */   padding: 30px 25px;
/* 1399 */   text-align: center;
/* 1400 */   width: 50%;

/* main.css */

/* 1401 */ }
/* 1402 */
/* 1403 */ .special-home-var2 .wrapper-special-feature p {
/* 1404 */   font-size: 18px;
/* 1405 */   line-height: 30px;
/* 1406 */   color: #808080;
/* 1407 */   font-weight: 500;
/* 1408 */   margin-bottom: 25px;
/* 1409 */ }
/* 1410 */
/* 1411 */ .special-home-var2 .wrapper-special-feature-item h3 {
/* 1412 */   font-size: 16px;
/* 1413 */   font-weight: 700;
/* 1414 */   margin-bottom: 20px;
/* 1415 */   line-height: 24px;
/* 1416 */ }
/* 1417 */
/* 1418 */ .special-home-var2 .wrapper-special-feature-item p {
/* 1419 */   font-size: 14px;
/* 1420 */   color: #808080;
/* 1421 */   line-height: 24px;
/* 1422 */ }
/* 1423 */
/* 1424 */ .container-special-features {
/* 1425 */   padding-top: 110px;
/* 1426 */   padding-bottom: 90px;
/* 1427 */ }
/* 1428 */
/* 1429 */ .container-special-features h2 {
/* 1430 */   margin-top: 0;
/* 1431 */   margin-bottom: 30px;
/* 1432 */ }
/* 1433 */
/* 1434 */ .container-special-features h3 {
/* 1435 */   font-size: 16px;
/* 1436 */   margin-bottom: 20px;
/* 1437 */   line-height: 24px;
/* 1438 */ }
/* 1439 */
/* 1440 */ .container-special-features p {
/* 1441 */   font-size: 18px;
/* 1442 */ }
/* 1443 */
/* 1444 */ .container-special-features .wrapper-special-feature {
/* 1445 */   margin-bottom: 30px;
/* 1446 */   background: #ffffff;
/* 1447 */   padding: 40px 30px;
/* 1448 */ }
/* 1449 */
/* 1450 */ .container-special-features .wrapper-special-feature p {

/* main.css */

/* 1451 */   font-size: 14px;
/* 1452 */ }
/* 1453 */
/* 1454 */ .container-special-features .specialty-intro {
/* 1455 */   margin-bottom: 30px;
/* 1456 */ }
/* 1457 */
/* 1458 */ .container-special-features .specialty-intro p {
/* 1459 */   font-weight: 500;
/* 1460 */   line-height: 30px;
/* 1461 */ }
/* 1462 */
/* 1463 */ .services-section .services-box {
/* 1464 */   display: flex;
/* 1465 */   margin-left: -15px;
/* 1466 */   margin-right: -15px;
/* 1467 */   flex-wrap: wrap;
/* 1468 */ }
/* 1469 */
/* 1470 */ .services-section .services-box img {
/* 1471 */   width: 100%;
/* 1472 */ }
/* 1473 */
/* 1474 */ .services-section .services-box .image-anchor:hover {
/* 1475 */   opacity: .9;
/* 1476 */ }
/* 1477 */
/* 1478 */ .services-section .services-box .single-service-wrapper {
/* 1479 */   width: 33.33%;
/* 1480 */   padding-left: 15px;
/* 1481 */   padding-right: 15px;
/* 1482 */   display: flex;
/* 1483 */ }
/* 1484 */
/* 1485 */ .services-section .services-box .single-service {
/* 1486 */   margin-bottom: 60px;
/* 1487 */   background: #ffffff;
/* 1488 */   -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.05);
/* 1489 */   -moz-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.05);
/* 1490 */   box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.05);
/* 1491 */ }
/* 1492 */
/* 1493 */ .services-section .services-box .single-service:hover {
/* 1494 */   -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.22);
/* 1495 */   -moz-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.22);
/* 1496 */   box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.22);
/* 1497 */ }
/* 1498 */
/* 1499 */ .services-section .service-single-content {
/* 1500 */   padding: 40px 30px 40px;

/* main.css */

/* 1501 */ }
/* 1502 */
/* 1503 */ .services-section .service-single-content h3 {
/* 1504 */   margin-top: 0;
/* 1505 */   font-size: 18px;
/* 1506 */   margin-bottom: 25px;
/* 1507 */ }
/* 1508 */
/* 1509 */ .services-section .service-single-content h3 a {
/* 1510 */   color: #1a1a1a;
/* 1511 */ }
/* 1512 */
/* 1513 */ .services-section .service-single-content h3 a:hover {
/* 1514 */   color: #ffd800;
/* 1515 */ }
/* 1516 */
/* 1517 */ .services-section .service-single-content P {
/* 1518 */   font-size: 14px;
/* 1519 */   line-height: 24px;
/* 1520 */   color: #808080;
/* 1521 */ }
/* 1522 */
/* 1523 */ .services-section.services-section-var2 {
/* 1524 */   padding-bottom: 120px;
/* 1525 */ }
/* 1526 */
/* 1527 */ .services-section .service-box-var2 {
/* 1528 */   background: #ffffff;
/* 1529 */   display: flex;
/* 1530 */   margin-bottom: 30px;
/* 1531 */   align-items: center;
/* 1532 */   transition: .2s all ease-in-out;
/* 1533 */ }
/* 1534 */
/* 1535 */ .services-section .service-box-var2 img {
/* 1536 */   width: 100%;
/* 1537 */ }
/* 1538 */
/* 1539 */ .services-section .service-box-var2 .image-service {
/* 1540 */   width: 45%;
/* 1541 */   transition: .2s all ease-in-out;
/* 1542 */ }
/* 1543 */
/* 1544 */ .services-section .service-box-var2 .image-service:hover {
/* 1545 */   opacity: .9;
/* 1546 */ }
/* 1547 */
/* 1548 */ .services-section .service-box-var2 .detail-service {
/* 1549 */   width: 55%;
/* 1550 */   padding: 15px 35px;

/* main.css */

/* 1551 */ }
/* 1552 */
/* 1553 */ .services-section .service-box-var2 h3 {
/* 1554 */   margin-top: 0;
/* 1555 */   font-size: 18px;
/* 1556 */   font-weight: 700;
/* 1557 */ }
/* 1558 */
/* 1559 */ .services-section .service-box-var2 h3 a {
/* 1560 */   color: #1a1a1a;
/* 1561 */ }
/* 1562 */
/* 1563 */ .services-section .service-box-var2 h3 a:hover {
/* 1564 */   color: #ffd800;
/* 1565 */ }
/* 1566 */
/* 1567 */ .services-section .service-box-var2 p {
/* 1568 */   font-size: 14px;
/* 1569 */   line-height: 24px;
/* 1570 */   color: #808080;
/* 1571 */   margin-bottom: 0;
/* 1572 */ }
/* 1573 */
/* 1574 */ .services-section .services-button-wrapper {
/* 1575 */   margin-top: 30px;
/* 1576 */ }
/* 1577 */
/* 1578 */ .wrapper-button-services {
/* 1579 */   margin-bottom: 120px;
/* 1580 */ }
/* 1581 */
/* 1582 */ .slider-featured {
/* 1583 */   position: relative;
/* 1584 */ }
/* 1585 */
/* 1586 */ .slider-featured .owl-nav .owl-prev, .slider-featured .owl-nav .owl-next {
/* 1587 */   position: absolute;
/* 1588 */   top: 50%;
/* 1589 */   width: 46px;
/* 1590 */   height: 46px;
/* 1591 */   margin-top: -23px;
/* 1592 */   display: inline-block;
/* 1593 */   background: #1a1a1a;
/* 1594 */   border-radius: 46px;
/* 1595 */   text-align: center;
/* 1596 */   padding: 0;
/* 1597 */ }
/* 1598 */
/* 1599 */ .slider-featured .owl-nav .owl-prev i, .slider-featured .owl-nav .owl-next i {
/* 1600 */   line-height: 46px;

/* main.css */

/* 1601 */ }
/* 1602 */
/* 1603 */ .slider-featured .owl-nav .owl-prev {
/* 1604 */   left: 0;
/* 1605 */   margin-left: -23px;
/* 1606 */ }
/* 1607 */
/* 1608 */ .slider-featured .owl-nav .owl-next {
/* 1609 */   right: 0;
/* 1610 */   margin-right: -23px;
/* 1611 */ }
/* 1612 */
/* 1613 */ .slider-featured img {
/* 1614 */   width: 100%;
/* 1615 */ }
/* 1616 */
/* 1617 */ .wrapper-slider-featured {
/* 1618 */   position: relative;
/* 1619 */ }
/* 1620 */
/* 1621 */ .custom-navigation a {
/* 1622 */   position: absolute;
/* 1623 */   top: 50%;
/* 1624 */   width: 46px;
/* 1625 */   height: 46px;
/* 1626 */   margin-top: -23px;
/* 1627 */   display: inline-block;
/* 1628 */   background: #1a1a1a;
/* 1629 */   border-radius: 46px;
/* 1630 */   line-height: 46px;
/* 1631 */   text-align: center;
/* 1632 */ }
/* 1633 */
/* 1634 */ .custom-navigation a.custom-left {
/* 1635 */   left: 0;
/* 1636 */   margin-left: -23px;
/* 1637 */ }
/* 1638 */
/* 1639 */ .custom-navigation a.custom-right {
/* 1640 */   right: 0;
/* 1641 */   margin-right: -23px;
/* 1642 */   transform: rotate(180deg);
/* 1643 */ }
/* 1644 */
/* 1645 */ .wrapper-featured-contents {
/* 1646 */   position: relative;
/* 1647 */ }
/* 1648 */
/* 1649 */ .wrapper-featured-contents h2 {
/* 1650 */   margin-top: 0;

/* main.css */

/* 1651 */   margin-bottom: 20px !important;
/* 1652 */ }
/* 1653 */
/* 1654 */ .wrapper-featured-contents:hover .btn-slider {
/* 1655 */   opacity: 1;
/* 1656 */   visibility: visible;
/* 1657 */ }
/* 1658 */
/* 1659 */ .wrapper-featured-contents .btn-slider {
/* 1660 */   position: relative;
/* 1661 */   z-index: 999;
/* 1662 */   opacity: 0;
/* 1663 */   visibility: hidden;
/* 1664 */   display: inline-block;
/* 1665 */ }
/* 1666 */
/* 1667 */ .wrapper-featured-contents .btn-slider i {
/* 1668 */   display: inline-block;
/* 1669 */   margin-left: 30px;
/* 1670 */   vertical-align: middle;
/* 1671 */ }
/* 1672 */
/* 1673 */ .wrapper-featured-contents .wrapper-button {
/* 1674 */   text-align: center;
/* 1675 */   position: absolute;
/* 1676 */   top: 50%;
/* 1677 */   left: 0;
/* 1678 */   right: 0;
/* 1679 */   margin: -24px auto 0;
/* 1680 */ }
/* 1681 */
/* 1682 */ .wrapper-featured-contents .wrapper-location {
/* 1683 */   background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.3) 15%, black 100%);
/* 1684 */   /* FF3.6-15 */
/* 1685 */   background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.3) 15%, black 100%);
/* 1686 */   /* Chrome10-25,Safari5.1-6 */
/* 1687 */   background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.3) 15%, black 100%);
/* 1688 */   /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/* 1689 */   filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#a6000000', GradientType=0);
/* 1690 */   /* IE6-9 */
/* 1691 */   padding: 40px 21px 21px;
/* 1692 */   position: absolute;
/* 1693 */   z-index: 9999;
/* 1694 */   left: 0;
/* 1695 */   bottom: 0;
/* 1696 */   color: #ffffff;
/* 1697 */   width: 100%;
/* 1698 */   text-align: left;
/* 1699 */ }
/* 1700 */

/* main.css */

/* 1701 */ .wrapper-featured-contents .wrapper-location h3 {
/* 1702 */   color: #ffffff;
/* 1703 */   font-size: 18px;
/* 1704 */   margin-top: 0;
/* 1705 */ }
/* 1706 */
/* 1707 */ .wrapper-featured-contents .wrapper-location p.featured-location {
/* 1708 */   margin-bottom: 0;
/* 1709 */   font-size: 16px;
/* 1710 */   color: #d9d9d9;
/* 1711 */   position: relative;
/* 1712 */ }
/* 1713 */
/* 1714 */ .wrapper-featured-contents .wrapper-location p.featured-location:before {
/* 1715 */   font-family: FontAwesome;
/* 1716 */   content: "\f041";
/* 1717 */   margin-right: 10px;
/* 1718 */ }
/* 1719 */
/* 1720 */ .related-project-single {
/* 1721 */   position: relative;
/* 1722 */ }
/* 1723 */
/* 1724 */ .related-project-single img {
/* 1725 */   width: 100%;
/* 1726 */ }
/* 1727 */
/* 1728 */ .featured-section {
/* 1729 */   padding-bottom: 120px;
/* 1730 */ }
/* 1731 */
/* 1732 */ .featured-section-var2 {
/* 1733 */   overflow: hidden;
/* 1734 */ }
/* 1735 */
/* 1736 */ .featured-section-var2 img {
/* 1737 */   max-width: 100%;
/* 1738 */ }
/* 1739 */
/* 1740 */ .featured-section-var2 .wrapper-left-tabs, .featured-section-var2 .wrapper-tabs-large {
/* 1741 */   width: 50%;
/* 1742 */   height: 525px;
/* 1743 */   float: left;
/* 1744 */ }
/* 1745 */
/* 1746 */ .featured-section-var2 .wrapper-slider-right {
/* 1747 */   padding: 0px 15px;
/* 1748 */ }
/* 1749 */
/* 1750 */ .featured-section-var2 .wrapper-left-tabs {

/* main.css */

/* 1751 */   overflow-y: auto;
/* 1752 */ }
/* 1753 */
/* 1754 */ .featured-section-var2 .wrapper-left-tabs ul {
/* 1755 */   padding: 0 0 0 15px;
/* 1756 */   margin-bottom: 0;
/* 1757 */ }
/* 1758 */
/* 1759 */ .featured-section-var2 .wrapper-left-tabs li {
/* 1760 */   text-align: left;
/* 1761 */   list-style: none;
/* 1762 */   outline: none;
/* 1763 */   padding-top: 5px;
/* 1764 */   padding-bottom: 5px;
/* 1765 */   transition: all .2s ease-in-out;
/* 1766 */ }
/* 1767 */
/* 1768 */ .featured-section-var2 .wrapper-left-tabs li .wrapper-inner-single-feature {
/* 1769 */   padding: 13px 15px;
/* 1770 */ }
/* 1771 */
/* 1772 */ .featured-section-var2 .wrapper-left-tabs li .wrapper-inner-single-feature:hover {
/* 1773 */   transition: all .2s ease-in-out;
/* 1774 */ }
/* 1775 */
/* 1776 */ .featured-section-var2 .wrapper-left-tabs a {
/* 1777 */   outline: none;
/* 1778 */   display: flex;
/* 1779 */   align-items: center;
/* 1780 */ }
/* 1781 */
/* 1782 */ .featured-section-var2 .wrapper-left-tabs .image-wrapper_tabs {
/* 1783 */   width: 36%;
/* 1784 */ }
/* 1785 */
/* 1786 */ .featured-section-var2 .wrapper-left-tabs .text-wrapper {
/* 1787 */   padding-left: 27px;
/* 1788 */   width: 64%;
/* 1789 */ }
/* 1790 */
/* 1791 */ .featured-section-var2 .wrapper-left-tabs .text-wrapper h3 {
/* 1792 */   font-weight: 700;
/* 1793 */   font-size: 18px;
/* 1794 */   color: #1a1a1a;
/* 1795 */   margin-top: 0;
/* 1796 */   line-height: 24px;
/* 1797 */ }
/* 1798 */
/* 1799 */ .featured-section-var2 .wrapper-left-tabs .text-wrapper p {
/* 1800 */   font-size: 16px;

/* main.css */

/* 1801 */   line-height: 21px;
/* 1802 */   color: #808080;
/* 1803 */   margin-bottom: 0;
/* 1804 */ }
/* 1805 */
/* 1806 */ .featured-section-var2 .wrapper-left-tabs .text-wrapper i {
/* 1807 */   margin-right: 10px;
/* 1808 */ }
/* 1809 */
/* 1810 */ .wrapper-tab-contents {
/* 1811 */   position: relative;
/* 1812 */   overflow: hidden;
/* 1813 */ }
/* 1814 */
/* 1815 */ .wrapper-tab-contents img {
/* 1816 */   transform: scale(1);
/* 1817 */   transition: all .3s ease-in-out;
/* 1818 */ }
/* 1819 */
/* 1820 */ .wrapper-tab-contents .image-overlay {
/* 1821 */   display: block;
/* 1822 */   position: absolute;
/* 1823 */   top: 0;
/* 1824 */   left: 0;
/* 1825 */   width: 100%;
/* 1826 */   height: 100%;
/* 1827 */   z-index: 99;
/* 1828 */   background-color: rgba(26, 26, 26, 0);
/* 1829 */   transition: all .2s ease-in-out;
/* 1830 */ }
/* 1831 */
/* 1832 */ .wrapper-tab-contents:hover .button-wrapper {
/* 1833 */   opacity: 1;
/* 1834 */ }
/* 1835 */
/* 1836 */ .wrapper-tab-contents:hover .image-overlay {
/* 1837 */   background-color: rgba(26, 26, 26, 0.5);
/* 1838 */ }
/* 1839 */
/* 1840 */ .wrapper-tab-contents:hover img {
/* 1841 */   transform: scale(1.1);
/* 1842 */ }
/* 1843 */
/* 1844 */ .wrapper-tab-contents .button-wrapper {
/* 1845 */   transition: all .2s ease-in-out;
/* 1846 */   opacity: 0;
/* 1847 */   display: inline-block;
/* 1848 */   position: absolute;
/* 1849 */   top: 50%;
/* 1850 */   left: 0;

/* main.css */

/* 1851 */   right: 0;
/* 1852 */   margin: -24px auto 0;
/* 1853 */   text-align: center;
/* 1854 */   z-index: 999;
/* 1855 */ }
/* 1856 */
/* 1857 */ .wrapper-left-tabs::-webkit-scrollbar {
/* 1858 */   width: .5em;
/* 1859 */ }
/* 1860 */
/* 1861 */ .wrapper-left-tabs::-webkit-scrollbar-track {
/* 1862 */   -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
/* 1863 */ }
/* 1864 */
/* 1865 */ .wrapper-left-tabs::-webkit-scrollbar-thumb {
/* 1866 */   background-color: #1a1a1a;
/* 1867 */   outline: 1px solid slategrey;
/* 1868 */ }
/* 1869 */
/* 1870 */ .left-arrow-featured, .right-arrow-featured {
/* 1871 */   background: url("../images/icons/arrow.svg") center no-repeat;
/* 1872 */   height: 46px;
/* 1873 */   width: 46px;
/* 1874 */   display: inline-block;
/* 1875 */   transition: .2s all ease-in-out;
/* 1876 */ }
/* 1877 */
/* 1878 */ .left-arrow-featured:hover, .right-arrow-featured:hover {
/* 1879 */   opacity: .8;
/* 1880 */ }
/* 1881 */
/* 1882 */ .left-arrow-featured {
/* 1883 */   transform: rotate(180deg);
/* 1884 */ }
/* 1885 */
/* 1886 */ .portfolio-section {
/* 1887 */   background: #1a1a1a;
/* 1888 */   overflow: hidden;
/* 1889 */   padding-bottom: 120px;
/* 1890 */ }
/* 1891 */
/* 1892 */ .portfolio-section h2 {
/* 1893 */   color: #ffffff;
/* 1894 */ }
/* 1895 */
/* 1896 */ .wrapper-portfolio-slider img {
/* 1897 */   width: 100%;
/* 1898 */ }
/* 1899 */
/* 1900 */ .wrapper-portfolio-slider .item-box a {

/* main.css */

/* 1901 */   display: block;
/* 1902 */   position: relative;
/* 1903 */   overflow: hidden;
/* 1904 */ }
/* 1905 */
/* 1906 */ .wrapper-portfolio-slider .overlay-slide {
/* 1907 */   position: absolute;
/* 1908 */   display: flex;
/* 1909 */   justify-content: center;
/* 1910 */   align-items: center;
/* 1911 */   flex-direction: column;
/* 1912 */   width: 100%;
/* 1913 */   height: 100%;
/* 1914 */   background: rgba(255, 216, 0, 0.85);
/* 1915 */   padding: 20px;
/* 1916 */ }
/* 1917 */
/* 1918 */ .wrapper-portfolio-slider .overlay-slide h3 {
/* 1919 */   font-size: 18px;
/* 1920 */   color: #121212;
/* 1921 */   margin-bottom: 5px;
/* 1922 */   line-height: 24px;
/* 1923 */ }
/* 1924 */
/* 1925 */ .wrapper-portfolio-slider .overlay-slide p {
/* 1926 */   color: #7a6d25;
/* 1927 */ }
/* 1928 */
/* 1929 */ .inner-detail-slide .item-box:first-of-type {
/* 1930 */   margin-bottom: 30px;
/* 1931 */ }
/* 1932 */
/* 1933 */ .wrapper-inner-owl {
/* 1934 */   position: relative;
/* 1935 */ }
/* 1936 */
/* 1937 */ .wrapper-inner-owl .owl-prev, .wrapper-inner-owl .owl-next {
/* 1938 */   width: 50px;
/* 1939 */   height: 50px;
/* 1940 */   padding: 0 !important;
/* 1941 */   line-height: 50px;
/* 1942 */   border-radius: 0 !important;
/* 1943 */   background: #3d3d3d !important;
/* 1944 */   transition: .2s all;
/* 1945 */   opacity: 1 !important;
/* 1946 */ }
/* 1947 */
/* 1948 */ .wrapper-inner-owl .owl-prev:hover, .wrapper-inner-owl .owl-next:hover {
/* 1949 */   opacity: 1 !important;
/* 1950 */   background: #ffd800 !important;

/* main.css */

/* 1951 */ }
/* 1952 */
/* 1953 */ .wrapper-inner-owl .owl-prev:hover i, .wrapper-inner-owl .owl-next:hover i {
/* 1954 */   color: #1a1a1a;
/* 1955 */ }
/* 1956 */
/* 1957 */ .wrapper-inner-owl .owl-prev i, .wrapper-inner-owl .owl-next i {
/* 1958 */   line-height: 46px;
/* 1959 */   font-size: 24px;
/* 1960 */   transition: .2s all;
/* 1961 */ }
/* 1962 */
/* 1963 */ .wrapper-inner-owl .owl-nav {
/* 1964 */   margin-top: 30px;
/* 1965 */ }
/* 1966 */
/* 1967 */ .wrapper-inner-owl .disabled {
/* 1968 */   opacity: 1 !important;
/* 1969 */ }
/* 1970 */
/* 1971 */ .wrapper-inner-owl .disabled:hover {
/* 1972 */   background: #3d3d3d !important;
/* 1973 */ }
/* 1974 */
/* 1975 */ .wrapper-inner-owl .disabled:hover i {
/* 1976 */   color: #7d7a7a !important;
/* 1977 */ }
/* 1978 */
/* 1979 */ .wrapper-inner-owl .disabled i {
/* 1980 */   color: #7d7a7a;
/* 1981 */ }
/* 1982 */
/* 1983 */ #customDots {
/* 1984 */   margin-bottom: 30px;
/* 1985 */ }
/* 1986 */
/* 1987 */ #customDots .owl-dot {
/* 1988 */   font-size: 14px;
/* 1989 */   text-transform: uppercase;
/* 1990 */   color: #ffffff;
/* 1991 */   position: relative;
/* 1992 */   margin-bottom: 40px;
/* 1993 */   margin-right: 15px;
/* 1994 */   margin-left: 15px;
/* 1995 */ }
/* 1996 */
/* 1997 */ #customDots .owl-dot a {
/* 1998 */   color: #ffffff;
/* 1999 */ }
/* 2000 */

/* main.css */

/* 2001 */ #customDots .owl-dot:after {
/* 2002 */   cursor: default;
/* 2003 */   transition: .2s all ease-in-out;
/* 2004 */   opacity: 0;
/* 2005 */   visibility: hidden;
/* 2006 */   position: absolute;
/* 2007 */   left: 0;
/* 2008 */   bottom: -15px;
/* 2009 */   content: "";
/* 2010 */   height: 2px;
/* 2011 */   width: 100%;
/* 2012 */   background: #ffd800;
/* 2013 */ }
/* 2014 */
/* 2015 */ #customDots .owl-dot:hover:after {
/* 2016 */   opacity: 1;
/* 2017 */   visibility: visible;
/* 2018 */ }
/* 2019 */
/* 2020 */ #customDots .owl-dot.active:after {
/* 2021 */   opacity: 1;
/* 2022 */   visibility: visible;
/* 2023 */ }
/* 2024 */
/* 2025 */ .quote-bar-home {
/* 2026 */   background-attachment: fixed;
/* 2027 */   background-size: cover;
/* 2028 */   background-repeat: no-repeat;
/* 2029 */   background-position: center center;
/* 2030 */   position: relative;
/* 2031 */ }
/* 2032 */
/* 2033 */ .quote-bar-home .cta-overlay {
/* 2034 */   position: absolute;
/* 2035 */   content: "";
/* 2036 */   display: block;
/* 2037 */   width: 100%;
/* 2038 */   height: 100%;
/* 2039 */   background: rgba(255, 216, 0, 0.85);
/* 2040 */ }
/* 2041 */
/* 2042 */ .wrapper-quote-box {
/* 2043 */   position: relative;
/* 2044 */   z-index: 99;
/* 2045 */   display: flex;
/* 2046 */   justify-content: space-between;
/* 2047 */   align-items: center;
/* 2048 */   padding-top: 60px;
/* 2049 */   padding-bottom: 60px;
/* 2050 */   margin-left: -15px;

/* main.css */

/* 2051 */   margin-right: -15px;
/* 2052 */ }
/* 2053 */
/* 2054 */ .wrapper-quote-box .flex-item {
/* 2055 */   padding-left: 15px;
/* 2056 */   padding-right: 15px;
/* 2057 */ }
/* 2058 */
/* 2059 */ .wrapper-quote-box h2 {
/* 2060 */   margin-top: 0;
/* 2061 */   font-size: 24px;
/* 2062 */   color: #1a1a1a;
/* 2063 */   line-height: 32px;
/* 2064 */   font-weight: 700;
/* 2065 */ }
/* 2066 */
/* 2067 */ .wrapper-quote-box p {
/* 2068 */   margin-bottom: 0;
/* 2069 */   font-size: 18px;
/* 2070 */   color: #4b493d;
/* 2071 */ }
/* 2072 */
/* 2073 */ .wrapper-vc-cta {
/* 2074 */   padding-top: 60px;
/* 2075 */   padding-bottom: 60px;
/* 2076 */ }
/* 2077 */
/* 2078 */ .wrapper-vc-cta {
/* 2079 */   background-attachment: fixed;
/* 2080 */   background-size: cover;
/* 2081 */   background-repeat: no-repeat;
/* 2082 */   background-position: center center;
/* 2083 */   position: relative;
/* 2084 */ }
/* 2085 */
/* 2086 */ .vc-cta-overlay {
/* 2087 */   position: absolute;
/* 2088 */   top: 0;
/* 2089 */   content: "";
/* 2090 */   display: block;
/* 2091 */   width: 100%;
/* 2092 */   height: 100%;
/* 2093 */   opacity: .85;
/* 2094 */   background: #FFD800;
/* 2095 */ }
/* 2096 */
/* 2097 */ .container-cta {
/* 2098 */   padding-left: 15px;
/* 2099 */   padding-right: 15px;
/* 2100 */   margin-left: auto;

/* main.css */

/* 2101 */   margin-right: auto;
/* 2102 */   width: 100%;
/* 2103 */   max-width: 1170px;
/* 2104 */ }
/* 2105 */
/* 2106 */ .section-common.recent-blog {
/* 2107 */   padding-bottom: 40px;
/* 2108 */ }
/* 2109 */
/* 2110 */ .recent-blog {
/* 2111 */   background: #ffffff;
/* 2112 */   padding-bottom: 60px;
/* 2113 */ }
/* 2114 */
/* 2115 */ .wrapper-recent-single {
/* 2116 */   margin-bottom: 60px;
/* 2117 */ }
/* 2118 */
/* 2119 */ .wrapper-recent-single .wrapper-recent-thumbs {
/* 2120 */   display: block;
/* 2121 */ }
/* 2122 */
/* 2123 */ .wrapper-recent-single .wrapper-recent-thumbs:hover {
/* 2124 */   opacity: .9;
/* 2125 */ }
/* 2126 */
/* 2127 */ .wrapper-recent-single img {
/* 2128 */   width: 100%;
/* 2129 */ }
/* 2130 */
/* 2131 */ .wrapper-recent-single h3 {
/* 2132 */   margin-top: 25px;
/* 2133 */   margin-bottom: 15px;
/* 2134 */ }
/* 2135 */
/* 2136 */ .wrapper-recent-single h3 a {
/* 2137 */   font-size: 18px;
/* 2138 */   color: #1a1a1a;
/* 2139 */ }
/* 2140 */
/* 2141 */ .wrapper-recent-single h3 a:hover {
/* 2142 */   color: #ffd800;
/* 2143 */ }
/* 2144 */
/* 2145 */ .wrapper-recent-single p {
/* 2146 */   font-size: 14px;
/* 2147 */   line-height: 24px;
/* 2148 */   color: #808080;
/* 2149 */ }
/* 2150 */

/* main.css */

/* 2151 */ /*-----------------------------------------------------------------------------------*/
/* 2152 */ /*	5.0 Testimonials
/* 2153 *| /*-----------------------------------------------------------------------------------*/
/* 2154 */ .testimonials-section {
/* 2155 */   padding-bottom: 120px;
/* 2156 */ }
/* 2157 */
/* 2158 */ .testimonials-section .testimonials-text {
/* 2159 */   padding: 50px 45px 80px;
/* 2160 */   position: relative;
/* 2161 */   -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.05);
/* 2162 */   -moz-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.05);
/* 2163 */   box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.05);
/* 2164 */ }
/* 2165 */
/* 2166 */ .testimonials-section .testimonials-text p {
/* 2167 */   margin-bottom: 0;
/* 2168 */   font-size: 16px;
/* 2169 */   color: #737373;
/* 2170 */   line-height: 32px;
/* 2171 */ }
/* 2172 */
/* 2173 */ .testimonials-section .testimonials-text p strong {
/* 2174 */   color: #1a1a1a;
/* 2175 */   font-weight: 500;
/* 2176 */ }
/* 2177 */
/* 2178 */ .testimonials-section .testimonials-text .bg-testimonials {
/* 2179 */   position: absolute;
/* 2180 */   top: 0;
/* 2181 */   left: 0;
/* 2182 */   width: 100%;
/* 2183 */   height: 100%;
/* 2184 */   z-index: -1;
/* 2185 */   background: #ffffff;
/* 2186 */ }
/* 2187 */
/* 2188 */ .testimonials-section .wrapper-slider-testimonials {
/* 2189 */   padding: 5px;
/* 2190 */ }
/* 2191 */
/* 2192 */ .testimonials-section .author-image {
/* 2193 */   display: inline-block;
/* 2194 */   width: 65px;
/* 2195 */   height: 65px;
/* 2196 */   border-radius: 65px;
/* 2197 */   overflow: hidden;
/* 2198 */   margin-top: -32px;
/* 2199 */   position: relative;
/* 2200 */   z-index: 999;

/* main.css */

/* 2201 */ }
/* 2202 */
/* 2203 */ .testimonials-section .author-image img {
/* 2204 */   border-radius: 65px;
/* 2205 */ }
/* 2206 */
/* 2207 */ .testimonials-section h3 {
/* 2208 */   font-size: 18px;
/* 2209 */   color: #1a1a1a;
/* 2210 */   margin-top: 15px;
/* 2211 */   margin-bottom: 5px;
/* 2212 */ }
/* 2213 */
/* 2214 */ .testimonials-section .author-designation {
/* 2215 */   display: inline-block;
/* 2216 */   text-transform: uppercase;
/* 2217 */   font-size: 12px;
/* 2218 */   letter-spacing: 2.4px;
/* 2219 */   color: #9fa3a7;
/* 2220 */   margin-bottom: 15px;
/* 2221 */ }
/* 2222 */
/* 2223 */ .testimonials-section .testimonial-short-border {
/* 2224 */   display: block;
/* 2225 */   margin: auto;
/* 2226 */   background: #ffd800;
/* 2227 */   width: 37px;
/* 2228 */   height: 2px;
/* 2229 */ }
/* 2230 */
/* 2231 */ .testimonials-section .flex-control-nav {
/* 2232 */   position: static;
/* 2233 */   margin-top: 10px;
/* 2234 */   margin-bottom: 0;
/* 2235 */ }
/* 2236 */
/* 2237 */ .testimonials-slider .owl-dots {
/* 2238 */   padding-top: 30px;
/* 2239 */ }
/* 2240 */
/* 2241 */ .testimonials-slider .owl-dots .owl-dot span {
/* 2242 */   background: #b4b4b4;
/* 2243 */   transition: .2s all ease-in-out;
/* 2244 */ }
/* 2245 */
/* 2246 */ .testimonials-slider .owl-dots .owl-dot.active span {
/* 2247 */   background: #1a1a1a;
/* 2248 */ }
/* 2249 */
/* 2250 */ .testimonials-slider.variation-2 .wrapper-slider-testimonials {

/* main.css */

/* 2251 */   padding-left: 7px;
/* 2252 */ }
/* 2253 */
/* 2254 */ .testimonials-slider.variation-2 .testimonials-text {
/* 2255 */   padding-top: 110px;
/* 2256 */   padding-bottom: 35px;
/* 2257 */   position: relative;
/* 2258 */ }
/* 2259 */
/* 2260 */ .testimonials-slider.variation-2 h3 {
/* 2261 */   position: absolute;
/* 2262 */   left: -7px;
/* 2263 */   top: 35px;
/* 2264 */   background: #ffd800;
/* 2265 */   padding: 15px;
/* 2266 */   font-size: 12px;
/* 2267 */   text-transform: uppercase;
/* 2268 */   font-weight: 700;
/* 2269 */   margin-top: 0;
/* 2270 */ }
/* 2271 */
/* 2272 */ .testimonials-slider.variation-2 p {
/* 2273 */   font-size: 16px;
/* 2274 */   font-weight: 600;
/* 2275 */   line-height: 23px;
/* 2276 */   color: #1a1a1a;
/* 2277 */   margin-bottom: 20px;
/* 2278 */ }
/* 2279 */
/* 2280 */ .testimonials-slider.variation-2 .testimonial-short-border {
/* 2281 */   width: 63px;
/* 2282 */   background: #e3e3e3;
/* 2283 */   margin-bottom: 20px;
/* 2284 */ }
/* 2285 */
/* 2286 */ .testimonials-slider.variation-2 .author-image {
/* 2287 */   margin: 0;
/* 2288 */   position: absolute;
/* 2289 */   right: 20px;
/* 2290 */   top: 25px;
/* 2291 */   z-index: 999;
/* 2292 */ }
/* 2293 */
/* 2294 */ .testimonials-slider.variation-2 .author-designation {
/* 2295 */   font-size: 13px;
/* 2296 */   letter-spacing: normal;
/* 2297 */   text-transform: none;
/* 2298 */   font-weight: 400;
/* 2299 */   line-height: 23px;
/* 2300 */ }

/* main.css */

/* 2301 */
/* 2302 */ .partners-section {
/* 2303 */   padding-bottom: 100px;
/* 2304 */ }
/* 2305 */
/* 2306 */ .slider-partners .owl-stage {
/* 2307 */   display: flex;
/* 2308 */   align-items: center;
/* 2309 */ }
/* 2310 */
/* 2311 */ .slider-partners.owl-carousel .owl-item img {
/* 2312 */   margin: auto;
/* 2313 */   max-width: 100%;
/* 2314 */   width: auto;
/* 2315 */ }
/* 2316 */
/* 2317 */ .clients-partners-wrapper {
/* 2318 */   margin-left: -15px;
/* 2319 */   margin-right: -15px;
/* 2320 */ }
/* 2321 */
/* 2322 */ .clients-partners-wrapper .client-wrapper {
/* 2323 */   display: inline-block;
/* 2324 */   padding-left: 15px;
/* 2325 */   padding-right: 15px;
/* 2326 */   margin-bottom: 20px;
/* 2327 */ }
/* 2328 */
/* 2329 */ .clients-partners-wrapper .client-wrapper img {
/* 2330 */   max-width: 100%;
/* 2331 */ }
/* 2332 */
/* 2333 */ .qualities-box {
/* 2334 */   display: flex;
/* 2335 */ }
/* 2336 */
/* 2337 */ .qualities-box .left-items {
/* 2338 */   width: 45%;
/* 2339 */   margin-bottom: 95px;
/* 2340 */ }
/* 2341 */
/* 2342 */ .qualities-box .right-items {
/* 2343 */   width: 55%;
/* 2344 */   overflow: hidden;
/* 2345 */   min-height: 516px;
/* 2346 */ }
/* 2347 */
/* 2348 */ .qualities-box h3 {
/* 2349 */   margin-top: 5px;
/* 2350 */   font-size: 18px;

/* main.css */

/* 2351 */   font-weight: 700;
/* 2352 */   color: #1a1a1a;
/* 2353 */ }
/* 2354 */
/* 2355 */ .qualities-box p {
/* 2356 */   line-height: 26px;
/* 2357 */   font-size: 15px;
/* 2358 */   color: #808080;
/* 2359 */ }
/* 2360 */
/* 2361 */ .quality-inner {
/* 2362 */   padding-left: 108px;
/* 2363 */   padding-right: 20px;
/* 2364 */   position: relative;
/* 2365 */   overflow: hidden;
/* 2366 */   margin-bottom: 30px;
/* 2367 */ }
/* 2368 */
/* 2369 */ .quality-inner:last-of-type {
/* 2370 */   margin-bottom: 0;
/* 2371 */ }
/* 2372 */
/* 2373 */ .quality-inner .quality-icon {
/* 2374 */   position: absolute;
/* 2375 */   left: 0;
/* 2376 */   display: inline-block;
/* 2377 */   width: 78px;
/* 2378 */   height: 78px;
/* 2379 */   border-radius: 78px;
/* 2380 */   text-align: center;
/* 2381 */   line-height: 78px;
/* 2382 */ }
/* 2383 */
/* 2384 */ .quality-inner .quality-icon svg {
/* 2385 */   max-width: 100%;
/* 2386 */ }
/* 2387 */
/* 2388 */ .quality-inner .quality-icon img {
/* 2389 */   max-width: 100%;
/* 2390 */ }
/* 2391 */
/* 2392 */ .quality-inner .quality-icon .house-icon .a {
/* 2393 */   fill: #675b19;
/* 2394 */   stroke: #675b19;
/* 2395 */ }
/* 2396 */
/* 2397 */ .right-items {
/* 2398 */   position: relative;
/* 2399 */   margin-bottom: 120px;
/* 2400 */ }

/* main.css */

/* 2401 */
/* 2402 */ .right-items .image-wrapper {
/* 2403 */   position: absolute;
/* 2404 */   transition: .1s all ease-in-out;
/* 2405 */   margin: auto;
/* 2406 */ }
/* 2407 */
/* 2408 */ .right-items .image-wrapper img {
/* 2409 */   max-width: 100%;
/* 2410 */   border-radius: 5px;
/* 2411 */ }
/* 2412 */
/* 2413 */ .pulse {
/* 2414 */   z-index: 99 !important;
/* 2415 */ }
/* 2416 */
/* 2417 */ .pulse img {
/* 2418 */   -webkit-animation-duration: .5s;
/* 2419 */   animation-duration: .5s;
/* 2420 */   -webkit-animation-fill-mode: both;
/* 2421 */   animation-fill-mode: both;
/* 2422 */   -webkit-animation-name: pulse;
/* 2423 */   animation-name: pulse;
/* 2424 */ }
/* 2425 */
/* 2426 */ @keyframes pulse {
/* 2427 */   from {
/* 2428 */     -webkit-transform: scale3d(1, 1, 1);
/* 2429 */     transform: scale3d(1, 1, 1);
/* 2430 */     opacity: 1;
/* 2431 */   }
/* 2432 */   20% {
/* 2433 */     -webkit-transform: scale3d(1.05, 1.05, 1.05);
/* 2434 */     transform: scale3d(1.05, 1.05, 1.05);
/* 2435 */     opacity: .8;
/* 2436 */   }
/* 2437 */   to {
/* 2438 */     -webkit-transform: scale3d(1, 1, 1);
/* 2439 */     transform: scale3d(1, 1, 1);
/* 2440 */     opacity: 1;
/* 2441 */   }
/* 2442 */ }
/* 2443 */
/* 2444 */ .pages-contents-area {
/* 2445 */   padding-top: 100px;
/* 2446 */   padding-bottom: 60px;
/* 2447 */   position: relative;
/* 2448 */ }
/* 2449 */
/* 2450 */ .pages-contents-area h2, .pages-contents-area h3, .pages-contents-area h4 {

/* main.css */

/* 2451 */   color: #1a1a1a;
/* 2452 */ }
/* 2453 */
/* 2454 */ .wrapper-heading-inner-pages {
/* 2455 */   margin-bottom: 70px;
/* 2456 */ }
/* 2457 */
/* 2458 */ .wrapper-heading-inner-pages h2 {
/* 2459 */   font-weight: 700;
/* 2460 */   font-size: 30px;
/* 2461 */   margin-top: 10px;
/* 2462 */   margin-bottom: 20px;
/* 2463 */   line-height: 38px;
/* 2464 */ }
/* 2465 */
/* 2466 */ .wrapper-heading-inner-pages p {
/* 2467 */   font-weight: 500;
/* 2468 */   font-size: 18px;
/* 2469 */   color: #808080;
/* 2470 */   line-height: 27px;
/* 2471 */   margin: 0;
/* 2472 */ }
/* 2473 */
/* 2474 */ .projects-category-lists {
/* 2475 */   padding-right: 120px;
/* 2476 */   position: relative;
/* 2477 */   margin-bottom: 20px;
/* 2478 */ }
/* 2479 */
/* 2480 */ .projects-category-lists ul {
/* 2481 */   text-transform: uppercase;
/* 2482 */   margin-left: -35px;
/* 2483 */ }
/* 2484 */
/* 2485 */ .projects-category-lists ul li {
/* 2486 */   margin-left: 35px;
/* 2487 */   margin-bottom: 40px;
/* 2488 */ }
/* 2489 */
/* 2490 */ .projects-category-lists ul li a {
/* 2491 */   color: #808080;
/* 2492 */ }
/* 2493 */
/* 2494 */ .projects-category-lists ul li a:hover {
/* 2495 */   color: #1a1a1a;
/* 2496 */ }
/* 2497 */
/* 2498 */ .projects-category-lists ul li.active a {
/* 2499 */   color: #1a1a1a;
/* 2500 */ }

/* main.css */

/* 2501 */
/* 2502 */ .page-layout-wrapper {
/* 2503 */   position: absolute;
/* 2504 */   right: 0;
/* 2505 */ }
/* 2506 */
/* 2507 */ .page-layout-wrapper a {
/* 2508 */   margin-left: 25px;
/* 2509 */ }
/* 2510 */
/* 2511 */ .page-layout-wrapper .bp-layout {
/* 2512 */   opacity: .6;
/* 2513 */   cursor: pointer;
/* 2514 */   display: inline-block;
/* 2515 */   transition: .2s all ease-in-out;
/* 2516 */ }
/* 2517 */
/* 2518 */ .page-layout-wrapper .bp-layout:hover {
/* 2519 */   opacity: 1;
/* 2520 */ }
/* 2521 */
/* 2522 */ .page-layout-wrapper .bp-grid {
/* 2523 */   margin-right: 20px;
/* 2524 */ }
/* 2525 */
/* 2526 */ .page-layout-wrapper .bp-active {
/* 2527 */   opacity: 1;
/* 2528 */ }
/* 2529 */
/* 2530 */ .single-project-box {
/* 2531 */   margin-bottom: 55px;
/* 2532 */   clear: both;
/* 2533 */   overflow: hidden;
/* 2534 */ }
/* 2535 */
/* 2536 */ .single-project-box .image-box {
/* 2537 */   width: 35%;
/* 2538 */   float: left;
/* 2539 */   overflow: hidden;
/* 2540 */ }
/* 2541 */
/* 2542 */ .single-project-box .image-box:hover {
/* 2543 */   opacity: .9;
/* 2544 */   transition: .2s all ease-in-out;
/* 2545 */ }
/* 2546 */
/* 2547 */ .single-project-box .image-box img {
/* 2548 */   width: 100%;
/* 2549 */   height: auto;
/* 2550 */ }

/* main.css */

/* 2551 */
/* 2552 */ .single-project-box .detail-box {
/* 2553 */   width: 65%;
/* 2554 */   padding-left: 85px;
/* 2555 */   overflow: hidden;
/* 2556 */   float: right;
/* 2557 */ }
/* 2558 */
/* 2559 */ .single-project-box h3 {
/* 2560 */   font-weight: 700;
/* 2561 */   line-height: 34px;
/* 2562 */ }
/* 2563 */
/* 2564 */ .single-project-box h3 a {
/* 2565 */   color: #1a1a1a;
/* 2566 */ }
/* 2567 */
/* 2568 */ .single-project-box h3 a:hover {
/* 2569 */   color: #808080;
/* 2570 */ }
/* 2571 */
/* 2572 */ .single-project-box p {
/* 2573 */   line-height: 24px;
/* 2574 */   color: #808080;
/* 2575 */   font-size: 14px;
/* 2576 */ }
/* 2577 */
/* 2578 */ .single-project-box .location {
/* 2579 */   line-height: 21px;
/* 2580 */   color: #808080;
/* 2581 */   margin-bottom: 20px;
/* 2582 */   display: block;
/* 2583 */ }
/* 2584 */
/* 2585 */ .single-project-box .view-projects {
/* 2586 */   margin-bottom: 20px;
/* 2587 */ }
/* 2588 */
/* 2589 */ .single-project-box .view-projects i {
/* 2590 */   margin-left: 15px;
/* 2591 */ }
/* 2592 */
/* 2593 */ .wrapper-single-box:nth-child(even) .single-project-box .image-box {
/* 2594 */   float: right;
/* 2595 */ }
/* 2596 */
/* 2597 */ .wrapper-single-box:nth-child(even) .single-project-box .detail-box {
/* 2598 */   float: left;
/* 2599 */   padding-left: 0;
/* 2600 */   padding-right: 85px;

/* main.css */

/* 2601 */ }
/* 2602 */
/* 2603 */ .categories-fall {
/* 2604 */   margin-bottom: 5px;
/* 2605 */ }
/* 2606 */
/* 2607 */ .categories-fall a {
/* 2608 */   margin-bottom: 15px;
/* 2609 */   color: #1a1a1a;
/* 2610 */   display: inline-block;
/* 2611 */   margin-right: 20px;
/* 2612 */   position: relative;
/* 2613 */   padding-left: 20px;
/* 2614 */ }
/* 2615 */
/* 2616 */ .categories-fall a:hover {
/* 2617 */   color: #808080;
/* 2618 */ }
/* 2619 */
/* 2620 */ .categories-fall a:before {
/* 2621 */   content: '/';
/* 2622 */   color: #e0e1e2;
/* 2623 */   display: inline-block;
/* 2624 */   position: absolute;
/* 2625 */   left: 0;
/* 2626 */ }
/* 2627 */
/* 2628 */ .heading-wrapper {
/* 2629 */   margin-bottom: 35px;
/* 2630 */ }
/* 2631 */
/* 2632 */ .heading-wrapper h2 {
/* 2633 */   margin-top: 30px;
/* 2634 */   font-weight: 700;
/* 2635 */ }
/* 2636 */
/* 2637 */ .heading-wrapper .categories-single {
/* 2638 */   display: block;
/* 2639 */ }
/* 2640 */
/* 2641 */ .heading-wrapper .categories-single span {
/* 2642 */   text-transform: uppercase;
/* 2643 */   font-weight: 700;
/* 2644 */   color: #1a1a1a;
/* 2645 */ }
/* 2646 */
/* 2647 */ .heading-wrapper .categories-single a {
/* 2648 */   font-weight: 500;
/* 2649 */   color: #808080;
/* 2650 */ }

/* main.css */

/* 2651 */
/* 2652 */ .heading-wrapper .categories-single a:last-of-type {
/* 2653 */   padding-right: 0;
/* 2654 */ }
/* 2655 */
/* 2656 */ .heading-wrapper .categories-single a:last-of-type:after {
/* 2657 */   display: none;
/* 2658 */ }
/* 2659 */
/* 2660 */ .heading-wrapper .categories-single a:hover {
/* 2661 */   color: #1a1a1a;
/* 2662 */ }
/* 2663 */
/* 2664 */ .heading-wrapper .categories-single span, .heading-wrapper .categories-single a {
/* 2665 */   display: inline-block;
/* 2666 */   padding-right: 20px;
/* 2667 */   font-size: 16px;
/* 2668 */   position: relative;
/* 2669 */   margin-right: 5px;
/* 2670 */ }
/* 2671 */
/* 2672 */ .heading-wrapper .categories-single span:after, .heading-wrapper .categories-single a:after {
/* 2673 */   content: "/";
/* 2674 */   display: inline-block;
/* 2675 */   position: absolute;
/* 2676 */   right: 0;
/* 2677 */   top: 0;
/* 2678 */   font-weight: 300;
/* 2679 */   font-size: 16px;
/* 2680 */   color: #e0e1e2;
/* 2681 */ }
/* 2682 */
/* 2683 */ .breadcrumbs {
/* 2684 */   padding-left: 0;
/* 2685 */   text-transform: uppercase;
/* 2686 */   font-size: 13px;
/* 2687 */   color: #808080;
/* 2688 */ }
/* 2689 */
/* 2690 */ .breadcrumbs li {
/* 2691 */   display: inline-block;
/* 2692 */ }
/* 2693 */
/* 2694 */ .breadcrumbs li a {
/* 2695 */   color: #808080;
/* 2696 */ }
/* 2697 */
/* 2698 */ .breadcrumbs li a:hover {
/* 2699 */   color: #1a1a1a;
/* 2700 */ }

/* main.css */

/* 2701 */
/* 2702 */ .breadcrumbs li strong {
/* 2703 */   font-weight: 400;
/* 2704 */   color: #1a1a1a;
/* 2705 */ }
/* 2706 */
/* 2707 */ .bp-breadcrumbs {
/* 2708 */   display: block;
/* 2709 */ }
/* 2710 */
/* 2711 */ .bp-breadcrumbs a, .bp-breadcrumbs span {
/* 2712 */   display: inline-block;
/* 2713 */   font-size: 13px;
/* 2714 */   text-transform: uppercase;
/* 2715 */   color: #808080;
/* 2716 */   padding-right: 20px;
/* 2717 */   position: relative;
/* 2718 */   margin-right: 12px;
/* 2719 */ }
/* 2720 */
/* 2721 */ .bp-breadcrumbs a:after, .bp-breadcrumbs span:after {
/* 2722 */   font-family: FontAwesome;
/* 2723 */   content: "\f105";
/* 2724 */   display: inline-block;
/* 2725 */   position: absolute;
/* 2726 */   right: 0;
/* 2727 */   top: 1px;
/* 2728 */ }
/* 2729 */
/* 2730 */ .bp-breadcrumbs a.current, .bp-breadcrumbs span.current {
/* 2731 */   color: #1a1a1a;
/* 2732 */   margin-right: 0;
/* 2733 */   padding-right: 0;
/* 2734 */ }
/* 2735 */
/* 2736 */ .bp-breadcrumbs a.current:after, .bp-breadcrumbs span.current:after {
/* 2737 */   display: none;
/* 2738 */ }
/* 2739 */
/* 2740 */ .contents-project-single {
/* 2741 */   padding-top: 45px;
/* 2742 */ }
/* 2743 */
/* 2744 */ .contents-project-single .project-title {
/* 2745 */   margin-bottom: 20px;
/* 2746 */ }
/* 2747 */
/* 2748 */ .portfolio-thumbnail img {
/* 2749 */   max-width: 100%;
/* 2750 */ }

/* main.css */

/* 2751 */
/* 2752 */ .left-arrow-slide, .right-arrow-slide {
/* 2753 */   width: 46px;
/* 2754 */   height: 46px;
/* 2755 */   background: url("../images/icons/arrow.png") center no-repeat;
/* 2756 */ }
/* 2757 */
/* 2758 */ .right-arrow-slide {
/* 2759 */   transform: rotate(180deg);
/* 2760 */ }
/* 2761 */
/* 2762 */ .slider-single-project {
/* 2763 */   position: relative;
/* 2764 */ }
/* 2765 */
/* 2766 */ .slider-single-project .owl-nav .owl-prev, .slider-single-project .owl-nav .owl-next {
/* 2767 */   position: absolute;
/* 2768 */   top: 50%;
/* 2769 */   width: 46px;
/* 2770 */   height: 46px;
/* 2771 */   margin-top: -23px;
/* 2772 */   display: inline-block;
/* 2773 */   background: #1a1a1a;
/* 2774 */   border-radius: 46px;
/* 2775 */   text-align: center;
/* 2776 */   padding: 0;
/* 2777 */   transition: .2s;
/* 2778 */ }
/* 2779 */
/* 2780 */ .slider-single-project .owl-nav .owl-prev:hover, .slider-single-project .owl-nav .owl-next:hover {
/* 2781 */   background: #808080;
/* 2782 */ }
/* 2783 */
/* 2784 */ .slider-single-project .owl-nav .owl-prev i, .slider-single-project .owl-nav .owl-next i {
/* 2785 */   line-height: 46px;
/* 2786 */ }
/* 2787 */
/* 2788 */ .slider-single-project .owl-nav .owl-prev {
/* 2789 */   left: 0;
/* 2790 */   margin-left: -23px;
/* 2791 */ }
/* 2792 */
/* 2793 */ .slider-single-project .owl-nav .owl-next {
/* 2794 */   right: 0;
/* 2795 */   margin-right: -23px;
/* 2796 */ }
/* 2797 */
/* 2798 */ .slider-single-project .owl-dots {
/* 2799 */   position: absolute;
/* 2800 */   bottom: 20px;

/* main.css */

/* 2801 */   left: 0;
/* 2802 */   right: 0;
/* 2803 */   margin: auto;
/* 2804 */   text-align: center;
/* 2805 */ }
/* 2806 */
/* 2807 */ .slider-single-project .owl-dots .owl-dot {
/* 2808 */   width: 8px;
/* 2809 */   height: 8px;
/* 2810 */   display: inline-block;
/* 2811 */   border-radius: 8px;
/* 2812 */   background: #907c76;
/* 2813 */   margin-left: 5px;
/* 2814 */   margin-right: 5px;
/* 2815 */   line-height: 12px;
/* 2816 */   vertical-align: middle;
/* 2817 */   transition: .2s all ease-in-out;
/* 2818 */ }
/* 2819 */
/* 2820 */ .slider-single-project .owl-dots .owl-dot.active {
/* 2821 */   background: #ffffff;
/* 2822 */   width: 12px;
/* 2823 */   height: 12px;
/* 2824 */ }
/* 2825 */
/* 2826 */ .slider-single-project img {
/* 2827 */   width: 100%;
/* 2828 */ }
/* 2829 */
/* 2830 */ .page-content-area {
/* 2831 */   padding-top: 35px;
/* 2832 */ }
/* 2833 */
/* 2834 */ .page-content-area .post-meta {
/* 2835 */   margin-bottom: 20px;
/* 2836 */   font-size: 15px;
/* 2837 */   line-height: 21px;
/* 2838 */   color: #808080;
/* 2839 */ }
/* 2840 */
/* 2841 */ .page-content-area .post-meta span {
/* 2842 */   display: inline-block;
/* 2843 */   margin-right: 25px;
/* 2844 */   position: relative;
/* 2845 */   margin-bottom: 10px;
/* 2846 */ }
/* 2847 */
/* 2848 */ .page-content-area .post-meta i {
/* 2849 */   margin-right: 10px;
/* 2850 */ }

/* main.css */

/* 2851 */
/* 2852 */ .side-related-projects {
/* 2853 */   position: relative;
/* 2854 */ }
/* 2855 */
/* 2856 */ .side-related-projects h2 {
/* 2857 */   margin-top: 0;
/* 2858 */   margin-bottom: 20px !important;
/* 2859 */   font-size: 18px;
/* 2860 */   font-weight: 700;
/* 2861 */ }
/* 2862 */
/* 2863 */ .side-related-projects .btn-slider {
/* 2864 */   position: relative;
/* 2865 */   z-index: 999;
/* 2866 */   opacity: 0;
/* 2867 */   visibility: hidden;
/* 2868 */   display: inline-block;
/* 2869 */ }
/* 2870 */
/* 2871 */ .side-related-projects .btn-slider i {
/* 2872 */   display: inline-block;
/* 2873 */   margin-left: 30px;
/* 2874 */   vertical-align: middle;
/* 2875 */ }
/* 2876 */
/* 2877 */ .side-related-projects .wrapper-button {
/* 2878 */   text-align: center;
/* 2879 */   position: absolute;
/* 2880 */   top: 50%;
/* 2881 */   left: 0;
/* 2882 */   right: 0;
/* 2883 */   margin: -24px auto 0;
/* 2884 */ }
/* 2885 */
/* 2886 */ .side-related-projects .wrapper-location {
/* 2887 */   background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.3) 15%, black 100%);
/* 2888 */   /* FF3.6-15 */
/* 2889 */   background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.3) 15%, black 100%);
/* 2890 */   /* Chrome10-25,Safari5.1-6 */
/* 2891 */   background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.3) 15%, black 100%);
/* 2892 */   /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/* 2893 */   filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#a6000000', GradientType=0);
/* 2894 */   /* IE6-9 */
/* 2895 */   padding: 40px 21px 21px;
/* 2896 */   position: absolute;
/* 2897 */   left: 0;
/* 2898 */   bottom: 0;
/* 2899 */   color: #ffffff;
/* 2900 */   width: 100%;

/* main.css */

/* 2901 */   text-align: left;
/* 2902 */ }
/* 2903 */
/* 2904 */ .side-related-projects .wrapper-location h3 {
/* 2905 */   color: #ffffff;
/* 2906 */   font-size: 18px;
/* 2907 */   font-weight: 700;
/* 2908 */   margin-top: 0;
/* 2909 */   line-height: 22px;
/* 2910 */   margin-bottom: 5px;
/* 2911 */ }
/* 2912 */
/* 2913 */ .side-related-projects .wrapper-location p.featured-location {
/* 2914 */   margin-bottom: 0;
/* 2915 */   font-size: 16px;
/* 2916 */   color: #d9d9d9;
/* 2917 */   position: relative;
/* 2918 */ }
/* 2919 */
/* 2920 */ .side-related-projects .wrapper-location p.featured-location:before {
/* 2921 */   font-family: FontAwesome;
/* 2922 */   content: "\f041";
/* 2923 */   margin-right: 10px;
/* 2924 */ }
/* 2925 */
/* 2926 */ .side-related-projects .related-project-single {
/* 2927 */   margin-bottom: 40px;
/* 2928 */ }
/* 2929 */
/* 2930 */ .side-related-projects .related-project-single:hover .btn-slider {
/* 2931 */   opacity: 1;
/* 2932 */   visibility: visible;
/* 2933 */ }
/* 2934 */
/* 2935 */ .wrapper-projects-grid {
/* 2936 */   display: flex;
/* 2937 */   flex-wrap: wrap;
/* 2938 */   margin-left: -15px;
/* 2939 */   margin-right: -15px;
/* 2940 */ }
/* 2941 */
/* 2942 */ .wrapper-projects-grid .wrapper-single-box {
/* 2943 */   width: 33.33%;
/* 2944 */ }
/* 2945 */
/* 2946 */ .wrapper-projects-grid .wrapper-single-box .single-project-box {
/* 2947 */   padding-right: 15px;
/* 2948 */   padding-left: 15px;
/* 2949 */ }
/* 2950 */

/* main.css */

/* 2951 */ .wrapper-projects-grid .wrapper-single-box .image-box, .wrapper-projects-grid .wrapper-single-box .detail-box {
/* 2952 */   width: 100%;
/* 2953 */   float: none;
/* 2954 */   padding: 0 !important;
/* 2955 */ }
/* 2956 */
/* 2957 */ .wrapper-page-icon {
/* 2958 */   position: absolute;
/* 2959 */   top: 0;
/* 2960 */   width: 100%;
/* 2961 */ }
/* 2962 */
/* 2963 */ .template-pagination .pagination {
/* 2964 */   margin-top: 0;
/* 2965 */ }
/* 2966 */
/* 2967 */ .project-single-content-box {
/* 2968 */   display: flex;
/* 2969 */   margin-left: -15px;
/* 2970 */   margin-right: -15px;
/* 2971 */ }
/* 2972 */
/* 2973 */ .project-left-content-box {
/* 2974 */   flex: 1;
/* 2975 */   padding-left: 15px;
/* 2976 */   padding-right: 15px;
/* 2977 */ }
/* 2978 */
/* 2979 */ .project-right-related-box {
/* 2980 */   width: 34%;
/* 2981 */   padding-left: 15px;
/* 2982 */   padding-right: 15px;
/* 2983 */ }
/* 2984 */
/* 2985 */ .contents-service-single {
/* 2986 */   padding-top: 45px;
/* 2987 */ }
/* 2988 */
/* 2989 */ .single-service-box {
/* 2990 */   text-align: center;
/* 2991 */   margin-bottom: 30px;
/* 2992 */ }
/* 2993 */
/* 2994 */ .single-service-box img {
/* 2995 */   width: 100%;
/* 2996 */   height: auto;
/* 2997 */ }
/* 2998 */
/* 2999 */ .single-service-box h3 {
/* 3000 */   margin-top: 0;

/* main.css */

/* 3001 */   font-size: 18px;
/* 3002 */   font-weight: 700;
/* 3003 */   margin-bottom: 25px;
/* 3004 */ }
/* 3005 */
/* 3006 */ .single-service-box h3 a {
/* 3007 */   color: #1a1a1a;
/* 3008 */ }
/* 3009 */
/* 3010 */ .single-service-box h3 a:hover {
/* 3011 */   color: #f5b800;
/* 3012 */ }
/* 3013 */
/* 3014 */ .single-service-box p {
/* 3015 */   font-size: 14px;
/* 3016 */   color: #808080;
/* 3017 */   margin-bottom: 25px;
/* 3018 */ }
/* 3019 */
/* 3020 */ .single-service-box figure:hover {
/* 3021 */   opacity: .9;
/* 3022 */   transition: .2s all ease-in-out;
/* 3023 */ }
/* 3024 */
/* 3025 */ .services-content-wrapper {
/* 3026 */   font-size: 14px;
/* 3027 */   color: #808080;
/* 3028 */   margin-bottom: 25px;
/* 3029 */   line-height: 24px;
/* 3030 */ }
/* 3031 */
/* 3032 */ .service-excerpt {
/* 3033 */   padding: 40px 30px;
/* 3034 */ }
/* 3035 */
/* 3036 */ .side-services-list ul {
/* 3037 */   padding-left: 0;
/* 3038 */   margin-bottom: 40px;
/* 3039 */   overflow: hidden;
/* 3040 */ }
/* 3041 */
/* 3042 */ .side-services-list li {
/* 3043 */   display: block;
/* 3044 */   margin-bottom: 40px;
/* 3045 */   position: relative;
/* 3046 */ }
/* 3047 */
/* 3048 */ .side-services-list li:after {
/* 3049 */   display: none;
/* 3050 */   position: absolute;

/* main.css */

/* 3051 */   bottom: -16px;
/* 3052 */   left: 0;
/* 3053 */   content: '';
/* 3054 */   width: 100%;
/* 3055 */   height: 2px;
/* 3056 */   border-bottom: 2px #ffd800 dashed;
/* 3057 */ }
/* 3058 */
/* 3059 */ .side-services-list li.current a {
/* 3060 */   color: #1a1a1a;
/* 3061 */ }
/* 3062 */
/* 3063 */ .side-services-list li.current:after {
/* 3064 */   display: block;
/* 3065 */ }
/* 3066 */
/* 3067 */ .side-services-list a {
/* 3068 */   display: inline-block;
/* 3069 */   text-transform: uppercase;
/* 3070 */   color: #808080;
/* 3071 */ }
/* 3072 */
/* 3073 */ .side-services-list a:hover {
/* 3074 */   color: #1a1a1a;
/* 3075 */ }
/* 3076 */
/* 3077 */ .side-brochures {
/* 3078 */   margin-bottom: 40px;
/* 3079 */ }
/* 3080 */
/* 3081 */ .side-brochures a {
/* 3082 */   display: block;
/* 3083 */   max-width: 360px;
/* 3084 */   width: 100%;
/* 3085 */   margin-bottom: 15px;
/* 3086 */   text-align: center;
/* 3087 */   position: relative;
/* 3088 */   background: #1a1a1a;
/* 3089 */   padding-top: 19px;
/* 3090 */   padding-bottom: 19px;
/* 3091 */   text-transform: uppercase;
/* 3092 */   color: #ffffff;
/* 3093 */ }
/* 3094 */
/* 3095 */ .side-brochures a:hover {
/* 3096 */   background: #ffd800;
/* 3097 */   color: #1a1a1a;
/* 3098 */ }
/* 3099 */
/* 3100 */ .side-brochures a:before {

/* main.css */

/* 3101 */   color: #f82929;
/* 3102 */   position: absolute;
/* 3103 */   top: 50%;
/* 3104 */   left: 20px;
/* 3105 */   margin-top: -17px;
/* 3106 */   font-family: FontAwesome;
/* 3107 */   content: "\f1c1";
/* 3108 */   font-size: 24px;
/* 3109 */   width: 22px;
/* 3110 */   height: 34px;
/* 3111 */ }
/* 3112 */
/* 3113 */ .services-sidebar h2 {
/* 3114 */   font-size: 18px;
/* 3115 */   font-weight: 700;
/* 3116 */   margin-bottom: 25px !important;
/* 3117 */ }
/* 3118 */
/* 3119 */ .side-contact-us {
/* 3120 */   overflow: hidden;
/* 3121 */ }
/* 3122 */
/* 3123 */ .side-contact-us .contact-box {
/* 3124 */   display: block;
/* 3125 */   margin-left: 0;
/* 3126 */   margin-bottom: 15px;
/* 3127 */ }
/* 3128 */
/* 3129 */ .services-pagination {
/* 3130 */   clear: both;
/* 3131 */   overflow: hidden;
/* 3132 */ }
/* 3133 */
/* 3134 */ .services-pagination .pagination {
/* 3135 */   margin-bottom: 20px;
/* 3136 */ }
/* 3137 */
/* 3138 */ .wpcf7-form {
/* 3139 */   margin-bottom: 100px;
/* 3140 */ }
/* 3141 */
/* 3142 */ .wpcf7-form p {
/* 3143 */   margin-bottom: 35px;
/* 3144 */ }
/* 3145 */
/* 3146 */ .wpcf7-form label {
/* 3147 */   text-transform: uppercase;
/* 3148 */   font-size: 13px;
/* 3149 */   color: #1a1a1a;
/* 3150 */   display: block;

/* main.css */

/* 3151 */   position: relative;
/* 3152 */   padding-bottom: 15px;
/* 3153 */   border-bottom: 2px solid #e5e5e5;
/* 3154 */ }
/* 3155 */
/* 3156 */ .wpcf7-form label span.wpcf7-form-control-wrap {
/* 3157 */   display: block;
/* 3158 */   margin-top: 10px;
/* 3159 */ }
/* 3160 */
/* 3161 */ .wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="number"], .wpcf7-form input[type="password"], .wpcf7-form textarea {
/* 3162 */   border: none;
/* 3163 */   color: #808080;
/* 3164 */   font-size: 15px;
/* 3165 */   width: 100%;
/* 3166 */   outline: none;
/* 3167 */   transition: .2s all ease-in-out;
/* 3168 */ }
/* 3169 */
/* 3170 */ .wpcf7-form input[type="text"]:focus, .wpcf7-form input[type="email"]:focus, .wpcf7-form input[type="number"]:focus, .wpcf7-form input[type="password"]:focus, .wpcf7-form textarea:focus {
/* 3171 */   border-color: #1a1a1a;
/* 3172 */ }
/* 3173 */
/* 3174 */ .wpcf7-form textarea {
/* 3175 */   height: 150px;
/* 3176 */   resize: vertical;
/* 3177 */ }
/* 3178 */
/* 3179 */ .wpcf7-form input[type="submit"] {
/* 3180 */   border: none;
/* 3181 */   transition: .2s all ease-in-out;
/* 3182 */   font-size: 14px;
/* 3183 */   text-transform: uppercase;
/* 3184 */   white-space: nowrap;
/* 3185 */   background: #1a1a1a;
/* 3186 */   color: #fafafa;
/* 3187 */   display: inline-block;
/* 3188 */   padding: 14px 30px;
/* 3189 */ }
/* 3190 */
/* 3191 */ .wpcf7-form input[type="submit"]:hover {
/* 3192 */   background: #ffd800;
/* 3193 */   color: #1a1a1a;
/* 3194 */ }
/* 3195 */
/* 3196 */ .nf-form-cont {
/* 3197 */   margin-bottom: 100px;
/* 3198 */ }
/* 3199 */
/* 3200 */ .nf-form-cont .nf-form-fields-required {

/* main.css */

/* 3201 */   margin-bottom: 25px;
/* 3202 */ }
/* 3203 */
/* 3204 */ .nf-form-cont label {
/* 3205 */   text-transform: uppercase;
/* 3206 */   font-size: 13px;
/* 3207 */   color: #1a1a1a;
/* 3208 */   display: block;
/* 3209 */   position: relative;
/* 3210 */ }
/* 3211 */
/* 3212 */ .nf-form-cont label span.wpcf7-form-control-wrap {
/* 3213 */   display: block;
/* 3214 */   margin-top: 10px;
/* 3215 */ }
/* 3216 */
/* 3217 */ .nf-form-cont input[type="text"], .nf-form-cont input[type="email"], .nf-form-cont input[type="number"], .nf-form-cont input[type="password"], .nf-form-cont textarea {
/* 3218 */   border: none;
/* 3219 */   border-bottom: 2px solid #e5e5e5;
/* 3220 */   color: #808080;
/* 3221 */   font-size: 15px;
/* 3222 */   width: 100%;
/* 3223 */   outline: none;
/* 3224 */   transition: .2s all ease-in-out;
/* 3225 */   padding-bottom: 15px;
/* 3226 */ }
/* 3227 */
/* 3228 */ .nf-form-cont input[type="text"]:focus, .nf-form-cont input[type="email"]:focus, .nf-form-cont input[type="number"]:focus, .nf-form-cont input[type="password"]:focus, .nf-form-cont textarea:focus {
/* 3229 */   border-color: #1a1a1a;
/* 3230 */ }
/* 3231 */
/* 3232 */ .nf-form-cont textarea {
/* 3233 */   height: 150px;
/* 3234 */ }
/* 3235 */
/* 3236 */ .nf-form-cont .nf-error .ninja-forms-field {
/* 3237 */   border: none;
/* 3238 */   border-bottom: 2px solid #E80000;
/* 3239 */ }
/* 3240 */
/* 3241 */ .nf-form-cont input[type="button"] {
/* 3242 */   border: none;
/* 3243 */   transition: .2s all ease-in-out;
/* 3244 */   font-size: 14px;
/* 3245 */   text-transform: uppercase;
/* 3246 */   white-space: nowrap;
/* 3247 */   background: #1a1a1a;
/* 3248 */   color: #fafafa;
/* 3249 */   display: inline-block;
/* 3250 */   padding: 14px 30px;

/* main.css */

/* 3251 */ }
/* 3252 */
/* 3253 */ .nf-form-cont input[type="button"]:hover {
/* 3254 */   background: #ffd800;
/* 3255 */   color: #1a1a1a;
/* 3256 */ }
/* 3257 */
/* 3258 */ .contact-detail-list {
/* 3259 */   margin-bottom: 100px;
/* 3260 */   font-weight: 500;
/* 3261 */ }
/* 3262 */
/* 3263 */ .contact-detail-list .icon {
/* 3264 */   width: 25px;
/* 3265 */   height: 25px;
/* 3266 */   position: absolute;
/* 3267 */   left: 0;
/* 3268 */   top: 6px;
/* 3269 */ }
/* 3270 */
/* 3271 */ .contact-detail-list ul {
/* 3272 */   padding-left: 0;
/* 3273 */   list-style: none;
/* 3274 */ }
/* 3275 */
/* 3276 */ .contact-detail-list li {
/* 3277 */   position: relative;
/* 3278 */   padding-left: 40px;
/* 3279 */   margin-bottom: 35px;
/* 3280 */ }
/* 3281 */
/* 3282 */ .contact-detail-list .small {
/* 3283 */   font-size: 12px;
/* 3284 */   color: #808080;
/* 3285 */   display: block;
/* 3286 */ }
/* 3287 */
/* 3288 */ .contact-detail-list .detail {
/* 3289 */   font-size: 16px;
/* 3290 */   line-height: 24px;
/* 3291 */   color: #1a1a1a;
/* 3292 */   display: block;
/* 3293 */ }
/* 3294 */
/* 3295 */ .contact-detail-list .inner-row span {
/* 3296 */   display: inline-block;
/* 3297 */ }
/* 3298 */
/* 3299 */ .contact-detail-list .inner-row span:first-of-type {
/* 3300 */   max-width: 180px;

/* main.css */

/* 3301 */   width: 100%;
/* 3302 */ }
/* 3303 */
/* 3304 */ #map {
/* 3305 */   height: 580px;
/* 3306 */ }
/* 3307 */
/* 3308 */ .info-window {
/* 3309 */   text-transform: uppercase;
/* 3310 */   font-weight: 600;
/* 3311 */   font-size: 16px;
/* 3312 */ }
/* 3313 */
/* 3314 */ .about-into {
/* 3315 */   margin-bottom: 60px;
/* 3316 */ }
/* 3317 */
/* 3318 */ .about-into p {
/* 3319 */   font-size: 15px;
/* 3320 */ }
/* 3321 */
/* 3322 */ .about-into strong {
/* 3323 */   font-weight: 700;
/* 3324 */   color: #1a1a1a;
/* 3325 */ }
/* 3326 */
/* 3327 */ .about-into iframe {
/* 3328 */   width: 100%;
/* 3329 */ }
/* 3330 */
/* 3331 */ .wrapper-team {
/* 3332 */   padding-bottom: 60px;
/* 3333 */ }
/* 3334 */
/* 3335 */ .section-team {
/* 3336 */   background: #1a1a1a;
/* 3337 */   color: #ffffff;
/* 3338 */   padding-bottom: 60px;
/* 3339 */ }
/* 3340 */
/* 3341 */ .section-team .single-member {
/* 3342 */   margin-bottom: 60px;
/* 3343 */ }
/* 3344 */
/* 3345 */ .wrapper-member .single-member {
/* 3346 */   margin-bottom: 60px;
/* 3347 */ }
/* 3348 */
/* 3349 */ .wrapper-member .single-member img {
/* 3350 */   width: 100%;

/* main.css */

/* 3351 */   height: auto;
/* 3352 */ }
/* 3353 */
/* 3354 */ .wrapper-member .single-member h2 {
/* 3355 */   color: #ffffff;
/* 3356 */ }
/* 3357 */
/* 3358 */ .wrapper-member .single-member h3 {
/* 3359 */   font-size: 24px;
/* 3360 */   font-weight: 700;
/* 3361 */   margin-top: 25px;
/* 3362 */   margin-bottom: 5px;
/* 3363 */   color: #ffffff;
/* 3364 */ }
/* 3365 */
/* 3366 */ .wrapper-member .single-member p {
/* 3367 */   color: #909090;
/* 3368 */   font-size: 15px;
/* 3369 */ }
/* 3370 */
/* 3371 */ .wrapper-member .single-member .designation {
/* 3372 */   display: inline-block;
/* 3373 */   font-size: 18px;
/* 3374 */   color: #909090;
/* 3375 */   margin-bottom: 15px;
/* 3376 */ }
/* 3377 */
/* 3378 */ .wrapper-member .single-member ul {
/* 3379 */   list-style: none;
/* 3380 */   padding-left: 0;
/* 3381 */   margin-bottom: 25px;
/* 3382 */ }
/* 3383 */
/* 3384 */ .wrapper-member .single-member ul li {
/* 3385 */   display: inline-block;
/* 3386 */   margin-left: 5px;
/* 3387 */   margin-right: 5px;
/* 3388 */ }
/* 3389 */
/* 3390 */ .wrapper-member .single-member ul li a {
/* 3391 */   color: #989898;
/* 3392 */ }
/* 3393 */
/* 3394 */ .wrapper-member .single-member ul li a:hover {
/* 3395 */   color: #ffd800;
/* 3396 */ }
/* 3397 */
/* 3398 */ .section-core-values img {
/* 3399 */   max-width: 100%;
/* 3400 */ }

/* main.css */

/* 3401 */
/* 3402 */ .section-core-values h3 {
/* 3403 */   margin-top: 30px;
/* 3404 */   font-size: 16px;
/* 3405 */ }
/* 3406 */
/* 3407 */ /*-----------------------------------------------------------------------------------*/
/* 3408 */ /*	6.0 widget styles
/* 3409 *| /*-----------------------------------------------------------------------------------*/
/* 3410 */ /*------------------------------------*/
/* 3411 */ /* 6.1 side widgets styles
/* 3412 *| /*------------------------------------*/
/* 3413 */ .sidebar section {
/* 3414 */   margin-bottom: 40px;
/* 3415 */ }
/* 3416 */
/* 3417 */ .sidebar .widget {
/* 3418 */   color: #1a1a1a;
/* 3419 */ }
/* 3420 */
/* 3421 */ .sidebar .widget ul, .sidebar .widget ol {
/* 3422 */   list-style: none;
/* 3423 */ }
/* 3424 */
/* 3425 */ .sidebar .widget > ol, .sidebar .widget > ul {
/* 3426 */   padding-left: 0;
/* 3427 */ }
/* 3428 */
/* 3429 */ .sidebar .widget li {
/* 3430 */   margin-bottom: 17px;
/* 3431 */   font-weight: 600;
/* 3432 */ }
/* 3433 */
/* 3434 */ .sidebar .widget li ul {
/* 3435 */   margin-top: 17px;
/* 3436 */ }
/* 3437 */
/* 3438 */ .sidebar .widget h3 {
/* 3439 */   margin-top: 0;
/* 3440 */   margin-bottom: 40px;
/* 3441 */   font-size: 18px;
/* 3442 */   font-weight: 700;
/* 3443 */   color: #1a1a1a;
/* 3444 */   position: relative;
/* 3445 */   display: inline-block;
/* 3446 */ }
/* 3447 */
/* 3448 */ .sidebar .widget h3:after {
/* 3449 */   content: "";
/* 3450 */   display: block;

/* main.css */

/* 3451 */   width: 100%;
/* 3452 */   height: 2px;
/* 3453 */   background: #ffd800;
/* 3454 */   position: absolute;
/* 3455 */   bottom: -15px;
/* 3456 */   pointer-events: none;
/* 3457 */ }
/* 3458 */
/* 3459 */ .sidebar .widget a {
/* 3460 */   color: #1a1a1a;
/* 3461 */ }
/* 3462 */
/* 3463 */ .sidebar .widget a:hover {
/* 3464 */   color: #f5b800;
/* 3465 */ }
/* 3466 */
/* 3467 */ .sidebar .widget label {
/* 3468 */   display: block;
/* 3469 */   margin-bottom: 10px;
/* 3470 */ }
/* 3471 */
/* 3472 */ .sidebar img {
/* 3473 */   max-width: 100%;
/* 3474 */   height: auto;
/* 3475 */ }
/* 3476 */
/* 3477 */ .sidebar .select2-container {
/* 3478 */   margin-top: 10px;
/* 3479 */   width: 100% !important;
/* 3480 */   outline: none;
/* 3481 */   height: 40px;
/* 3482 */ }
/* 3483 */
/* 3484 */ .sidebar .widget_tag_cloud a {
/* 3485 */   display: inline-block;
/* 3486 */   font-size: 12px !important;
/* 3487 */   background: #f8f8f8;
/* 3488 */   padding: 9px 20px;
/* 3489 */   margin-bottom: 5px;
/* 3490 */   color: #808080;
/* 3491 */ }
/* 3492 */
/* 3493 */ .sidebar .widget_tag_cloud a:hover {
/* 3494 */   background: #ffd800;
/* 3495 */   color: #1a1a1a !important;
/* 3496 */ }
/* 3497 */
/* 3498 */ .selection:focus {
/* 3499 */   outline: none;
/* 3500 */ }

/* main.css */

/* 3501 */
/* 3502 */ .select2-container--default .select2-results__option--highlighted[aria-selected] {
/* 3503 */   background-color: #ffd800;
/* 3504 */   color: #1a1a1a;
/* 3505 */ }
/* 3506 */
/* 3507 */ .select2-container--default .select2-search--dropdown .select2-search__field {
/* 3508 */   outline: none;
/* 3509 */ }
/* 3510 */
/* 3511 */ .select2-container--default .select2-selection--single {
/* 3512 */   border-radius: 0;
/* 3513 */   border: none;
/* 3514 */   background: #f0f0f0;
/* 3515 */ }
/* 3516 */
/* 3517 */ .select2-container .select2-selection--single {
/* 3518 */   height: 42px;
/* 3519 */   outline: none;
/* 3520 */ }
/* 3521 */
/* 3522 */ .select2-container .select2-selection--single .select2-selection__rendered {
/* 3523 */   line-height: 40px;
/* 3524 */   padding-left: 20px;
/* 3525 */ }
/* 3526 */
/* 3527 */ .select2-container--default .select2-selection--single .select2-selection__arrow {
/* 3528 */   top: 0;
/* 3529 */   width: 50px;
/* 3530 */   height: 42px;
/* 3531 */   background: #ffd800;
/* 3532 */ }
/* 3533 */
/* 3534 */ .select2-container--open .select2-dropdown--below, .select2-container--open .select2-dropdown--above {
/* 3535 */   border-radius: 0;
/* 3536 */   border-color: #f0f0f0;
/* 3537 */ }
/* 3538 */
/* 3539 */ .widget_calendar table {
/* 3540 */   width: 100%;
/* 3541 */ }
/* 3542 */
/* 3543 */ .widget_calendar caption {
/* 3544 */   font-weight: 700;
/* 3545 */   padding-bottom: 10px;
/* 3546 */ }
/* 3547 */
/* 3548 */ .widget_calendar th, .widget_calendar td {
/* 3549 */   text-align: center;
/* 3550 */ }

/* main.css */

/* 3551 */
/* 3552 */ .widget_calendar tfoot {
/* 3553 */   padding-top: 10px;
/* 3554 */ }
/* 3555 */
/* 3556 */ .widget_calendar tfoot td {
/* 3557 */   padding-top: 10px;
/* 3558 */ }
/* 3559 */
/* 3560 */ /*------------------------------------*/
/* 3561 */ /* 6.2 footer widgets styles
/* 3562 *| /*------------------------------------*/
/* 3563 */ .footer-widgets-area {
/* 3564 */   background: #1a1a1a;
/* 3565 */   padding-top: 50px;
/* 3566 */   color: #b8b8b8;
/* 3567 */ }
/* 3568 */
/* 3569 */ .footer-widgets-area a {
/* 3570 */   color: #b8b8b8;
/* 3571 */ }
/* 3572 */
/* 3573 */ .footer-widgets-area a:hover {
/* 3574 */   color: #ffffff;
/* 3575 */ }
/* 3576 */
/* 3577 */ .footer-widgets-area h3 {
/* 3578 */   margin-top: 0;
/* 3579 */   color: #ffffff;
/* 3580 */   font-size: 13px;
/* 3581 */   line-height: 21px;
/* 3582 */   text-transform: uppercase;
/* 3583 */   letter-spacing: 1px;
/* 3584 */   margin-bottom: 22px;
/* 3585 */ }
/* 3586 */
/* 3587 */ .footer-widgets-area ul {
/* 3588 */   list-style: none;
/* 3589 */   padding-left: 0;
/* 3590 */ }
/* 3591 */
/* 3592 */ .footer-widgets-area .widget {
/* 3593 */   margin-bottom: 50px;
/* 3594 */ }
/* 3595 */
/* 3596 */ .footer-widgets-area .widget li {
/* 3597 */   margin-bottom: 25px;
/* 3598 */ }
/* 3599 */
/* 3600 */ .footer-widgets-area .widget li ul {

/* main.css */

/* 3601 */   padding-left: 10px;
/* 3602 */ }
/* 3603 */
/* 3604 */ .footer-widgets-area .widget li li {
/* 3605 */   margin-bottom: 5px;
/* 3606 */   margin-top: 5px;
/* 3607 */ }
/* 3608 */
/* 3609 */ .footer-widgets-area .widget.inspiry_recent_posts_with_thumbnails ul li:hover {
/* 3610 */   background: #121212;
/* 3611 */ }
/* 3612 */
/* 3613 */ .footer-widgets-area .select2-container {
/* 3614 */   width: 100% !important;
/* 3615 */ }
/* 3616 */
/* 3617 */ .widget_search input {
/* 3618 */   height: 43px;
/* 3619 */   border: none;
/* 3620 */   outline: none;
/* 3621 */ }
/* 3622 */
/* 3623 */ .widget_search input[type="text"], .widget_search input[type="email"], .widget_search input[type="password"], .widget_search input[type="search"] {
/* 3624 */   width: -webkit-calc(100% - 51px);
/* 3625 */   width: calc(100% - 51px);
/* 3626 */   vertical-align: middle;
/* 3627 */   padding-right: 20px;
/* 3628 */   padding-left: 20px;
/* 3629 */   background: #f0f0f0;
/* 3630 */   color: #525252;
/* 3631 */ }
/* 3632 */
/* 3633 */ .widget_search input[type="submit"] {
/* 3634 */   background-color: #ffd800;
/* 3635 */   transition: .2s all;
/* 3636 */   text-indent: -999999px;
/* 3637 */   width: 50px;
/* 3638 */   background-image: url("../images/search-glass.png");
/* 3639 */   background-position: center center;
/* 3640 */   background-repeat: no-repeat;
/* 3641 */   vertical-align: middle;
/* 3642 */   margin-left: -4px;
/* 3643 */ }
/* 3644 */
/* 3645 */ .widget_search input[type="submit"]:hover {
/* 3646 */   background-color: #f5b800;
/* 3647 */ }
/* 3648 */
/* 3649 */ .widget.inspiry_recent_posts_with_thumbnails ul {
/* 3650 */   margin-left: -10px;

/* main.css */

/* 3651 */ }
/* 3652 */
/* 3653 */ .widget.inspiry_recent_posts_with_thumbnails ul li {
/* 3654 */   margin-bottom: 0;
/* 3655 */   display: flex;
/* 3656 */   padding: 10px;
/* 3657 */   align-items: center;
/* 3658 */ }
/* 3659 */
/* 3660 */ .widget.inspiry_recent_posts_with_thumbnails ul li:hover {
/* 3661 */   background: #f0f0f0;
/* 3662 */ }
/* 3663 */
/* 3664 */ .widget.inspiry_recent_posts_with_thumbnails ul li a {
/* 3665 */   display: inline-block;
/* 3666 */ }
/* 3667 */
/* 3668 */ .widget.inspiry_recent_posts_with_thumbnails ul li a img {
/* 3669 */   max-width: 60px;
/* 3670 */ }
/* 3671 */
/* 3672 */ .widget.inspiry_recent_posts_with_thumbnails ul li .widget-thumb {
/* 3673 */   padding-right: 20px;
/* 3674 */ }
/* 3675 */
/* 3676 */ .widget.inspiry_recent_posts_with_thumbnails ul li .widget-thumb:hover {
/* 3677 */   opacity: .8;
/* 3678 */ }
/* 3679 */
/* 3680 */ .widget.inspiry_recent_posts_with_thumbnails ul li .list-heading {
/* 3681 */   margin-bottom: 0;
/* 3682 */ }
/* 3683 */
/* 3684 */ .widget.inspiry_contact_list ul li {
/* 3685 */   padding-left: 35px;
/* 3686 */   position: relative;
/* 3687 */   padding-top: 5px;
/* 3688 */ }
/* 3689 */
/* 3690 */ .widget.inspiry_contact_list ul li:before {
/* 3691 */   font-family: FontAwesome;
/* 3692 */   position: absolute;
/* 3693 */   left: 0;
/* 3694 */   top: 1px;
/* 3695 */   font-size: 20px;
/* 3696 */ }
/* 3697 */
/* 3698 */ .widget.inspiry_contact_list ul .phone:before {
/* 3699 */   content: "\f095";
/* 3700 */ }

/* main.css */

/* 3701 */
/* 3702 */ .widget.inspiry_contact_list ul .fax:before {
/* 3703 */   content: "\f1ac";
/* 3704 */ }
/* 3705 */
/* 3706 */ .widget.inspiry_contact_list ul .email:before {
/* 3707 */   content: "\f0e0";
/* 3708 */ }
/* 3709 */
/* 3710 */ .widget.inspiry_contact_list ul .location:before {
/* 3711 */   content: "\f041";
/* 3712 */   left: 4px;
/* 3713 */ }
/* 3714 */
/* 3715 */ .widget.inspiry_builderpress_services li {
/* 3716 */   padding-left: 30px;
/* 3717 */   position: relative;
/* 3718 */ }
/* 3719 */
/* 3720 */ .widget.inspiry_builderpress_services li:before {
/* 3721 */   content: url("../images/widget-services-bullets.png");
/* 3722 */   position: absolute;
/* 3723 */   left: 0;
/* 3724 */   top: 1px;
/* 3725 */ }
/* 3726 */
/* 3727 */ abbr[title] {
/* 3728 */   border-bottom: 0;
/* 3729 */ }
/* 3730 */
/* 3731 */ /*-----------------------------------------------------------------------------------*/
/* 3732 */ /*	7.0 Blog
/* 3733 *| /*-----------------------------------------------------------------------------------*/
/* 3734 */ .wrapper-page-contents {
/* 3735 */   padding-top: 70px;
/* 3736 */   padding-bottom: 70px;
/* 3737 */ }
/* 3738 */
/* 3739 */ .wrapper-page-contents .post-heading {
/* 3740 */   font-size: 25px;
/* 3741 */   font-weight: 600;
/* 3742 */   word-break: break-all;
/* 3743 */ }
/* 3744 */
/* 3745 */ .wrapper-page-contents .post-heading a {
/* 3746 */   color: #1a1a1a;
/* 3747 */ }
/* 3748 */
/* 3749 */ .wrapper-page-contents .post-heading a:hover {
/* 3750 */   color: #f5b800;

/* main.css */

/* 3751 */ }
/* 3752 */
/* 3753 */ .wrapper-page-contents .psost-heading-single {
/* 3754 */   color: #1a1a1a;
/* 3755 */   font-weight: 600;
/* 3756 */ }
/* 3757 */
/* 3758 */ .wrapper-page-contents .post-meta {
/* 3759 */   margin-bottom: 10px;
/* 3760 */ }
/* 3761 */
/* 3762 */ .wrapper-page-contents .post-meta span, .wrapper-page-contents .post-meta a {
/* 3763 */   color: #1a1a1a;
/* 3764 */   margin-right: 20px;
/* 3765 */   display: inline-block;
/* 3766 */   margin-bottom: 10px;
/* 3767 */ }
/* 3768 */
/* 3769 */ .wrapper-page-contents .post-meta a span {
/* 3770 */   color: #f5b800;
/* 3771 */   margin-bottom: 0;
/* 3772 */ }
/* 3773 */
/* 3774 */ .wrapper-page-contents .post-meta a:hover {
/* 3775 */   color: #f5b800;
/* 3776 */ }
/* 3777 */
/* 3778 */ .wrapper-page-contents .post-meta .post-count {
/* 3779 */   margin-right: 0;
/* 3780 */   transition: .2s all ease-in-out;
/* 3781 */   color: #1a1a1a;
/* 3782 */ }
/* 3783 */
/* 3784 */ .wrapper-page-contents .post-meta .post-count:hover {
/* 3785 */   color: #f5b800;
/* 3786 */ }
/* 3787 */
/* 3788 */ .wrapper-page-contents .post-meta .sticky-icon {
/* 3789 */   display: none;
/* 3790 */ }
/* 3791 */
/* 3792 */ .wrapper-page-contents .no-sidebar .alignfull {
/* 3793 */   margin: 32px calc(50% - 50vw);
/* 3794 */   max-width: 100vw;
/* 3795 */   width: 100vw;
/* 3796 */ }
/* 3797 */
/* 3798 */ .the-content-wrapper h1, .the-content-wrapper h2, .the-content-wrapper h3, .the-content-wrapper h4, .the-content-wrapper h5, .the-content-wrapper h6, .the-content-wrapper th, .the-content-wrapper dt, .bp-page-contents h1, .bp-page-contents h2, .bp-page-contents h3, .bp-page-contents h4, .bp-page-contents h5, .bp-page-contents h6, .bp-page-contents th, .bp-page-contents dt {
/* 3799 */   font-weight: 600;
/* 3800 */   color: #1a1a1a;

/* main.css */

/* 3801 */ }
/* 3802 */
/* 3803 */ .the-content-wrapper img, .bp-page-contents img {
/* 3804 */   max-width: 100%;
/* 3805 */   height: auto;
/* 3806 */   margin-bottom: 20px;
/* 3807 */ }
/* 3808 */
/* 3809 */ .the-content-wrapper figure, .bp-page-contents figure {
/* 3810 */   margin-bottom: 25px;
/* 3811 */ }
/* 3812 */
/* 3813 */ .the-content-wrapper p, .the-content-wrapper li, .the-content-wrapper td, .the-content-wrapper dd, .the-content-wrapper address, .bp-page-contents p, .bp-page-contents li, .bp-page-contents td, .bp-page-contents dd, .bp-page-contents address {
/* 3814 */   font-size: 14px;
/* 3815 */   line-height: 1.714285714285714;
/* 3816 */   color: #808080;
/* 3817 */ }
/* 3818 */
/* 3819 */ .the-content-wrapper dd, .bp-page-contents dd {
/* 3820 */   margin-bottom: 25px;
/* 3821 */ }
/* 3822 */
/* 3823 */ .the-content-wrapper table, .bp-page-contents table {
/* 3824 */   margin-bottom: 25px;
/* 3825 */ }
/* 3826 */
/* 3827 */ .the-content-wrapper td, .bp-page-contents td {
/* 3828 */   padding-left: 10px;
/* 3829 */   padding-right: 10px;
/* 3830 */ }
/* 3831 */
/* 3832 */ .the-content-wrapper li, .bp-page-contents li {
/* 3833 */   margin-bottom: 10px;
/* 3834 */   margin-top: 10px;
/* 3835 */ }
/* 3836 */
/* 3837 */ .the-content-wrapper a, .bp-page-contents a {
/* 3838 */   color: #f5b800;
/* 3839 */ }
/* 3840 */
/* 3841 */ .the-content-wrapper a:hover, .bp-page-contents a:hover {
/* 3842 */   color: #1a1a1a;
/* 3843 */ }
/* 3844 */
/* 3845 */ .the-content-wrapper .alignleft, .bp-page-contents .alignleft {
/* 3846 */   float: left;
/* 3847 */   margin-right: 20px;
/* 3848 */ }
/* 3849 */
/* 3850 */ .the-content-wrapper input[type="password"], .bp-page-contents input[type="password"] {

/* main.css */

/* 3851 */   padding-left: 18px;
/* 3852 */   padding-right: 18px;
/* 3853 */   border: 1px solid #e5e8f1;
/* 3854 */   outline: none;
/* 3855 */   height: 48px;
/* 3856 */   vertical-align: middle;
/* 3857 */   transition: .2s all ease-in-out;
/* 3858 */ }
/* 3859 */
/* 3860 */ .the-content-wrapper input[type="password"]:focus, .bp-page-contents input[type="password"]:focus {
/* 3861 */   border-color: #1a1a1a;
/* 3862 */ }
/* 3863 */
/* 3864 */ .the-content-wrapper input[type="submit"], .bp-page-contents input[type="submit"] {
/* 3865 */   height: 48px;
/* 3866 */   background: #ffd800;
/* 3867 */   border: none;
/* 3868 */   outline: none;
/* 3869 */   vertical-align: middle;
/* 3870 */   color: #1a1a1a;
/* 3871 */   padding-right: 18px;
/* 3872 */   padding-left: 18px;
/* 3873 */   transition: .2s all ease-in-out;
/* 3874 */ }
/* 3875 */
/* 3876 */ .the-content-wrapper input[type="submit"]:hover, .bp-page-contents input[type="submit"]:hover {
/* 3877 */   color: #ffd800;
/* 3878 */   background: #1a1a1a;
/* 3879 */ }
/* 3880 */
/* 3881 */ .the-content-wrapper .wp-caption-text, .bp-page-contents .wp-caption-text {
/* 3882 */   font-size: 12px;
/* 3883 */   text-align: center;
/* 3884 */ }
/* 3885 */
/* 3886 */ .single-post-bp {
/* 3887 */   margin-bottom: 35px;
/* 3888 */   padding-bottom: 30px;
/* 3889 */   border-bottom: 1px solid #f2f4f9;
/* 3890 */ }
/* 3891 */
/* 3892 */ .single-post-bp img {
/* 3893 */   max-width: 100%;
/* 3894 */   height: auto;
/* 3895 */   display: block;
/* 3896 */ }
/* 3897 */
/* 3898 */ .single-post-bp .sticky-pin-icon {
/* 3899 */   display: none;
/* 3900 */ }

/* main.css */

/* 3901 */
/* 3902 */ .single-post-bp.sticky {
/* 3903 */   border-bottom: 2px solid #ffd800;
/* 3904 */ }
/* 3905 */
/* 3906 */ .single-post-bp.sticky h2 {
/* 3907 */   padding-right: 40px;
/* 3908 */   position: relative;
/* 3909 */ }
/* 3910 */
/* 3911 */ .single-post-bp.sticky h2 .sticky-pin-icon {
/* 3912 */   display: inline-block;
/* 3913 */   width: 40px;
/* 3914 */   height: 40px;
/* 3915 */   line-height: 40px;
/* 3916 */   text-align: center;
/* 3917 */   font-family: FontAwesome;
/* 3918 */   content: "\f08d";
/* 3919 */   background: #ffd800;
/* 3920 */   font-size: 18px;
/* 3921 */   margin-right: 10px;
/* 3922 */ }
/* 3923 */
/* 3924 */ .single-post-bp.sticky h2 .sticky-pin-icon svg {
/* 3925 */   transform: rotate(-45deg);
/* 3926 */   vertical-align: -2px;
/* 3927 */ }
/* 3928 */
/* 3929 */ .single-post-bp .the-post-thumbnail a {
/* 3930 */   position: relative;
/* 3931 */   display: block;
/* 3932 */ }
/* 3933 */
/* 3934 */ .single-post-bp .the-post-thumbnail a:hover {
/* 3935 */   opacity: .9;
/* 3936 */ }
/* 3937 */
/* 3938 */ .single-post-bp .the-post-thumbnail a:hover:after {
/* 3939 */   font-size: 20px;
/* 3940 */ }
/* 3941 */
/* 3942 */ .alignright {
/* 3943 */   float: right;
/* 3944 */   margin-left: 20px;
/* 3945 */ }
/* 3946 */
/* 3947 */ .aligncenter {
/* 3948 */   margin: auto;
/* 3949 */   max-width: 100%;
/* 3950 */ }

/* main.css */

/* 3951 */
/* 3952 */ .alignnone {
/* 3953 */   max-width: 100%;
/* 3954 */ }
/* 3955 */
/* 3956 */ .author-detail-wrapper {
/* 3957 */   padding-bottom: 60px;
/* 3958 */   border-bottom: 1px solid #e9e9e9;
/* 3959 */ }
/* 3960 */
/* 3961 */ .author-detail-wrapper img {
/* 3962 */   max-width: 100%;
/* 3963 */   height: auto;
/* 3964 */ }
/* 3965 */
/* 3966 */ .author-detail-wrapper h2, .author-detail-wrapper h3 {
/* 3967 */   font-weight: 600;
/* 3968 */ }
/* 3969 */
/* 3970 */ .author-detail-wrapper h2 {
/* 3971 */   margin-top: 40px;
/* 3972 */   font-size: 24px;
/* 3973 */   margin-bottom: 30px;
/* 3974 */ }
/* 3975 */
/* 3976 */ .author-detail-wrapper h3 {
/* 3977 */   margin-top: 0;
/* 3978 */   font-size: 18px;
/* 3979 */ }
/* 3980 */
/* 3981 */ .author-detail-wrapper .view-all {
/* 3982 */   color: #1a1a1a;
/* 3983 */   font-weight: 600;
/* 3984 */ }
/* 3985 */
/* 3986 */ .author-detail-wrapper .author-thumbnail {
/* 3987 */   transition: .2s all ease-in-out;
/* 3988 */ }
/* 3989 */
/* 3990 */ .author-detail-wrapper .author-thumbnail:hover {
/* 3991 */   opacity: .9;
/* 3992 */ }
/* 3993 */
/* 3994 */ .author-detail-wrapper h3 {
/* 3995 */   margin-bottom: 20px;
/* 3996 */ }
/* 3997 */
/* 3998 */ .author-detail-wrapper ul {
/* 3999 */   padding-left: 0;
/* 4000 */   list-style: none;

/* main.css */

/* 4001 */   margin-left: -10px;
/* 4002 */ }
/* 4003 */
/* 4004 */ .author-detail-wrapper li {
/* 4005 */   display: inline-block;
/* 4006 */   margin-left: 10px;
/* 4007 */ }
/* 4008 */
/* 4009 */ .author-detail-wrapper li a {
/* 4010 */   color: #808080;
/* 4011 */ }
/* 4012 */
/* 4013 */ .author-detail-wrapper li a:hover {
/* 4014 */   color: #1a1a1a;
/* 4015 */ }
/* 4016 */
/* 4017 */ .comments-single {
/* 4018 */   overflow: hidden;
/* 4019 */   border-bottom: 1px solid #e9e9e9;
/* 4020 */ }
/* 4021 */
/* 4022 */ .comments-single .comment-wrapper h1, .comments-single .comment-wrapper h2, .comments-single .comment-wrapper h3, .comments-single .comment-wrapper h4, .comments-single .comment-wrapper h5, .comments-single .comment-wrapper h6, .comments-single .comment-wrapper th, .comments-single .comment-wrapper dt {
/* 4023 */   font-weight: 600;
/* 4024 */   color: #1a1a1a;
/* 4025 */ }
/* 4026 */
/* 4027 */ .comments-single .comment-wrapper p, .comments-single .comment-wrapper li, .comments-single .comment-wrapper td, .comments-single .comment-wrapper dd, .comments-single .comment-wrapper address {
/* 4028 */   font-size: 14px;
/* 4029 */   line-height: 24px;
/* 4030 */   color: #808080;
/* 4031 */ }
/* 4032 */
/* 4033 */ .comments-single .comment-wrapper dd {
/* 4034 */   margin-bottom: 25px;
/* 4035 */ }
/* 4036 */
/* 4037 */ .comments-single .comment-wrapper table {
/* 4038 */   margin-bottom: 25px;
/* 4039 */ }
/* 4040 */
/* 4041 */ .comments-single .comment-wrapper td {
/* 4042 */   padding-left: 10px;
/* 4043 */   padding-right: 10px;
/* 4044 */ }
/* 4045 */
/* 4046 */ .comments-single .comment-wrapper li {
/* 4047 */   margin-bottom: 10px;
/* 4048 */   margin-top: 10px;
/* 4049 */ }
/* 4050 */

/* main.css */

/* 4051 */ .comments-single .comment-wrapper a {
/* 4052 */   color: #f5b800;
/* 4053 */ }
/* 4054 */
/* 4055 */ .comments-single .comment-wrapper a:hover {
/* 4056 */   color: #1a1a1a;
/* 4057 */ }
/* 4058 */
/* 4059 */ .comments-single .comment-wrapper ul {
/* 4060 */   padding-left: 20px;
/* 4061 */   margin-left: 0;
/* 4062 */   list-style: disc;
/* 4063 */ }
/* 4064 */
/* 4065 */ .comments-single .comment-wrapper .comment-reply-link {
/* 4066 */   font-size: 11px;
/* 4067 */   font-weight: 600;
/* 4068 */   text-transform: uppercase;
/* 4069 */   color: #1a1a1a;
/* 4070 */   padding: 1px 10px;
/* 4071 */   line-height: 23px;
/* 4072 */   height: 23px;
/* 4073 */   vertical-align: middle;
/* 4074 */   background: #ffd800;
/* 4075 */   display: inline-block;
/* 4076 */ }
/* 4077 */
/* 4078 */ .comments-single .comment-wrapper .comment-reply-link:hover {
/* 4079 */   color: #ffd800;
/* 4080 */   background: #1a1a1a;
/* 4081 */ }
/* 4082 */
/* 4083 */ .comments-single .comment-wrapper .avatar img {
/* 4084 */   max-width: 100%;
/* 4085 */ }
/* 4086 */
/* 4087 */ .comments-single .comment-respond {
/* 4088 */   padding-top: 0;
/* 4089 */   padding-bottom: 70px;
/* 4090 */ }
/* 4091 */
/* 4092 */ .comments-single .comments-heading {
/* 4093 */   margin-top: 40px;
/* 4094 */   margin-bottom: 30px;
/* 4095 */   font-size: 24px;
/* 4096 */   font-weight: 600;
/* 4097 */ }
/* 4098 */
/* 4099 */ .comments-single .comment-list-heading {
/* 4100 */   margin-top: 10px;

/* main.css */

/* 4101 */ }
/* 4102 */
/* 4103 */ .comments-single .comment-list-heading h3 {
/* 4104 */   font-size: 18px;
/* 4105 */   font-weight: 600;
/* 4106 */   margin-top: 0;
/* 4107 */   float: left;
/* 4108 */ }
/* 4109 */
/* 4110 */ .comments-single .comment-list-heading h3 a {
/* 4111 */   color: #1a1a1a;
/* 4112 */ }
/* 4113 */
/* 4114 */ .comments-single .comment-list-heading h3 a:hover {
/* 4115 */   color: #808080;
/* 4116 */ }
/* 4117 */
/* 4118 */ .comments-single .comment-list-heading .comment-date {
/* 4119 */   margin-top: 1px;
/* 4120 */   float: right;
/* 4121 */   font-size: 12px;
/* 4122 */   color: #808080;
/* 4123 */ }
/* 4124 */
/* 4125 */ .comments-single p {
/* 4126 */   margin-bottom: 15px;
/* 4127 */ }
/* 4128 */
/* 4129 */ .comments-single ul {
/* 4130 */   padding-left: 0;
/* 4131 */   list-style: none;
/* 4132 */ }
/* 4133 */
/* 4134 */ .comments-single ul li .comment-wrapper {
/* 4135 */   margin-bottom: 70px;
/* 4136 */ }
/* 4137 */
/* 4138 */ .comments-single ul li ul {
/* 4139 */   margin-left: 65px;
/* 4140 */ }
/* 4141 */
/* 4142 */ .comments-single .pingback a {
/* 4143 */   color: #f5b800;
/* 4144 */ }
/* 4145 */
/* 4146 */ .comments-single .pingback a:hover {
/* 4147 */   color: #1a1a1a;
/* 4148 */ }
/* 4149 */
/* 4150 */ .name-social-wrapper {

/* main.css */

/* 4151 */   display: flex;
/* 4152 */   flex-wrap: wrap;
/* 4153 */   justify-content: space-between;
/* 4154 */ }
/* 4155 */
/* 4156 */ .name-social-wrapper a {
/* 4157 */   color: #1a1a1a;
/* 4158 */ }
/* 4159 */
/* 4160 */ .name-social-wrapper a:hover {
/* 4161 */   color: #989898;
/* 4162 */ }
/* 4163 */
/* 4164 */ .name-social-wrapper .comment-date {
/* 4165 */   font-size: 12px;
/* 4166 */   color: #808080;
/* 4167 */ }
/* 4168 */
/* 4169 */ .comment-respond {
/* 4170 */   padding-top: 50px;
/* 4171 */ }
/* 4172 */
/* 4173 */ .comment-respond h3 {
/* 4174 */   font-size: 24px;
/* 4175 */   font-weight: 600;
/* 4176 */   color: #1a1a1a;
/* 4177 */   margin-bottom: 40px;
/* 4178 */ }
/* 4179 */
/* 4180 */ .comment-respond input, .comment-respond textarea {
/* 4181 */   outline: none;
/* 4182 */   color: #808080;
/* 4183 */   transition: .2s all ease-in-out;
/* 4184 */ }
/* 4185 */
/* 4186 */ .comment-respond input[type="text"], .comment-respond textarea {
/* 4187 */   border: 1px solid #e5e8f1;
/* 4188 */ }
/* 4189 */
/* 4190 */ .comment-respond input[type="text"]:focus, .comment-respond textarea:focus {
/* 4191 */   border-color: #1a1a1a;
/* 4192 */ }
/* 4193 */
/* 4194 */ .comment-respond input[type="text"] {
/* 4195 */   height: 50px;
/* 4196 */   width: 100%;
/* 4197 */   max-width: 360px;
/* 4198 */   padding-left: 18px;
/* 4199 */   padding-right: 18px;
/* 4200 */ }

/* main.css */

/* 4201 */
/* 4202 */ .comment-respond textarea {
/* 4203 */   width: 100%;
/* 4204 */   padding: 13px 18px;
/* 4205 */   height: 150px;
/* 4206 */ }
/* 4207 */
/* 4208 */ .comment-respond .form-submit {
/* 4209 */   margin-bottom: 0;
/* 4210 */ }
/* 4211 */
/* 4212 */ .comment-respond input[type="submit"] {
/* 4213 */   font-size: 14px;
/* 4214 */   text-transform: uppercase;
/* 4215 */   white-space: nowrap;
/* 4216 */   color: #1a1a1a;
/* 4217 */   display: inline-block;
/* 4218 */   border: none;
/* 4219 */   padding: 12px 28px;
/* 4220 */   background: #ffd800;
/* 4221 */   font-weight: 700;
/* 4222 */ }
/* 4223 */
/* 4224 */ .comment-respond input[type="submit"]:hover {
/* 4225 */   background: #1a1a1a;
/* 4226 */   color: #ffd800;
/* 4227 */ }
/* 4228 */
/* 4229 */ .comment-respond #cancel-comment-reply-link {
/* 4230 */   font-size: 11px;
/* 4231 */   font-weight: 600;
/* 4232 */   text-transform: uppercase;
/* 4233 */   color: #1a1a1a;
/* 4234 */   padding: 1px 10px;
/* 4235 */   line-height: 23px;
/* 4236 */   height: 23px;
/* 4237 */   vertical-align: middle;
/* 4238 */   background: #ffd800;
/* 4239 */   display: inline-block;
/* 4240 */   float: right;
/* 4241 */ }
/* 4242 */
/* 4243 */ .comment-respond #cancel-comment-reply-link:hover {
/* 4244 */   background: #1a1a1a;
/* 4245 */   color: #ffd800;
/* 4246 */ }
/* 4247 */
/* 4248 */ .comment-form-cookies-consent input {
/* 4249 */   margin: 0;
/* 4250 */ }

/* main.css */

/* 4251 */
/* 4252 */ .comment-form-cookies-consent label {
/* 4253 */   margin: 0 5px;
/* 4254 */   vertical-align: middle;
/* 4255 */ }
/* 4256 */
/* 4257 */ .logged-in-as a {
/* 4258 */   color: #808080;
/* 4259 */ }
/* 4260 */
/* 4261 */ .logged-in-as a:hover {
/* 4262 */   color: #1a1a1a;
/* 4263 */ }
/* 4264 */
/* 4265 */ .pagination {
/* 4266 */   display: block;
/* 4267 */   text-align: center;
/* 4268 */   margin-top: 40px;
/* 4269 */   margin-bottom: 40px;
/* 4270 */ }
/* 4271 */
/* 4272 */ .pagination span, .pagination a {
/* 4273 */   height: 48px;
/* 4274 */   min-width: 48px;
/* 4275 */   line-height: 44px;
/* 4276 */   border: 2px solid #f0f0f0;
/* 4277 */   color: #808080;
/* 4278 */   display: inline-block;
/* 4279 */   text-align: center;
/* 4280 */   margin-left: 8px;
/* 4281 */   margin-right: 8px;
/* 4282 */ }
/* 4283 */
/* 4284 */ .pagination a:hover {
/* 4285 */   background: #ffd800;
/* 4286 */   border-color: #ffd800;
/* 4287 */   color: #1a1a1a;
/* 4288 */ }
/* 4289 */
/* 4290 */ .pagination .current {
/* 4291 */   background: #ffd800;
/* 4292 */   border-color: #ffd800;
/* 4293 */   color: #1a1a1a;
/* 4294 */ }
/* 4295 */
/* 4296 */ .pagination .prev, .pagination .next {
/* 4297 */   padding-left: 20px;
/* 4298 */   padding-right: 20px;
/* 4299 */ }
/* 4300 */

/* main.css */

/* 4301 */ .page-links {
/* 4302 */   color: #1a1a1a;
/* 4303 */ }
/* 4304 */
/* 4305 */ .page-links a {
/* 4306 */   color: #f5b800;
/* 4307 */ }
/* 4308 */
/* 4309 */ .page-links a:hover {
/* 4310 */   color: #1a1a1a;
/* 4311 */ }
/* 4312 */
/* 4313 */ .pingback {
/* 4314 */   margin-bottom: 10px;
/* 4315 */ }
/* 4316 */
/* 4317 */ .pingback a {
/* 4318 */   display: block;
/* 4319 */ }
/* 4320 */
/* 4321 */ /* Text meant only for screen readers. */
/* 4322 */ .screen-reader-text {
/* 4323 */   pointer-events: none;
/* 4324 */   cursor: not-allowed;
/* 4325 */   clip: rect(1px, 1px, 1px, 1px);
/* 4326 */   position: absolute !important;
/* 4327 */   height: 1px !important;
/* 4328 */   width: 1px !important;
/* 4329 */   min-width: 0 !important;
/* 4330 */   border: 0 !important;
/* 4331 */   overflow: hidden;
/* 4332 */ }
/* 4333 */
/* 4334 */ .gallery-caption {
/* 4335 */   position: relative;
/* 4336 */ }
/* 4337 */
/* 4338 */ .bypostauthor {
/* 4339 */   list-style: none;
/* 4340 */ }
/* 4341 */
/* 4342 */ .tag-links {
/* 4343 */   display: inline-block;
/* 4344 */   margin-top: 30px;
/* 4345 */ }
/* 4346 */
/* 4347 */ .tag-links a {
/* 4348 */   display: inline-block;
/* 4349 */   font-size: 12px;
/* 4350 */   background: #ffd800;

/* main.css */

/* 4351 */   padding: 9px 20px;
/* 4352 */   font-weight: 500;
/* 4353 */   margin-bottom: 5px;
/* 4354 */   color: #1a1a1a;
/* 4355 */   margin-right: 5px;
/* 4356 */ }
/* 4357 */
/* 4358 */ .tag-links a:hover {
/* 4359 */   background: #1a1a1a;
/* 4360 */   color: #ffd800;
/* 4361 */ }
/* 4362 */
/* 4363 */ .searched-text {
/* 4364 */   color: #1a1a1a;
/* 4365 */ }
/* 4366 */
/* 4367 */ blockquote,
/* 4368 */ blockquote.wp-block-quote {
/* 4369 */   border-left: 4px solid transparent;
/* 4370 */ }
/* 4371 */
/* 4372 */ .wp-block-quote[style*="text-align:right"],
/* 4373 */ .wp-block-quote[style*="text-align: right"],
/* 4374 */ blockquote,
/* 4375 */ blockquote.wp-block-quote {
/* 4376 */   border-color: #ffd800;
/* 4377 */ }
/* 4378 */
/* 4379 */ .wp-block-gallery {
/* 4380 */   margin-top: 40px;
/* 4381 */ }
/* 4382 */
/* 4383 */ .the-content-wrapper .wp-block-button__link:active,
/* 4384 */ .the-content-wrapper .wp-block-button__link:focus,
/* 4385 */ .the-content-wrapper .wp-block-button__link:hover,
/* 4386 */ .the-content-wrapper .wp-block-button__link:visited,
/* 4387 */ .bp-page-contents .wp-block-button__link:active,
/* 4388 */ .bp-page-contents .wp-block-button__link:focus,
/* 4389 */ .bp-page-contents .wp-block-button__link:hover,
/* 4390 */ .bp-page-contents .wp-block-button__link:visited {
/* 4391 */   color: inherit;
/* 4392 */ }
/* 4393 */
/* 4394 */ .wrapper-page-contents .no-sidebar .alignfull {
/* 4395 */   padding-left: 25px;
/* 4396 */   padding-right: 25px;
/* 4397 */ }
/* 4398 */
/* 4399 */ .wp-block-gallery .blocks-gallery-image figcaption,
/* 4400 */ .wp-block-gallery .blocks-gallery-item figcaption {

/* main.css */

/* 4401 */   bottom: 20px;
/* 4402 */ }
/* 4403 */
/* 4404 */ embed,
/* 4405 */ iframe,
/* 4406 */ object {
/* 4407 */   max-width: 100%;
/* 4408 */ }
/* 4409 */
/* 4410 */ .wp-block-archives-dropdown {
/* 4411 */   margin-bottom: 25px;
/* 4412 */ }
/* 4413 */
/* 4414 */ .wp-block-latest-comments footer {
/* 4415 */   background: transparent;
/* 4416 */ }
/* 4417 */
/* 4418 */ .psost-heading-single {
/* 4419 */   word-wrap: break-word;
/* 4420 */ }
/* 4421 */
/* 4422 */ /*-----------------------------------------------------------------------------------*/
/* 4423 */ /*	8.0 Footer
/* 4424 *| /*-----------------------------------------------------------------------------------*/
/* 4425 */ /*-----------------------------------------------------------------------------------*/
/* 4426 */ /*	footer
/* 4427 *| /*-----------------------------------------------------------------------------------*/
/* 4428 */ footer {
/* 4429 */   background: #1a1a1a;
/* 4430 */ }
/* 4431 */
/* 4432 */ .footer-intro-section {
/* 4433 */   padding-top: 60px;
/* 4434 */   padding-bottom: 50px;
/* 4435 */   display: flex;
/* 4436 */   justify-content: space-between;
/* 4437 */   align-items: center;
/* 4438 */   border-bottom: 1px solid #262626;
/* 4439 */ }
/* 4440 */
/* 4441 */ .footer-intro-section p {
/* 4442 */   margin-bottom: 0;
/* 4443 */   padding-left: 50px;
/* 4444 */   padding-right: 50px;
/* 4445 */   color: #a0a0a0;
/* 4446 */   line-height: 24px;
/* 4447 */ }
/* 4448 */
/* 4449 */ .footer-intro-section p a {
/* 4450 */   font-weight: 700;

/* main.css */

/* 4451 */   color: #f9f9f9;
/* 4452 */ }
/* 4453 */
/* 4454 */ .footer-intro-section p a:hover {
/* 4455 */   color: #ffd800;
/* 4456 */ }
/* 4457 */
/* 4458 */ .footer-copyright {
/* 4459 */   background: #121212;
/* 4460 */   padding-top: 25px;
/* 4461 */   padding-bottom: 15px;
/* 4462 */ }
/* 4463 */
/* 4464 */ .copyright-text {
/* 4465 */   font-size: 13px;
/* 4466 */   color: #818181;
/* 4467 */   margin-bottom: 0;
/* 4468 */ }
/* 4469 */
/* 4470 */ .copyright-text a {
/* 4471 */   color: #ffffff;
/* 4472 */ }
/* 4473 */
/* 4474 */ .copyright-text a:hover {
/* 4475 */   color: #ffd800;
/* 4476 */ }
/* 4477 */
/* 4478 */ .wrapper-footer-social {
/* 4479 */   text-align: right;
/* 4480 */ }
/* 4481 */
/* 4482 */ .wrapper-footer-social ul {
/* 4483 */   padding-left: 0;
/* 4484 */ }
/* 4485 */
/* 4486 */ /*-----------------------------------------------------------------------------------*/
/* 4487 */ /*	footer ends
/* 4488 *| /*-----------------------------------------------------------------------------------*/
/* 4489 */ /*-----------------------------------------------------------------------------------*/
/* 4490 */ /*	9.0 Visual Composer
/* 4491 *| /*-----------------------------------------------------------------------------------*/
/* 4492 */ .vc-pages-contents-area h1, .vc-pages-contents-area h2, .vc-pages-contents-area h3, .vc-pages-contents-area h4, .vc-pages-contents-area h5, .vc-pages-contents-area h6 {
/* 4493 */   font-weight: 700;
/* 4494 */ }
/* 4495 */
/* 4496 */ .vc-pages-contents-area .common-vc-class img {
/* 4497 */   margin-bottom: 0;
/* 4498 */ }
/* 4499 */
/* 4500 */ .inspiry-vc-section-text p {

/* main.css */

/* 4501 */   color: #808080;
/* 4502 */   font-size: 18px;
/* 4503 */   line-height: 27px;
/* 4504 */   margin-bottom: 60px;
/* 4505 */   max-width: 700px;
/* 4506 */   margin-left: auto;
/* 4507 */   margin-right: auto;
/* 4508 */ }
/* 4509 */
/* 4510 */ div.background-position-icon {
/* 4511 */   background-position: 20px 0 !important;
/* 4512 */ }
/* 4513 */
/* 4514 */ .vc-overlay {
/* 4515 */   background-color: rgba(255, 216, 0, 0.85);
/* 4516 */ }
/* 4517 */
/* 4518 */ .vc-wrapper-quote-box {
/* 4519 */   position: relative;
/* 4520 */   z-index: 99;
/* 4521 */   display: flex;
/* 4522 */   justify-content: space-between;
/* 4523 */   align-items: center;
/* 4524 */   margin-left: -15px;
/* 4525 */   margin-right: -15px;
/* 4526 */ }
/* 4527 */
/* 4528 */ .vc-wrapper-quote-box .flex-item {
/* 4529 */   padding-left: 15px;
/* 4530 */   padding-right: 15px;
/* 4531 */ }
/* 4532 */
/* 4533 */ .vc-wrapper-quote-box h2 {
/* 4534 */   margin-top: 0;
/* 4535 */   font-size: 24px;
/* 4536 */   color: #1a1a1a;
/* 4537 */   line-height: 32px;
/* 4538 */ }
/* 4539 */
/* 4540 */ .vc-wrapper-quote-box p {
/* 4541 */   margin-bottom: 0;
/* 4542 */   font-size: 18px;
/* 4543 */   color: #4b493d;
/* 4544 */ }
/* 4545 */
/* 4546 */ .wrapper-vc-carousel {
/* 4547 */   padding-bottom: 90px;
/* 4548 */ }
/* 4549 */
/* 4550 */ .wrapper-vc-carousel img {

/* main.css */

/* 4551 */   max-width: 100% !important;
/* 4552 */   width: auto !important;
/* 4553 */   margin-bottom: 20px;
/* 4554 */ }
/* 4555 */
/* 4556 */ .wrapper-vc-carousel h3 {
/* 4557 */   margin-top: 0;
/* 4558 */   font-size: 16px;
/* 4559 */ }
/* 4560 */
/* 4561 */ .wrapper-vc-carousel .value-icon-wrapper {
/* 4562 */   display: inline-block;
/* 4563 */   margin-bottom: 20px;
/* 4564 */ }
/* 4565 */
/* 4566 */ .section-testimonials-vc {
/* 4567 */   position: relative;
/* 4568 */ }
/* 4569 */
/* 4570 */ .section-testimonials-vc h2 {
/* 4571 */   font-size: 30px;
/* 4572 */   margin-top: 0;
/* 4573 */   margin-bottom: 20px;
/* 4574 */   color: #1a1a1a;
/* 4575 */ }
/* 4576 */
/* 4577 */ .section-testimonials-vc .section-text {
/* 4578 */   color: #808080;
/* 4579 */   font-size: 18px;
/* 4580 */   line-height: 27px;
/* 4581 */   margin-bottom: 60px;
/* 4582 */   max-width: 700px;
/* 4583 */   margin-left: auto;
/* 4584 */   margin-right: auto;
/* 4585 */ }
/* 4586 */
/* 4587 */ .wrapper-404 {
/* 4588 */   padding-top: 100px;
/* 4589 */   padding-bottom: 100px;
/* 4590 */   max-width: 650px;
/* 4591 */   margin: auto;
/* 4592 */ }
/* 4593 */
/* 4594 */ .wrapper-404 p.page-not-found {
/* 4595 */   font-size: 24px;
/* 4596 */ }
/* 4597 */
/* 4598 */ .wrapper-404 h1 {
/* 4599 */   font-size: 300px;
/* 4600 */   font-weight: 600;

/* main.css */

/* 4601 */   font-family: 'Poppins', sans-serif;
/* 4602 */   line-height: 260px;
/* 4603 */ }
/* 4604 */
/* 4605 */ .wrapper-404 p.message-404 {
/* 4606 */   font-size: 28px;
/* 4607 */   line-height: 34px;
/* 4608 */ }
/* 4609 */
/* 4610 */ .wrapper-404 p.message-404 span {
/* 4611 */   color: #1a1a1a;
/* 4612 */   text-transform: uppercase;
/* 4613 */ }
/* 4614 */
/* 4615 */ /*-----------------------------------------------------------------------------------*/
/* 4616 */ /* 10.0 Responsive Styles
/* 4617 *| /*-----------------------------------------------------------------------------------*/
/* 4618 */ /*------------------------------------*/
/* 4619 */ /* 10.1 Large Screen Devices
/* 4620 *| /*------------------------------------*/
/* 4621 */ /*------------------------------------*/
/* 4622 */ /* 10.2 Medium Screen Devices
/* 4623 *| /*------------------------------------*/
/* 4624 */ @media only screen and (min-width: 992px) and (max-width: 1199px) {
/* 4625 */   .main-menu ul li {
/* 4626 */     margin-right: 25px;
/* 4627 */   }
/* 4628 */   .main-slider ol.flex-control-nav {
/* 4629 */     bottom: 20px;
/* 4630 */   }
/* 4631 */   .slide-content .slider-detail-inner {
/* 4632 */     padding: 40px;
/* 4633 */   }
/* 4634 */   .slide-content .slider-detail-inner h1 {
/* 4635 */     font-size: 26px;
/* 4636 */   }
/* 4637 */   .slide-content .slider-detail-inner a.button-slider {
/* 4638 */     bottom: -15px;
/* 4639 */   }
/* 4640 */   .services-section .service-box-var2 .image-service {
/* 4641 */     width: 50%;
/* 4642 */   }
/* 4643 */   .services-section .service-box-var2 .detail-service {
/* 4644 */     padding: 20px 80px;
/* 4645 */     width: 50%;
/* 4646 */   }
/* 4647 */   .custom-class-services-2:nth-of-type(odd) .image-service {
/* 4648 */     order: 2;
/* 4649 */   }
/* 4650 */   .featured-section-var2 .wrapper-left-tabs, .featured-section-var2 .wrapper-tabs-large {

/* main.css */

/* 4651 */     height: 434px;
/* 4652 */   }
/* 4653 */   .featured-section-var2 .wrapper-left-tabs ul li .wrapper-inner-single-feature {
/* 4654 */     padding: 10px 15px;
/* 4655 */   }
/* 4656 */ }
/* 4657 */
/* 4658 */ /*------------------------------------*/
/* 4659 */ /* 10.3 Small Screen Devices
/* 4660 *| /*------------------------------------*/
/* 4661 */ @media only screen and (max-width: 991px) {
/* 4662 */   .custom-container-header-2 {
/* 4663 */     padding-left: 0;
/* 4664 */     padding-right: 0;
/* 4665 */     width: 100%;
/* 4666 */   }
/* 4667 */   .text-center-sm {
/* 4668 */     text-align: center !important;
/* 4669 */   }
/* 4670 */   .text-left-sm {
/* 4671 */     text-align: left !important;
/* 4672 */   }
/* 4673 */   .header-box {
/* 4674 */     flex-direction: column;
/* 4675 */   }
/* 4676 */   .header-box .header-box-logo {
/* 4677 */     width: 100%;
/* 4678 */   }
/* 4679 */   .header-box .header-box-contact {
/* 4680 */     width: 100%;
/* 4681 */   }
/* 4682 */   .wrapper-logo {
/* 4683 */     margin-top: 10px;
/* 4684 */     margin-bottom: 10px;
/* 4685 */   }
/* 4686 */   .wrapper-header-contact {
/* 4687 */     text-align: center;
/* 4688 */   }
/* 4689 */   .contact-box, .request-quote-btn {
/* 4690 */     margin-left: 15px;
/* 4691 */     margin-right: 15px;
/* 4692 */     margin-bottom: 10px;
/* 4693 */     margin-top: 10px;
/* 4694 */   }
/* 4695 */   .contact-box.contact-phone {
/* 4696 */     margin-left: 15px;
/* 4697 */   }
/* 4698 */   .shopping-cart-btn {
/* 4699 */     position: absolute;
/* 4700 */     right: 0;

/* main.css */

/* 4701 */     top: 0;
/* 4702 */     z-index: 999999;
/* 4703 */     width: 52px;
/* 4704 */     height: 52px;
/* 4705 */   }
/* 4706 */   .wrapper-quote-box {
/* 4707 */     flex-direction: column;
/* 4708 */     text-align: center;
/* 4709 */   }
/* 4710 */   .wrapper-quote-box p {
/* 4711 */     margin-bottom: 20px;
/* 4712 */   }
/* 4713 */   .slide-content .slider-detail-inner {
/* 4714 */     padding: 30px 30px;
/* 4715 */     max-width: 400px;
/* 4716 */   }
/* 4717 */   .slide-content .slider-detail-inner h1 {
/* 4718 */     font-size: 24px;
/* 4719 */   }
/* 4720 */   .slide-content .slider-detail-inner p {
/* 4721 */     font-size: 14px;
/* 4722 */   }
/* 4723 */   .slide-content .slider-detail-inner a.button-slider {
/* 4724 */     float: left;
/* 4725 */     bottom: -5px;
/* 4726 */   }
/* 4727 */   .slide-content .slider-detail-inner .slide-icon {
/* 4728 */     display: none;
/* 4729 */   }
/* 4730 */   .main-slider ol.flex-control-nav {
/* 4731 */     bottom: 20px;
/* 4732 */   }
/* 4733 */   .special-home-var2 .wrapper-special-feature {
/* 4734 */     margin-bottom: 60px;
/* 4735 */   }
/* 4736 */   .qualities-box {
/* 4737 */     flex-direction: column;
/* 4738 */   }
/* 4739 */   .qualities-box .left-items, .qualities-box .right-items {
/* 4740 */     width: 100%;
/* 4741 */   }
/* 4742 */   .single-project-box .image-box, .single-project-box .detail-box {
/* 4743 */     width: 100%;
/* 4744 */     float: none;
/* 4745 */   }
/* 4746 */   .single-project-box .detail-box {
/* 4747 */     padding-left: 0;
/* 4748 */     padding-right: 0 !important;
/* 4749 */   }
/* 4750 */   .page-layout-wrapper {

/* main.css */

/* 4751 */     position: static;
/* 4752 */     float: right;
/* 4753 */     clear: both;
/* 4754 */     display: block;
/* 4755 */     margin-bottom: 40px;
/* 4756 */   }
/* 4757 */   .projects-category-lists {
/* 4758 */     padding-right: 0;
/* 4759 */   }
/* 4760 */   .projects-category-lists ul {
/* 4761 */     clear: both;
/* 4762 */   }
/* 4763 */   .wrapper-projects-grid .wrapper-single-box {
/* 4764 */     width: 50%;
/* 4765 */   }
/* 4766 */   .mini-cart {
/* 4767 */     position: absolute;
/* 4768 */     right: 0;
/* 4769 */     top: 0;
/* 4770 */     height: 52px;
/* 4771 */     line-height: 52px;
/* 4772 */   }
/* 4773 */   .mini-cart .nav-dropdown {
/* 4774 */     display: none;
/* 4775 */   }
/* 4776 */   .services-section .services-box {
/* 4777 */     flex-direction: column;
/* 4778 */   }
/* 4779 */   .services-section .services-box .single-service-wrapper {
/* 4780 */     width: 100%;
/* 4781 */   }
/* 4782 */   .services-section .services-box .single-service {
/* 4783 */     width: 100%;
/* 4784 */   }
/* 4785 */   .vc-wrapper-quote-box {
/* 4786 */     flex-direction: column;
/* 4787 */     text-align: center;
/* 4788 */   }
/* 4789 */   .vc-wrapper-quote-box .text-cta {
/* 4790 */     margin-bottom: 25px;
/* 4791 */   }
/* 4792 */   .header-nav-top .mini-cart {
/* 4793 */     line-height: 52px;
/* 4794 */   }
/* 4795 */   .header-nav-top .mini-cart .cart-inner {
/* 4796 */     border: none;
/* 4797 */   }
/* 4798 */   .header-nav-top .mini-cart .cart-icon {
/* 4799 */     transition: .2s all;
/* 4800 */   }

/* main.css */

/* 4801 */   .header-nav-top .mini-cart .cart-icon i {
/* 4802 */     color: #1a1a1a;
/* 4803 */   }
/* 4804 */   .header-nav-top .mini-cart .cart-icon i svg {
/* 4805 */     fill: #1a1a1a;
/* 4806 */     transition: .2s all;
/* 4807 */   }
/* 4808 */   .header-nav-top .mini-cart .cart-icon:hover {
/* 4809 */     background: #1a1a1a;
/* 4810 */   }
/* 4811 */   .header-nav-top .mini-cart .cart-icon:hover svg {
/* 4812 */     fill: #ffd800;
/* 4813 */   }
/* 4814 */   .header-nav-top .cart-and-social-wrapper {
/* 4815 */     display: block;
/* 4816 */     float: none;
/* 4817 */     text-align: center;
/* 4818 */   }
/* 4819 */   .header-nav-top .cart-and-social-wrapper .top-social-nav {
/* 4820 */     padding-left: 0;
/* 4821 */     padding-top: 0;
/* 4822 */     margin-bottom: 20px;
/* 4823 */   }
/* 4824 */   .header-nav-top .cart-and-social-wrapper .top-social-nav li {
/* 4825 */     margin-left: 8px;
/* 4826 */     margin-right: 8px;
/* 4827 */   }
/* 4828 */   .custom-class-services-2:nth-of-type(odd) .image-service {
/* 4829 */     order: 2;
/* 4830 */   }
/* 4831 */   .featured-section-var2 .wrapper-left-tabs, .featured-section-var2 .wrapper-tabs-large {
/* 4832 */     width: 100%;
/* 4833 */   }
/* 4834 */   .featured-section-var2 .wrapper-left-tabs {
/* 4835 */     overflow-y: visible;
/* 4836 */     height: auto;
/* 4837 */   }
/* 4838 */   .featured-section-var2 .wrapper-left-tabs ul {
/* 4839 */     padding-right: 15px;
/* 4840 */   }
/* 4841 */   .featured-section-var2 .wrapper-tabs-large {
/* 4842 */     height: auto;
/* 4843 */     margin-top: 50px;
/* 4844 */   }
/* 4845 */   .featured-section-var2 .wrapper-tabs-large img {
/* 4846 */     width: 100%;
/* 4847 */     max-width: none;
/* 4848 */   }
/* 4849 */   .wrapper-inner-single-feature.single-inner-sm-class {
/* 4850 */     box-shadow: 0px 0px 15px 2px #ededed !important;

/* main.css */

/* 4851 */   }
/* 4852 */   .woocommerce ul.order_details li {
/* 4853 */     display: inline-block;
/* 4854 */     border: none;
/* 4855 */     margin-bottom: 30px;
/* 4856 */     width: 40%;
/* 4857 */   }
/* 4858 */   .main-slider .active .slider-detail-inner.icon-padding {
/* 4859 */     padding-top: 30px;
/* 4860 */   }
/* 4861 */   .woocommerce nav.woocommerce-pagination {
/* 4862 */     margin-bottom: 80px;
/* 4863 */   }
/* 4864 */   .woocommerce div.product .woocommerce-tabs #comments {
/* 4865 */     margin-bottom: 30px;
/* 4866 */   }
/* 4867 */   .woocommerce div.product .woocommerce-tabs #comments, .woocommerce div.product .woocommerce-tabs #review_form_wrapper {
/* 4868 */     width: 100%;
/* 4869 */   }
/* 4870 */   .comment-respond {
/* 4871 */     margin-bottom: 50px;
/* 4872 */   }
/* 4873 */   .header-top-section {
/* 4874 */     padding-top: 20px;
/* 4875 */     padding-bottom: 6px;
/* 4876 */   }
/* 4877 */   .checkout_coupon .form-row-first {
/* 4878 */     width: 100% !important;
/* 4879 */   }
/* 4880 */   .checkout_coupon .form-row {
/* 4881 */     float: none !important;
/* 4882 */   }
/* 4883 */   .project-single-content-box {
/* 4884 */     display: block;
/* 4885 */   }
/* 4886 */   .project-left-content-box {
/* 4887 */     width: 100%;
/* 4888 */   }
/* 4889 */   .project-right-related-box {
/* 4890 */     width: 100%;
/* 4891 */   }
/* 4892 */   .woocommerce.columns-4 .products .product, .woocommerce.columns-3 .products .product {
/* 4893 */     width: 50%;
/* 4894 */   }
/* 4895 */ }
/* 4896 */
/* 4897 */ /*------------------------------------*/
/* 4898 */ /* 10.4 Extra Small Screen Devices
/* 4899 *| /*------------------------------------*/
/* 4900 */ @media only screen and (max-width: 767px) {

/* main.css */

/* 4901 */   .slide-content .slider-detail-inner {
/* 4902 */     display: none;
/* 4903 */   }
/* 4904 */   .slide-content .slider-detail {
/* 4905 */     align-items: baseline;
/* 4906 */   }
/* 4907 */   .custom-container-slider {
/* 4908 */     margin-left: 0;
/* 4909 */     margin-top: 15px;
/* 4910 */   }
/* 4911 */   .text-center-xs {
/* 4912 */     text-align: center !important;
/* 4913 */   }
/* 4914 */   .text-left-xs {
/* 4915 */     text-align: left !important;
/* 4916 */   }
/* 4917 */   .top-social-nav {
/* 4918 */     display: block;
/* 4919 */     padding-left: 0;
/* 4920 */   }
/* 4921 */   .footer-intro-section {
/* 4922 */     flex-direction: column;
/* 4923 */     text-align: center;
/* 4924 */   }
/* 4925 */   .footer-intro-section p {
/* 4926 */     margin-bottom: 30px;
/* 4927 */     padding: 0;
/* 4928 */   }
/* 4929 */   .footer-logo {
/* 4930 */     margin-bottom: 30px;
/* 4931 */   }
/* 4932 */   .testimonials-section .flex-control-nav {
/* 4933 */     margin-top: 30px;
/* 4934 */   }
/* 4935 */   .custom-navigation a.custom-left {
/* 4936 */     margin-left: 0;
/* 4937 */   }
/* 4938 */   .custom-navigation a.custom-right {
/* 4939 */     margin-right: 0;
/* 4940 */   }
/* 4941 */   .wrapper-featured-contents .btn-slider {
/* 4942 */     opacity: 1;
/* 4943 */     visibility: visible;
/* 4944 */     transform: rotateX(0deg);
/* 4945 */   }
/* 4946 */   .services-section .services-box {
/* 4947 */     flex-direction: column;
/* 4948 */     align-items: center;
/* 4949 */   }
/* 4950 */   .services-section .services-box .single-service {

/* main.css */

/* 4951 */     width: 100%;
/* 4952 */   }
/* 4953 */   .services-section .services-box .single-service:hover {
/* 4954 */     box-shadow: none;
/* 4955 */     transform: scale(1);
/* 4956 */   }
/* 4957 */   .special-home-section {
/* 4958 */     padding-bottom: 40px;
/* 4959 */   }
/* 4960 */   .wrapper-special-feature {
/* 4961 */     margin-bottom: 60px;
/* 4962 */     text-align: center;
/* 4963 */   }
/* 4964 */   .slider-featured .owl-nav .owl-prev, .slider-single-project .owl-nav .owl-prev {
/* 4965 */     margin-left: -14px;
/* 4966 */   }
/* 4967 */   .slider-featured .owl-nav .owl-next, .slider-single-project .owl-nav .owl-next {
/* 4968 */     margin-right: -14px;
/* 4969 */   }
/* 4970 */   .slider-featured .specialties-box, .slider-single-project .specialties-box {
/* 4971 */     flex-direction: column;
/* 4972 */   }
/* 4973 */   .slider-featured .wrapper-special-feature-item, .slider-single-project .wrapper-special-feature-item {
/* 4974 */     width: 100%;
/* 4975 */     margin-bottom: 50px;
/* 4976 */   }
/* 4977 */   .slider-featured .wrapper-special-feature-item:last-of-type, .slider-single-project .wrapper-special-feature-item:last-of-type {
/* 4978 */     margin-bottom: 0;
/* 4979 */   }
/* 4980 */   .name-social-wrapper {
/* 4981 */     margin-top: 30px;
/* 4982 */   }
/* 4983 */   .comments-single .comment-list-heading {
/* 4984 */     margin-top: 20px;
/* 4985 */     margin-bottom: 20px;
/* 4986 */   }
/* 4987 */   .comments-single .comment-list-heading h3 {
/* 4988 */     float: none;
/* 4989 */   }
/* 4990 */   .comments-single .comment-list-heading .comment-date {
/* 4991 */     float: none;
/* 4992 */   }
/* 4993 */   .comments-single ul li ul {
/* 4994 */     margin-left: 50px;
/* 4995 */   }
/* 4996 */   .bp-archive-product-single {
/* 4997 */     margin-bottom: 50px;
/* 4998 */   }
/* 4999 */   .bp-archive-product-single img {
/* 5000 */     width: 100%;

/* main.css */

/* 5001 */     max-width: none;
/* 5002 */   }
/* 5003 */   .wrapper-wc-pages .woocommerce-result-count {
/* 5004 */     float: none;
/* 5005 */     text-align: center;
/* 5006 */   }
/* 5007 */   .woocommerce .woocommerce-ordering {
/* 5008 */     float: none;
/* 5009 */     text-align: center;
/* 5010 */   }
/* 5011 */   .woocommerce-ordering .select2-container {
/* 5012 */     width: 100% !important;
/* 5013 */     text-align: left;
/* 5014 */   }
/* 5015 */   .wrapper-empty-cart .empty-cart-message {
/* 5016 */     text-align: center;
/* 5017 */   }
/* 5018 */   .wrapper-empty-cart .empty-cart-message .cart-empty {
/* 5019 */     margin-top: 0;
/* 5020 */   }
/* 5021 */   .qualities-box .right-items {
/* 5022 */     display: none;
/* 5023 */   }
/* 5024 */   .woocommerce ul.order_details li {
/* 5025 */     display: block;
/* 5026 */     width: 100%;
/* 5027 */   }
/* 5028 */   .wrapper-404 p.page-not-found {
/* 5029 */     font-size: 24px;
/* 5030 */   }
/* 5031 */   .wrapper-404 h1 {
/* 5032 */     font-size: 200px;
/* 5033 */     line-height: 200px;
/* 5034 */   }
/* 5035 */   .wrapper-404 p.message-404 {
/* 5036 */     font-size: 28px;
/* 5037 */   }
/* 5038 */   .main-slider .owl-dots {
/* 5039 */     bottom: 20px;
/* 5040 */   }
/* 5041 */ }
/* 5042 */
/* 5043 */ @media only screen and (max-width: 600px) {
/* 5044 */   .custom-container-slider {
/* 5045 */     display: none;
/* 5046 */   }
/* 5047 */   .services-section .service-box-var2 {
/* 5048 */     flex-direction: column;
/* 5049 */   }
/* 5050 */   .services-section .service-box-var2 .image-service, .services-section .service-box-var2 .detail-service {

/* main.css */

/* 5051 */     width: 100%;
/* 5052 */   }
/* 5053 */   .services-section .service-box-var2 .detail-service {
/* 5054 */     padding: 40px 15px;
/* 5055 */   }
/* 5056 */   .custom-class-services-2:nth-of-type(odd) .image-service {
/* 5057 */     order: 0;
/* 5058 */   }
/* 5059 */ }
/* 5060 */
/* 5061 */ @media only screen and (max-width: 500px) {
/* 5062 */   .testimonials-section .testimonials-text {
/* 5063 */     padding: 50px 20px 80px;
/* 5064 */   }
/* 5065 */   .wrapper-featured-contents .wrapper-location, .related-project-single .wrapper-location {
/* 5066 */     text-align: center;
/* 5067 */     padding: 20px;
/* 5068 */     position: relative;
/* 5069 */     background: #1a1a1a;
/* 5070 */   }
/* 5071 */   .wrapper-featured-contents .wrapper-location p.featured-location, .related-project-single .wrapper-location p.featured-location {
/* 5072 */     color: #bdbdbd;
/* 5073 */   }
/* 5074 */   .wrapper-featured-contents .btn-slider i, .related-project-single .btn-slider i {
/* 5075 */     display: none;
/* 5076 */   }
/* 5077 */   .right-items .image-wrapper {
/* 5078 */     position: static;
/* 5079 */     max-width: none;
/* 5080 */     max-height: none;
/* 5081 */   }
/* 5082 */   .contact-detail-list .inner-row span {
/* 5083 */     max-width: none !important;
/* 5084 */   }
/* 5085 */   .contact-detail-list .inner-row span:last-of-type {
/* 5086 */     margin-bottom: 30px;
/* 5087 */   }
/* 5088 */   .wrapper-projects-grid .wrapper-single-box {
/* 5089 */     width: 100%;
/* 5090 */   }
/* 5091 */   .page-layout-wrapper {
/* 5092 */     display: none;
/* 5093 */   }
/* 5094 */   .featured-section-var2 .wrapper-left-tabs a {
/* 5095 */     display: block;
/* 5096 */   }
/* 5097 */   .featured-section-var2 .wrapper-left-tabs .image-wrapper_tabs, .featured-section-var2 .wrapper-left-tabs .text-wrapper {
/* 5098 */     width: 100%;
/* 5099 */   }
/* 5100 */   .featured-section-var2 .wrapper-left-tabs .text-wrapper {

/* main.css */

/* 5101 */     padding-left: 0;
/* 5102 */   }
/* 5103 */   .featured-section-var2 .wrapper-left-tabs .text-wrapper h3 {
/* 5104 */     margin-top: 20px;
/* 5105 */   }
/* 5106 */   .featured-section-var2 .wrapper-left-tabs .text-wrapper p {
/* 5107 */     margin-bottom: 15px;
/* 5108 */   }
/* 5109 */   .wrapper-404 p.page-not-found {
/* 5110 */     font-size: 20px;
/* 5111 */   }
/* 5112 */   .wrapper-404 h1 {
/* 5113 */     font-size: 130px;
/* 5114 */     line-height: 130px;
/* 5115 */   }
/* 5116 */   .wrapper-404 p.message-404 {
/* 5117 */     font-size: 20px;
/* 5118 */   }
/* 5119 */ }
/* 5120 */
/* 5121 */ @media only screen and (max-width: 400px) {
/* 5122 */   .header-top-section {
/* 5123 */     font-size: .9em;
/* 5124 */   }
/* 5125 */   .section-common h2 {
/* 5126 */     font-size: 24px;
/* 5127 */   }
/* 5128 */   .comments-single ul li ul {
/* 5129 */     margin-left: 20px;
/* 5130 */   }
/* 5131 */   .custom-col-products {
/* 5132 */     width: 100%;
/* 5133 */     text-align: center;
/* 5134 */   }
/* 5135 */   .woocommerce .star-rating {
/* 5136 */     margin: auto !important;
/* 5137 */   }
/* 5138 */   .woocommerce.columns-4 .products .product, .woocommerce.columns-3 .products .product, .woocommerce.columns-2 .products .product {
/* 5139 */     width: 100%;
/* 5140 */   }
/* 5141 */   .woocommerce.columns-4 .products .product img, .woocommerce.columns-3 .products .product img, .woocommerce.columns-2 .products .product img {
/* 5142 */     margin: auto;
/* 5143 */   }
/* 5144 */   .woocommerce.columns-4 .products .product h2, .woocommerce.columns-3 .products .product h2, .woocommerce.columns-2 .products .product h2 {
/* 5145 */     text-align: center;
/* 5146 */   }
/* 5147 */ }
/* 5148 */
/* 5149 */ /*-----------------------------------------------------------------------------------*/
/* 5150 */ /* 11.0	Page Loader

/* main.css *|

/* 5151 *| /*-----------------------------------------------------------------------------------*/
/* 5152 */ .page-pre-load {
/* 5153 */   position: fixed;
/* 5154 */   left: 0;
/* 5155 */   top: 0;
/* 5156 */   width: 100%;
/* 5157 */   height: 100%;
/* 5158 */   z-index: 9999999;
/* 5159 */   background: #f8f8f8;
/* 5160 */ }
/* 5161 */
/* 5162 */ .page-pre-load .uil-flickr-css {
/* 5163 */   position: absolute;
/* 5164 */   left: 50%;
/* 5165 */   top: 50%;
/* 5166 */   margin-top: -100px;
/* 5167 */   margin-left: -100px;
/* 5168 */   transform: scale(0.28);
/* 5169 */ }
/* 5170 */
/* 5171 */ @-webkit-keyframes uil-flickr-anim1 {
/* 5172 */   0% {
/* 5173 */     left: 0;
/* 5174 */   }
/* 5175 */   50% {
/* 5176 */     left: 100px;
/* 5177 */   }
/* 5178 */   100% {
/* 5179 */     left: 0;
/* 5180 */   }
/* 5181 */ }
/* 5182 */
/* 5183 */ @-webkit-keyframes uil-flickr-anim1 {
/* 5184 */   0% {
/* 5185 */     left: 0;
/* 5186 */   }
/* 5187 */   50% {
/* 5188 */     left: 100px;
/* 5189 */   }
/* 5190 */   100% {
/* 5191 */     left: 0;
/* 5192 */   }
/* 5193 */ }
/* 5194 */
/* 5195 */ @-moz-keyframes uil-flickr-anim1 {
/* 5196 */   0% {
/* 5197 */     left: 0;
/* 5198 */   }
/* 5199 */   50% {
/* 5200 */     left: 100px;

/* main.css */

/* 5201 */   }
/* 5202 */   100% {
/* 5203 */     left: 0;
/* 5204 */   }
/* 5205 */ }
/* 5206 */
/* 5207 */ @-ms-keyframes uil-flickr-anim1 {
/* 5208 */   0% {
/* 5209 */     left: 0;
/* 5210 */   }
/* 5211 */   50% {
/* 5212 */     left: 100px;
/* 5213 */   }
/* 5214 */   100% {
/* 5215 */     left: 0;
/* 5216 */   }
/* 5217 */ }
/* 5218 */
/* 5219 */ @-moz-keyframes uil-flickr-anim1 {
/* 5220 */   0% {
/* 5221 */     left: 0;
/* 5222 */   }
/* 5223 */   50% {
/* 5224 */     left: 100px;
/* 5225 */   }
/* 5226 */   100% {
/* 5227 */     left: 0;
/* 5228 */   }
/* 5229 */ }
/* 5230 */
/* 5231 */ @-webkit-keyframes uil-flickr-anim1 {
/* 5232 */   0% {
/* 5233 */     left: 0;
/* 5234 */   }
/* 5235 */   50% {
/* 5236 */     left: 100px;
/* 5237 */   }
/* 5238 */   100% {
/* 5239 */     left: 0;
/* 5240 */   }
/* 5241 */ }
/* 5242 */
/* 5243 */ @-o-keyframes uil-flickr-anim1 {
/* 5244 */   0% {
/* 5245 */     left: 0;
/* 5246 */   }
/* 5247 */   50% {
/* 5248 */     left: 100px;
/* 5249 */   }
/* 5250 */   100% {

/* main.css */

/* 5251 */     left: 0;
/* 5252 */   }
/* 5253 */ }
/* 5254 */
/* 5255 */ @keyframes uil-flickr-anim1 {
/* 5256 */   0% {
/* 5257 */     left: 0;
/* 5258 */   }
/* 5259 */   50% {
/* 5260 */     left: 100px;
/* 5261 */   }
/* 5262 */   100% {
/* 5263 */     left: 0;
/* 5264 */   }
/* 5265 */ }
/* 5266 */
/* 5267 */ @-webkit-keyframes uil-flickr-anim2 {
/* 5268 */   0% {
/* 5269 */     left: 100px;
/* 5270 */     z-index: 1;
/* 5271 */   }
/* 5272 */   49% {
/* 5273 */     z-index: 1;
/* 5274 */   }
/* 5275 */   50% {
/* 5276 */     left: 0;
/* 5277 */     z-index: 10;
/* 5278 */   }
/* 5279 */   100% {
/* 5280 */     left: 100px;
/* 5281 */     z-index: 10;
/* 5282 */   }
/* 5283 */ }
/* 5284 */
/* 5285 */ @-webkit-keyframes uil-flickr-anim2 {
/* 5286 */   0% {
/* 5287 */     left: 100px;
/* 5288 */     z-index: 1;
/* 5289 */   }
/* 5290 */   49% {
/* 5291 */     z-index: 1;
/* 5292 */   }
/* 5293 */   50% {
/* 5294 */     left: 0;
/* 5295 */     z-index: 10;
/* 5296 */   }
/* 5297 */   100% {
/* 5298 */     left: 100px;
/* 5299 */     z-index: 10;
/* 5300 */   }

/* main.css */

/* 5301 */ }
/* 5302 */
/* 5303 */ @-moz-keyframes uil-flickr-anim2 {
/* 5304 */   0% {
/* 5305 */     left: 100px;
/* 5306 */     z-index: 1;
/* 5307 */   }
/* 5308 */   49% {
/* 5309 */     z-index: 1;
/* 5310 */   }
/* 5311 */   50% {
/* 5312 */     left: 0;
/* 5313 */     z-index: 10;
/* 5314 */   }
/* 5315 */   100% {
/* 5316 */     left: 100px;
/* 5317 */     z-index: 10;
/* 5318 */   }
/* 5319 */ }
/* 5320 */
/* 5321 */ @-ms-keyframes uil-flickr-anim2 {
/* 5322 */   0% {
/* 5323 */     left: 100px;
/* 5324 */     z-index: 1;
/* 5325 */   }
/* 5326 */   49% {
/* 5327 */     z-index: 1;
/* 5328 */   }
/* 5329 */   50% {
/* 5330 */     left: 0;
/* 5331 */     z-index: 10;
/* 5332 */   }
/* 5333 */   100% {
/* 5334 */     left: 100px;
/* 5335 */     z-index: 10;
/* 5336 */   }
/* 5337 */ }
/* 5338 */
/* 5339 */ @-moz-keyframes uil-flickr-anim2 {
/* 5340 */   0% {
/* 5341 */     left: 100px;
/* 5342 */     z-index: 1;
/* 5343 */   }
/* 5344 */   49% {
/* 5345 */     z-index: 1;
/* 5346 */   }
/* 5347 */   50% {
/* 5348 */     left: 0;
/* 5349 */     z-index: 10;
/* 5350 */   }

/* main.css */

/* 5351 */   100% {
/* 5352 */     left: 100px;
/* 5353 */     z-index: 10;
/* 5354 */   }
/* 5355 */ }
/* 5356 */
/* 5357 */ @-webkit-keyframes uil-flickr-anim2 {
/* 5358 */   0% {
/* 5359 */     left: 100px;
/* 5360 */     z-index: 1;
/* 5361 */   }
/* 5362 */   49% {
/* 5363 */     z-index: 1;
/* 5364 */   }
/* 5365 */   50% {
/* 5366 */     left: 0;
/* 5367 */     z-index: 10;
/* 5368 */   }
/* 5369 */   100% {
/* 5370 */     left: 100px;
/* 5371 */     z-index: 10;
/* 5372 */   }
/* 5373 */ }
/* 5374 */
/* 5375 */ @-o-keyframes uil-flickr-anim2 {
/* 5376 */   0% {
/* 5377 */     left: 100px;
/* 5378 */     z-index: 1;
/* 5379 */   }
/* 5380 */   49% {
/* 5381 */     z-index: 1;
/* 5382 */   }
/* 5383 */   50% {
/* 5384 */     left: 0;
/* 5385 */     z-index: 10;
/* 5386 */   }
/* 5387 */   100% {
/* 5388 */     left: 100px;
/* 5389 */     z-index: 10;
/* 5390 */   }
/* 5391 */ }
/* 5392 */
/* 5393 */ @keyframes uil-flickr-anim2 {
/* 5394 */   0% {
/* 5395 */     left: 100px;
/* 5396 */     z-index: 1;
/* 5397 */   }
/* 5398 */   49% {
/* 5399 */     z-index: 1;
/* 5400 */   }

/* main.css */

/* 5401 */   50% {
/* 5402 */     left: 0;
/* 5403 */     z-index: 10;
/* 5404 */   }
/* 5405 */   100% {
/* 5406 */     left: 100px;
/* 5407 */     z-index: 10;
/* 5408 */   }
/* 5409 */ }
/* 5410 */
/* 5411 */ .uil-flickr-css {
/* 5412 */   background: none;
/* 5413 */   position: relative;
/* 5414 */   width: 200px;
/* 5415 */   height: 200px;
/* 5416 */ }
/* 5417 */
/* 5418 */ .uil-flickr-css > div {
/* 5419 */   width: 100px;
/* 5420 */   height: 100px;
/* 5421 */   border-radius: 50px;
/* 5422 */   position: absolute;
/* 5423 */   top: 50px;
/* 5424 */ }
/* 5425 */
/* 5426 */ .uil-flickr-css > div:nth-of-type(1) {
/* 5427 */   left: 0;
/* 5428 */   background: #1a1a1a;
/* 5429 */   z-index: 5;
/* 5430 */   -ms-animation: uil-flickr-anim1 1s linear infinite;
/* 5431 */   -moz-animation: uil-flickr-anim1 1s linear infinite;
/* 5432 */   -webkit-animation: uil-flickr-anim1 1s linear infinite;
/* 5433 */   -o-animation: uil-flickr-anim1 1s linear infinite;
/* 5434 */   animation: uil-flickr-anim1 1s linear infinite;
/* 5435 */ }
/* 5436 */
/* 5437 */ .uil-flickr-css > div:nth-of-type(2) {
/* 5438 */   left: 100px;
/* 5439 */   background: #ffd800;
/* 5440 */   -ms-animation: uil-flickr-anim2 1s linear infinite;
/* 5441 */   -moz-animation: uil-flickr-anim2 1s linear infinite;
/* 5442 */   -webkit-animation: uil-flickr-anim2 1s linear infinite;
/* 5443 */   -o-animation: uil-flickr-anim2 1s linear infinite;
/* 5444 */   animation: uil-flickr-anim2 1s linear infinite;
/* 5445 */ }
/* 5446 */
/* 5447 */ /*-----------------------------------------------------------------------------------*/
/* 5448 */ /*	12.0
/* 5449 *| /*-----------------------------------------------------------------------------------*/
/* 5450 */ p.message {

/* main.css */

/* 5451 */   padding: 20px 25px;
/* 5452 */   position: relative;
/* 5453 */ }
/* 5454 */
/* 5455 */ p.message .close {
/* 5456 */   line-height: 11px;
/* 5457 */   position: absolute;
/* 5458 */   top: 10px;
/* 5459 */   right: 11px;
/* 5460 */   background: transparent;
/* 5461 */   border: none;
/* 5462 */ }
/* 5463 */
/* 5464 */ p.message .close:focus {
/* 5465 */   outline: none;
/* 5466 */ }
/* 5467 */
/* 5468 */ .bg-info {
/* 5469 */   border-left: 3px solid #afd9ee;
/* 5470 */   background-color: #d9edf7;
/* 5471 */ }
/* 5472 */
/* 5473 */ .bg-warning {
/* 5474 */   border-left: 3px solid #f7ecb5;
/* 5475 */   background-color: #fcf8e3;
/* 5476 */ }
/* 5477 */
/* 5478 */ .bg-success {
/* 5479 */   border-left: 3px solid #c1e2b3;
/* 5480 */   background-color: #dff0d8;
/* 5481 */ }
/* 5482 */
/* 5483 */ .bg-danger {
/* 5484 */   border-left: 3px solid #e4b9b9;
/* 5485 */   background-color: #f2dede;
/* 5486 */ }
/* 5487 */
/* 5488 */ .Shortcode_btn.bp-button {
/* 5489 */   font-size: 14px;
/* 5490 */   text-transform: uppercase;
/* 5491 */   white-space: nowrap;
/* 5492 */   color: #1a1a1a;
/* 5493 */   display: inline-block;
/* 5494 */ }
/* 5495 */
/* 5496 */ .Shortcode_btn.bp-button-plain {
/* 5497 */   padding: 14px 30px;
/* 5498 */ }
/* 5499 */
/* 5500 */ .Shortcode_btn.button-yellow-border {

/* main.css */

/* 5501 */   border: 2px solid #ffd800;
/* 5502 */   padding: 12px 28px;
/* 5503 */ }
/* 5504 */
/* 5505 */ .Shortcode_btn.button-dark {
/* 5506 */   background: #1a1a1a;
/* 5507 */   color: #ffffff;
/* 5508 */ }
/* 5509 */
/* 5510 */ .Shortcode_btn.button-dark:hover {
/* 5511 */   background: #ffffff;
/* 5512 */   color: #1a1a1a;
/* 5513 */ }
/* 5514 */
/* 5515 */ .Shortcode_btn.button-dark.hover-to-yellow:hover {
/* 5516 */   background: #ffd800;
/* 5517 */   color: #1a1a1a;
/* 5518 */ }
/* 5519 */
/* 5520 */ .Shortcode_btn.button-yellow {
/* 5521 */   background: #ffd800;
/* 5522 */ }
/* 5523 */
/* 5524 */ .Shortcode_btn.button-yellow:hover {
/* 5525 */   color: #ffd800;
/* 5526 */   background: #1a1a1a;
/* 5527 */ }
/* 5528 */
/* 5529 */ .Shortcode_btn.read-more {
/* 5530 */   text-transform: uppercase;
/* 5531 */   color: #1a1a1a;
/* 5532 */   font-weight: 700;
/* 5533 */ }
/* 5534 */
/* 5535 */ .Shortcode_btn.read-more:hover {
/* 5536 */   color: #1a1a1a;
/* 5537 */ }
/* 5538 */
/* 5539 */ .Shortcode_btn.bp-lined {
/* 5540 */   display: inline-block;
/* 5541 */   position: relative;
/* 5542 */ }
/* 5543 */
/* 5544 */ .Shortcode_btn.bp-lined:after {
/* 5545 */   content: "";
/* 5546 */   display: block;
/* 5547 */   width: 0;
/* 5548 */   height: 2px;
/* 5549 */   background: #ffd800;
/* 5550 */   position: absolute;

/* main.css */

/* 5551 */   bottom: -15px;
/* 5552 */   transition: .2s all ease-in-out;
/* 5553 */   pointer-events: none;
/* 5554 */ }
/* 5555 */
/* 5556 */ .Shortcode_btn.bp-lined:hover:after {
/* 5557 */   width: 100%;
/* 5558 */ }
/* 5559 */
/* 5560 */ .Shortcode_btn.bp-lined i {
/* 5561 */   margin-left: 15px;
/* 5562 */ }
/* 5563 */
/* Minify_CSS_UriRewriter::$debugText

*/

/* custom-woocommerce.css */

/* 1    */ .poppins, .bp-archive-product-single h2 a, .woocommerce-ordering, .woocommerce, .woocommerce div.product .single-right-wc .product_title, .woocommerce div.product .single-right-wc .price, .woocommerce div.product .single-right-wc .product_meta span, .related.products h2, .carousel-product-upsells-related .woocommerce-Price-amount, .woocommerce table.cart, .woocommerce table.cart td.product-name, .wpb_wrapper .add_to_cart_inline del .woocommerce-Price-amount, .wpb_wrapper .add_to_cart_inline ins span, .wpb_wrapper .add_to_cart_inline .woocommerce-Price-amount, .woocommerce .woocommerce-info, .woocommerce .woocommerce-message, .woocommerce .woocommerce-error, .woocommerce .woocommerce-thankyou-order-received, .woocommerce ul.order_details, .woocommerce .bp-woo-widget-detail .woocommerce-Price-amount, .woocommerce .widget_recent_reviews li .reviewer, .woocommerce .widget_product_tag_cloud .tagcloud a, .wrapper-buttons-add-cart .price-and-cart del .woocommerce-Price-amount, .wrapper-buttons-add-cart .price-and-cart ins span, .wrapper-buttons-add-cart .price-and-cart .woocommerce-Price-amount {
/* 2    */   font-family: 'Poppins', sans-serif;
/* 3    */ }
/* 4    */
/* 5    */ .montserrat, .woocommerce .wrapper-buttons-add-cart .add_to_cart_button, .woocommerce .wrapper-buttons-add-cart .added_to_cart, .woocommerce span.onsale, .wrapper-wc-pages .woocommerce-result-count, .woocommerce div.product .single-right-wc p, .woocommerce div.product .single-right-wc .button, .woocommerce div.product .woocommerce-tabs ul.tabs li a, .woocommerce div.product .woocommerce-tabs .panel, .woocommerce div.product .woocommerce-tabs .panel h2, .woocommerce div.product .woocommerce-tabs .panel h3, .woocommerce #respond input#submit, .woocommerce .bp-woo-widget-detail .product-title, .woocommerce .widget_recent_reviews li a, .woocommerce nav.woocommerce-pagination {
/* 6    */   font-family: 'Montserrat', sans-serif;
/* 7    */ }
/* 8    */
/* 9    */ .bp-archive-product-single {
/* 10   */   overflow: hidden;
/* 11   */   margin-top: 25px;
/* 12   */   margin-bottom: 25px;
/* 13   */ }
/* 14   */
/* 15   */ .bp-archive-product-single h2 {
/* 16   */   font-weight: 400;
/* 17   */ }
/* 18   */
/* 19   */ .bp-archive-product-single h2 a {
/* 20   */   font-size: 17px;
/* 21   */   color: #1a1a1a;
/* 22   */ }
/* 23   */
/* 24   */ .bp-archive-product-single h2 a:hover {
/* 25   */   color: #808080;
/* 26   */ }
/* 27   */
/* 28   */ .woocommerce-ordering {
/* 29   */   font-weight: 500;
/* 30   */ }
/* 31   */
/* 32   */ .woocommerce-ordering .select2-container {
/* 33   */   width: 265px !important;
/* 34   */ }
/* 35   */
/* 36   */ .woocommerce-ordering .select2-container--default .select2-selection--single {
/* 37   */   background: #1a1a1a !important;
/* 38   */ }
/* 39   */
/* 40   */ .woocommerce-ordering .select2-container--default .select2-selection--single .select2-selection__rendered {
/* 41   */   color: #ffffff !important;
/* 42   */   padding-left: 15px;
/* 43   */   line-height: 42px;
/* 44   */ }
/* 45   */
/* 46   */ .woocommerce-ordering .select2-container--default .select2-selection--single .select2-selection__arrow {
/* 47   */   background: #1a1a1a !important;
/* 48   */ }
/* 49   */
/* 50   */ .woocommerce-ordering .select2-container--default .select2-selection--single .select2-selection__arrow b {

/* custom-woocommerce.css */

/* 51   */   border-color: #ffffff transparent transparent transparent;
/* 52   */ }
/* 53   */
/* 54   */ .woocommerce .star-rating {
/* 55   */   width: 98px;
/* 56   */ }
/* 57   */
/* 58   */ .woocommerce .star-rating:before {
/* 59   */   color: #ffd800;
/* 60   */   letter-spacing: 5px;
/* 61   */ }
/* 62   */
/* 63   */ .woocommerce .star-rating span {
/* 64   */   color: #ffd800;
/* 65   */ }
/* 66   */
/* 67   */ .woocommerce .star-rating span:before {
/* 68   */   letter-spacing: 5px;
/* 69   */ }
/* 70   */
/* 71   */ .woocommerce .wrapper-buttons-add-cart {
/* 72   */   display: flex;
/* 73   */   flex-wrap: wrap;
/* 74   */   justify-content: space-around;
/* 75   */   align-items: center;
/* 76   */ }
/* 77   */
/* 78   */ .woocommerce .wrapper-buttons-add-cart .add_to_cart_button, .woocommerce .wrapper-buttons-add-cart .added_to_cart {
/* 79   */   min-width: 128px;
/* 80   */   text-align: center;
/* 81   */   line-height: 21px;
/* 82   */   border-radius: 0;
/* 83   */   border: 2px solid #ebebeb;
/* 84   */   background: #ffffff;
/* 85   */   text-transform: uppercase;
/* 86   */   font-size: 12px;
/* 87   */   font-weight: 700;
/* 88   */   padding: 8px 20px;
/* 89   */   color: #1a1a1a;
/* 90   */ }
/* 91   */
/* 92   */ .woocommerce .wrapper-buttons-add-cart .add_to_cart_button:hover, .woocommerce .wrapper-buttons-add-cart .added_to_cart:hover {
/* 93   */   background: #ffd800;
/* 94   */   border-color: #ffd800;
/* 95   */   color: #1a1a1a;
/* 96   */ }
/* 97   */
/* 98   */ .woocommerce a.add_to_cart_button.added {
/* 99   */   display: none;
/* 100  */ }

/* custom-woocommerce.css */

/* 101  */
/* 102  */ .woocommerce span.onsale {
/* 103  */   min-height: 0;
/* 104  */   min-width: 0;
/* 105  */   background: #ffd800;
/* 106  */   border-radius: 0;
/* 107  */   top: 0;
/* 108  */   right: 20px;
/* 109  */   left: auto;
/* 110  */   line-height: 23px;
/* 111  */   text-transform: uppercase;
/* 112  */   font-size: 11px;
/* 113  */   padding-right: 15px;
/* 114  */   padding-left: 15px;
/* 115  */   color: #1a1a1a;
/* 116  */ }
/* 117  */
/* 118  */ .woocommerce table.shop_table {
/* 119  */   border-radius: 0;
/* 120  */ }
/* 121  */
/* 122  */ .woocommerce .addresses {
/* 123  */   margin-bottom: 60px;
/* 124  */ }
/* 125  */
/* 126  */ .woocommerce .addresses address {
/* 127  */   font-weight: 600;
/* 128  */ }
/* 129  */
/* 130  */ .woo-separator {
/* 131  */   background: #ebebeb;
/* 132  */   height: 1px;
/* 133  */   width: 100%;
/* 134  */   margin-top: 20px;
/* 135  */   margin-bottom: 20px;
/* 136  */ }
/* 137  */
/* 138  */ .wrapper-wc-pages {
/* 139  */   padding-top: 70px;
/* 140  */   padding-bottom: 70px;
/* 141  */ }
/* 142  */
/* 143  */ .wrapper-wc-pages .woocommerce-result-count {
/* 144  */   font-weight: 500;
/* 145  */   font-size: 16px;
/* 146  */   color: #808080;
/* 147  */   margin-top: 10px;
/* 148  */ }
/* 149  */
/* 150  */ .single-left-wc {

/* custom-woocommerce.css */

/* 151  */   position: relative;
/* 152  */   overflow: hidden;
/* 153  */ }
/* 154  */
/* 155  */ .single-left-wc span.onsale {
/* 156  */   transform: rotate(-45deg);
/* 157  */   top: 16px;
/* 158  */   left: -66px;
/* 159  */   right: auto;
/* 160  */   z-index: 999;
/* 161  */   width: 200px;
/* 162  */ }
/* 163  */
/* 164  */ .single-left-wc .images {
/* 165  */   width: 100% !important;
/* 166  */ }
/* 167  */
/* 168  */ .single-left-wc .flex-control-thumbs li {
/* 169  */   padding: 5px;
/* 170  */ }
/* 171  */
/* 172  */ .single-left-wc .flex-control-thumbs img {
/* 173  */   transition: .2s all linear;
/* 174  */ }
/* 175  */
/* 176  */ .single-right-wc {
/* 177  */   position: relative;
/* 178  */   overflow: hidden;
/* 179  */   padding-bottom: 40px;
/* 180  */ }
/* 181  */
/* 182  */ .single-right-wc .woocommerce-product-rating {
/* 183  */   position: absolute;
/* 184  */   right: 0;
/* 185  */   top: 0;
/* 186  */ }
/* 187  */
/* 188  */ .single-right-wc .woocommerce-product-rating .woocommerce-review-link {
/* 189  */   display: none;
/* 190  */ }
/* 191  */
/* 192  */ .woocommerce .comment-form-rating {
/* 193  */   margin-top: 30px;
/* 194  */ }
/* 195  */
/* 196  */ .woocommerce div.product .single-right-wc .product_title {
/* 197  */   padding-right: 125px;
/* 198  */   font-size: 30px;
/* 199  */   font-weight: 700;
/* 200  */   margin-bottom: 20px;

/* custom-woocommerce.css */

/* 201  */ }
/* 202  */
/* 203  */ .woocommerce div.product .single-right-wc p {
/* 204  */   font-size: 14px;
/* 205  */   line-height: 24px;
/* 206  */ }
/* 207  */
/* 208  */ .woocommerce div.product .single-right-wc .price {
/* 209  */   font-size: 26px;
/* 210  */   line-height: 36px;
/* 211  */   color: #1a1a1a;
/* 212  */   margin-bottom: 20px;
/* 213  */ }
/* 214  */
/* 215  */ .woocommerce div.product .single-right-wc .price span {
/* 216  */   font-weight: 600;
/* 217  */ }
/* 218  */
/* 219  */ .woocommerce div.product .single-right-wc del {
/* 220  */   font-size: 18px;
/* 221  */   color: #808080;
/* 222  */ }
/* 223  */
/* 224  */ .woocommerce div.product .single-right-wc ins {
/* 225  */   text-decoration: none;
/* 226  */ }
/* 227  */
/* 228  */ .woocommerce div.product .single-right-wc table.variations {
/* 229  */   margin-bottom: 25px;
/* 230  */ }
/* 231  */
/* 232  */ .woocommerce div.product .single-right-wc table.variations label {
/* 233  */   line-height: 42px;
/* 234  */   text-transform: capitalize;
/* 235  */   font-size: 18px;
/* 236  */ }
/* 237  */
/* 238  */ .woocommerce div.product .single-right-wc table.variations .reset_variations {
/* 239  */   display: none !important;
/* 240  */ }
/* 241  */
/* 242  */ .woocommerce div.product .single-right-wc table.variations select {
/* 243  */   width: 50% !important;
/* 244  */ }
/* 245  */
/* 246  */ .woocommerce div.product .single-right-wc table.variations .select2-container {
/* 247  */   width: 200px !important;
/* 248  */ }
/* 249  */
/* 250  */ .woocommerce div.product .single-right-wc .button {

/* custom-woocommerce.css */

/* 251  */   height: 48px;
/* 252  */   border-radius: 0;
/* 253  */   font-size: 13px;
/* 254  */   font-weight: 700;
/* 255  */   text-transform: uppercase;
/* 256  */   background: #ffd800;
/* 257  */   color: #1a1a1a;
/* 258  */   padding-left: 20px;
/* 259  */   padding-right: 40px;
/* 260  */   position: relative;
/* 261  */   transition: .2s all ease-in-out;
/* 262  */   outline: none;
/* 263  */ }
/* 264  */
/* 265  */ .woocommerce div.product .single-right-wc .button:hover {
/* 266  */   background: #1a1a1a;
/* 267  */   color: #ffd800;
/* 268  */ }
/* 269  */
/* 270  */ .woocommerce div.product .single-right-wc .button:hover:after {
/* 271  */   color: #ffd800;
/* 272  */ }
/* 273  */
/* 274  */ .woocommerce div.product .single-right-wc .button:after {
/* 275  */   transition: .2s all ease-in-out;
/* 276  */   content: "\f07a";
/* 277  */   font-family: FontAwesome;
/* 278  */   color: #49452e;
/* 279  */   position: absolute;
/* 280  */   right: 12px;
/* 281  */   top: 17px;
/* 282  */ }
/* 283  */
/* 284  */ .woocommerce div.product .single-right-wc input {
/* 285  */   outline: none;
/* 286  */   height: 48px;
/* 287  */ }
/* 288  */
/* 289  */ .woocommerce div.product .single-right-wc .product_meta .posted_in, .woocommerce div.product .single-right-wc .product_meta .tagged_in {
/* 290  */   display: block;
/* 291  */   margin: 5px 0;
/* 292  */ }
/* 293  */
/* 294  */ .woocommerce div.product .single-right-wc .product_meta span {
/* 295  */   font-size: 14px;
/* 296  */   color: #1a1a1a;
/* 297  */ }
/* 298  */
/* 299  */ .woocommerce div.product .single-right-wc .product_meta a {
/* 300  */   color: #808080;

/* custom-woocommerce.css */

/* 301  */ }
/* 302  */
/* 303  */ .woocommerce div.product .single-right-wc .product_meta a:hover {
/* 304  */   color: #1a1a1a;
/* 305  */ }
/* 306  */
/* 307  */ .woocommerce div.product .woocommerce-tabs ul.tabs {
/* 308  */   padding-left: 0;
/* 309  */   margin-bottom: 0;
/* 310  */ }
/* 311  */
/* 312  */ .woocommerce div.product .woocommerce-tabs ul.tabs:before {
/* 313  */   border: none;
/* 314  */ }
/* 315  */
/* 316  */ .woocommerce div.product .woocommerce-tabs ul.tabs:after {
/* 317  */   border: none;
/* 318  */ }
/* 319  */
/* 320  */ .woocommerce div.product .woocommerce-tabs ul.tabs li {
/* 321  */   border: none;
/* 322  */   background: #808080;
/* 323  */   border-radius: 0;
/* 324  */   padding: 0;
/* 325  */   transition: .2s all ease-in-out;
/* 326  */ }
/* 327  */
/* 328  */ .woocommerce div.product .woocommerce-tabs ul.tabs li:before {
/* 329  */   display: none;
/* 330  */ }
/* 331  */
/* 332  */ .woocommerce div.product .woocommerce-tabs ul.tabs li:after {
/* 333  */   display: none;
/* 334  */ }
/* 335  */
/* 336  */ .woocommerce div.product .woocommerce-tabs ul.tabs li:hover {
/* 337  */   background: #f8f8f8;
/* 338  */ }
/* 339  */
/* 340  */ .woocommerce div.product .woocommerce-tabs ul.tabs li a {
/* 341  */   font-size: 16px;
/* 342  */   font-weight: 700;
/* 343  */   height: 53px;
/* 344  */   text-align: center;
/* 345  */   color: #ffffff;
/* 346  */   line-height: 53px;
/* 347  */   vertical-align: middle;
/* 348  */   padding: 0 25px;
/* 349  */ }
/* 350  */

/* custom-woocommerce.css */

/* 351  */ .woocommerce div.product .woocommerce-tabs ul.tabs li.active {
/* 352  */   background: #f8f8f8;
/* 353  */ }
/* 354  */
/* 355  */ .woocommerce div.product .woocommerce-tabs .panel {
/* 356  */   font-size: 15px;
/* 357  */   padding: 20px;
/* 358  */   background: #f8f8f8;
/* 359  */   overflow: hidden;
/* 360  */ }
/* 361  */
/* 362  */ .woocommerce div.product .woocommerce-tabs .panel h2, .woocommerce div.product .woocommerce-tabs .panel h3 {
/* 363  */   margin-top: 20px !important;
/* 364  */   font-size: 24px;
/* 365  */   color: #1a1a1a;
/* 366  */   font-weight: 600;
/* 367  */   margin-bottom: 25px !important;
/* 368  */ }
/* 369  */
/* 370  */ .woocommerce div.product .woocommerce-tabs #comments {
/* 371  */   width: 50%;
/* 372  */   float: left;
/* 373  */   padding-right: 15px;
/* 374  */ }
/* 375  */
/* 376  */ .woocommerce div.product .woocommerce-tabs #comments ol {
/* 377  */   padding-left: 0;
/* 378  */ }
/* 379  */
/* 380  */ .woocommerce div.product .woocommerce-tabs #review_form_wrapper {
/* 381  */   padding-left: 15px;
/* 382  */   width: 50%;
/* 383  */   float: right;
/* 384  */ }
/* 385  */
/* 386  */ .share-social-icons {
/* 387  */   margin-top: 25px;
/* 388  */ }
/* 389  */
/* 390  */ .share-social-icons a {
/* 391  */   display: inline-block;
/* 392  */   height: 46px;
/* 393  */   width: 46px;
/* 394  */   border: 1px solid #808080;
/* 395  */   color: #808080;
/* 396  */   line-height: 44px;
/* 397  */   border-radius: 46px;
/* 398  */   text-align: center;
/* 399  */   vertical-align: middle;
/* 400  */   margin-right: 5px;

/* custom-woocommerce.css */

/* 401  */ }
/* 402  */
/* 403  */ .share-social-icons .facebook:hover {
/* 404  */   color: #ffffff;
/* 405  */   border-color: #3b5998;
/* 406  */   background: #3b5998;
/* 407  */ }
/* 408  */
/* 409  */ .share-social-icons .twitter:hover {
/* 410  */   color: #ffffff;
/* 411  */   border-color: #0084b4;
/* 412  */   background: #0084b4;
/* 413  */ }
/* 414  */
/* 415  */ .share-social-icons .pinterest:hover {
/* 416  */   color: #ffffff;
/* 417  */   border-color: #c8232c;
/* 418  */   background: #c8232c;
/* 419  */ }
/* 420  */
/* 421  */ .share-social-icons .google-plus:hover {
/* 422  */   color: #ffffff;
/* 423  */   border-color: #d34836;
/* 424  */   background: #d34836;
/* 425  */ }
/* 426  */
/* 427  */ .comment-form-rating p.stars a {
/* 428  */   color: #ffd800;
/* 429  */   margin-right: 5px;
/* 430  */ }
/* 431  */
/* 432  */ .comment-form-rating .select2-container {
/* 433  */   display: none;
/* 434  */ }
/* 435  */
/* 436  */ .woocommerce #respond .comment-form-author label, .woocommerce #respond .comment-form-email label {
/* 437  */   width: 70px;
/* 438  */   display: inline-block;
/* 439  */ }
/* 440  */
/* 441  */ .woocommerce #respond input[type='text'], .woocommerce #respond input[type='email'] {
/* 442  */   width: 100%;
/* 443  */   max-width: 300px;
/* 444  */   height: 48px;
/* 445  */   padding-left: 20px;
/* 446  */   padding-right: 20px;
/* 447  */   border: 1px solid #e4e1e3;
/* 448  */ }
/* 449  */
/* 450  */ .woocommerce #respond input[type='text']:focus, .woocommerce #respond input[type='email']:focus {

/* custom-woocommerce.css */

/* 451  */   border-color: #1a1a1a;
/* 452  */ }
/* 453  */
/* 454  */ .woocommerce #respond input#submit {
/* 455  */   background: #ffd800;
/* 456  */   border-radius: 0;
/* 457  */   color: #1a1a1a;
/* 458  */   font-size: 13px;
/* 459  */   height: 48px;
/* 460  */   text-transform: uppercase;
/* 461  */   transition: .2s all ease-in-out;
/* 462  */   padding-right: 20px;
/* 463  */   padding-left: 20px;
/* 464  */ }
/* 465  */
/* 466  */ .woocommerce #respond input#submit:hover {
/* 467  */   color: #ffffff;
/* 468  */   background: #1a1a1a;
/* 469  */ }
/* 470  */
/* 471  */ .related.products h2 {
/* 472  */   font-size: 18px;
/* 473  */   font-weight: 700;
/* 474  */   color: #1a1a1a;
/* 475  */ }
/* 476  */
/* 477  */ .carousel-product-upsells-related {
/* 478  */   margin-bottom: 60px;
/* 479  */ }
/* 480  */
/* 481  */ .carousel-product-upsells-related .title a {
/* 482  */   font-size: 17px;
/* 483  */   font-weight: 400;
/* 484  */ }
/* 485  */
/* 486  */ .carousel-product-upsells-related h2 {
/* 487  */   font-size: 17px;
/* 488  */   font-weight: 400;
/* 489  */   margin-bottom: 30px;
/* 490  */ }
/* 491  */
/* 492  */ .carousel-product-upsells-related h2 a {
/* 493  */   position: relative;
/* 494  */   display: inline-block;
/* 495  */   color: #1a1a1a;
/* 496  */ }
/* 497  */
/* 498  */ .carousel-product-upsells-related h2 a:before {
/* 499  */   position: absolute;
/* 500  */   bottom: -10px;

/* custom-woocommerce.css */

/* 501  */   content: "";
/* 502  */   display: inline-block;
/* 503  */   width: 30px;
/* 504  */   height: 2px;
/* 505  */   transition: .2s all;
/* 506  */   background: #ffd800;
/* 507  */ }
/* 508  */
/* 509  */ .carousel-product-upsells-related h2 a:hover:before {
/* 510  */   width: 100%;
/* 511  */ }
/* 512  */
/* 513  */ .carousel-product-upsells-related .woocommerce-Price-amount {
/* 514  */   vertical-align: middle;
/* 515  */   line-height: 34px;
/* 516  */   font-weight: 600;
/* 517  */   font-size: 24px;
/* 518  */ }
/* 519  */
/* 520  */ .wrapper-thumb-product, .product-single-slide-image, .woocommerce-LoopProduct-link {
/* 521  */   display: inline-block;
/* 522  */   overflow: hidden;
/* 523  */   position: relative;
/* 524  */   width: 100%;
/* 525  */ }
/* 526  */
/* 527  */ .wrapper-thumb-product:after, .product-single-slide-image:after, .woocommerce-LoopProduct-link:after {
/* 528  */   position: absolute;
/* 529  */   top: 0;
/* 530  */   left: 0;
/* 531  */   content: "";
/* 532  */   display: block;
/* 533  */   width: 100%;
/* 534  */   height: 100%;
/* 535  */   opacity: 0;
/* 536  */   background: #1a1a1a;
/* 537  */   transition: .2s all ease-in-out;
/* 538  */ }
/* 539  */
/* 540  */ .wrapper-thumb-product:hover:after, .product-single-slide-image:hover:after, .woocommerce-LoopProduct-link:hover:after {
/* 541  */   opacity: .1;
/* 542  */ }
/* 543  */
/* 544  */ .related-product-heading {
/* 545  */   margin-bottom: 30px;
/* 546  */   font-size: 18px;
/* 547  */   font-weight: 700;
/* 548  */   color: #1a1a1a;
/* 549  */ }
/* 550  */

/* custom-woocommerce.css */

/* 551  */ .woocommerce .widget_price_filter .ui-slider .ui-slider-range, .woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
/* 552  */   background: #ffd800;
/* 553  */ }
/* 554  */
/* 555  */ .woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
/* 556  */   width: 15px;
/* 557  */   height: 15px;
/* 558  */ }
/* 559  */
/* 560  */ .woocommerce .widget_price_filter .ui-slider .ui-slider-handle:after {
/* 561  */   position: absolute;
/* 562  */   content: "";
/* 563  */   width: 5px;
/* 564  */   height: 5px;
/* 565  */   display: inline-block;
/* 566  */   border-radius: 5px;
/* 567  */   background: #ffffff;
/* 568  */   top: 0;
/* 569  */   right: 0;
/* 570  */   bottom: 0;
/* 571  */   left: 0;
/* 572  */   margin: auto;
/* 573  */ }
/* 574  */
/* 575  */ .woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
/* 576  */   background-color: #f3f3f3;
/* 577  */ }
/* 578  */
/* 579  */ .woocommerce .widget_price_filter button {
/* 580  */   background: #1a1a1a;
/* 581  */   color: #ffd800;
/* 582  */   border-radius: 0;
/* 583  */   transition: .2s all;
/* 584  */   margin-top: 2px;
/* 585  */ }
/* 586  */
/* 587  */ .woocommerce .widget_price_filter button:hover {
/* 588  */   color: #1a1a1a;
/* 589  */   background: #ffd800;
/* 590  */ }
/* 591  */
/* 592  */ .woocommerce .widget_price_filter .price_label {
/* 593  */   font-size: 16px;
/* 594  */   color: #808080;
/* 595  */   font-weight: 500;
/* 596  */ }
/* 597  */
/* 598  */ .woocommerce table.cart {
/* 599  */   margin-top: 22px;
/* 600  */   border: none;

/* custom-woocommerce.css */

/* 601  */ }
/* 602  */
/* 603  */ .woocommerce table.cart .product-thumbnail {
/* 604  */   width: 84px;
/* 605  */ }
/* 606  */
/* 607  */ .woocommerce table.cart th {
/* 608  */   background: #ffd800;
/* 609  */   padding-top: 26px;
/* 610  */   padding-bottom: 24px;
/* 611  */   text-transform: uppercase;
/* 612  */   font-weight: 600;
/* 613  */   color: #1a1a1a;
/* 614  */ }
/* 615  */
/* 616  */ .woocommerce table.cart td {
/* 617  */   border-color: #e8e8e8;
/* 618  */   padding-top: 20px;
/* 619  */   padding-bottom: 20px;
/* 620  */ }
/* 621  */
/* 622  */ .woocommerce table.cart dt, .woocommerce table.cart dd {
/* 623  */   line-height: 24px;
/* 624  */ }
/* 625  */
/* 626  */ .woocommerce table.cart td.product-name {
/* 627  */   font-size: 14px;
/* 628  */   color: #1a1a1a;
/* 629  */   text-transform: uppercase;
/* 630  */   vertical-align: middle;
/* 631  */ }
/* 632  */
/* 633  */ .woocommerce table.cart td.product-name a {
/* 634  */   color: #1a1a1a;
/* 635  */ }
/* 636  */
/* 637  */ .woocommerce table.cart td.product-name dl {
/* 638  */   margin: 0;
/* 639  */ }
/* 640  */
/* 641  */ .woocommerce table.cart td.product-name dl dd {
/* 642  */   margin: 0;
/* 643  */ }
/* 644  */
/* 645  */ .woocommerce table.cart td.product-price, .woocommerce table.cart td.product-subtotal {
/* 646  */   color: #808080;
/* 647  */ }
/* 648  */
/* 649  */ .woocommerce table.cart img {
/* 650  */   width: 100% !important;

/* custom-woocommerce.css */

/* 651  */   max-width: 60px !important;
/* 652  */ }
/* 653  */
/* 654  */ .woocommerce table.cart input[type="submit"] {
/* 655  */   border: none;
/* 656  */   display: inline-block;
/* 657  */   height: 50px;
/* 658  */   line-height: 50px;
/* 659  */   background: #1a1a1a;
/* 660  */   text-transform: uppercase;
/* 661  */   padding: 0 20px;
/* 662  */   border-radius: 0;
/* 663  */   color: #ffffff;
/* 664  */   font-size: 14px;
/* 665  */   float: right;
/* 666  */   transition: .2s all ease-in-out;
/* 667  */   outline: none;
/* 668  */ }
/* 669  */
/* 670  */ .woocommerce table.cart input[type="submit"]:hover {
/* 671  */   background: #ffd800;
/* 672  */   color: #1a1a1a;
/* 673  */ }
/* 674  */
/* 675  */ .woocommerce table.cart input[type="submit"]:disabled[disabled] {
/* 676  */   border: none;
/* 677  */   display: inline-block;
/* 678  */   height: 50px;
/* 679  */   line-height: 50px;
/* 680  */   background: #1a1a1a;
/* 681  */   text-transform: uppercase;
/* 682  */   padding: 0 20px;
/* 683  */   border-radius: 0;
/* 684  */   color: #ffffff;
/* 685  */   font-size: 14px;
/* 686  */   float: right;
/* 687  */   transition: .2s all ease-in-out;
/* 688  */   outline: none;
/* 689  */ }
/* 690  */
/* 691  */ .woocommerce .coupon {
/* 692  */   margin-bottom: 10px;
/* 693  */   display: flex;
/* 694  */   width: 100%;
/* 695  */ }
/* 696  */
/* 697  */ .woocommerce .coupon input[type="text"] {
/* 698  */   height: 50px;
/* 699  */   width: 100% !important;
/* 700  */   padding-left: 15px !important;

/* custom-woocommerce.css */

/* 701  */ }
/* 702  */
/* 703  */ .woocommerce .quantity input {
/* 704  */   height: 35px;
/* 705  */   border: 1px solid #dadada;
/* 706  */   outline: none;
/* 707  */ }
/* 708  */
/* 709  */ .woocommerce .product-remove a {
/* 710  */   display: inline-block;
/* 711  */ }
/* 712  */
/* 713  */ .woocommerce .product-remove a:hover {
/* 714  */   background: transparent;
/* 715  */ }
/* 716  */
/* 717  */ .woocommerce .product-remove a i {
/* 718  */   font-size: 12px;
/* 719  */   border: 2px solid #808080;
/* 720  */   color: #808080 !important;
/* 721  */   border-radius: 25px;
/* 722  */   width: 16px;
/* 723  */   line-height: 12px;
/* 724  */   height: 16px;
/* 725  */   vertical-align: middle;
/* 726  */   text-align: center;
/* 727  */   transition: .2s all ease-in-out;
/* 728  */ }
/* 729  */
/* 730  */ .woocommerce .product-remove a i:hover {
/* 731  */   color: #f42b2b !important;
/* 732  */   border-color: #f42b2b;
/* 733  */   background: transparent;
/* 734  */ }
/* 735  */
/* 736  */ .woocommerce .product-remove a i:before {
/* 737  */   margin-left: 1px;
/* 738  */ }
/* 739  */
/* 740  */ .woocommerce .track_order input[type="text"] {
/* 741  */   height: 40px;
/* 742  */   padding-left: 15px;
/* 743  */   padding-right: 15px;
/* 744  */ }
/* 745  */
/* 746  */ .woocommerce .track_order input[type="submit"] {
/* 747  */   border-radius: 0;
/* 748  */ }
/* 749  */
/* 750  */ .woocommerce.columns-4 .products, .woocommerce.columns-3 .products, .woocommerce.columns-2 .products {

/* custom-woocommerce.css */

/* 751  */   display: flex;
/* 752  */   flex-wrap: wrap;
/* 753  */ }
/* 754  */
/* 755  */ .woocommerce.columns-4 .products .product, .woocommerce.columns-3 .products .product, .woocommerce.columns-2 .products .product {
/* 756  */   padding-left: 15px;
/* 757  */   padding-right: 15px;
/* 758  */   margin-bottom: 25px;
/* 759  */   margin-top: 25px;
/* 760  */ }
/* 761  */
/* 762  */ .woocommerce.columns-4 .products h2 a, .woocommerce.columns-3 .products h2 a, .woocommerce.columns-2 .products h2 a {
/* 763  */   font-weight: 400;
/* 764  */   font-size: 17px;
/* 765  */   color: #1a1a1a;
/* 766  */ }
/* 767  */
/* 768  */ .woocommerce.columns-4 .products h2 a:hover, .woocommerce.columns-3 .products h2 a:hover, .woocommerce.columns-2 .products h2 a:hover {
/* 769  */   color: #808080;
/* 770  */ }
/* 771  */
/* 772  */ .woocommerce.columns-4 .product {
/* 773  */   width: 25%;
/* 774  */ }
/* 775  */
/* 776  */ .woocommerce.columns-3 .product {
/* 777  */   width: 33.33%;
/* 778  */ }
/* 779  */
/* 780  */ .woocommerce.columns-2 .product {
/* 781  */   text-align: center;
/* 782  */   width: 50%;
/* 783  */ }
/* 784  */
/* 785  */ .woocommerce.columns-2 .product .star-rating, .woocommerce.columns-2 .product img {
/* 786  */   margin: auto;
/* 787  */ }
/* 788  */
/* 789  */ .wpb_wrapper .woocommerce .products {
/* 790  */   display: flex;
/* 791  */   flex-wrap: wrap;
/* 792  */ }
/* 793  */
/* 794  */ .wpb_wrapper .woocommerce .products .product {
/* 795  */   padding-left: 15px;
/* 796  */   padding-right: 15px;
/* 797  */   margin-bottom: 25px;
/* 798  */   margin-top: 25px;
/* 799  */ }
/* 800  */

/* custom-woocommerce.css */

/* 801  */ .wpb_wrapper .woocommerce .products h2 a {
/* 802  */   font-weight: 400;
/* 803  */   font-size: 17px;
/* 804  */   color: #1a1a1a;
/* 805  */ }
/* 806  */
/* 807  */ .wpb_wrapper .woocommerce .products h2 a:hover {
/* 808  */   color: #808080;
/* 809  */ }
/* 810  */
/* 811  */ .wpb_wrapper .woocommerce .products .product-category {
/* 812  */   list-style: none;
/* 813  */ }
/* 814  */
/* 815  */ .wpb_wrapper .woocommerce .products .product-category h2 {
/* 816  */   font-size: 18px;
/* 817  */   line-height: 26px;
/* 818  */ }
/* 819  */
/* 820  */ .wpb_wrapper .add_to_cart_inline {
/* 821  */   float: left;
/* 822  */   margin-top: 5px;
/* 823  */   margin-bottom: 5px;
/* 824  */   margin-right: 5px;
/* 825  */ }
/* 826  */
/* 827  */ .wpb_wrapper .add_to_cart_inline .button {
/* 828  */   min-width: 128px;
/* 829  */   text-align: center;
/* 830  */   line-height: 21px;
/* 831  */   text-transform: uppercase;
/* 832  */   font-size: 12px;
/* 833  */   font-weight: 700;
/* 834  */   color: #1a1a1a;
/* 835  */   border-radius: 0px;
/* 836  */   border-width: 2px;
/* 837  */   border-style: solid;
/* 838  */   border-color: #ebebeb;
/* 839  */   border-image: initial;
/* 840  */   background: white;
/* 841  */   padding: 8px 20px;
/* 842  */ }
/* 843  */
/* 844  */ .wpb_wrapper .add_to_cart_inline .button:hover {
/* 845  */   background: #ffd800;
/* 846  */   border-color: #ffd800;
/* 847  */   color: #1a1a1a;
/* 848  */ }
/* 849  */
/* 850  */ .wpb_wrapper .add_to_cart_inline del {

/* custom-woocommerce.css */

/* 851  */   margin-right: 5px;
/* 852  */ }
/* 853  */
/* 854  */ .wpb_wrapper .add_to_cart_inline del .woocommerce-Price-amount {
/* 855  */   vertical-align: middle;
/* 856  */   font-size: 16px;
/* 857  */   font-weight: 500;
/* 858  */   line-height: 34px;
/* 859  */   color: #383838;
/* 860  */ }
/* 861  */
/* 862  */ .wpb_wrapper .add_to_cart_inline ins {
/* 863  */   text-decoration: none;
/* 864  */ }
/* 865  */
/* 866  */ .wpb_wrapper .add_to_cart_inline ins span {
/* 867  */   vertical-align: middle;
/* 868  */   line-height: 34px;
/* 869  */   font-weight: 600;
/* 870  */   font-size: 24px;
/* 871  */   color: #1a1a1a;
/* 872  */ }
/* 873  */
/* 874  */ .wpb_wrapper .add_to_cart_inline .woocommerce-Price-amount {
/* 875  */   vertical-align: middle;
/* 876  */   line-height: 34px;
/* 877  */   font-weight: 600;
/* 878  */   font-size: 24px;
/* 879  */ }
/* 880  */
/* 881  */ .inc-button, .dec-button {
/* 882  */   display: inline-block;
/* 883  */   width: 35px;
/* 884  */   height: 35px;
/* 885  */   border: 1px solid #dadada;
/* 886  */   line-height: 33px;
/* 887  */   text-align: center;
/* 888  */   vertical-align: middle;
/* 889  */   cursor: pointer;
/* 890  */ }
/* 891  */
/* 892  */ .inc-button {
/* 893  */   border-right: 0;
/* 894  */ }
/* 895  */
/* 896  */ .dec-button {
/* 897  */   border-left: 0;
/* 898  */ }
/* 899  */
/* 900  */ .woocommerce form textarea#order_comments {

/* custom-woocommerce.css */

/* 901  */   border: 1px solid #cccccc;
/* 902  */ }
/* 903  */
/* 904  */ .woocommerce .bp-shipping-calculator .form-row input.input-text {
/* 905  */   height: 40px;
/* 906  */   border: 1px solid #dadada;
/* 907  */   padding-left: 15px;
/* 908  */   padding-right: 15px;
/* 909  */ }
/* 910  */
/* 911  */ .woocommerce .bp-shipping-calculator .form-row input.input-text:focus {
/* 912  */   border-color: #1a1a1a;
/* 913  */ }
/* 914  */
/* 915  */ .woocommerce .bp-shipping-calculator .button {
/* 916  */   height: 50px;
/* 917  */   line-height: 50px;
/* 918  */   background: #1a1a1a;
/* 919  */   text-transform: uppercase;
/* 920  */   padding: 0 20px;
/* 921  */   border-radius: 0;
/* 922  */   color: #ffffff;
/* 923  */   font-size: 14px;
/* 924  */   float: right;
/* 925  */   transition: .2s all ease-in-out;
/* 926  */ }
/* 927  */
/* 928  */ .woocommerce .bp-shipping-calculator .button:hover {
/* 929  */   background: #ffd800;
/* 930  */   color: #1a1a1a;
/* 931  */ }
/* 932  */
/* 933  */ .woocommerce .bp-shipping-calculator .select2-container {
/* 934  */   width: 100% !important;
/* 935  */ }
/* 936  */
/* 937  */ .woocommerce .bp-shipping-calculator .select2-container .select2-selection--single .select2-selection__rendered {
/* 938  */   padding-left: 15px;
/* 939  */ }
/* 940  */
/* 941  */ .woocommerce .bp-shipping-calculator .select2-container .select2-selection--single {
/* 942  */   background: #ffffff;
/* 943  */   border: 1px solid #dadada;
/* 944  */ }
/* 945  */
/* 946  */ .woocommerce .bp-shipping-calculator .select2-container--default .select2-selection--single .select2-selection__arrow {
/* 947  */   background: transparent;
/* 948  */ }
/* 949  */
/* 950  */ .woocommerce .woocommerce-checkout .form-row .select2-container {

/* custom-woocommerce.css */

/* 951  */   width: 100% !important;
/* 952  */ }
/* 953  */
/* 954  */ .woocommerce .woocommerce-checkout #payment {
/* 955  */   border-radius: 0;
/* 956  */   background: #f8f8f8;
/* 957  */   margin-bottom: 70px;
/* 958  */ }
/* 959  */
/* 960  */ .woocommerce .woocommerce-checkout #payment label {
/* 961  */   font-weight: 700;
/* 962  */ }
/* 963  */
/* 964  */ .woocommerce .woocommerce-checkout #payment input[type="radio"] {
/* 965  */   height: auto !important;
/* 966  */ }
/* 967  */
/* 968  */ .woocommerce .woocommerce-checkout #payment .payment_box {
/* 969  */   background: #f1f1f1;
/* 970  */ }
/* 971  */
/* 972  */ .woocommerce .woocommerce-checkout #payment .payment_box:before {
/* 973  */   border-bottom-color: #f1f1f1;
/* 974  */ }
/* 975  */
/* 976  */ .woocommerce .collaterals-single {
/* 977  */   background: #ffffff;
/* 978  */   overflow: hidden;
/* 979  */   padding: 12px;
/* 980  */   margin-bottom: 40px;
/* 981  */ }
/* 982  */
/* 983  */ .woocommerce .collaterals-single h2 {
/* 984  */   font-size: 14px;
/* 985  */   position: relative;
/* 986  */   margin-left: -25px;
/* 987  */   margin-right: -25px;
/* 988  */   padding-left: 25px;
/* 989  */   padding-right: 25px;
/* 990  */   padding-bottom: 25px;
/* 991  */   margin-bottom: 25px;
/* 992  */ }
/* 993  */
/* 994  */ .woocommerce .collaterals-single h2:after {
/* 995  */   content: "";
/* 996  */   display: block;
/* 997  */   width: 100%;
/* 998  */   height: 1px;
/* 999  */   position: absolute;
/* 1000 */   background: #e8e8e8;

/* custom-woocommerce.css */

/* 1001 */   left: 0;
/* 1002 */   bottom: 0;
/* 1003 */ }
/* 1004 */
/* 1005 */ .woocommerce .collaterals-single .cart_totals {
/* 1006 */   float: none;
/* 1007 */   width: 100%;
/* 1008 */ }
/* 1009 */
/* 1010 */ .woocommerce .collaterals-single .cart_totals table {
/* 1011 */   border: none;
/* 1012 */   text-transform: uppercase;
/* 1013 */ }
/* 1014 */
/* 1015 */ .woocommerce .collaterals-single .cart_totals td, .woocommerce .collaterals-single .cart_totals th {
/* 1016 */   border: 0 !important;
/* 1017 */ }
/* 1018 */
/* 1019 */ .woocommerce .collaterals-single .cart_totals td {
/* 1020 */   text-align: right;
/* 1021 */ }
/* 1022 */
/* 1023 */ .woocommerce .collaterals-single .cart_totals .wc-proceed-to-checkout a {
/* 1024 */   border: none;
/* 1025 */   display: inline-block;
/* 1026 */   height: 50px;
/* 1027 */   line-height: 50px;
/* 1028 */   background: #1a1a1a;
/* 1029 */   text-transform: uppercase;
/* 1030 */   padding: 0 20px;
/* 1031 */   border-radius: 0;
/* 1032 */   color: #ffffff;
/* 1033 */   font-size: 14px;
/* 1034 */   float: right;
/* 1035 */   transition: .2s all ease-in-out;
/* 1036 */ }
/* 1037 */
/* 1038 */ .woocommerce .collaterals-single .cart_totals .wc-proceed-to-checkout a:hover {
/* 1039 */   background: #ffd800;
/* 1040 */   color: #1a1a1a;
/* 1041 */ }
/* 1042 */
/* 1043 */ .woocommerce .woocommerce-checkout input, .woocommerce .woocommerce-checkout select {
/* 1044 */   height: 40px;
/* 1045 */   padding-left: 15px;
/* 1046 */   padding-right: 15px;
/* 1047 */ }
/* 1048 */
/* 1049 */ .woocommerce .woocommerce-checkout textarea {
/* 1050 */   height: 200px !important;

/* custom-woocommerce.css */

/* 1051 */   padding: 15px;
/* 1052 */ }
/* 1053 */
/* 1054 */ .woocommerce .woocommerce-checkout input[type="submit"] {
/* 1055 */   border: none;
/* 1056 */   display: inline-block;
/* 1057 */   height: 50px;
/* 1058 */   line-height: 50px;
/* 1059 */   background: #1a1a1a;
/* 1060 */   text-transform: uppercase;
/* 1061 */   padding: 0 20px;
/* 1062 */   border-radius: 0;
/* 1063 */   color: #ffffff;
/* 1064 */   font-size: 14px;
/* 1065 */   float: right;
/* 1066 */   transition: .2s all ease-in-out;
/* 1067 */   outline: none;
/* 1068 */ }
/* 1069 */
/* 1070 */ .woocommerce .woocommerce-checkout input[type="submit"]:hover {
/* 1071 */   background: #ffd800;
/* 1072 */   color: #1a1a1a;
/* 1073 */ }
/* 1074 */
/* 1075 */ .woocommerce .woocommerce-checkout .select2-container .select2-choice > .select2-chosen {
/* 1076 */   line-height: 38px;
/* 1077 */   height: 40px;
/* 1078 */ }
/* 1079 */
/* 1080 */ .woocommerce .woocommerce-checkout .woocommerce-validated input.input-text {
/* 1081 */   border: 1px solid #ffd800 !important;
/* 1082 */ }
/* 1083 */
/* 1084 */ .woocommerce .woocommerce-checkout .woocommerce-invalid input.input-text {
/* 1085 */   border: 1px solid #a00 !important;
/* 1086 */ }
/* 1087 */
/* 1088 */ .woocommerce .woocommerce-checkout .woocommerce-shipping-fields input {
/* 1089 */   vertical-align: middle;
/* 1090 */   outline: none;
/* 1091 */ }
/* 1092 */
/* 1093 */ .woocommerce .woocommerce-checkout-review-order-table .product-total, .woocommerce table.shop_table .product-total {
/* 1094 */   text-align: right;
/* 1095 */ }
/* 1096 */
/* 1097 */ .woocommerce .woocommerce-checkout-review-order-table td:last-of-type, .woocommerce table.shop_table td:last-of-type {
/* 1098 */   text-align: right;
/* 1099 */ }
/* 1100 */

/* custom-woocommerce.css */

/* 1101 */ .woocommerce .woocommerce-checkout-review-order-table td a, .woocommerce table.shop_table td a {
/* 1102 */   color: #808080;
/* 1103 */ }
/* 1104 */
/* 1105 */ .woocommerce .woocommerce-checkout-review-order-table td a:hover, .woocommerce table.shop_table td a:hover {
/* 1106 */   color: #1a1a1a;
/* 1107 */ }
/* 1108 */
/* 1109 */ .woocommerce .woocommerce-info {
/* 1110 */   margin: 1em 0 2em !important;
/* 1111 */   border-top-color: #ffd800;
/* 1112 */   color: #808080;
/* 1113 */ }
/* 1114 */
/* 1115 */ .woocommerce .woocommerce-info:before {
/* 1116 */   font-family: FontAwesome;
/* 1117 */   content: "\f05a";
/* 1118 */   color: #1a1a1a;
/* 1119 */ }
/* 1120 */
/* 1121 */ .woocommerce .woocommerce-info a {
/* 1122 */   color: #1a1a1a;
/* 1123 */   font-weight: 600;
/* 1124 */ }
/* 1125 */
/* 1126 */ .woocommerce .woocommerce-info a:hover {
/* 1127 */   color: #808080;
/* 1128 */ }
/* 1129 */
/* 1130 */ .woocommerce .woocommerce-message, .woocommerce .woocommerce-info, .woocommerce .woocommerce-error {
/* 1131 */   background: #ffffff;
/* 1132 */   border: 2px solid #ffd800;
/* 1133 */   margin: 2em 0 2em !important;
/* 1134 */   line-height: 34px;
/* 1135 */   color: #1a1a1a;
/* 1136 */ }
/* 1137 */
/* 1138 */ .woocommerce .woocommerce-message a, .woocommerce .woocommerce-info a, .woocommerce .woocommerce-error a {
/* 1139 */   display: inline-block;
/* 1140 */   float: right;
/* 1141 */   line-height: 34px;
/* 1142 */   border-radius: 0;
/* 1143 */   font-size: 12px;
/* 1144 */   font-weight: 700;
/* 1145 */   text-transform: uppercase;
/* 1146 */   background: #1a1a1a;
/* 1147 */   color: #ffd800;
/* 1148 */   padding: 0 20px;
/* 1149 */   position: relative;
/* 1150 */   transition: .2s all ease-in-out;

/* custom-woocommerce.css */

/* 1151 */   outline: none;
/* 1152 */ }
/* 1153 */
/* 1154 */ .woocommerce .woocommerce-message a:hover, .woocommerce .woocommerce-info a:hover, .woocommerce .woocommerce-error a:hover {
/* 1155 */   color: #1a1a1a;
/* 1156 */   background: #ffd800;
/* 1157 */ }
/* 1158 */
/* 1159 */ .woocommerce .cart-empty {
/* 1160 */   margin-top: 20px;
/* 1161 */ }
/* 1162 */
/* 1163 */ .woocommerce .return-to-shop a {
/* 1164 */   height: 48px;
/* 1165 */   line-height: 48px;
/* 1166 */   border-radius: 0;
/* 1167 */   font-size: 13px;
/* 1168 */   font-weight: 700;
/* 1169 */   text-transform: uppercase;
/* 1170 */   background: #1a1a1a;
/* 1171 */   color: #ffd800;
/* 1172 */   padding: 0 20px;
/* 1173 */   position: relative;
/* 1174 */   transition: .2s all ease-in-out;
/* 1175 */   outline: none;
/* 1176 */ }
/* 1177 */
/* 1178 */ .woocommerce .return-to-shop a:hover {
/* 1179 */   color: #1a1a1a;
/* 1180 */   background: #ffd800;
/* 1181 */ }
/* 1182 */
/* 1183 */ .woocommerce .woocommerce-error {
/* 1184 */   margin: 2em 0 2em !important;
/* 1185 */ }
/* 1186 */
/* 1187 */ .woocommerce .woocommerce-error:before {
/* 1188 */   font-family: FontAwesome;
/* 1189 */   content: "\f071";
/* 1190 */ }
/* 1191 */
/* 1192 */ .woocommerce ul.order_details {
/* 1193 */   padding-left: 0;
/* 1194 */   margin-bottom: 40px;
/* 1195 */ }
/* 1196 */
/* 1197 */ .woocommerce ul.order_details li {
/* 1198 */   font-size: 14px;
/* 1199 */   width: 20%;
/* 1200 */ }

/* custom-woocommerce.css */

/* 1201 */
/* 1202 */ .woocommerce .bp-my-account-wrapper {
/* 1203 */   margin-bottom: 100px;
/* 1204 */   overflow: hidden;
/* 1205 */ }
/* 1206 */
/* 1207 */ .woocommerce .bp-my-account-wrapper .woocommerce-MyAccount-navigation {
/* 1208 */   width: 20%;
/* 1209 */ }
/* 1210 */
/* 1211 */ .woocommerce .bp-my-account-wrapper .woocommerce-MyAccount-content {
/* 1212 */   width: 78%;
/* 1213 */ }
/* 1214 */
/* 1215 */ .woocommerce .woocommerce-MyAccount-navigation {
/* 1216 */   padding-bottom: 40px;
/* 1217 */ }
/* 1218 */
/* 1219 */ .woocommerce .woocommerce-MyAccount-navigation ul {
/* 1220 */   padding-left: 0;
/* 1221 */   list-style: none;
/* 1222 */ }
/* 1223 */
/* 1224 */ .woocommerce .woocommerce-MyAccount-navigation ul li a {
/* 1225 */   display: inline-block;
/* 1226 */   color: #1a1a1a;
/* 1227 */   font-size: 16px;
/* 1228 */   font-weight: 600;
/* 1229 */   padding: 15px 0;
/* 1230 */   position: relative;
/* 1231 */ }
/* 1232 */
/* 1233 */ .woocommerce .woocommerce-MyAccount-navigation ul li a:after {
/* 1234 */   position: absolute;
/* 1235 */   content: "";
/* 1236 */   display: block;
/* 1237 */   height: 2px;
/* 1238 */   width: 0;
/* 1239 */   background: #ffd800;
/* 1240 */   bottom: 5px;
/* 1241 */   transition: .2s all;
/* 1242 */ }
/* 1243 */
/* 1244 */ .woocommerce .woocommerce-MyAccount-navigation ul li a:hover:after {
/* 1245 */   width: 100%;
/* 1246 */ }
/* 1247 */
/* 1248 */ .woocommerce .woocommerce-MyAccount-navigation ul li.is-active a:after {
/* 1249 */   width: 100%;
/* 1250 */ }

/* custom-woocommerce.css */

/* 1251 */
/* 1252 */ .woocommerce .woocommerce-MyAccount-content {
/* 1253 */   padding-top: 20px;
/* 1254 */   padding-bottom: 40px;
/* 1255 */ }
/* 1256 */
/* 1257 */ .woocommerce .woocommerce-MyAccount-content a {
/* 1258 */   color: #F5B800;
/* 1259 */ }
/* 1260 */
/* 1261 */ .woocommerce .woocommerce-MyAccount-content a:hover {
/* 1262 */   color: #1a1a1a;
/* 1263 */ }
/* 1264 */
/* 1265 */ .woocommerce .woocommerce-MyAccount-content table th, .woocommerce .woocommerce-MyAccount-content table td {
/* 1266 */   padding: 15px 8px;
/* 1267 */   font-size: 14px;
/* 1268 */ }
/* 1269 */
/* 1270 */ .woocommerce .woocommerce-MyAccount-content table td.order-number a:hover {
/* 1271 */   color: #1a1a1a;
/* 1272 */ }
/* 1273 */
/* 1274 */ .woocommerce .woocommerce-MyAccount-content table a.button {
/* 1275 */   background: #1a1a1a;
/* 1276 */   color: #ffd800;
/* 1277 */   border-radius: 0;
/* 1278 */ }
/* 1279 */
/* 1280 */ .woocommerce .woocommerce-MyAccount-content table a.button:hover {
/* 1281 */   color: #1a1a1a;
/* 1282 */   background: #ffd800;
/* 1283 */ }
/* 1284 */
/* 1285 */ .woocommerce .woocommerce-MyAccount-content address {
/* 1286 */   margin-bottom: 10px;
/* 1287 */ }
/* 1288 */
/* 1289 */ .woocommerce .woocommerce-MyAccount-content .edit {
/* 1290 */   font-weight: 600;
/* 1291 */ }
/* 1292 */
/* 1293 */ .woocommerce .woocommerce-MyAccount-content .edit:hover {
/* 1294 */   color: #1a1a1a;
/* 1295 */ }
/* 1296 */
/* 1297 */ .woocommerce .woocommerce-MyAccount-content form input[type="text"], .woocommerce .woocommerce-MyAccount-content form input[type="number"], .woocommerce .woocommerce-MyAccount-content form input[type="email"], .woocommerce .woocommerce-MyAccount-content form input[type="tel"], .woocommerce .woocommerce-MyAccount-content form input[type="password"] {
/* 1298 */   height: 48px;
/* 1299 */   padding-left: 20px;
/* 1300 */   padding-right: 20px;

/* custom-woocommerce.css */

/* 1301 */   color: #1a1a1a;
/* 1302 */   border: 1px solid #ccc;
/* 1303 */ }
/* 1304 */
/* 1305 */ .woocommerce .woocommerce-MyAccount-content form input[type="text"]:focus, .woocommerce .woocommerce-MyAccount-content form input[type="number"]:focus, .woocommerce .woocommerce-MyAccount-content form input[type="email"]:focus, .woocommerce .woocommerce-MyAccount-content form input[type="tel"]:focus, .woocommerce .woocommerce-MyAccount-content form input[type="password"]:focus {
/* 1306 */   border: 1px solid #1a1a1a;
/* 1307 */ }
/* 1308 */
/* 1309 */ .woocommerce .woocommerce-MyAccount-content form input[type="submit"] {
/* 1310 */   margin-top: 20px;
/* 1311 */   height: 48px;
/* 1312 */   background: #1a1a1a;
/* 1313 */   color: #ffd800;
/* 1314 */   border-radius: 0;
/* 1315 */   transition: .2s all;
/* 1316 */   padding-left: 20px;
/* 1317 */   padding-right: 20px;
/* 1318 */ }
/* 1319 */
/* 1320 */ .woocommerce .woocommerce-MyAccount-content form input[type="submit"]:hover {
/* 1321 */   color: #1a1a1a;
/* 1322 */   background: #ffd800;
/* 1323 */ }
/* 1324 */
/* 1325 */ .woocommerce .woocommerce-MyAccount-content form .select2-choice {
/* 1326 */   line-height: 48px;
/* 1327 */   padding-left: 20px;
/* 1328 */ }
/* 1329 */
/* 1330 */ .woocommerce .woocommerce-MyAccount-content form a {
/* 1331 */   color: #1a1a1a;
/* 1332 */ }
/* 1333 */
/* 1334 */ .woocommerce .checkout_coupon {
/* 1335 */   border-radius: 0 !important;
/* 1336 */ }
/* 1337 */
/* 1338 */ .woocommerce .checkout_coupon input[type="text"] {
/* 1339 */   height: 48px;
/* 1340 */   padding-left: 20px;
/* 1341 */   padding-right: 20px;
/* 1342 */   color: #1a1a1a;
/* 1343 */   border: 1px solid #ccc;
/* 1344 */ }
/* 1345 */
/* 1346 */ .woocommerce .checkout_coupon input[type="text"]:focus {
/* 1347 */   border: 1px solid #ffd800;
/* 1348 */ }
/* 1349 */
/* 1350 */ .woocommerce .checkout_coupon input[type="submit"] {

/* custom-woocommerce.css */

/* 1351 */   height: 48px;
/* 1352 */   background: #1a1a1a;
/* 1353 */   color: #ffd800;
/* 1354 */   border-radius: 0;
/* 1355 */   transition: .2s all;
/* 1356 */   padding-left: 20px;
/* 1357 */   padding-right: 20px;
/* 1358 */ }
/* 1359 */
/* 1360 */ .woocommerce .checkout_coupon input[type="submit"]:hover {
/* 1361 */   color: #1a1a1a;
/* 1362 */   background: #ffd800;
/* 1363 */ }
/* 1364 */
/* 1365 */ .woocommerce form.login, .woocommerce form.lost_reset_password {
/* 1366 */   margin-bottom: 30px;
/* 1367 */ }
/* 1368 */
/* 1369 */ .woocommerce form.login input[type="text"], .woocommerce form.login input[type="password"], .woocommerce form.lost_reset_password input[type="text"], .woocommerce form.lost_reset_password input[type="password"] {
/* 1370 */   height: 48px;
/* 1371 */   padding-left: 20px;
/* 1372 */   padding-right: 20px;
/* 1373 */   color: #1a1a1a;
/* 1374 */   border: 1px solid #ccc;
/* 1375 */ }
/* 1376 */
/* 1377 */ .woocommerce form.login input[type="text"]:focus, .woocommerce form.login input[type="password"]:focus, .woocommerce form.lost_reset_password input[type="text"]:focus, .woocommerce form.lost_reset_password input[type="password"]:focus {
/* 1378 */   border: 1px solid #1a1a1a;
/* 1379 */ }
/* 1380 */
/* 1381 */ .woocommerce form.login input[type="submit"], .woocommerce form.lost_reset_password input[type="submit"] {
/* 1382 */   margin-top: 20px;
/* 1383 */   height: 48px;
/* 1384 */   background: #1a1a1a;
/* 1385 */   color: #ffd800;
/* 1386 */   border-radius: 0;
/* 1387 */   transition: .2s all;
/* 1388 */   padding-left: 20px;
/* 1389 */   padding-right: 20px;
/* 1390 */   margin-right: 15px;
/* 1391 */ }
/* 1392 */
/* 1393 */ .woocommerce form.login input[type="submit"]:hover, .woocommerce form.lost_reset_password input[type="submit"]:hover {
/* 1394 */   color: #1a1a1a;
/* 1395 */   background: #ffd800;
/* 1396 */ }
/* 1397 */
/* 1398 */ .woocommerce form.login a, .woocommerce form.lost_reset_password a {
/* 1399 */   color: #1a1a1a;
/* 1400 */ }

/* custom-woocommerce.css */

/* 1401 */
/* 1402 */ .woocommerce form.login a:hover, .woocommerce form.lost_reset_password a:hover {
/* 1403 */   color: #F5B800;
/* 1404 */ }
/* 1405 */
/* 1406 */ .woocommerce .widget_shopping_cart_content .cart_list li {
/* 1407 */   margin-bottom: 15px;
/* 1408 */   font-size: 14px;
/* 1409 */   font-weight: 400;
/* 1410 */ }
/* 1411 */
/* 1412 */ .woocommerce .widget_shopping_cart_content .cart_list li a {
/* 1413 */   font-weight: 600;
/* 1414 */ }
/* 1415 */
/* 1416 */ .woocommerce .widget_shopping_cart_content .cart_list li a img {
/* 1417 */   width: 62px;
/* 1418 */ }
/* 1419 */
/* 1420 */ .woocommerce .widget_shopping_cart_content .cart_list li a.remove {
/* 1421 */   color: #1a1a1a !important;
/* 1422 */   background: none;
/* 1423 */   top: 2px;
/* 1424 */ }
/* 1425 */
/* 1426 */ .woocommerce .widget_shopping_cart_content .cart_list li a.remove:hover {
/* 1427 */   color: #f42b2b !important;
/* 1428 */ }
/* 1429 */
/* 1430 */ .woocommerce .widget_shopping_cart_content .cart_list li .woocommerce-Price-amount {
/* 1431 */   margin-top: 10px;
/* 1432 */   display: inline-block;
/* 1433 */ }
/* 1434 */
/* 1435 */ .woocommerce .widget_shopping_cart_content .total {
/* 1436 */   padding-top: 10px;
/* 1437 */   border-top: 2px solid #ffd800;
/* 1438 */   color: #1a1a1a;
/* 1439 */   margin-bottom: 10px;
/* 1440 */ }
/* 1441 */
/* 1442 */ .woocommerce .widget_shopping_cart_content .button {
/* 1443 */   font-size: 13px;
/* 1444 */   text-transform: uppercase;
/* 1445 */   font-weight: 500;
/* 1446 */   border-radius: 0;
/* 1447 */   background: #ffd800;
/* 1448 */   color: #1a1a1a;
/* 1449 */   padding: 15px;
/* 1450 */   display: inline-block;

/* custom-woocommerce.css */

/* 1451 */ }
/* 1452 */
/* 1453 */ .woocommerce .widget_shopping_cart_content .button:hover {
/* 1454 */   color: #ffd800;
/* 1455 */   background: #1a1a1a;
/* 1456 */ }
/* 1457 */
/* 1458 */ .woocommerce .widget_shopping_cart_content .checkout {
/* 1459 */   background: #1a1a1a;
/* 1460 */   color: #ffd800;
/* 1461 */ }
/* 1462 */
/* 1463 */ .woocommerce .widget_shopping_cart_content .checkout:hover {
/* 1464 */   color: #1a1a1a;
/* 1465 */   background: #ffd800;
/* 1466 */ }
/* 1467 */
/* 1468 */ .woocommerce .widget_product_search input {
/* 1469 */   height: 43px;
/* 1470 */   border: none;
/* 1471 */   outline: none;
/* 1472 */ }
/* 1473 */
/* 1474 */ .woocommerce .widget_product_search input[type="text"], .woocommerce .widget_product_search input[type="email"], .woocommerce .widget_product_search input[type="password"], .woocommerce .widget_product_search input[type="search"] {
/* 1475 */   width: calc(100% - 91px);
/* 1476 */   vertical-align: middle;
/* 1477 */   padding: 0 20px;
/* 1478 */   background: #f0f0f0;
/* 1479 */   color: #525252;
/* 1480 */ }
/* 1481 */
/* 1482 */ .woocommerce .widget_product_search input[type="submit"] {
/* 1483 */   background-color: #FFD800;
/* 1484 */   transition: .2s all;
/* 1485 */   text-indent: -999999px;
/* 1486 */   width: 50px;
/* 1487 */   background-image: url("../images/search-glass.png");
/* 1488 */   background-position: center center;
/* 1489 */   background-repeat: no-repeat;
/* 1490 */   vertical-align: middle;
/* 1491 */   margin-left: -4px;
/* 1492 */ }
/* 1493 */
/* 1494 */ .woocommerce .widget_product_search input[type="submit"]:hover {
/* 1495 */   background-color: #F5B800;
/* 1496 */ }
/* 1497 */
/* 1498 */ .woocommerce ul.product_list_widget li {
/* 1499 */   margin-bottom: 30px;
/* 1500 */ }

/* custom-woocommerce.css */

/* 1501 */
/* 1502 */ .woocommerce ul.product_list_widget li img {
/* 1503 */   transition: .2s all;
/* 1504 */ }
/* 1505 */
/* 1506 */ .woocommerce ul.product_list_widget li:hover img {
/* 1507 */   opacity: .8;
/* 1508 */ }
/* 1509 */
/* 1510 */ .woocommerce ul.product_list_widget li:hover .product-title {
/* 1511 */   color: #f5b800;
/* 1512 */ }
/* 1513 */
/* 1514 */ .woocommerce .bp-woo-widget-image {
/* 1515 */   overflow: hidden;
/* 1516 */   float: left;
/* 1517 */   margin-right: 10px;
/* 1518 */ }
/* 1519 */
/* 1520 */ .woocommerce .bp-woo-widget-image img {
/* 1521 */   float: none;
/* 1522 */   width: 82px !important;
/* 1523 */ }
/* 1524 */
/* 1525 */ .woocommerce .bp-woo-widget-detail {
/* 1526 */   padding-top: 5px;
/* 1527 */ }
/* 1528 */
/* 1529 */ .woocommerce .bp-woo-widget-detail .product-title {
/* 1530 */   font-size: 15px;
/* 1531 */   font-weight: 400;
/* 1532 */   color: #1a1a1a;
/* 1533 */   transition: all .2s;
/* 1534 */ }
/* 1535 */
/* 1536 */ .woocommerce .bp-woo-widget-detail .woocommerce-Price-amount {
/* 1537 */   font-weight: 600;
/* 1538 */   font-size: 18px;
/* 1539 */   color: #808080;
/* 1540 */ }
/* 1541 */
/* 1542 */ .woocommerce .bp-woo-widget-detail ins {
/* 1543 */   text-decoration: none;
/* 1544 */ }
/* 1545 */
/* 1546 */ .woocommerce .bp-woo-widget-detail .star-rating {
/* 1547 */   margin-top: 5px;
/* 1548 */ }
/* 1549 */
/* 1550 */ .woocommerce .widget_recent_reviews li img {

/* custom-woocommerce.css */

/* 1551 */   width: 82px !important;
/* 1552 */ }
/* 1553 */
/* 1554 */ .woocommerce .widget_recent_reviews li a {
/* 1555 */   font-size: 15px;
/* 1556 */   font-weight: 400 !important;
/* 1557 */   color: #1a1a1a;
/* 1558 */ }
/* 1559 */
/* 1560 */ .woocommerce .widget_recent_reviews li .star-rating {
/* 1561 */   margin-top: 8px;
/* 1562 */ }
/* 1563 */
/* 1564 */ .woocommerce .widget_recent_reviews li .reviewer {
/* 1565 */   display: inline-block;
/* 1566 */   margin-top: 8px;
/* 1567 */   font-weight: 400;
/* 1568 */   font-size: 14px;
/* 1569 */   color: #808080;
/* 1570 */ }
/* 1571 */
/* 1572 */ .woocommerce nav.woocommerce-pagination {
/* 1573 */   display: block;
/* 1574 */   text-align: center;
/* 1575 */   margin-top: 40px;
/* 1576 */ }
/* 1577 */
/* 1578 */ .woocommerce nav.woocommerce-pagination ul {
/* 1579 */   border: none;
/* 1580 */ }
/* 1581 */
/* 1582 */ .woocommerce nav.woocommerce-pagination ul li {
/* 1583 */   border: none;
/* 1584 */   color: #808080;
/* 1585 */   margin-left: 8px;
/* 1586 */   margin-right: 8px;
/* 1587 */ }
/* 1588 */
/* 1589 */ .woocommerce nav.woocommerce-pagination ul li span, .woocommerce nav.woocommerce-pagination ul li a {
/* 1590 */   border: 2px solid #f0f0f0;
/* 1591 */   display: inline-block;
/* 1592 */   text-align: center;
/* 1593 */   height: 48px;
/* 1594 */   min-width: 48px;
/* 1595 */   line-height: 44px;
/* 1596 */   padding: 0;
/* 1597 */   background: #ffffff !important;
/* 1598 */   color: #808080 !important;
/* 1599 */ }
/* 1600 */

/* custom-woocommerce.css */

/* 1601 */ .woocommerce nav.woocommerce-pagination ul li a:hover {
/* 1602 */   background: #ffd800 !important;
/* 1603 */   color: #1a1a1a !important;
/* 1604 */   border-color: #ffd800 !important;
/* 1605 */ }
/* 1606 */
/* 1607 */ .woocommerce nav.woocommerce-pagination ul li .current {
/* 1608 */   background: #ffd800 !important;
/* 1609 */   color: #1a1a1a !important;
/* 1610 */   border-color: #ffd800 !important;
/* 1611 */ }
/* 1612 */
/* 1613 */ .woocommerce .widget_product_tag_cloud .tagcloud a {
/* 1614 */   display: inline-block;
/* 1615 */   font-size: 12px !important;
/* 1616 */   background: #f8f8f8;
/* 1617 */   padding: 9px 20px;
/* 1618 */   margin-bottom: 5px;
/* 1619 */   color: #808080;
/* 1620 */ }
/* 1621 */
/* 1622 */ .woocommerce .widget_product_tag_cloud .tagcloud a:hover {
/* 1623 */   background: #ffd800;
/* 1624 */   color: #1a1a1a !important;
/* 1625 */ }
/* 1626 */
/* 1627 */ .woocommerce .widget_product_categories ul.product-categories > li {
/* 1628 */   padding-left: 20px;
/* 1629 */   position: relative;
/* 1630 */ }
/* 1631 */
/* 1632 */ .woocommerce .widget_product_categories ul.product-categories > li:before {
/* 1633 */   font-family: FontAwesome;
/* 1634 */   content: "\f101";
/* 1635 */   position: absolute;
/* 1636 */   left: 0;
/* 1637 */   top: -3px;
/* 1638 */   font-size: 18px;
/* 1639 */   color: #808080;
/* 1640 */ }
/* 1641 */
/* 1642 */ .banner-wrapper-cart .banner {
/* 1643 */   margin-left: -100%;
/* 1644 */   margin-right: -100%;
/* 1645 */ }
/* 1646 */
/* 1647 */ .wrapper-empty-cart {
/* 1648 */   padding-top: 40px;
/* 1649 */   padding-bottom: 80px;
/* 1650 */ }

/* custom-woocommerce.css */

/* 1651 */
/* 1652 */ .wrapper-empty-cart .cart-empty {
/* 1653 */   margin-top: 100px;
/* 1654 */ }
/* 1655 */
/* 1656 */ .wrapper-empty-cart .empty-cart-icon i {
/* 1657 */   color: #e8e8e8;
/* 1658 */   font-size: 300px;
/* 1659 */ }
/* 1660 */
/* 1661 */ .carousel-related-single-product {
/* 1662 */   margin-bottom: 40px;
/* 1663 */ }
/* 1664 */
/* 1665 */ .wrapper-buttons-add-cart .price-and-cart {
/* 1666 */   float: left;
/* 1667 */   margin-top: 5px;
/* 1668 */   margin-bottom: 5px;
/* 1669 */   margin-right: 5px;
/* 1670 */ }
/* 1671 */
/* 1672 */ .wrapper-buttons-add-cart .price-and-cart del {
/* 1673 */   margin-right: 5px;
/* 1674 */ }
/* 1675 */
/* 1676 */ .wrapper-buttons-add-cart .price-and-cart del .woocommerce-Price-amount {
/* 1677 */   vertical-align: middle;
/* 1678 */   font-size: 16px;
/* 1679 */   font-weight: 500;
/* 1680 */   line-height: 34px;
/* 1681 */   color: #383838;
/* 1682 */ }
/* 1683 */
/* 1684 */ .wrapper-buttons-add-cart .price-and-cart ins {
/* 1685 */   text-decoration: none;
/* 1686 */ }
/* 1687 */
/* 1688 */ .wrapper-buttons-add-cart .price-and-cart ins span {
/* 1689 */   vertical-align: middle;
/* 1690 */   line-height: 34px;
/* 1691 */   font-weight: 600;
/* 1692 */   font-size: 24px;
/* 1693 */   color: #1a1a1a;
/* 1694 */ }
/* 1695 */
/* 1696 */ .wrapper-buttons-add-cart .price-and-cart .woocommerce-Price-amount {
/* 1697 */   vertical-align: middle;
/* 1698 */   line-height: 34px;
/* 1699 */   font-weight: 600;
/* 1700 */   font-size: 24px;

/* custom-woocommerce.css */

/* 1701 */ }
/* 1702 */
/* 1703 */ .woocommerce .quantity .qty {
/* 1704 */   padding-left: 10px;
/* 1705 */ }
/* 1706 */
/* 1707 */ .footer-widgets-area .woocommerce .widget_shopping_cart_content .button:hover {
/* 1708 */   background: #fafafa;
/* 1709 */   color: #1a1a1a;
/* 1710 */ }
/* 1711 */
/* 1712 */ .footer-widgets-area .woocommerce .widget_shopping_cart_content .button.checkout {
/* 1713 */   background: #fafafa;
/* 1714 */   color: #1a1a1a;
/* 1715 */ }
/* 1716 */
/* 1717 */ .footer-widgets-area .woocommerce .widget_shopping_cart_content .button.checkout:hover {
/* 1718 */   background: #ffd800;
/* 1719 */   color: #1a1a1a;
/* 1720 */ }
/* 1721 */
/* 1722 */ .footer-widgets-area .woocommerce .widget_shopping_cart_content .cart_list li a.remove {
/* 1723 */   color: #fafafa !important;
/* 1724 */ }
/* 1725 */
/* 1726 */ .footer-widgets-area .woocommerce .widget_shopping_cart_content .cart_list li a.remove:hover {
/* 1727 */   color: #f42b2b !important;
/* 1728 */ }
/* 1729 */
/* 1730 */ .footer-widgets-area .woocommerce .price_slider_amount .button {
/* 1731 */   background: #ffd800;
/* 1732 */   color: #1a1a1a;
/* 1733 */ }
/* 1734 */
/* 1735 */ .footer-widgets-area .woocommerce .price_slider_amount .button:hover {
/* 1736 */   background: #fafafa;
/* 1737 */   color: #1a1a1a;
/* 1738 */ }
/* 1739 */
/* 1740 */ .footer-widgets-area .widget_product_search input {
/* 1741 */   height: 43px;
/* 1742 */   border: none;
/* 1743 */   outline: none;
/* 1744 */ }
/* 1745 */
/* 1746 */ .footer-widgets-area .widget_product_search input[type="search"] {
/* 1747 */   width: -webkit-calc(100% - 91px);
/* 1748 */   width: calc(100% - 91px);
/* 1749 */   vertical-align: middle;
/* 1750 */   padding-right: 20px;

/* custom-woocommerce.css */

/* 1751 */   padding-left: 20px;
/* 1752 */   background: #f0f0f0;
/* 1753 */   color: #525252;
/* 1754 */   padding-top: 0;
/* 1755 */   padding-bottom: 0;
/* 1756 */ }
/* 1757 */
/* 1758 */ .footer-widgets-area .widget_product_search input[type="submit"] {
/* 1759 */   background-color: #FFD800;
/* 1760 */   transition: .2s all;
/* 1761 */   text-indent: -999999px;
/* 1762 */   width: 50px;
/* 1763 */   background-image: url("../images/search-glass.png");
/* 1764 */   background-position: center center;
/* 1765 */   background-repeat: no-repeat;
/* 1766 */   vertical-align: middle;
/* 1767 */   margin-left: -4px;
/* 1768 */ }
/* 1769 */
/* 1770 */ .footer-widgets-area .widget_product_search input[type="submit"]:hover {
/* 1771 */   background-color: #F5B800;
/* 1772 */ }
/* 1773 */
/* 1774 */ .footer-widgets-area .widget_products ul, .footer-widgets-area .widget_recently_viewed_products ul, .footer-widgets-area .widget_top_rated_products ul {
/* 1775 */   margin-left: -10px;
/* 1776 */ }
/* 1777 */
/* 1778 */ .footer-widgets-area .widget_products ul li, .footer-widgets-area .widget_recently_viewed_products ul li, .footer-widgets-area .widget_top_rated_products ul li {
/* 1779 */   margin-bottom: 0;
/* 1780 */   padding: 10px;
/* 1781 */ }
/* 1782 */
/* 1783 */ .footer-widgets-area .widget_products ul li:hover, .footer-widgets-area .widget_recently_viewed_products ul li:hover, .footer-widgets-area .widget_top_rated_products ul li:hover {
/* 1784 */   background: #121212;
/* 1785 */ }
/* 1786 */
/* 1787 */ .footer-widgets-area .widget_products ul li .bp-woo-widget-image, .footer-widgets-area .widget_recently_viewed_products ul li .bp-woo-widget-image, .footer-widgets-area .widget_top_rated_products ul li .bp-woo-widget-image {
/* 1788 */   margin-right: 20px;
/* 1789 */ }
/* 1790 */
/* 1791 */ .footer-widgets-area .widget_products ul li .bp-woo-widget-image img, .footer-widgets-area .widget_recently_viewed_products ul li .bp-woo-widget-image img, .footer-widgets-area .widget_top_rated_products ul li .bp-woo-widget-image img {
/* 1792 */   max-width: 60px;
/* 1793 */ }
/* 1794 */
/* 1795 */ .footer-widgets-area .widget_products ul li .bp-woo-widget-detail .product-title, .footer-widgets-area .widget_recently_viewed_products ul li .bp-woo-widget-detail .product-title, .footer-widgets-area .widget_top_rated_products ul li .bp-woo-widget-detail .product-title {
/* 1796 */   font-size: 14px;
/* 1797 */   color: #b8b8b8;
/* 1798 */ }
/* 1799 */
/* 1800 */ .footer-widgets-area .widget_products ul li .bp-woo-widget-detail .product-title:hover, .footer-widgets-area .widget_recently_viewed_products ul li .bp-woo-widget-detail .product-title:hover, .footer-widgets-area .widget_top_rated_products ul li .bp-woo-widget-detail .product-title:hover {

/* custom-woocommerce.css */

/* 1801 */   color: #fafafa;
/* 1802 */ }
/* 1803 */
/* 1804 */ .footer-widgets-area .widget_products ul li .woocommerce-Price-amount, .footer-widgets-area .widget_recently_viewed_products ul li .woocommerce-Price-amount, .footer-widgets-area .widget_top_rated_products ul li .woocommerce-Price-amount {
/* 1805 */   font-size: 15px;
/* 1806 */ }
/* 1807 */
/* 1808 */ .footer-widgets-area .widget_product_tag_cloud .tagcloud a {
/* 1809 */   display: inline-block;
/* 1810 */   font-size: 12px !important;
/* 1811 */   background: #f8f8f8;
/* 1812 */   padding: 9px 20px;
/* 1813 */   margin-bottom: 5px;
/* 1814 */   color: #808080;
/* 1815 */ }
/* 1816 */
/* 1817 */ .footer-widgets-area .widget_product_tag_cloud .tagcloud a:hover {
/* 1818 */   background: #ffd800;
/* 1819 */   color: #1a1a1a !important;
/* 1820 */ }
/* 1821 */
/* 1822 */ .footer-widgets-area .widget_recent_reviews .product_list_widget {
/* 1823 */   margin-left: -10px;
/* 1824 */ }
/* 1825 */
/* 1826 */ .footer-widgets-area .widget_recent_reviews .product_list_widget li {
/* 1827 */   margin-bottom: 0;
/* 1828 */   padding: 10px;
/* 1829 */ }
/* 1830 */
/* 1831 */ .footer-widgets-area .widget_recent_reviews .product_list_widget li:hover {
/* 1832 */   background: #121212;
/* 1833 */ }
/* 1834 */
/* 1835 */ .footer-widgets-area .widget_recent_reviews .product_list_widget a {
/* 1836 */   font-weight: normal;
/* 1837 */   font-size: 14px;
/* 1838 */   color: #b8b8b8;
/* 1839 */ }
/* 1840 */
/* 1841 */ .footer-widgets-area .widget_recent_reviews .product_list_widget a img {
/* 1842 */   width: 60px;
/* 1843 */   max-width: 60px;
/* 1844 */ }
/* 1845 */
/* 1846 */ .footer-widgets-area .widget_recent_reviews .product_list_widget a:hover {
/* 1847 */   color: #fafafa;
/* 1848 */ }
/* 1849 */
/* 1850 */ .footer-widgets-area .widget_recent_reviews .product_list_widget .star-rating {

/* custom-woocommerce.css */

/* 1851 */   padding-bottom: 5px;
/* 1852 */   margin-top: 5px;
/* 1853 */ }
/* 1854 */
/* 1855 */ .footer-widgets-area .widget_recent_reviews .product_list_widget .reviewer {
/* 1856 */   margin-top: 8px;
/* 1857 */   font-size: 14px;
/* 1858 */   display: inline-block;
/* 1859 */ }
/* 1860 */
/* 1861 */ #imagelightbox-close, .imagelightbox-arrow {
/* 1862 */   border: 2px solid #ffd800;
/* 1863 */   transition: .2s all !important;
/* 1864 */ }
/* 1865 */
/* 1866 */ #imagelightbox-close:before, #imagelightbox-close:after {
/* 1867 */   background-color: #ffd800 !important;
/* 1868 */ }
/* 1869 */
/* 1870 */ .imagelightbox-arrow-right:before {
/* 1871 */   border-left-color: #ffd800 !important;
/* 1872 */ }
/* 1873 */
/* 1874 */ .imagelightbox-arrow-left:before {
/* 1875 */   border-right-color: #ffd800 !important;
/* 1876 */ }
/* 1877 */
/* 1878 */ .woocomerce-form .woocommerce-form-login {
/* 1879 */   border-radius: 0 !important;
/* 1880 */ }
/* 1881 */
/* 1882 */ .select2-container--default .select2-selection--single .select2-selection__arrow b {
/* 1883 */   border-color: #1a1a1a transparent transparent transparent !important;
/* 1884 */ }
/* 1885 */
/* 1886 */ .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
/* 1887 */   border-color: transparent transparent #1a1a1a transparent !important;
/* 1888 */ }
/* 1889 */
