@font-face {
	font-family: 'Roboto';
	src: url('fonts/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Roboto';
	src: url('fonts/Roboto-Italic-VariableFont_wdth,wght.ttf') format('truetype');
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Ubuntu';
	src: url('fonts/Ubuntu-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Ubuntu';
	src: url('fonts/Ubuntu-Italic.ttf') format('truetype');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Ubuntu';
	src: url('fonts/Ubuntu-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Ubuntu';
	src: url('fonts/Ubuntu-LightItalic.ttf') format('truetype');
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Ubuntu';
	src: url('fonts/Ubuntu-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Ubuntu';
	src: url('fonts/Ubuntu-MediumItalic.ttf') format('truetype');
	font-weight: 500;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Ubuntu';
	src: url('fonts/Ubuntu-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Ubuntu';
	src: url('fonts/Ubuntu-BoldItalic.ttf') format('truetype');
	font-weight: 700;
	font-style: italic;
	font-display: swap;
}

img {
	max-width: 100%;
}

h1 {
	margin: 0;
}


.vertical-align {
	display: flex;
	align-items: center;
}

.lightgray {
	color: #616566;
}

.green {
	color: #b7bd00;
}

.gray {
	color: #D8D3D3;
}

html {
	height: 100%;
	min-width: 450px;
}

body {
	-webkit-font-smoothing: antialiased;
	background: url('back.jpg') no-repeat center center;
	background-size: cover;
}

body>header {
	background-color: #FFFFFF;
	border-bottom: 1px solid #D8D3D3;
}

body>header img {
	max-height: 80px;
	padding: 10px 0;
}

body>footer {
	background-color: rgba(255, 255, 255, 0.8);
	width: 100%;
	padding-bottom: 15px;
}

body>header h1 {
	padding: 0;
	margin: 0;
	font-size: 28px;
	font-weight: 100;
}

.bubbles-container {
	box-shadow: inset 0 0 44px rgba(0, 0, 0, 0.1);
}

.form-container {
	background-color: rgba(255, 255, 255, 1);
	padding: 34px 20px 20px 20px;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
}

form>ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-flow: row wrap;
}

form>ul>li {
	margin-bottom: 24px;
	flex: 1 100%;
}

form>ul>li:nth-of-type(5),
form>ul>li:nth-of-type(6),
form>ul>li:nth-of-type(7),
form>ul>li:nth-of-type(8) {
	flex: 1 calc(50% - 20px);
	margin: 0 0 24px 10px;
}

form>ul>li:nth-of-type(5),
form>ul>li:nth-of-type(7) {
	flex: 1 calc(50% - 20px);
	margin: 0 10px 24px 0;
}

form label {
	letter-spacing: 0.5px;
	margin-bottom: 8px;
	display: flex;
	justify-content: space-between;
	font-weight: 500;
	font-size: 14px;
	font-family: 'roboto', sans-serif;
}

input[type="text"],
form input[type="email"],
form input[type="number"],
form input[type="password"],
form input[type="tel"],
form input[type="date"],
form input[type="month"],
form textarea,
form select {
	border: 1px solid #D8D9DA;
	background-color: #f6f9fc;
	border-radius: 4px;
	padding: 8px 8px;
	font-size: 15px;
	width: 100%;
	height: 36px;
	transition: border 0.2s linear, box-shadow 0.2s linear;
}

form textarea {
	height: 120px;
}


form .button {
	border: none;
	font-size: 16px;
	margin: 0 0 24px 0;
	cursor: pointer;
	padding: 8px 20px;
	border-radius: 30px;
	text-align: center;
	color: white;
	background-color: #6d568e;
	font-weight: 500;
}

.form-action {
	text-align: right;
}

.bubbles {
	position: relative;
	min-height: 675px;
	margin-left: -65px;
	z-index: 999;
}


.bubble {
	background-color: rgba(255, 255, 255, 1);
	border-radius: 50%;
	display: inline-block;
	width: 450px;
	height: 450px;
	overflow: hidden;
	position: absolute;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
	font-family: 'roboto', sans-serif;
}

.panel-default {
	background-color: rgba(255, 255, 255, 0.6);
	border-radius: 5px;
	margin-top: 25px;
}

.panel-default .panel-title {
	font-size: 25px;
	text-transform: uppercase;
}

.bubble .arc {
	overflow: hidden;
	position: absolute;
	top: 15px;
	right: 50%;
	bottom: 50%;
	left: 15px;
	transform-origin: 100% 100%;
	transform: rotate(241deg) skewX(30deg);
}

.bubble .arc:before {
	box-sizing: border-box;
	display: block;
	border: solid 2px #A2C31E;
	width: 200%;
	height: 200%;
	border-radius: 50%;
	transform: skewX(-30deg);
	content: '';
}

.bubble .arc.secondary {
	overflow: hidden;
	position: absolute;
	top: 15px;
	right: 50%;
	bottom: 50%;
	left: 15px;
	transform-origin: 100% 100%;
	transform: rotate(200deg) skewX(30deg);
}


.bubble:nth-child(1),
.bubble:nth-child(3) {
	top: 200px;
	width: 475px;
	height: 475px;
}

.bubble:nth-child(1) {
	z-index: 999;
}

.bubble:nth-child(2) {
	left: 415px;
	top: 60px;
	z-index: 998;
}

.bubble:nth-child(3) {
	left: 800px;
	top: 200px;
}

.bubble header,
.bubble section {
	width: 80%;
	margin: 0 auto;
}

.bubble header {
	margin-top: 70px;
	height: 95px;
}

.bubble header img {
	max-width: 65%;
	display: block;
	margin: 0 auto;
	margin-bottom: 12px;
}

.bubble header h3 {
	font-size: 14px;
	width: 90%;
	margin: 0 auto;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.bubble header h3 strong {
	display: block;
	text-transform: none;
	font-style: italic;
	font-size: 10px;
	font-weight: normal;
	margin-top: 2px;
}

.bubble section {
	vertical-align: top;
	height: 250px;
	position: relative;
}

.bubble section .line-separator {
	width: 20%;
	height: 100%;
	display: inline-block;
	position: absolute;
	top: 13px;
	left: 0px;
	-webkit-backface-visibility: hidden;
}

.bubble section dl {
	display: inline-block;
	text-align: left;
	margin-left: 20%;
	/*border-left: 2px solid #A2C31E;*/
	padding-left: 15px;
	height: 250px;
}

.bubble section .side-line {
	display: block;
	border-right: 2px solid #A2C31E;
	height: 136px;
	position: relative;
	margin-bottom: 14px;
}

.bubble section .side-line:first-of-type {
	height: 100px;
}

.bubble section .triangle {
	display: block;
	height: 12px;
	width: 12px;
	position: absolute;
	right: -5px;
	top: 100px;
	transform: rotate(45deg);
	transform-origin: center center;
	border-left: 2px solid #A2C31E;
	border-bottom: 2px solid #A2C31E;
}

.bubble section .label {
	position: absolute;
	top: 94px;
	color: #5F6364;
	font-weight: bold;
	right: 5px;
	font-size: 14px;
}

.bubble:nth-child(2) section,
.bubble:nth-child(2) section dl,
.bubble:nth-child(2) .line-separator {
	height: 228px;
}

.bubble:nth-child(2) .line-separator .side-line {
	height: 152px;
}

.bubble:nth-child(2) .line-separator .side-line:first-of-type {
	height: 60px;
}

.bubble:nth-child(2) .line-separator .triangle {
	top: 60px;
}

.bubble:nth-child(2) section .label {
	top: 55px;
}

.bubble section .line-separator.multiple .side-line {
	height: 95px;
}

.bubble section .line-separator.multiple .side-line:first-of-type {
	height: 40px;
}

.bubble section .line-separator.multiple .side-line.last {
	height: 86px;
}

.bubble section .line-separator.multiple .triangle {
	top: 150px;
}

.bubble section .line-separator.multiple .triangle.first {
	top: 40px;
}

.bubble section .line-separator.multiple .label.first {
	top: 35px;
}

.bubble section .line-separator.multiple .label.current {
	top: 145px;
	color: #A2C31E;
}

.bubble:nth-child(2) section dl.alone dd {
	margin-top: 60px;
}

.bubble:nth-child(1) section dl.middle dd:first-of-type {
	margin-top: 60px;
}

.bubble section dl dd {
	margin-top: 12px;
}

.bubble section dl {
	margin-left: 8%;
}

.bubble:nth-child(2) section dl {
	margin-left: 12%;
}

.bubble .flip-counter.small {
	list-style: none outside none;
	left: 0;
	display: block;
	padding-left: 0;
}

.bubble .flip-counter li {
	display: inline-block;
	float: none;
}

.bubble .flip-counter li:nth-child(3),
.bubble .flip-counter li:nth-child(6) {
	margin-right: 12px;
}

.numCounter {
	height: 32px;
	line-height: 32px;
	color: #F1F1F1;
	font-weight: bold;
	white-space: normal;
	font-size: 18px;
}

.numCounter>span {
	display: inline-block;
	width: 20px;
	height: 100%;
	border-radius: 2px;
	text-align: center;
	overflow: hidden;
	background-color: #5F6364;
	height: 32px;
}

.numCounter>span:before {
	content: ' 0 1 2 3 4 5 6 7 8 9 0 ';
	display: block;
	word-break: break-all;
	word-break: break-word;
	-webkit-transition: 0.4s cubic-bezier(0.12, 0.78, 0.52, 1.2);
	transition: 0.4s cubic-bezier(0.12, 0.78, 0.52, 1.2);
}

.numCounter>span.d1:before {
	/*margin-top: -32px;*/
	transform: translateY(-32px);
}

.numCounter>span.d2:before {
	transform: translateY(-64px);
}

.numCounter>span.d3:before {
	transform: translateY(-96px);
}

.numCounter>span.d4:before {
	transform: translateY(-128px);
}

.numCounter>span.d5:before {
	transform: translateY(-160px);
}

.numCounter>span.d6:before {
	transform: translateY(-192px);
}

.numCounter>span.d7:before {
	transform: translateY(-224px);
}

.numCounter>span.d8:before {
	transform: translateY(-256px);
}

.numCounter>span.d9:before {
	transform: translateY(-288px);
}

.numCounter>span.d0:before {
	transition: none;
}

/*.numCounter > span {
  display: inline-block;
  font-size: 1.1em;
  opacity: 0.4;
  line-height: 1.8;
  padding: 0;
  vertical-align: top;
  text-shadow: none;
}*/


/*.bubble section dl dd span{
	background-color: #5F6364;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: bold;
	border-radius: 3px;
	line-height: 32px;
	width: 20px;
	height: 35px;
	display: inline-block;
	text-align: center;
}*/
.bubble section dl dd span:nth-child(3),
.bubble section dl dd span:nth-child(6) {
	margin-right: 12px;
}

.bubble section dl dd span.void {
	color: #5F6364;
}

.bubble section dl dd.current span {
	background-color: #A2C31E;
	color: #333333;
}

.bubble section dl dd.current span.void {
	color: #A2C31E;
}

.bubble section dl dt {
	font-weight: 100;
	height: 40px;
	width: 250px;
}

.custom-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.5);
}

/* Modal Content/Box */
.custom-modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 30px 20px;
	border: 1px solid #888;
	max-width: 1170px;
	width: 100%;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
	position: relative;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	position: relative;
}

.close-modal {
	color: #616566;
	font-size: 32px;
	font-weight: normal;
	margin-left: auto;
	text-align: center;
}

.close-modal:hover,
.close-modal:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

h2 {
	color: #6d568e;
	font-family: 'Ubuntu', sans-serif;
	display: flex;
	align-items: center;
	margin: 0 0 25px 0;
	padding-bottom: 10px;
}

h2 img {
	margin-right: 12px;
}

.gutter-top-big {
	margin-top: 40px;
}

.gutter-bottom-big {
	margin-bottom: 40px;
}

h3 {
	color: #818181;
	font-size: 17px;
	font-family: 'Ubuntu', sans-serif;
	margin: 0 0 20px 0;
}

.block img {
	margin: 20px 0 10px 0;
}

.block ul,
.intro ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 14px;

}

.intro ul {
	font-size: 16px;
}

.block ul li,
.intro ul li {
	margin-bottom: 4px;
}

.parent {
	position: relative;
	padding-bottom: 78px;
	box-shadow: 0 0 44px rgba(0, 0, 0, 0.1);
	z-index: 9;
}


.parent-footer {
	background-color: #61656A;
	color: white;
	text-align: center;
	font-size: 20px;
	font-family: 'ubuntu', sans-serif;
	padding: 30px 0;
}


.products {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}

.products>div {
	flex: 1 1 0;
	margin: 15px 14px 30px 14px;
}

.products>div:first-child {
	margin-left: 0;
}

.products>div:last-child {
	margin-right: 0;
}

.products>div>p {
	padding-top: 25px;
	font-size: 13px;
	color: #666;
	font-family: 'Ubuntu', sans-serif;
}

.product {
	background-color: #002F87;
	color: white;
	border-radius: 5px 5px 5px 5px;
	padding: 15px;
	align-items: center;
	justify-content: center;
	text-align: center;
	display: flex;
	height: 50px;
	font-size: 16px;
	font-family: 'Josefin Sans', sans-serif;
	letter-spacing: 0.60px;
	position: relative;
	box-shadow: 1px 10px 10px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	border: 1px solid white;
}

.product-long {
	font-size: 13px;
}

.product a,
.product-long a {
	color: white;
}

.azstyle {
	background-color: #5D407B;
}

.triangleb {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 14px 14px 0;
	border-color: transparent #5b87da transparent transparent;
	position: absolute;
	right: 0;
	top: 0;
}

.azstyle .triangleb {
	border-color: transparent #b5a300 transparent transparent;
}



.band {
	margin-top: -5px;
	background-color: #616566;
	color: #FFFFFF;
}

.band img {
	height: 48px;
	margin-top: -3px;
}

.band p {
	margin-top: 10px;
	font-size: 20px;
	line-height: 50px;
}

.bottom-band {
	display: flex;
	align-items: center;
	max-width: 1024px;
	margin: 8px auto;
	gap: 16px;
	justify-content: center;
}

.bottom-band a {
	color: #b5a300;
}


.rounded-button {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: bold;
	color: #606060;
	text-transform: uppercase;
	margin: 12px 0;
	cursor: pointer;
}

.rounded-button:hover {
	color: #606060;
}

.rounded-button>img {
	padding: 0;
	margin-bottom: 8px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
	border-radius: 50px;
}

.sidenav {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 999999;
	top: 0;
	left: 0;
	background-color: #fff;
	overflow-x: hidden;
	transition: 0.5s;
}

.sidenav li {
	border-bottom: 1px solid #818181;
	padding: 15px 15px 15px 32px;
	text-decoration: none;
	font-size: 18px;
	color: #818181;
	display: block;
	transition: 0.3s;
	text-transform: uppercase;
	display: flex;
	align-items: center;
}

.sidenav li img {
	margin-right: 12px;
}

.sidenav a:hover {
	color: #f1f1f1;
}

.sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 36px;
	margin-left: 50px;
	color: white;
}

.sidenav header {
	background-color: #354393;
	height: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#menu-button {
	border: none;
	position: absolute;
	color: #354393;
	font-size: 30px;
	background: none;
	left: 26px;
	top: 20px;
}

body>header {
	text-align: center;
	border-bottom: 1px solid #D8D3D3;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 9999;
}

body>main {
	padding-top: 97px;
}

.anchor {
	display: block;
	position: relative;
	top: -140px;
	visibility: hidden;
}

.errorlist {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.errorlist li {
	background-color: #f2dede;
	border-color: #eed3d7;
	color: #b94a48;
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid transparent;
	border-radius: 4px;
}

.article {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.article>div {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.article>div>h2 {
	margin-bottom: 8px;
	padding: 0;
}

.paragraph {
	display: flex;
	flex-direction: column;
	gap: 8px;

}

.paragraph p {
	margin: 0;

}

.paragraph>ul {
	margin-left: 32px;
}

/* Start Generation Here */
.paragraph table {
	width: 100%;
	border-collapse: collapse;
	margin: 16px 0;
	font-size: 14px;
	font-family: 'Roboto', sans-serif;
}

.paragraph table th,
.paragraph table td {
	border: 1px solid #D8D9DA;
	padding: 12px 8px;
	text-align: left;
	vertical-align: top;
}

.paragraph table th {
	background-color: #f6f9fc;
	font-weight: 500;
	color: #616566;
}

.paragraph table td {
	background-color: #FFFFFF;
}

.paragraph table tbody tr:nth-child(even) td {
	background-color: #fafbfc;
}

/* End Generation Here */


@media (max-width: 1140px) {
	body {
		background-image: none;
		background-color: rgba(95, 99, 100, 0.2);
	}

	body>header {
		text-align: center;
	}

	.bubbles {
		text-align: center;
		margin: 0;
	}

	.bubble,
	.bubble:nth-child(1),
	.bubble:nth-child(2),
	.bubble:nth-child(3) {
		display: block;
		position: relative;
		margin: 15px auto;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
	}

	/*.bubble .arc{
		display: none;
	}*/
}

#loader {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	background-color: #FFFFFF;
}

#loader img {
	width: 256px;
}

#loader section {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}


.small-text {
	font-size: 12px;
	color: grey;
}



@media (max-width: 500px) {
	.bubbles .bubble {
		width: 100%;
		border-radius: 15px;
	}

	.bubbles .bubble header {
		margin-top: 25px;
	}

	.bubbles .bubble .arc {
		display: none;
	}

	.bubbles .bubble section dl {
		margin-left: 45px;
	}

	.bubble:nth-child(1),
	.bubble:nth-child(3) {
		height: 420px;
	}

	.bubble:nth-child(2) {
		height: 380px;
	}

	.vertical-align {
		flex-direction: column;
	}

	body>header h1 {
		margin: 8px;
	}

	.products>div {
		margin: 10px;
		width: 100%;
		flex: none;
	}

	.custom-modal {
		padding: 12px
	}

	form>ul>li:nth-of-type(5),
	form>ul>li:nth-of-type(6),
	form>ul>li:nth-of-type(7),
	form>ul>li:nth-of-type(8) {
		flex: 1 100%;
		margin: 0 0 24px 0;
	}

}

@media screen and (max-height: 450px) {
	.sidenav {
		padding-top: 15px;
	}

	.sidenav a {
		font-size: 18px;
	}
}