
/*
Table Of Contents
 
 1.)  Typography
 2.)  Default Styles
 3.)  Header
 4.)  Content - Main
 5.)  Footer

========================================*/


/*
 1.) Typography
----------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,400;1,700;1,900&amp;display=swap'); /* font-family: "Lato", sans-serif; */

/*
 2.) Default Styles
----------------------------------------*/
* {
	margin: 0;
	padding: 0;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* render html5 elements as block */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
	display: block;
}

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

*, 
*:before, 
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

sub, 
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
	font-size: 20px;
}

sub {
	bottom: -0.25em;
}

img {
	width: auto;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
	border: 0;
	-ms-interpolation-mode: bicubic;
	line-height: .5em;
}


/*  Custom animations */
@-webkit-keyframes reveal {
 0% {
 opacity: 0;
}

1% {
 opacity: 0;
 -webkit-transform: scale(0.98) translateY(-15px);
}

80% {
 -webkit-transform: scale(1);
}

100% {
 -webkit-transform: translateY(0);
}
}

@-moz-keyframes reveal {
 0% {
 opacity: 0;
}

1% {
 opacity: 0;
 -moz-transform: scale(0.98) translateY(-15px);
}

80% {
 -moz-transform: scale(1);
}

100% {
 -moz-transform: translateY(0);
}
}


/*= Body 
=======================================================*/
body {
	font-family: "Lato", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 20px;
	color: #121416; 
	line-height: 32px; 
	background: #055DA0;
}

@media only screen and (max-width: 1199px) {
body {
	font-size: 18px; 
	line-height: 30px;
}
}

@media only screen and (max-width: 767px) {
body {
	font-size: 16px; 
	line-height: 26px;
}
}


/*= Links 
=======================================================*/
a { 
	color: #3194E9;
	text-decoration: none;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	outline: 0;
	cursor: pointer;
}

a:focus, 
a:active, 
a:hover {
	color: #F22E06;
	text-decoration: underline;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	outline: 0;
}

a:visited {
	outline: 0;
	text-decoration: none;
}


/*= Heading H1, H2, H3, H4, H5, H6, P 
=======================================================*/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-weight: 900; 
	position: relative; 
	padding: 0 0 16px 0; 
}

h1,
.h1,
h2,
.h2 {
	font-size: 48px; 
	line-height: 64px;
}

h3,
.h3 {
	font-size: 32px; 
	line-height: 40px;
}

h4,
.h4 {
	font-size: 24px;
	line-height: 32px;
}

h5,
.h5,
h6,
.h6 {
	font-size: 20px;
	line-height: 28px;
}

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
	font-weight: inherit;
	font-style: inherit;
	color: inherit; 
	text-decoration: inherit;
}

h1 a:hover,
.h1 a:hover,
h2 a:hover,
.h2 a:hover,
h3 a:hover,
.h3 a:hover,
h4 a:hover,
.h4 a:hover,
h5 a:hover,
.h5 a:hover,
h6 a:hover,
.h6 a:hover {
	color: #F22E06;
}

h1:last-child,
.h1:last-child,
h2:last-child,
.h2:last-child,
h3:last-child,
.h3:last-child,
h4:last-child,
.h4:last-child,
h5:last-child,
.h5:last-child,
h6:last-child,
.h6:last-child {
	padding-bottom: 0;
}

p {
	padding-bottom: 32px;
}

p:last-child {
	padding-bottom: 0;
}

em {
	font-style: italic; 
}

em.fal,
em.far,
em.fas,
em.fab {
	font-style: normal; 
}

b, 
strong {
	font-weight: 700;
}

.bold {
	font-weight: 700; 
}

.underline {
	text-decoration: underline;
}

.uppercase {
	text-transform: uppercase;
}

.center {
	text-align: center;
}

@media only screen and (max-width: 1199px) {
h1,
.h1 {
	font-size: 42px; 
	line-height: 52px;
}

h2,
.h2 {
	font-size: 30px; 
	line-height: 38px;
}

p {
	padding-bottom: 24px;
}
}

@media only screen and (max-width: 767px) {
h1,
.h1,
h2,
.h2 {
	font-size: 36px; 
	line-height: 46px;
}

h3,
.h3 {
	font-size: 28px; 
	line-height: 36px;
}

h4,
.h4 {
	font-size: 22px;
	line-height: 30px;
}

p {
	padding-bottom: 16px;
}
}


/*= Unorder List 
=======================================================*/

ul,
ol {
	list-style: none;
}

li { 
	position: relative; 
	padding-bottom: 32px; 
	padding-left: 48px;
}

li:last-child {
	padding-bottom: 32px;
}

ul li ul,
ol li ol {
	padding-top: 16px;
	padding-left: 24px;
}

ul:last-child li:last-child,
ol:last-child li:last-child {
	padding-bottom: 0;
}

ul:last-child li:last-child ul,
ol:last-child li:last-child ol {
	padding-bottom: 0;
}

ul li:before {
	content: ""; 
	width: 32px; 
	height: 32px; 
	float: left; 
	background:  url(../svg/bullet-check.svg) no-repeat center center; 
	background-size: 32px auto;
	position: absolute;
	top: -1px;
	left: 0;
}

ul li.times:before { 
	background-image: url(../svg/bullet-close.svg);
}

ul li ul li {
	padding-left: 24px;
}

ul li ul li:before { 
	content: "";
	width: 8px;
	height: 8px;
	background: #525456;
	border-radius: 360px;
	top: 14px;
}

@media only screen and (max-width: 1199px) {
li { 
	padding-bottom: 24px; 
	padding-left: 44px;
}

li:last-child {
	padding-bottom: 28px;
}

ul li ul,
ol li ol {
	padding-top: 16px;
	padding-left: 24px;
}

ul li:before {
	width: 28px; 
	height: 28px; 
	background-size: 28px auto;
	top: 3px;
}

ul li ul li {
	padding-left: 24px;
}

ul li ul li:before { 
	width: 8px;
	height: 8px;
	top: 12px;
}
}

@media only screen and (max-width: 767px) {
li { 
	padding-bottom: 16px; 
	padding-left: 36px;
}

li:last-child {
	padding-bottom: 24px;
}

ul li ul,
ol li ol {
	padding-top: 16px;
	padding-left: 24px;
}

ul li:before {
	width: 24px; 
	height: 24px; 
	background-size: 24px auto;
	top: 3px;
}

ul li ul li {
	padding-left: 18px;
}

ul li ul li:before { 
	width: 6px;
	height: 6px;
	top: 12px;
}
}


/*= Order List 
=======================================================*/
ol {
	counter-reset: item;
}

ol > li {
	counter-increment: item;
	padding-left: 32px;
}

ol > li:before {
	content: counter(item)".";
	font-weight: 700;
	color: #525456;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
}


/* #Input
================================================= */

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

select,
textarea,
input {
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
	-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s;
}

label {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align:top;
	font-family: "Lato", sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #323436;
	line-height: 26px;
	letter-spacing: normal;
	padding: 0 0 10px 0;
	margin: 0;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	width: 100%;
	height: 60px;
	font-family: "Lato", sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #323436;
	line-height: 26px;
	letter-spacing: normal;
	white-space: nowrap;
	text-overflow: ellipsis;
	background: #ffffff;
	box-shadow: none;
	border: 1px solid #c8c8c8;
	border-radius: 6px;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	overflow: hidden;
	position: relative;
	padding: 15px 24px;
	margin: 0;
}

textarea {
	height: 210px;
	white-space: normal;
	outline: none;
	resize: none;
	padding-top: 15px;
	padding-bottom: 15px;
}

::-webkit-input-placeholder,
::-webkit-textarea-placeholder {
	color: #080707;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	color: #080707;
}

::-moz-placeholder {
	color: #080707;
}

::-ms-input-placeholder {
	color: #080707;
}

select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
	outline: 0;
	border-color: #055DA0;
}

@media only screen and (max-width: 1199px) {
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	height: 54px;
}

textarea {
	height: 190px;
}
}


/* #Buttons
================================================== */
.btn,
.button,
input[type="button"],
input[type="submit"] {
	width: auto;
	height: auto;
	float: none;
	display: inline-block;
	vertical-align: middle;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-size: 24px;
	color: #ffffff;
	line-height: 32px;
	letter-spacing: normal;
	text-align: center;
	text-transform: none;
	text-decoration: none;
	white-space: normal;
	background: linear-gradient(180deg, #F22E06 0%, #CE2206 100%);
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	border: none;
	overflow: hidden;
	position: relative;
	z-index: 1;
	cursor: pointer;
	outline: 0;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	padding: 24px 32px;
	margin: 0;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn.active,
.btn.active:focus,
.button:hover,
.button:focus,
.button:active,
.button:active:focus,
.button.active,
.button.active:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="button"]:active:focus,
input[type="button"].active,
input[type="button"].active:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="submit"]:active:focus,
input[type="submit"].active,
input[type="submit"].active:focus
.btn:not(:disabled):not(.disabled).active,
.button:not(:disabled):not(.disabled):active {
	color: #ffffff;
	text-decoration: none;
	background: linear-gradient(180deg, #CE2206 0%, #F22E06 100%);
	outline: 0;
}


.btn-blue {
	background: linear-gradient(180deg, #3194E9 0%, #257CC7 100%);
}

.btn-blue:hover,
.btn-blue:focus,
.btn-blue:active,
.btn-blue:active:focus,
.btn-blue.active,
.btn-blue.active:focus,
input[type="button"].btn-blue:hover,
input[type="button"].btn-blue:focus,
input[type="button"].btn-blue:active,
input[type="button"].btn-blue:active:focus,
input[type="button"].btn-blue.active,
input[type="button"].btn-blue.active:focus,
input[type="submit"].btn-blue:hover,
input[type="submit"].btn-blue:focus,
input[type="submit"].btn-blue:active,
input[type="submit"].btn-blue:active:focus,
input[type="submit"].btn-blue.active,
input[type="submit"].btn-blue.active:focus {
	background: linear-gradient(180deg, #257CC7 0%, #3194E9 100%);
}

.disabled {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	opacity: .65;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
	opacity: .65;
}

a.btn.disabled,
fieldset[disabled] a.btn {
	pointer-events: none;
}

.btn-out {
    float: none;
    display: inline-block;
    vertical-align: top;
    margin: 16px -10px -16px -10px;
}

.btn-out a {
    margin: 0 10px 16px 10px;
}

@media only screen and (max-width: 1199px) {
.btn,
.button,
input[type="button"],
input[type="submit"] {
	font-size: 22px;
	padding: 20px 32px;
}
}

@media only screen and (max-width: 767px) {
.btn,
.button,
input[type="button"],
input[type="submit"] {
	font-size: 20px;
	line-height: 30px;
	padding: 16px 24px;
}
}


/*= Container - Main
=======================================================*/
#container-main {
	width: 100%;
	float: left; 
	background: #ffffff; 
	overflow: hidden;
	position: relative; 
}

.container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

@media only screen and (max-width: 767px) {
.container {
	max-width: 550px;
	padding: 0 25px;
}
}


/* Social - Links */
.social-links {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.social-links ul {
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0 -5px -10px -5px;
}

.social-links ul li {
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0 5px 10px 5px;
	margin: 0;
}

.social-links ul li:before {
	display: none;
}

.social-links ul li a {
	font-size: 24px;
	color: #121416;
	line-height: 32px;
	text-align: center;
	text-decoration: none;
	border-radius: 360px;
}

.social-links ul li a span {
	display: none;
}

.social-links ul li a:hover,
.social-links ul li.active a {
	color: #F22E06;
}


/* Bottom - Btns */
.bottom-btns {
	width: 100%;
	text-align: center;
	overflow: hidden;
}

.bottom-btns h3,
.bottom-btns .h3 {
	padding-bottom: 32px;
}

.bottom-btns h3:last-child,
.bottom-btns .h3:last-child {
	padding-bottom: 0;
}

.bottom-btns .btn {
	min-width: 360px;
}

@media only screen and (max-width: 1199px) {
.bottom-btns h3,
.bottom-btns .h3 {
	padding-bottom: 24px;
}

.bottom-btns .btn {
	min-width: 300px;
}
}

@media only screen and (max-width: 767px) {
.bottom-btns .btn {
	width: 100%;
	min-width: inherit; 
	max-width: 300px;
	margin: 0 0 16px 0;
}

.bottom-btns .btn-out {
	width: 100%;
	margin: 0 0 -16px 0;
}
}


/* Heading - Txt */
.heading-txt {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	padding: 0 0 56px 0;
}

.heading-txt:last-child {
	padding-bottom: 0;
}

.heading-txt .aside {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

@media only screen and (max-width: 1199px) {
.heading-txt {
	padding: 0 0 48px 0;
}
}

@media only screen and (max-width: 767px) {
.heading-txt {
	padding: 0 0 32px 0;
}
}


/*
 3.) Header Main
----------------------------------------*/

#header-main {
	width: 100%;
	height: 80px;
	float: none;
	display: inline-block;
	vertical-align: top;
	background: #FFFFFF;
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
}

#header-main .logo {
	float: left;
	height: 80px;
	line-height: 80px;
}

#header-main .logo img {
	max-height: 32px;
	vertical-align: middle;
}


/*
 4.) Content Main
----------------------------------------*/
#content-main {
	width: 100%;
	float: left;
}


/* Row - Cont */
.row-cont-top {
	width: 100%;
	background: url(../svg/header-bg-3.svg) no-repeat top right;
	background-size: 49% auto;
	overflow: hidden;
	padding: 180px 0 120px 0;
}

@media only screen and (min-width: 1920px) {
.row-cont-top {
	background-size: 848px auto;
}
}

@media only screen and (max-width: 1199px) {
.row-cont-top {
	padding: 160px 0 90px 0;
}
}

@media only screen and (max-width: 767px) {
.row-cont-top {
	background-size: 240px auto;
	padding: 170px 0 70px 0;
}
}


/* Banner */
.banner-main {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 120px;
}

.banner-main:last-child {
	margin-bottom: 0;
}

.banner-main .figure {
	width: 100%;
	float: left;
	text-align: center;
	box-shadow: 0px 2.12903px 17.0323px rgba(0, 0, 0, 0.2);
	border-radius: 12px;
}

.banner-main .figure img {
	width: 100%;
}

.banner-main .figure video {
	width: 100%;
	float: left;
	text-align: center;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}

.banner-main .aside {
	width: 100%;
	float: left;
	padding-bottom: 48px;
}

.banner-main .aside:last-child {
	padding-bottom: 0;
}

.banner-main .aside h1,
.banner-main .aside .h1 {
	padding-bottom: 32px;
}

.banner-main .aside h1:last-child,
.banner-main .aside .h1:last-child {
	padding-bottom: 0;
}

.banner-main .aside p {
	color: #525456;
}

.banner-main .aside ul {
	padding-bottom: 32px;
}

.banner-main .aside ul:last-child {
	padding-bottom: 0;
}

.banner-main .aside ul li {
	color: #323436;
	padding-bottom: 16px;
}

.banner-main .aside ul li:last-child {
	padding-bottom: 0;
}

.banner-main .aside .btn {
	font-size: 20px;
	line-height: 32px;
	padding: 16px 16px;
}

@media only screen and (min-width: 768px) {
.banner-main .figure {
	width: 46.6667%;
	margin-top: 48px;
}

.banner-main .aside {
	width: 53.3333%;
	padding-bottom: 0;
	padding-right: 64px;
}
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
.banner-main .aside {
	padding-right: 48px;
}
}

@media only screen and (max-width: 1199px) {
.banner-main {
	margin-bottom: 90px;
}

.banner-main .aside h1,
.banner-main .aside .h1 {
	padding-bottom: 24px;
}

.banner-main .aside ul {
	padding-bottom: 24px;
}

.banner-main .aside .btn {
	min-width: 280px;
	font-size: 18px;
	line-height: 24px;
	padding: 16px 24px;
}
}

@media only screen and (max-width: 767px) {
.banner-main {
	margin-bottom: 70px;
}

.banner-main .aside h1,
.banner-main .aside .h1 {
	padding-bottom: 16px;
}

.banner-main .aside ul {
	padding-bottom: 16px;
}

.banner-main .aside .btn-out { 
	text-align: center;
}

.banner-main .aside .btn {
	min-width: 250px;
	font-size: 16px;
}
}


/* Testimonials - Box */
.testimonials-box {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 120px;
}

.testimonials-box:last-child {
	margin-bottom: 0;
}

.testimonials-box .article {
	width: 100%;
	padding: 0 0 24px 0;
}

.testimonials-box .article-out {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 0 -24px 0;
}

.testimonials-box .article .box {
	width: 100%;
	height: 100%;
	float: left;
	font-weight: inherit;
	text-decoration: none;
	background: #F2F4F6;
	border-radius: 12px;
	padding: 32px 32px;
}

.testimonials-box .article .box .txt-row {
	width: 100%;
	float: left;
	margin-bottom: 24px;
}

.testimonials-box .article .box .txt-row:last-child {
	margin-bottom: 0;
}

.testimonials-box .article .box .author-txt {
	width: 100%;
	float: left;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
}

.testimonials-box .article .box .author-txt .figure {
	width: 72px;
	text-align: center;
	border-radius: 100%;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	position: relative;
	z-index: 1;
	margin-right: -72px;
}

.testimonials-box .article .box .author-txt .figure img {
	width: 100%;
	border-radius: 100%;
}

.testimonials-box .article .box .author-txt .aside {
	width: 100%;
	padding: 0 0 0 88px;
}

.testimonials-box .article .box .author-txt .aside .name {
	font-weight: 700;
	line-height: 24px;
	padding-bottom: 4px;
}

.testimonials-box .article .box .author-txt .aside .name:last-child {
	padding-bottom: 0;
}

.testimonials-box .article .box .author-txt .aside .position {
	font-size: 14px;
	line-height: 20px;
}

@media only screen and (min-width: 768px) {
.testimonials-box .article {
	width: 33.33%;
	padding: 0 16px 32px 16px;
}

.testimonials-box .article-out {
	margin: 0 -16px -32px -16px;
}
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
.testimonials-box .article {
	padding: 0 8px 16px 8px;
}

.testimonials-box .article-out {
	margin: 0 -8px -16px -8px;
}

.testimonials-box .article .box .author-txt .figure { 
	margin: 0 0 16px 0;
}

.testimonials-box .article .box .author-txt .aside {
	padding: 0;
}
}

@media only screen and (max-width: 1199px) {
.testimonials-box {
	margin-bottom: 90px;
}

.testimonials-box .article .box {
	padding: 24px 24px;
}
}

@media only screen and (max-width: 991px) {
.testimonials-box .article .box {
	padding: 24px 16px;
}
}

@media only screen and (max-width: 767px) {
.testimonials-box {
	margin-bottom: 70px;
}

.testimonials-box .article .box {
	padding: 24px 24px;
}
}


/* Articles - List */
.articles-list {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	color: #ffffff;
	margin-bottom: 32px;
}

.articles-list:last-child {
	margin-bottom: 0;
}

.articles-list h2,
.articles-list .h2 {
	text-align: center;
	padding-bottom: 64px;
}

.articles-list .article {
	width: 100%;
	padding: 0 0 24px 0;
}

.articles-list .article .box {
	width: 100%;
	height: 100%;
	float: left;
	font-weight: inherit;
	text-decoration: none;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 12px;
	border-radius: 12px;
	padding: 32px 32px;
}

.articles-list .article .box .figure {
	width: 100%;
	text-align: center;
	box-shadow: 0px 2.12903px 17.0323px rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.articles-list .article .box .figure video {
	width: 100%;
	float: left;
	text-align: center;
	overflow: hidden;
	position: relative;
}

.articles-list .article .box .aside {
	width: 100%;
	float: left;
	margin-bottom: 24px;
}

.articles-list .article .box .aside:last-child {
	margin-bottom: 0;
}

.articles-list .article .box .top-icons {
	width: 100%;
	float: left;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	padding-bottom: 16px;
	margin-bottom: -16px;
}

.articles-list .article .box .top-icons .icon {
	width: 75%;
}

.articles-list .article .box .top-icons .icon img {
	max-height: 40px;
}

.articles-list .article .box .top-icons .icon a {
	float: left;
	margin: 0 16px 16px 0;
}

.articles-list .article .box .top-icons .bullets {
	width: 25%;
	text-align: right;
}

.articles-list .article .box .top-icons .bullets img {
	max-height: 40px;
}

.articles-list .article .box .top-icons .bullets .close {
	display: none;
}

.articles-list .article.icon-close .box {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), #D24930;
}

.articles-list .article.icon-close .box .top-icons .bullets .check {
	display: none;
}

.articles-list .article.icon-close .box .top-icons .bullets .close {
	display: block;
}

.articles-list .article-out {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-bottom: 80px;
	margin: 0 0 -24px 0;
}

.articles-list .article-out:last-child {
	padding-bottom: 0;
}

@media only screen and (min-width: 768px) {
.articles-list .article {
	width: 50%;
	padding: 0 16px 32px 16px;
}

.articles-list .article-out {
	margin: 0 -16px -32px -16px;
}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
.articles-list .article {
	padding: 0 12px 24px 12px;
}

.articles-list .article-out {
	margin: 0 -12px -24px -12px;
}
}

@media only screen and (max-width: 1199px) {
.articles-list h2,
.articles-list .h2 {
	padding-bottom: 48px;
}

.articles-list .article-out {
	padding-bottom: 60px;
}
}

@media only screen and (max-width: 991px) {
.articles-list {
	margin-bottom: 24px;
}

.articles-list .article .box {
	padding: 24px 24px;
}

.articles-list .article .box .top-icons .icon img {
	max-height: 32px;
}

.articles-list .article .box .top-icons .bullets img {
	max-height: 32px;
}

.articles-list .article-out {
	padding-bottom: 48px;
}
}

@media only screen and (max-width: 767px) {
.articles-list h2,
.articles-list .h2 {
	padding-bottom: 32px;
}
}


/* Articles - List */
.articles-list2 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	color: #ffffff;
}

.articles-list2 .article {
	width: 100%;
	padding: 0 0 24px 0;
}

.articles-list2 .article .box {
	width: 100%;
	height: 100%;
	float: left;
	font-weight: inherit;
	font-size: 16px;
	line-height: 24px;
	text-decoration: none;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 12px;
	border-radius: 12px;
	padding: 32px 24px;
}

.articles-list2 .article .box .top-icons {
	width: 100%;
	float: left;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	padding-bottom: 20px;
	margin-bottom: -16px;
}

.articles-list2 .article .box .top-icons .icon {
	width: 75%;
}

.articles-list2 .article .box .top-icons .icon img {
	max-height: 44px;
}

.articles-list2 .article .box .top-icons .icon a {
	float: left;
	position: relative;
	z-index: 2;
	margin: 0 16px 16px 0;
}

.articles-list2 .article .box .top-icons .bullets {
	width: 25%;
	text-align: right;
	position: relative;
	z-index: 2;
	margin-top: -12px;
}

.articles-list2 .article .box .top-icons .bullets img {
	max-height: 32px;
}

.articles-list2 .article .box .top-icons .bullets .close {
	display: none;
}

.articles-list2 .article.icon-close .box {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), #D24930;
}

.articles-list2 .article.icon-close .box .top-icons .bullets .check {
	display: none;
}

.articles-list2 .article.icon-close .box .top-icons .bullets .close {
	display: block;
}

.articles-list2 .article-out {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-bottom: 80px;
	margin: 0 0 -24px 0;
}

.articles-list2 .article-out:last-child {
	padding-bottom: 0;
}

@media only screen and (min-width: 768px) {
.articles-list2 .article {
	width: 33.33%;
	padding: 0 16px 32px 16px;
}

.articles-list2 .article-out {
	margin: 0 -16px -32px -16px;
}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
.articles-list2 .article {
	width: 50%;
	padding: 0 12px 24px 12px;
}

.articles-list2 .article-out {
	margin: 0 -12px -24px -12px;
}
}

@media only screen and (max-width: 1199px) {
.articles-list2 .article-out {
	padding-bottom: 60px;
}
}

@media only screen and (max-width: 991px) {
.articles-list2 .article .box {
	padding: 24px 24px;
}
}

@media only screen and (max-width: 767px) {
.articles-list2 .article-out {
	padding-bottom: 48px;
}
}


/* Testimonials - Cont */
.testimonials-cont {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	margin-bottom: 120px;
}

.testimonials-cont:last-child {
	margin-bottom: 0;
}

.testimonials-cont .box {
	width: 100%;
	max-width: 790px;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: left;
}

.testimonials-cont .box .figure {
	width: 166px;
	float: left;
	text-align: center;
	overflow: hidden;
	border-radius: 360px;
	box-shadow: 0 1.25714px 10.0571px rgba(0, 0, 0, 0.3);
	position: relative;
	z-index: 1;
	margin-right: -166px;
}

.testimonials-cont .box .aside {
	width: 100%;
	float: left;
	font-weight: 500;
	font-size: 24px;
	line-height: 32px;
	padding: 0 0 0 198px;
	margin: -8px 0 0 0;
}

.testimonials-cont .box .aside .name {
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	padding-bottom: 4px;
}

.testimonials-cont .box .aside .position {
	font-size: 16px;
	line-height: 20px;
}

@media only screen and (max-width: 1199px) {
.testimonials-cont {
	margin-bottom: 90px;
}

.testimonials-cont .box .aside {
	font-size: 22px;
}
}

@media only screen and (max-width: 767px) {
.testimonials-cont {
	margin-bottom: 70px;
}

.testimonials-cont .box {
	text-align: center;
}

.testimonials-cont .box .figure {
	width: 132px;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin: 0 0 24px 0;
}

.testimonials-cont .box .aside {
	font-size: 20px;
	line-height: 30px;
	padding: 0;
	margin: 0;
}
}


/* Two - Col - Articles */
.two-col-articles {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 120px;
}

.two-col-articles:last-child {
	margin-bottom: 0;
}

.two-col-articles .article {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 -16px 120px -16px;
}

.two-col-articles .article:last-child {
	margin-bottom: 0;
}

.two-col-articles .article .figure-wrap {
	width: 100%;
	position: relative;
	padding: 0 16px 0 16px;
}

.two-col-articles .article .figure {
	width: 100%;
	text-align: center;
	overflow: hidden;
}

.two-col-articles .article .figure img {
	width: 100%;
}

.two-col-articles .article .aside {
	width: 100%;
	position: relative;
	padding: 0 16px 0 16px;
}

.two-col-articles .article .aside:last-child {
	margin-bottom: 0;
}

.two-col-articles .article .aside h3,
.two-col-articles .article .aside .h3 {
	padding-bottom: 32px;
}

.two-col-articles .article .aside h3:last-child,
.two-col-articles .article .aside .h3:last-child {
	padding-bottom: 0;
}

.two-col-articles .article .aside ul {
	padding-bottom: 32px;
}

.two-col-articles .article .aside ul:last-child {
	padding-bottom: 0;
}

.two-col-articles .article .aside ul li {
	color: #525456;
	padding-bottom: 24px;
}

.two-col-articles .article .aside ul li:last-child {
	padding-bottom: 0;
}

.two-col-articles .article-out {
	width: 100%;
	float: left;
}

@media only screen and (min-width: 768px) {
.two-col-articles .article .figure-wrap {
	width: 50%;
}

.two-col-articles .article .aside {
	width: 50%;
}

.two-col-articles .article:nth-child(even) .figure-wrap {
	right: 50%;
}

.two-col-articles .article:nth-child(even) .aside {
	left: 50%;
}
}

@media only screen and (max-width: 1199px) {
.two-col-articles {
	margin-bottom: 90px;
}

.two-col-articles .article {
	margin: 0 -16px 90px -16px;
}
}

@media only screen and (max-width: 767px) {
.two-col-articles {
	margin-bottom: 70px;
}

.two-col-articles .article {
	margin: 0 -16px 70px -16px;
}
}


/* Customers - Cont */
.customers-cont {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 120px 0;
}

.customers-cont .container {
	max-width: 880px;
}

.customers-cont .top-cont {
	width: 100%;
	color: #ffffff;
	overflow: hidden;
	padding-bottom: 48px;
}

.customers-cont .top-cont:last-child {
	padding-bottom: 0;
}

.customers-cont .top-cont h1,
.customers-cont .top-cont .h1,
.customers-cont .top-cont h2,
.customers-cont .top-cont .h2,
.customers-cont .top-cont h3,
.customers-cont .top-cont .h3,
.customers-cont .top-cont h4,
.customers-cont .top-cont .h4,
.customers-cont .top-cont h5,
.customers-cont .top-cont .h5,
.customers-cont .top-cont h6,
.customers-cont .top-cont .h6 {
	text-align: center;
}

.customers-cont .box {
	width: 100%;
	float: left;
	font-weight: 500;
	font-size: 25px;
	line-height: 32px;
	text-align: center;
	background: #FFFFFF;
	box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.2);
	border-radius: 12px;
	padding: 40px 32px 32px 32px;
	margin-bottom: 80px;
}

.customers-cont .box:last-child {
	margin-bottom: 0;
}

.customers-cont .box .aside {
	width: 100%;
	max-width: 590px;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.customers-cont .box .aside .logo {
	width: 100%;
	float: left;
	text-align: center;
	overflow: hidden;
	margin-bottom: 16px;
}

.customers-cont .box .aside .logo img {
	max-height: 24px;
}

.customers-cont .box .aside .date {
	width: 100%;
	float: left;
	font-size: 16px;
	color: rgba(18, 20, 22, 0.6);
	line-height: 24px;
}

.customers-cont .bottom-btns {
	color: #ffffff;
}

@media only screen and (max-width: 1199px) {
.customers-cont {
	padding: 90px 0;
}

.customers-cont .box {
	font-size: 22px;
	margin-bottom: 60px;
}

.customers-cont .box .aside {
	max-width: 500px;
}

.customers-cont .box .aside .logo img {
	max-height: 20px;
}
}

@media only screen and (max-width: 767px) {
.customers-cont {
	padding: 70px 0;
}

.customers-cont .container {
	max-width: 550px;
}

.customers-cont .top-cont {
	padding-bottom: 32px;
}

.customers-cont .box {
	font-size: 20px;
	line-height: 30px;
	padding: 32px 24px 24px 24px;
	margin-bottom: 48px;
}
}


/* Features - Table  */
.features-table {
	width: 100%;
	text-align: center;
	overflow: hidden;
	margin-bottom: 120px;
}

.features-table:last-child {
	margin-bottom: 0;
}

.features-table .inner-cont {
	width: 100%;
	max-width: 1000px;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: left;
}

.features-table h2,
.features-table .h2 {
	text-align: center;
	padding-bottom: 48px;
}

@media only screen and (max-width: 1199px) {
.features-table {
	margin-bottom: 90px;
}

.features-table h2,
.features-table .h2 {
	padding-bottom: 32px;
}
}

@media only screen and (max-width: 767px) {
.features-table {
	margin-bottom: 70px;
}
}


/* Table - Heading  */
.table-heading {
	width: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	padding: 16px 16px;
	margin-bottom: 10px;
}

.table-heading .col-1 img,
.table-heading .col-2 img,
.table-heading .col-3 img {
	max-width: 100%;
}

.table-heading .col-1 {
	width: 58.20%;
}

.table-heading .col-2 {
	width: 26.90%;
	text-align: center;
	padding-right: 16px;
	padding-left: 16px;
}

.table-heading .col-3 {
	width: 14.90%;
	text-align: center;
}

@media only screen and (max-width: 767px) {
.table-heading .col-1 {
	width: 65%;
}

.table-heading .col-2 {
	width: 20%;
}

.table-heading .col-3 {
	width: 15%;
}
}


/* Table - Info  */
.table-info {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 64px;
}

.table-info:last-child {
	margin-bottom: 0;
}

.table-info h3,
.table-info .h3 {
	font-size: 20px;
	line-height: 28px;
	padding: 0 16px 24px 16px;
}

.table-info ul {
	width: 100%;
	overflow: hidden;
	padding: 0;
	margin: 0;
}

.table-info ul li {
	width: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	background: #F2F4F6;
	border-radius: 4px;
	padding: 16px 16px !important;
	margin: 0;
}

.table-info ul li:before {
	display: none;
}

.table-info ul li:nth-child(even) {
	background: #ffffff;
}

.table-info ul li img {
	max-height: 32px;
}

.table-info ul li h4,
.table-info ul li .h4 {
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	padding: 0 0 4px 0;
}

.table-info ul li h4:last-child,
.table-info ul li .h4:last-child {
	padding-bottom: 0;
}

.table-info ul li p.sml {
	font-size: 16px;
	line-height: 20px;
}

.table-info .col-1 {
	width: 58.20%;
}

.table-info .col-2 {
	width: 26.90%;
	text-align: center;
	padding-right: 16px;
	padding-left: 16px;
}

.table-info .col-3 {
	width: 14.90%;
	text-align: center;
}

@media only screen and (max-width: 1199px) {
.table-info {
	margin-bottom: 56px;
}
}

@media only screen and (max-width: 767px) {
.table-info {
	margin-bottom: 48px;
}

.table-info ul li img {
	max-height: 24px;
}

.table-info .col-1 {
	width: 65%;
}

.table-info .col-2 {
	width: 20%;
}

.table-info .col-3 {
	width: 15%;
}
}


/* Feature - List */
.feature-list {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 120px;
}

.feature-list:last-child {
	margin-bottom: 0;
}

.feature-list .heading-txt p {
	color: rgba(50, 52, 54, 0.8);
}

.feature-list .article {
	width: 100%;
	padding: 0 0 32px 0;
}

.feature-list .article .box {
	width: 100%;
	float: left;
	font-weight: inherit;
	font-size: 16px;
	line-height: 24px;
	text-decoration: none;
}

.feature-list .article .box .figure {
	width: 100%;
	height: 232px;
	line-height: 232px;
	text-align: center;
	overflow: hidden;
}

.feature-list .article .box .figure img {
	max-height: 232px;
	vertical-align: middle
}

.feature-list .article .box h4,
.feature-list .article .box .h4 {
	text-align: center;
}

.feature-list .article-out {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-bottom: 80px;
	margin: 0 0 -32px 0;
}

@media only screen and (min-width: 768px) {
.feature-list .article {
	width: 33.33%;
	padding: 0 16px 32px 16px;
}

.feature-list .article-out {
	margin: 0 -16px -32px -16px;
}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
.feature-list .article {
	padding: 0 12px 32px 12px;
}

.feature-list .article-out {
	margin: 0 -12px -32px -12px;
}
}

@media only screen and (max-width: 1199px) {
.feature-list {
	margin-bottom: 90px;
}

.feature-list .article .box .figure {
	height: 180px;
	line-height: 180px;
	margin-bottom: 16px;
}

.feature-list .article .box .figure img {
	max-height: 180px;
}

.feature-list .article-out {
	padding-bottom: 60px;
}
}

@media only screen and (max-width: 1199px) {
.feature-list {
	margin-bottom: 90px;
}

.feature-list .article .box .figure {
	height: 180px;
	line-height: 180px;
	margin-bottom: 16px;
}

.feature-list .article .box .figure img {
	max-height: 180px;
}

.feature-list .article-out {
	padding-bottom: 60px;
}
}


@media only screen and (max-width: 767px) {
.feature-list {
	margin-bottom: 70px;
}

.feature-list .article-out {
	padding-bottom: 48px;
}
}


/*
 5.) Footer
----------------------------------------*/

#footer-main {
	width: 100%;
	font-weight: 400;
	font-size: 16px;
	color: #ffffff;
	line-height: 24px;
	background: linear-gradient(187.66deg, #1A7AC4 4.13%, #1367A7 53.86%, #034D84 93.86%);
	overflow: hidden;
	position: relative;
	padding: 62px 0 32px 0;
}

#footer-main .container {
	max-width: 1090px;
}

#footer-main .pre-footer {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-bottom: 32px;
}

#footer-main .pre-footer:last-child {
	padding-bottom: 0;
}

#footer-main .pre-footer .logo {
	width: 92px;
	position: relative;
	z-index: 2;
	margin-right: -92px;
}

#footer-main .pre-footer .logo img {
	max-height: 43px;
}

#footer-main .pre-footer .footer-links {
	width: 100%;
	padding-left: 208px;
}

#footer-main .pre-footer .footer-links .article h3,
#footer-main .pre-footer .footer-links .article .h3 {
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	padding-bottom: 14px;
}

#footer-main .pre-footer .footer-links .article h3:last-child,
#footer-main .pre-footer .footer-links .article .h3:last-child {
	padding-bottom: 0;
}

#footer-main .pre-footer .footer-links .article ul {
	padding: 0;
	margin: 0;
}

#footer-main .pre-footer .footer-links .article ul li {
	padding: 0 0 16px 0;
	margin: 0;
}

#footer-main .pre-footer .footer-links .article ul li:last-child {
	padding-bottom: 0;
}

#footer-main .pre-footer .footer-links .article ul li:before {
	display: none;
}

#footer-main .pre-footer .footer-links .article ul li a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}

#footer-main .pre-footer .footer-links .article ul li a:focus,
#footer-main .pre-footer .footer-links .article ul li a:active,
#footer-main .pre-footer .footer-links .article ul li a:hover {
	color: #FFFFFF;
}

#footer-main .pre-footer .footer-links .article {
	width: 25%;
	padding: 0 16px 32px 16px;
}

#footer-main .pre-footer .footer-links .article-out {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -16px -32px -16px;
}

#footer-main .copyrights {
	width: 100%;
	overflow: hidden;
}

#footer-main .copyrights p {
	color: rgba(255, 255, 255, 0.6);
}

#footer-main .copyrights .social-links {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	padding-bottom: 24px;
	margin-bottom: 24px;
}

#footer-main .copyrights .social-links ul li a {
	color: rgba(255, 255, 255, 0.8);
}

#footer-main .copyrights .social-links ul li a:hover,
#footer-main .copyrights .social-links ul li.active a {
	color: rgba(255, 255, 255, 1);
}

@media only screen and (max-width: 1089px) {
#footer-main .pre-footer .footer-links {
	width: 100%;
	padding-left: 154px;
}
}

@media only screen and (max-width: 991px) {
#footer-main .pre-footer .footer-links {
	width: 100%;
	padding-left: 208px;
}

#footer-main .pre-footer .footer-links .article {
	width: 50%;
	padding: 0 16px 32px 16px;
}
}

@media only screen and (max-width: 767px) {
#footer-main .container {
	max-width: 550px;
}

#footer-main .pre-footer .logo {
	width: 100%;
	margin: 0 0 32px 0;
}

#footer-main .pre-footer .logo img {
	max-height: 43px;
}

#footer-main .pre-footer .footer-links {
	padding-left: 0;
}

#footer-main .pre-footer .footer-links .article {
	width: 50%;
	padding: 0 12px 32px 16px;
}

#footer-main .pre-footer .footer-links .article-out {
	margin: 0 -12px -32px -12px;
}
}

@media only screen and (max-width: 479px) {
#footer-main {
	padding: 48px 0 32px 0;
}

#footer-main .pre-footer .footer-links .article {
	width: 100%;
}
}


/* Row - Cont  */
.row-cont {
	width: 100%;
	overflow: hidden;
	padding: 120px 0;
}

@media (max-width: 1199px) {
.row-cont {
	padding: 90px 0;
}
}

@media (max-width: 767px) {
.row-cont {
	padding: 70px 0;
}
}


/* Background - Color  */
.blue-bg {
	background: linear-gradient(187.66deg, #1A7AC4 4.13%, #1367A7 53.86%, #034D84 93.86%);
}




