Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CSS file almsopt completly stripped #21

Closed
schroef opened this issue Mar 2, 2020 · 2 comments
Closed

CSS file almsopt completly stripped #21

schroef opened this issue Mar 2, 2020 · 2 comments
Assignees

Comments

@schroef
Copy link

schroef commented Mar 2, 2020

I tried your minify plugin and found it has some issues. Perhaps i missed something in the settings. I seemed to work good on files., then noticed something was showing correctly on my website. Checking on of the minimized files i noticed almost everything got striped somehow

Run this file on your minifier. sorry cant attach *.css here

@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i);
@import url(https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i);

/*
/*	OFFICIAL COLORS				*/

/*	Blue = #00acec;		*/

/*	Blue = #00abeb; (RGB)		*/

/*	Yellow = #f5ec4a; (CMYK)		*/

/*	Yellow = #f5ec49; (RGB)		*/

/*	Cold Grey = #59656f; (CMYK)		*/

/*	Cold Grey = #58656e; (RGB)		*/

/*	END OFFICIAL COLORS			*/

body {
	font-style: normal;
	line-height: 1.5;
}

.mbr-section-title {
	font-style: normal;
	line-height: 1.2;
}

.mbr-section-subtitle {
	line-height: 1.3;
}

.mbr-text {
	font-style: normal;
	line-height: 1.6;
}

.display-1 {
	font-family: 'Open Sans', sans-serif;
	font-size: 2rem;
}

.display-1 > .mbr-iconfont {
	font-size: 3.2rem;
}

.display-2 {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.5rem;
}

.display-2 > .mbr-iconfont {
	font-size: 2.4rem;
}

.display-4 {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.2rem;
}

.display-4 > .mbr-iconfont {
	font-size: 1.92rem;
}

.display-5 {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.2rem;
}

.display-5 > .mbr-iconfont {
	font-size: 1.92rem;
}

.display-7 {
	font-family: 'Open Sans', sans-serif;
	font-size: 1rem;
}

.display-7 > .mbr-iconfont {
	font-size: 1.6rem;
}

/* ---- Fluid typography for mobile devices ---- */

/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */

/* 100vw - current viewport width */

/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */

/* 0.65 - min scale variable, may vary */

@media (max-width: 768px) {
	.display-1 {
		font-size: 1.6rem;
		font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
		line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
	}
	.display-2 {
		font-size: 1.2rem;
		font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
		line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
	}
	.display-4 {
		font-size: 0.96rem;
		font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
		line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
	}
	.display-5 {
		font-size: 0.96rem;
		font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
		line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
	}
}

/* Buttons */

.btn {
	font-weight: 600;
	font-family: 'Open Sans', sans-serif;
	border-width: 2px;
	font-style: normal;
	letter-spacing: 1px;
	margin: .4rem .8rem;
	white-space: normal;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	padding: 1rem 3rem;
	border-radius: 3px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	word-break: break-word;
}

.btn-sm {
	font-weight: 500;
	letter-spacing: 1px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	padding: 0.6rem 1.5rem;
	border-radius: 3px;
}

.btn-md {
	font-weight: 500;
	letter-spacing: 1px;
	margin: .4rem .8rem !important;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	padding: 1rem 3rem;
	border-radius: 3px;
}

.btn-lg {
	font-weight: 500;
	letter-spacing: 1px;
	margin: .4rem .8rem !important;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	padding: 1.2rem 3.2rem;
	border-radius: 3px;
}

.bg-primary {
	background-color: #00acec !important;
}

.bg-success {
	background-color: #f5ec4a !important;
}

.bg-info {
	background-color: #f5ec4a !important;
}

.bg-warning {
	background-color: #f5ec4a !important;
}

.bg-danger {
	background-color: #232323 !important;
}

.btn-primary,
.btn-primary:active,
.btn-primary.active {
	background-color: #00acec;
	border-color: #00acec;
	color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
	color: #ffffff;
	background-color: #0076a3;
	border-color: #0076a3;
}

.btn-primary.disabled,
.btn-primary:disabled {
	color: #ffffff !important;
	background-color: #0076a3 !important;
	border-color: #0076a3 !important;
}

.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
	background-color: #00acec;
	border-color: #00acec;
	color: #ffffff;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
	color: #ffffff;
	background-color: #0076a3;
	border-color: #0076a3;
}

.btn-secondary.disabled,
.btn-secondary:disabled {
	color: #ffffff !important;
	background-color: #0076a3 !important;
	border-color: #0076a3 !important;
}

.btn-info,
.btn-info:active,
.btn-info.active {
	background-color: #f5ec4a;
	border-color: #f5ec4a;
	color: #ffffff;
}

.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
	color: #ffffff;
	background-color: #f5ec4a;
	border-color: #f5ec4a;
}

.btn-info.disabled,
.btn-info:disabled {
	color: #ffffff !important;
	background-color: #f5ec4a !important;
	border-color: #f5ec4a !important;
}

.btn-success,
.btn-success:active,
.btn-success.active {
	background-color: #f5ec4a;
	border-color: #f5ec4a;
	color: #ffffff;
}

.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
	color: #ffffff;
	background-color: #f5ec4a;
	border-color: #f5ec4a;
}

.btn-success.disabled,
.btn-success:disabled {
	color: #ffffff !important;
	background-color: #f5ec4a !important;
	border-color: #f5ec4a !important;
}

.btn-warning,
.btn-warning:active,
.btn-warning.active {
	background-color: #f5ec4a;
	border-color: #f5ec4a;
	color: #ffffff;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
	color: #ffffff;
	background-color: #f5ec4a;
	border-color: #f5ec4a;
}

.btn-warning.disabled,
.btn-warning:disabled {
	color: #ffffff !important;
	background-color: #f5ec4a !important;
	border-color: #f5ec4a !important;
}

.btn-danger,
.btn-danger:active,
.btn-danger.active {
	background-color: #232323;
	border-color: #232323;
	color: #ffffff;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
	color: #ffffff;
	background-color: #000000;
	border-color: #000000;
}

.btn-danger.disabled,
.btn-danger:disabled {
	color: #ffffff !important;
	background-color: #000000 !important;
	border-color: #000000 !important;
}

.btn-white {
	color: #333333 !important;
}

.btn-white,
.btn-white:active,
.btn-white.active {
	background-color: #ffffff;
	border-color: #ffffff;
	color: #ffffff;
}

.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
	color: #ffffff;
	background-color: #d4d4d4;
	border-color: #d4d4d4;
}

.btn-white.disabled,
.btn-white:disabled {
	color: #ffffff !important;
	background-color: #d4d4d4 !important;
	border-color: #d4d4d4 !important;
}

.btn-black,
.btn-black:active,
.btn-black.active {
	background-color: #333333;
	border-color: #333333;
	color: #ffffff;
}

.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
	color: #ffffff;
	background-color: #0d0d0d;
	border-color: #0d0d0d;
}

.btn-black.disabled,
.btn-black:disabled {
	color: #ffffff !important;
	background-color: #0d0d0d !important;
	border-color: #0d0d0d !important;
}

.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
	background: none;
	border-color: #006489;
	color: #006489;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
	color: #ffffff;
	background-color: #00acec;
	border-color: #00acec;
}

.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
	color: #ffffff !important;
	background-color: #00acec !important;
	border-color: #00acec !important;
}

.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
	background: none;
	border-color: #006489;
	color: #006489;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
	color: #ffffff;
	background-color: #00acec;
	border-color: #00acec;
}

.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
	color: #ffffff !important;
	background-color: #00acec !important;
	border-color: #00acec !important;
}

.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
	background: none;
	border-color: #beb406;
	color: #beb406;
}

.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
	color: #ffffff;
	background-color: #f5ec4a;
	border-color: #f5ec4a;
}

.btn-info-outline.disabled,
.btn-info-outline:disabled {
	color: #ffffff !important;
	background-color: #f5ec4a !important;
	border-color: #f5ec4a !important;
}

.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
	background: none;
	border-color: #beb406;
	color: #beb406;
}

.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
	color: #ffffff;
	background-color: #f5ec4a;
	border-color: #f5ec4a;
}

.btn-success-outline.disabled,
.btn-success-outline:disabled {
	color: #ffffff !important;
	background-color: #f5ec4a !important;
	border-color: #f5ec4a !important;
}

.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
	background: none;
	border-color: #beb406;
	color: #beb406;
}

.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
	color: #ffffff;
	background-color: #f5ec4a;
	border-color: #f5ec4a;
}

.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
	color: #ffffff !important;
	background-color: #f5ec4a !important;
	border-color: #f5ec4a !important;
}

.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
	background: none;
	border-color: #000000;
	color: #000000;
}

.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
	color: #ffffff;
	background-color: #232323;
	border-color: #232323;
}

.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
	color: #ffffff !important;
	background-color: #232323 !important;
	border-color: #232323 !important;
}

.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
	background: none;
	border-color: #000000;
	color: #000000;
}

.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
	color: #ffffff;
	background-color: #333333;
	border-color: #333333;
}

.btn-black-outline.disabled,
.btn-black-outline:disabled {
	color: #ffffff !important;
	background-color: #333333 !important;
	border-color: #333333 !important;
}

.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
	background: none;
	border-color: #ffffff;
	color: #ffffff;
}

.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
	color: #333333;
	background-color: #ffffff;
	border-color: #ffffff;
}

.text-primary {
	color: #00acec !important;
}

.text-secondary {
	color: #00acec !important;
}

.text-success {
	color: #f5ec4a !important;
}

.text-info {
	color: #f5ec4a !important;
}

.text-warning {
	color: #f5ec4a !important;
}

.text-danger {
	color: #232323 !important;
}

.text-white {
	color: #ffffff !important;
}

.text-black {
	color: #000000 !important;
}

a.text-primary:hover,
a.text-primary:focus {
	color: #006489 !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
	color: #006489 !important;
}

a.text-success:hover,
a.text-success:focus {
	color: #beb406 !important;
}

a.text-info:hover,
a.text-info:focus {
	color: #beb406 !important;
}

a.text-warning:hover,
a.text-warning:focus {
	color: #beb406 !important;
}

a.text-danger:hover,
a.text-danger:focus {
	color: #000000 !important;
}

a.text-white:hover,
a.text-white:focus {
	color: #b3b3b3 !important;
}

a.text-black:hover,
a.text-black:focus {
	color: #4d4d4d !important;
}

.alert-success {
	background-color: #70c770;
}

.alert-info {
	background-color: #f5ec4a;
}

.alert-warning {
	background-color: #f5ec4a;
}

.alert-danger {
	background-color: #232323;
}

.mbr-section-btn a.btn:not(.btn-form) {
	border-radius: 100px;
}

.mbr-section-btn a.btn:not(.btn-form):hover {
	box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}

.mbr-gallery-filter li a {
	border-radius: 100px !important;
}

.mbr-gallery-filter li.active .btn {
	background-color: #00acec;
	border-color: #00acec;
	color: #ffffff;
}

.mbr-gallery-filter li.active .btn:focus {
	box-shadow: none;
}

.nav-tabs .nav-link {
	border-radius: 100px !important;
}

.btn-form {
	border-radius: 0;
}

.btn-form:hover {
	cursor: pointer;
}

a,
a:hover {
	color: #00acec;
}

.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
	color: #bcedff;
}

.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
	color: #fffef7;
}

.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
	color: #fffef7;
}

.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
	color: #fffef7;
}

.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
	color: #d5d5d5;
}

/* Scroll to top button*/

.scrollToTop_wraper {
	opacity: 0 !important;
}

/* Others*/

.note-check a[data-value=Rubik] {
	font-style: normal;
}

.mbr-arrow a {
	color: #ffffff;
}

.form-control-label {
	position: relative;
	cursor: pointer;
	margin-bottom: .357em;
	padding: 0;
}

.alert {
	color: #ffffff;
	border-radius: 0;
	border: 0;
	font-size: .875rem;
	line-height: 1.5;
	margin-bottom: 1.875rem;
	padding: 1.25rem;
	position: relative;
}

.alert.alert-form::after {
	background-color: inherit;
	bottom: -7px;
	content: "";
	display: block;
	height: 14px;
	left: 50%;
	margin-left: -7px;
	position: absolute;
	transform: rotate(45deg);
	width: 14px;
}

.form-control {
	background-color: #f5f5f5;
	box-shadow: none;
	color: #565656;
	font-family: 'Open Sans', sans-serif;
	font-size: 1rem;
	line-height: 1.43;
	min-height: 3.5em;
	padding: 1.07em .5em;
}

.form-control > .mbr-iconfont {
	font-size: 1.6rem;
}

.form-control,
.form-control:focus {
	border: 1px solid #e8e8e8;
}

.form-active .form-control:invalid {
	border-color: red;
}

.mbr-overlay {
	background-color: #000;
	bottom: 0;
	left: 0;
	opacity: .5;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}

blockquote {
	font-style: italic;
	padding: 10px 0 10px 20px;
	font-size: 1.09rem;
	position: relative;
	border-color: #00acec;
	border-width: 3px;
}

ul,
ol,
pre,
blockquote {
	margin-bottom: 2.3125rem;
}

pre {
	background: #f4f4f4;
	padding: 10px 24px;
	white-space: pre-wrap;
}

.inactive {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	-webkit-user-drag: none;
}

.mbr-section__comments .row {
	justify-content: center;
}

/* Forms */

.mbr-form .btn {
	margin: .4rem 0;
}

.mbr-form .input-group-btn a.btn {
	border-radius: 100px !important;
}

.mbr-form .input-group-btn a.btn:hover {
	box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}

.mbr-form .input-group-btn button[type="submit"] {
	border-radius: 100px !important;
	padding: 1rem 3rem;
}

.mbr-form .input-group-btn button[type="submit"]:hover {
	box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}

.form2 .form-control {
	border-top-left-radius: 100px;
	border-bottom-left-radius: 100px;
}

.form2 .input-group-btn a.btn {
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}

.form2 .input-group-btn button[type="submit"] {
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}

.form3 input[type="email"] {
	border-radius: 100px !important;
}

@media (max-width: 349px) {
	.form2 input[type="email"] {
		border-radius: 100px !important;
	}
	.form2 .input-group-btn a.btn {
		border-radius: 100px !important;
	}
	.form2 .input-group-btn button[type="submit"] {
		border-radius: 100px !important;
	}
}

@media (max-width: 767px) {
	.btn {
		font-size: .75rem !important;
	}
	.btn .mbr-iconfont {
		font-size: 1rem !important;
	}
}

/* Social block */

.btn-social {
	font-size: 20px;
	border-radius: 50%;
	padding: 0;
	width: 44px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	position: relative;
	border: 2px solid #c0a375;
	border-color: #00acec;
	color: #232323;
	cursor: pointer;
}

.btn-social i {
	top: 0;
	line-height: 44px;
	width: 44px;
}

.btn-social:hover {
	color: #fff;
	background: #00acec;
}

.btn-social + .btn {
	margin-left: .1rem;
}

/* Footer */

.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
	background: #00acec;
}

.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
	color: #00acec;
}

.footer3 input[type="email"],
.footer4 input[type="email"] {
	border-radius: 100px !important;
}

.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
	border-radius: 100px !important;
}

.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
	border-radius: 100px !important;
}

/* Headers*/

.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
	border-radius: 100px;
}

.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
	border-radius: 100px;
}

.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
	border-radius: 100px;
}

.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
	border-radius: 100px;
}

.header13 .form-inline button,
.header14 .form-inline button {
	border-radius: 100px !important;
}

.offset-1 {
	margin-left: 8.33333%;
}

.offset-2 {
	margin-left: 16.66667%;
}

.offset-3 {
	margin-left: 25%;
}

.offset-4 {
	margin-left: 33.33333%;
}

.offset-5 {
	margin-left: 41.66667%;
}

.offset-6 {
	margin-left: 50%;
}

.offset-7 {
	margin-left: 58.33333%;
}

.offset-8 {
	margin-left: 66.66667%;
}

.offset-9 {
	margin-left: 75%;
}

.offset-10 {
	margin-left: 83.33333%;
}

.offset-11 {
	margin-left: 91.66667%;
}

@media (min-width: 576px) {
	.offset-sm-0 {
		margin-left: 0%;
	}
	.offset-sm-1 {
		margin-left: 8.33333%;
	}
	.offset-sm-2 {
		margin-left: 16.66667%;
	}
	.offset-sm-3 {
		margin-left: 25%;
	}
	.offset-sm-4 {
		margin-left: 33.33333%;
	}
	.offset-sm-5 {
		margin-left: 41.66667%;
	}
	.offset-sm-6 {
		margin-left: 50%;
	}
	.offset-sm-7 {
		margin-left: 58.33333%;
	}
	.offset-sm-8 {
		margin-left: 66.66667%;
	}
	.offset-sm-9 {
		margin-left: 75%;
	}
	.offset-sm-10 {
		margin-left: 83.33333%;
	}
	.offset-sm-11 {
		margin-left: 91.66667%;
	}
}

@media (min-width: 768px) {
	.offset-md-0 {
		margin-left: 0%;
	}
	.offset-md-1 {
		margin-left: 8.33333%;
	}
	.offset-md-2 {
		margin-left: 16.66667%;
	}
	.offset-md-3 {
		margin-left: 25%;
	}
	.offset-md-4 {
		margin-left: 33.33333%;
	}
	.offset-md-5 {
		margin-left: 41.66667%;
	}
	.offset-md-6 {
		margin-left: 50%;
	}
	.offset-md-7 {
		margin-left: 58.33333%;
	}
	.offset-md-8 {
		margin-left: 66.66667%;
	}
	.offset-md-9 {
		margin-left: 75%;
	}
	.offset-md-10 {
		margin-left: 83.33333%;
	}
	.offset-md-11 {
		margin-left: 91.66667%;
	}
}

@media (min-width: 992px) {
	.offset-lg-0 {
		margin-left: 0%;
	}
	.offset-lg-1 {
		margin-left: 8.33333%;
	}
	.offset-lg-2 {
		margin-left: 16.66667%;
	}
	.offset-lg-3 {
		margin-left: 25%;
	}
	.offset-lg-4 {
		margin-left: 33.33333%;
	}
	.offset-lg-5 {
		margin-left: 41.66667%;
	}
	.offset-lg-6 {
		margin-left: 50%;
	}
	.offset-lg-7 {
		margin-left: 58.33333%;
	}
	.offset-lg-8 {
		margin-left: 66.66667%;
	}
	.offset-lg-9 {
		margin-left: 75%;
	}
	.offset-lg-10 {
		margin-left: 83.33333%;
	}
	.offset-lg-11 {
		margin-left: 91.66667%;
	}
}

@media (min-width: 1200px) {
	.offset-xl-0 {
		margin-left: 0%;
	}
	.offset-xl-1 {
		margin-left: 8.33333%;
	}
	.offset-xl-2 {
		margin-left: 16.66667%;
	}
	.offset-xl-3 {
		margin-left: 25%;
	}
	.offset-xl-4 {
		margin-left: 33.33333%;
	}
	.offset-xl-5 {
		margin-left: 41.66667%;
	}
	.offset-xl-6 {
		margin-left: 50%;
	}
	.offset-xl-7 {
		margin-left: 58.33333%;
	}
	.offset-xl-8 {
		margin-left: 66.66667%;
	}
	.offset-xl-9 {
		margin-left: 75%;
	}
	.offset-xl-10 {
		margin-left: 83.33333%;
	}
	.offset-xl-11 {
		margin-left: 91.66667%;
	}
}

.navbar-toggler {
	-webkit-align-self: flex-start;
	-ms-flex-item-align: start;
	align-self: flex-start;
	padding: 0.25rem 0.75rem;
	font-size: 1.25rem;
	line-height: 1;
	background: transparent;
	border: 1px solid transparent;
	-webkit-border-radius: 0.25rem;
	border-radius: 0.25rem;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
	text-decoration: none;
}

.navbar-toggler-icon {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	vertical-align: middle;
	content: "";
	background: no-repeat center center;
	-webkit-background-size: 100% 100%;
	-o-background-size: 100% 100%;
	background-size: 100% 100%;
}

.navbar-toggler-left {
	position: absolute;
	left: 1rem;
}

.navbar-toggler-right {
	position: absolute;
	right: 1rem;
}

@media (max-width: 575px) {
	.navbar-toggleable .navbar-nav .dropdown-menu {
		position: static;
		float: none;
	}
	.navbar-toggleable > .container {
		padding-right: 0;
		padding-left: 0;
	}
}

@media (min-width: 576px) {
	.navbar-toggleable {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.navbar-toggleable .navbar-nav {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.navbar-toggleable .navbar-nav .nav-link {
		padding-right: .5rem;
		padding-left: .5rem;
	}
	.navbar-toggleable > .container {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.navbar-toggleable .navbar-collapse {
		display: -webkit-box !important;
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
		width: 100%;
	}
	.navbar-toggleable .navbar-toggler {
		display: none;
	}
}

@media (max-width: 767px) {
	.navbar-toggleable-sm .navbar-nav .dropdown-menu {
		position: static;
		float: none;
	}
	.navbar-toggleable-sm > .container {
		padding-right: 0;
		padding-left: 0;
	}
}

@media (min-width: 768px) {
	.navbar-toggleable-sm {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.navbar-toggleable-sm .navbar-nav {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.navbar-toggleable-sm .navbar-nav .nav-link {
		padding-right: .5rem;
		padding-left: .5rem;
	}
	.navbar-toggleable-sm > .container {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.navbar-toggleable-sm .navbar-collapse {
		display: -webkit-box !important;
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
		width: 100%;
	}
	.navbar-toggleable-sm .navbar-toggler {
		display: none;
	}
}

@media (max-width: 991px) {
	.navbar-toggleable-md .navbar-nav .dropdown-menu {
		position: static;
		float: none;
	}
	.navbar-toggleable-md > .container {
		padding-right: 0;
		padding-left: 0;
	}
}

@media (min-width: 992px) {
	.navbar-toggleable-md {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.navbar-toggleable-md .navbar-nav {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.navbar-toggleable-md .navbar-nav .nav-link {
		padding-right: .5rem;
		padding-left: .5rem;
	}
	.navbar-toggleable-md > .container {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.navbar-toggleable-md .navbar-collapse {
		display: -webkit-box !important;
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
		width: 100%;
	}
	.navbar-toggleable-md .navbar-toggler {
		display: none;
	}
}

@media (max-width: 1199px) {
	.navbar-toggleable-lg .navbar-nav .dropdown-menu {
		position: static;
		float: none;
	}
	.navbar-toggleable-lg > .container {
		padding-right: 0;
		padding-left: 0;
	}
}

@media (min-width: 1200px) {
	.navbar-toggleable-lg {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.navbar-toggleable-lg .navbar-nav {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.navbar-toggleable-lg .navbar-nav .nav-link {
		padding-right: .5rem;
		padding-left: .5rem;
	}
	.navbar-toggleable-lg > .container {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.navbar-toggleable-lg .navbar-collapse {
		display: -webkit-box !important;
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
		width: 100%;
	}
	.navbar-toggleable-lg .navbar-toggler {
		display: none;
	}
}

.navbar-toggleable-xl {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.navbar-toggleable-xl .navbar-nav .dropdown-menu {
	position: static;
	float: none;
}

.navbar-toggleable-xl > .container {
	padding-right: 0;
	padding-left: 0;
}

.navbar-toggleable-xl .navbar-nav {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}

.navbar-toggleable-xl .navbar-nav .nav-link {
	padding-right: .5rem;
	padding-left: .5rem;
}

.navbar-toggleable-xl > .container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.navbar-toggleable-xl .navbar-collapse {
	display: -webkit-box !important;
	display: -webkit-flex !important;
	display: -ms-flexbox !important;
	display: flex !important;
	width: 100%;
}

.navbar-toggleable-xl .navbar-toggler {
	display: none;
}

.card-img {
	width: auto;
}

.menu .navbar.collapsed:not(.beta-menu) {
	flex-direction: column;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
	bottom: initial !important;
}

html,
body {
	height: auto;
	min-height: 100vh;
}

.cid-qvI6ND1ZrS .navbar {
	padding: .5rem 0;
	background: #f8f8f8;
	/* background: white; */
	/* transition: none; */
	min-height: 77px;
}

.cid-qvI6ND1ZrS .navbar-dropdown.bg-color.transparent.opened {
	background: #00acec;
}

.cid-qvI6ND1ZrS a {
	font-style: normal;
}

.cid-qvI6ND1ZrS .nav-item span {
	padding-right: 0.4em;
	line-height: 0.5em;
	vertical-align: text-bottom;
	position: relative;
	top: -0.2em;
	text-decoration: none;
}

.cid-qvI6ND1ZrS .nav-item a {
	padding: 0.7rem 0;
	margin: 0rem .65rem;
}

.cid-qvI6ND1ZrS .btn {
	padding: 0.4rem 1.5rem;
	display: inline-flex;
	align-items: center;
}

.cid-qvI6ND1ZrS .btn .mbr-iconfont {
	font-size: 1.6rem;
}

.cid-qvI6ND1ZrS .menu-logo {
	margin-right: auto;
}

.cid-qvI6ND1ZrS .menu-logo .navbar-brand {
	display: flex;
	margin-left: 5rem;
	padding: 0;
	transition: padding .2s;
	min-height: 3.8rem;
	align-items: center;
}

.cid-qvI6ND1ZrS .menu-logo .navbar-brand .navbar-caption-wrap {
	display: -webkit-flex;
	-webkit-align-items: center;
	align-items: center;
	word-break: break-word;
	min-width: 7rem;
	margin: .3rem 0;
}

.cid-qvI6ND1ZrS .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
	line-height: 1.2rem !important;
	padding-right: 2rem;
}

.cid-qvI6ND1ZrS .menu-logo .navbar-brand .navbar-logo {
	font-size: 4rem;
	transition: font-size 0.25s;
}

.cid-qvI6ND1ZrS .menu-logo .navbar-brand .navbar-logo img {
	display: flex;
}

.cid-qvI6ND1ZrS .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
	transition: font-size 0.25s;
}

.cid-qvI6ND1ZrS .navbar-toggleable-sm .navbar-collapse {
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
	padding-right: 5rem;
	width: auto;
}

.cid-qvI6ND1ZrS .navbar-toggleable-sm .navbar-collapse .navbar-nav {
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	padding-left: 0;
}

.cid-qvI6ND1ZrS .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
	-webkit-align-self: center;
	align-self: center;
}

.cid-qvI6ND1ZrS .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
	padding-left: 0;
	padding-bottom: 0;
}

.cid-qvI6ND1ZrS .dropdown .dropdown-menu {
	background: #00acec;
	display: none;
	position: absolute;
	min-width: 5rem;
	padding-top: 1.4rem;
	padding-bottom: 1.4rem;
	text-align: left;
}

.cid-qvI6ND1ZrS .dropdown .dropdown-menu .dropdown-item {
	width: auto;
	padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}

.cid-qvI6ND1ZrS .dropdown .dropdown-menu .dropdown-item::after {
	right: 0.5rem;
}

.cid-qvI6ND1ZrS .dropdown .dropdown-menu .dropdown-submenu {
	margin: 0;
}

.cid-qvI6ND1ZrS .dropdown.open > .dropdown-menu {
	display: block;
}

.cid-qvI6ND1ZrS .navbar-toggleable-sm.opened:after {
	position: absolute;
	width: 100vw;
	height: 100vh;
	content: '';
	background-color: rgba(0, 0, 0, 0.1);
	left: 0;
	bottom: 0;
	transform: translateY(100%);
	-webkit-transform: translateY(100%);
	z-index: 1000;
}

.cid-qvI6ND1ZrS .navbar.navbar-short {
	min-height: 70px;
	box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.15);
	position: fixed;
	top: 0;
	-webkit-transition: .2s ease-out;
	transition: .2s ease-out;
}

/* .cid-qvI6ND1ZrS .navbar.navbar-short .navbar-toggler-right { */
	/* top: 25px; */
/* } */

.cid-qvI6ND1ZrS .navbar.navbar-short .navbar-logo a {
	font-size: 2.5rem !important;
	line-height: 2.5rem;
	transition: font-size 0.25s;
}

.cid-qvI6ND1ZrS .navbar.navbar-short .navbar-logo a .mbr-iconfont {
	font-size: 2.5rem !important;
}

.cid-qvI6ND1ZrS .navbar.navbar-short .navbar-logo a img {
	height: 3rem !important;
}

/* .cid-qvI6ND1ZrS .navbar.navbar-short .navbar-brand { */
	/* min-height: 3rem; */
	/* top: 10px; */
	/* position: absolute; */
/* } */

.cid-qvI6ND1ZrS button.navbar-toggler {
	width: 31px;
	height: 18px;
	cursor: pointer;
	transition: all .2s;
	top: 1.5rem;
	right: 1rem;
}

.cid-qvI6ND1ZrS button.navbar-toggler:focus {
	outline: none;
}

.cid-qvI6ND1ZrS button.navbar-toggler .hamburger span {
	position: absolute;
	right: 0;
	width: 30px;
	height: 2px;
	border-right: 5px;
	background-color: #ffffff;
}

.cid-qvI6ND1ZrS button.navbar-toggler .hamburger span:nth-child(1) {
	top: 0;
	transition: all .2s;
}

.cid-qvI6ND1ZrS button.navbar-toggler .hamburger span:nth-child(2) {
	top: 8px;
	transition: all .15s;
}

.cid-qvI6ND1ZrS button.navbar-toggler .hamburger span:nth-child(3) {
	top: 8px;
	transition: all .15s;
}

.cid-qvI6ND1ZrS button.navbar-toggler .hamburger span:nth-child(4) {
	top: 16px;
	transition: all .2s;
}

.cid-qvI6ND1ZrS nav.opened .hamburger span:nth-child(1) {
	top: 8px;
	width: 0;
	opacity: 0;
	right: 50%;
	transition: all .2s;
}

.cid-qvI6ND1ZrS nav.opened .hamburger span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all .25s;
}

.cid-qvI6ND1ZrS nav.opened .hamburger span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	transition: all .25s;
}

.cid-qvI6ND1ZrS nav.opened .hamburger span:nth-child(4) {
	top: 8px;
	width: 0;
	opacity: 0;
	right: 50%;
	transition: all .2s;
}

.cid-qvI6ND1ZrS .collapsed.navbar-expand {
	flex-direction: column;
}

.cid-qvI6ND1ZrS .collapsed .btn {
	display: flex;
}

.cid-qvI6ND1ZrS .collapsed .navbar-collapse {
	display: none !important;
	padding-right: 0 !important;
}

.cid-qvI6ND1ZrS .collapsed .navbar-collapse.collapsing,
.cid-qvI6ND1ZrS .collapsed .navbar-collapse.show {
	display: block !important;
}

.cid-qvI6ND1ZrS .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qvI6ND1ZrS .collapsed .navbar-collapse.show .navbar-nav {
	display: block;
	text-align: center;
}

.cid-qvI6ND1ZrS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qvI6ND1ZrS .collapsed .navbar-collapse.show .navbar-nav .nav-item {
	clear: both;
}

.cid-qvI6ND1ZrS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qvI6ND1ZrS .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
	margin-bottom: 1rem;
}

.cid-qvI6ND1ZrS .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qvI6ND1ZrS .collapsed .navbar-collapse.show .navbar-buttons {
	text-align: center;
}

.cid-qvI6ND1ZrS .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qvI6ND1ZrS .collapsed .navbar-collapse.show .navbar-buttons:last-child {
	margin-bottom: 1rem;
}

.cid-qvI6ND1ZrS .collapsed button.navbar-toggler {
	display: block;
}

.cid-qvI6ND1ZrS .collapsed .navbar-brand {
	margin-left: 1rem !important;
}

.cid-qvI6ND1ZrS .collapsed .navbar-toggleable-sm {
	flex-direction: column;
	-webkit-flex-direction: column;
}

.cid-qvI6ND1ZrS .collapsed .dropdown .dropdown-menu {
	width: 100%;
	text-align: center;
	position: relative;
	opacity: 0;
	display: block;
	height: 0;
	visibility: hidden;
	padding: 0;
	transition-duration: .5s;
	transition-property: opacity, padding, height;
}

.cid-qvI6ND1ZrS .collapsed .dropdown.open > .dropdown-menu {
	position: relative;
	opacity: 1;
	height: auto;
	padding: 1.4rem 0;
	visibility: visible;
}

.cid-qvI6ND1ZrS .collapsed .dropdown .dropdown-submenu {
	left: 0;
	text-align: center;
	width: 100%;
}

.cid-qvI6ND1ZrS .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
	margin-top: 0;
	position: inherit;
	right: 0;
	top: 50%;
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: .3em;
	vertical-align: middle;
	content: "";
	border-top: .30em solid;
	border-right: .30em solid transparent;
	border-left: .30em solid transparent;
}

@media (max-width: 991px) {
	.cid-qvI6ND1ZrS .navbar-expand {
		flex-direction: column;
	}
	.cid-qvI6ND1ZrS img {
		height: 3.8rem !important;
	}
	.cid-qvI6ND1ZrS .btn {
		display: flex;
	}
	.cid-qvI6ND1ZrS button.navbar-toggler {
		display: block;
	}
	.cid-qvI6ND1ZrS .navbar-brand {
		margin-left: 1rem !important;
	}
	.cid-qvI6ND1ZrS .navbar-toggleable-sm {
		flex-direction: column;
		-webkit-flex-direction: column;
	}
	.cid-qvI6ND1ZrS .navbar-collapse {
		display: none !important;
		padding-right: 0 !important;
	}
	.cid-qvI6ND1ZrS .navbar-collapse.collapsing,
	.cid-qvI6ND1ZrS .navbar-collapse.show {
		display: block !important;
	}
	.cid-qvI6ND1ZrS .navbar-collapse.collapsing .navbar-nav,
	.cid-qvI6ND1ZrS .navbar-collapse.show .navbar-nav {
		display: block;
		text-align: center;
	}
	.cid-qvI6ND1ZrS .navbar-collapse.collapsing .navbar-nav .nav-item,
	.cid-qvI6ND1ZrS .navbar-collapse.show .navbar-nav .nav-item {
		clear: both;
	}
	.cid-qvI6ND1ZrS .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
	.cid-qvI6ND1ZrS .navbar-collapse.show .navbar-nav .nav-item:last-child {
		margin-bottom: 1rem;
	}
	.cid-qvI6ND1ZrS .navbar-collapse.collapsing .navbar-buttons,
	.cid-qvI6ND1ZrS .navbar-collapse.show .navbar-buttons {
		text-align: center;
	}
	.cid-qvI6ND1ZrS .navbar-collapse.collapsing .navbar-buttons:last-child,
	.cid-qvI6ND1ZrS .navbar-collapse.show .navbar-buttons:last-child {
		margin-bottom: 1rem;
	}
	.cid-qvI6ND1ZrS .dropdown .dropdown-menu {
		width: 100%;
		text-align: center;
		position: relative;
		opacity: 0;
		display: block;
		height: 0;
		visibility: hidden;
		padding: 0;
		transition-duration: .5s;
		transition-property: opacity, padding, height;
	}
	.cid-qvI6ND1ZrS .dropdown.open > .dropdown-menu {
		position: relative;
		opacity: 1;
		height: auto;
		padding: 1.4rem 0;
		visibility: visible;
	}
	.cid-qvI6ND1ZrS .dropdown .dropdown-submenu {
		left: 0;
		text-align: center;
		width: 100%;
	}
	.cid-qvI6ND1ZrS .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
		margin-top: 0;
		position: inherit;
		right: 0;
		top: 50%;
		display: inline-block;
		width: 0;
		height: 0;
		margin-left: .3em;
		vertical-align: middle;
		content: "";
		border-top: .30em solid;
		border-right: .30em solid transparent;
		border-left: .30em solid transparent;
	}
}

@media (min-width: 767px) {
	.cid-qvI6ND1ZrS .menu-logo {
		flex-shrink: 0;
	}
}

.cid-qvI06ETAiw {
	background-image: url("../../../assets/images/colors.jpg");
}

.cid-qvI06ETAiw h1 {
	color: #616161;
}

.cid-qvI06ETAiw h2,
.cid-qvI06ETAiw h3,
.cid-qvI06ETAiw p {
	color: #767676;
}

.cid-qvI06ETAiw .mbr-section-subtitle {
	font-style: italic;
}

.cid-qvI06ETAiw H1 {
	text-align: left;
	color: #232323;
}

.cid-qvI06ETAiw P {
	color: #232323;
}

.cid-qvI06ETAiw H3 {
	color: #232323;
}

.cid-qvI64hHl1g {
	background-image: url("../../../assets/images/pes-structure.jpg");
}

.cid-qvI64hHl1g .mbr-section-subtitle {
	letter-spacing: .2rem;
}

.cid-qvI64hHl1g H1 {
	color: #232323;
}

.cid-qvI64hHl1g .mbr-text,
.cid-qvI64hHl1g .mbr-section-btn {
	color: #232323;
}

.cid-qvI2ch3CYq {
	background-image: url("../../../assets/images/waterdrops.jpg");
}

.cid-qvI2ch3CYq h1 {
	color: #616161;
}

.cid-qvI2ch3CYq h2,
.cid-qvI2ch3CYq h3,
.cid-qvI2ch3CYq p {
	color: #767676;
}

.cid-qvI2ch3CYq .mbr-section-subtitle {
	font-style: italic;
}

.cid-qvI2ch3CYq H1 {
	text-align: left;
	color: #232323;
}

.cid-qvI2ch3CYq P {
	color: #232323;
	text-align: left;
}

.cid-qvI2ch3CYq H3 {
	color: #232323;
}

.cid-qvI6FE0qr0 {
	background-image: url("../../../assets/images/rings.jpg");
}

.cid-qvI6FE0qr0 .mbr-section-subtitle {
	letter-spacing: .2rem;
}

.cid-qvI6FE0qr0 H1 {
	color: #232323;
}

.cid-qvI6FE0qr0 .mbr-text,
.cid-qvI6FE0qr0 .mbr-section-btn {
	color: #232323;
}

.cid-qvIc2zwFrY {
	padding-top: 90px;
	padding-bottom: 90px;
	background-color: #ffffff;
}

.cid-qvIc2zwFrY .title {
	margin-bottom: 2rem;
}

.cid-qvIc2zwFrY .mbr-section-subtitle {
	color: #232323;
}

.cid-qvIc2zwFrY a:not([href]):not([tabindex]) {
	color: #fff;
	border-radius: 3px;
}

.cid-qvIc2zwFrY a.btn-white:not([href]):not([tabindex]) {
	color: #333;
}

.cid-qvIc2zwFrY .multi-horizontal {
	flex-grow: 1;
	-webkit-flex-grow: 1;
	max-width: 100%;
}

.cid-qvIc2zwFrY .input-group-btn {
	display: block;
	text-align: center;
}

.cid-qvIc2zwFrY .mbr-section-subtitle B {
	color: #232323;
}

.cid-qvIiQvwAfk {
	background-color: #58646f;
	box-shadow: inset 0 15px 35px -16px rgba(17, 17, 17, 0.53);
}

footer {
	padding: 40px 3%;
}
.cid-qvIiQvwAfk .media-container-row {
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.cid-qvIiQvwAfk .media-container-row .foot-menu {
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 0;
	margin-bottom: 0;
}

.cid-qvIiQvwAfk .media-container-row .foot-menu li {
	padding: 0 1rem 1rem 1rem;
}

.cid-qvIiQvwAfk .media-container-row .foot-menu li p {
	margin: 0;
}

.cid-qvIiQvwAfk .media-container-row .social-list {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
}

.cid-qvIiQvwAfk .media-container-row .social-list .mbr-iconfont-social {
	font-size: 1.5rem;
	color: #ffffff;
}

.cid-qvIiQvwAfk .media-container-row .social-list .soc-item {
	margin: 0 .5rem;
}

.cid-qvIiQvwAfk .media-container-row .social-list a {
	margin: 0;
	opacity: .5;
	-webkit-transition: .2s linear;
	transition: .2s linear;
}

.cid-qvIiQvwAfk .media-container-row .social-list a:hover {
	opacity: 1;
}

@media (max-width: 767px) {
	.cid-qvIiQvwAfk .media-container-row .social-list {
		justify-content: center;
		-webkit-justify-content: center;
	}
}

.cid-qvIiQvwAfk .media-container-row .row-copirayt {
	word-break: break-word;
}
@Josee9988 Josee9988 self-assigned this Mar 3, 2020
@Josee9988 Josee9988 added the bug label Mar 3, 2020
@Josee9988
Copy link
Owner

Hi, @schroef indeed something seems wrong. I will try to check it and fix it asap. Thanks for your patience and stay tuned!

@Josee9988
Copy link
Owner

Hey, @schroef I think I have found the issue. It is actually not a 100% a problem of the extension because it could have been controlled:

/*
/*	OFFICIAL COLORS				*/

/*	Blue = #00acec;		*/

/*	Blue = #00abeb; (RGB)		*/

/*	Yellow = #f5ec4a; (CMYK)		*/

/*	Yellow = #f5ec49; (RGB)		*/

/*	Cold Grey = #59656f; (CMYK)		*/

/*	Cold Grey = #58656e; (RGB)		*/

/*	END OFFICIAL COLORS			*/

In the global comments, you let a /* multiple comment opened and you never close it.
That is the reason why the minifier truncates the text because it searches for a pair closing comment element, and it seems that it finds it at the bottom of the text.

Simply remove this single open multiline comment and it should go smoothly. (there is a new version with a problem fixed, you should download it and then try to minify your code.)

Please let me know if this was the issue.

Thanks for posting out!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants