/*
Table Of Contents
 
 1.) Typography
 2.) Default Styles
 3.) Header - Main
 4.) Content - Main
 5.) Footer - Main
 6.) Site - Cores

========================================*/

/*
 1.) Typography
----------------------------------------*/

/*
.gf-montserrat { font-family: "Montserrat", 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);
}
}


/* #Basic Styles
================================================== */

body {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 26px;
	color: #071c1c;
	line-height: 40px; 
	letter-spacing: -0.01em;
	background: #ffffff;
}

@media only screen and (max-width: 1399px) {
body {
	font-size: 22px;
	line-height: 34px; 
}
}

@media only screen and (max-width: 1199px) {
body {
	font-size: 20px;
	line-height: 32px; 
}
}

@media only screen and (max-width: 767px) {
body {
	font-size: 18px;
	line-height: 30px; 
}
}


/* #Links
================================================== */

a { 
	color: #0dd375;
	text-decoration: underline;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	cursor: pointer;
}

a:hover,
a:focus,
a:active {
	color: #99fac4;
	text-decoration: underline;
}

a:visited {
	outline: 0;
}

a[href^="tel:"], 
a[href^="fax:"] {
	color: #0dd375;
	text-decoration: underline;
}

a:hover[href^="tel:"], 
a:focus[href^="tel:"], 
a:hover[href^="fax:"],
a:focus[href^="fax:"] {
	color: #99fac4;
	text-decoration: underline;
}


/*= Headings: P, H1, H2, H3, H4, H5, H6
================================================== */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-weight: 700; 
	letter-spacing: -0.02em; 
	padding-bottom: 40px;
}

h1,
.h1,
h2,
.h2{ 
	font-size: 48px; 
	line-height: 56px;
}

h3,
.h3 {	
	font-size: 34px;
	line-height: 44px;
}

h4,
.h4,
h5,
.h5,
h6,
.h6{
	font-size: 27px;
	line-height: 37px;
}

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;
}

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: #0dd375;
	text-decoration: none;
}

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: 40px;
}

p:last-child {
	padding-bottom: 0;
}

strong,
b {
	font-weight: 700;
}

em, 
i { 
	font-style: italic; 
}

em.fal,
em.far,
em.fas,
em.fab {
	font-style: normal; 
}

.underline { 
	text-decoration: underline;
}

.bold { 
	font-weight: 700;
}

.uppercase { 
	text-transform: uppercase;
}

@media only screen and (max-width: 1399px) {
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	padding-bottom: 36px;
}

h1,
.h1,
h2,
.h2{ 
	font-size: 44px; 
	line-height: 50px;
}

h3,
.h3 {	
	font-size: 32px;
	line-height: 42px;
}

h4,
.h4,
h5,
.h5,
h6,
.h6{
	font-size: 26px;
	line-height: 36px
}

p {
	padding-bottom: 36px;
}
}

@media only screen and (max-width: 1199px) {
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	padding-bottom: 30px;
}

h1,
.h1,
h2,
.h2{ 
	font-size: 40px; 
	line-height: 46px;
}

h3,
.h3 {	
	font-size: 30px;
	line-height: 40px;
}

h4,
.h4,
h5,
.h5,
h6,
.h6{
	font-size: 24px;
	line-height: 34px
}

p {
	padding-bottom: 30px;
}
}

@media only screen and (max-width: 767px) {
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 { 
	padding-bottom: 24px;
}

h1,
.h1,
h2,
.h2{ 
	font-size: 32px; 
	line-height: 42px;
}

h3,
.h3 {	
	font-size: 28px;
	line-height: 36px;
}

h4,
.h4,
h5,
.h5,
h6,
.h6{
	font-size: 24px;
	line-height: 30px;
}

p {
	padding-bottom: 24px;
}
}

	
/*= Unorder List
================================================== */

ul,
ol {
	list-style: none; 
	padding: 0; 
	margin:  0;
}

li {
	position: relative; 
	padding-left: 26px;
}

li:last-child {
	padding-bottom: 40px;
}

ul:last-child li:last-child,
ol:last-child li:last-child {
	padding-bottom: 0;
}

ul li ul,
ol li ol {
	padding: 10px 0 0 0;
}

ul li:before {
	content: "";
	width: 8px;
	height: 8px;
	float: left;
	background: #0dd375;
	border-radius: 900px;
	position: absolute;
	top: 17px;
	left: 0;
}

.aside ul li:before {
	top: 8px;
}

@media only screen and (max-width: 1399px) {
li:last-child {
	padding-bottom: 36px;
}

ul li:before {
	top: 13px;
}
}

@media only screen and (max-width: 1199px) {
li:last-child {
	padding-bottom: 30px;
}

ul li:before {
	top: 12px;
}
}

@media only screen and (max-width: 767px) {
li {
	padding-left: 20px;
}

li:last-child {
	padding-bottom: 24px;
}

ul li:before {
	width: 7px;
	height: 7px;
	top: 13px;
}
}


/*= Order Styles
================================================== */

ol {
	counter-reset: item;
}

ol > li {
	counter-increment: item;	
	padding-left: 30px;
}

ol > li::before {
	content: counter(item)"."; 
	font-weight: 600;
	color: #0dd375; 
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
}

@media only screen and (max-width: 767px) {
ol > li {
	padding-left: 24px;
}
}


/* #Input Styles
================================================= */

label { 
	width: 100%; 
	float: left;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px; 
	text-align: left;
	margin-top: 0;
	margin-bottom: 10px;
}

label .redmark {
	color: #ff0000;
}

textarea,
select,
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%;
	float: left;
	height: 48px;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	white-space: nowrap;
	text-overflow: ellipsis;
	border: 1px solid #c4c8ce;
	background-color: #ffffff;
	box-shadow: none;
	border-radius: 5px;
	outline: none;
	overflow: hidden;
	position: relative;
	padding: 10px 20px;
	margin: 0;
}

textarea[rows],
textarea {
	height: 182px;
	white-space: normal;
	resize: none;
}

::-webkit-input-placeholder, 
::-webkit-textarea-placeholder {
	color: #222224;
}

input::-moz-placeholder, 
textarea::-moz-placeholder {
	color: #222224;
}

::-moz-placeholder {
	color: #222224;
}

::-ms-input-placeholder {
	color: #222224;
}

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 {
	border-color: #2d4f93;
}

@media only screen and (max-width: 767px) {
label { 
	font-size:14px;
	line-height: 22px;
	margin-bottom: 8px;
}

textarea,
select,
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 { 
	font-size:14px;
	line-height: 22px;
}
}


/* #Buttons
================================================== */

/* Custom - Select */
button {
	background: none;
	border: none;
	box-shadow: none;
	text-decoration: none;
	white-space: normal;
	cursor: pointer;
	outline: 0;
	padding: 0;
	margin: 0;
}

button:hover,
button:focus,
button:active,
button:active:focus,
button.active,
button.active:focus {
	outline: 0;
}

.btn,
input[type="button"],
input[type="submit"] {
	width: auto;
	height: auto;
	float: none;
	display: inline-block;
	vertical-align: middle;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 20px;
	color: #ffffff;
	line-height: 30px; 
	letter-spacing: -0.02em;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	background: #60ce7e;
	border: none;
	border-radius: 5px;
	box-shadow: 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: 21px 30px;
	margin: 0;
}

.btn:before {
	content: "";
	width: 0;
	height: 100%;
	float: left;
	background: #0dd375;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn.active,
.btn.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;
	box-shadow: none; 
	outline: 0;
}

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 {
	background: #0dd375;
}

.btn:hover:before,
.btn:focus:before,
.btn:active:before,
.btn:active:focus:before,
.btn.active:before,
.btn.active:focus:before {
	width: 100%;
}

.btn-white, 
input.btn-white[type="button"], 
input.btn-white[type="submit"] {
	color: #60ce7e;
	background: #ffffff; 
}

.btn-white::before {
	background: #f6f2f2; 
}

.btn-white:hover, 
.btn-white:focus, 
.btn-white:active, 
.btn-white:active:focus, 
.btn-white.active, 
.btn-white.active:focus,
input.btn-white[type="button"]:hover, 
input.btn-white[type="button"]:focus, 
input.btn-white[type="button"]:active, 
input.btn-white[type="button"]:active:focus, 
input.btn-white[type="button"].active, 
input.btn-white[type="button"].active:focus, 
input.btn-white[type="submit"]:hover, 
input.btn-white[type="submit"]:focus, 
input.btn-white[type="submit"]:active, 
input.btn-white[type="submit"]:active:focus, 
input.btn-white[type="submit"].active, 
input.btn-white[type="submit"].active:focus,
.btn-white:not(:disabled):not(.disabled).active, 
.button.btn-white:not(:disabled):not(.disabled):active { 
	color: #60ce7e;
}

input.btn-white[type="button"]:hover, 
input.btn-white[type="button"]:focus, 
input.btn-white[type="button"]:active, 
input.btn-white[type="button"]:active:focus, 
input.btn-white[type="button"].active, 
input.btn-white[type="button"].active:focus, 
input.btn-white[type="submit"]:hover, 
input.btn-white[type="submit"]:focus, 
input.btn-white[type="submit"]:active, 
input.btn-white[type="submit"]:active:focus, 
input.btn-white[type="submit"].active, 
input.btn-white[type="submit"].active:focus {
	background: #f6f2f2; 
}
.btn:focus,
input[type="button"]:focus,
input[type="submit"]:focus {
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: 2px;
}

.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 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-top: 10px;
}

.btn-wrap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 10px -10px -20px -10px;
}

.btn-wrap .btn {
	float: left;
	margin: 0 10px 20px 10px;
}

@media only screen and (max-width: 1199px) {
.btn,
input[type="button"],
input[type="submit"] {
	font-size: 18px;
	line-height: 28px; 
	padding: 16px 30px;
}
}

@media only screen and (max-width: 767px) {
.btn,
input[type="button"],
input[type="submit"] {
	font-size: 16px;
	line-height: 26px; 
	padding: 14px 30px;
}
}


/*= Container - Main
=====================*/

.container-main {
	width: 100%; 
	min-height: 100vh;
	float: left; 	
	display: flex;
	flex-direction: column;
	overflow: hidden; 
}

.container {
	width: 100%;
	max-width: 1585px;
	margin: 0 auto;
	padding: 0 50px;
}

@media only screen and (max-width: 1199px) {
.container {
	padding: 0 40px;
}
}

@media only screen and (max-width: 767px) {
.container {
	max-width: 600px;
	padding: 0 20px;
}
}


/* Social - Links */
.social-links {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.social-links ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	padding: 0;
	margin: 0 -8px -16px -8px;
}

.social-links ul li {
	padding: 0;
	margin: 0 8px 16px 8px;
}

.social-links ul li:before {
	display: none;
}

.social-links ul li span {
	display: none;
}

.social-links ul li a {
	width: 40px;
	height: 40px;
	float: left;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #071c1c;
	line-height: 1em;
	text-align: center;
	text-decoration: none;
	border: 1px solid #071c1c;
	background: none;
	border-radius: 360px;
}

.social-links ul li a:focus,
.social-links ul li a:active,
.social-links ul li a:hover {
	color: #ffffff;
	background: #0dd375;
	border-color: #0dd375;
}

@media only screen and (max-width: 767px) {
.social-links ul {
	margin: 0 -6px -12px -6px;
}

.social-links ul li {
	margin: 0 6px 12px 6px;
}

.social-links ul li a {
	width: 32px;
	height: 32px;
	font-size: 16px;
}
}


/* Sub - Heading */
.sub-title {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	font-weight: 600;
	font-size: 17px;
	color: #4a5d67;
	line-height: 27px;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

@media only screen and (max-width: 1399px) {
.sub-title {
	font-size: 16px;
	line-height: 26px;
}
}

@media only screen and (max-width: 1199px) {
.sub-title {
	font-size: 15px;
	line-height: 25px;
}
}

@media only screen and (max-width: 767px) {
.sub-title {
	font-size: 14px;
	line-height: 24px;
}
}


/* 
 3.) Header - Main
----------------------------------------*/

.header-main {
	width: 100%;
	height: 159px;
	float: left;
	background: #ffffff;
	position: relative;
	z-index: 5;
}

.header-main .logo {
	height: 101px;
	float: left;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 29px;
}

.header-main .logo img {
	max-height: 101px;
}

.header-main .contact-us {
	float: right;
	margin: 54px 0 0 0;
}

.header-main .contact-us .phone {
	float: left;
}

.header-main .contact-us .phone a {
	height: 51px;
	float: left;
	font-weight: 700;
	font-size: 28px;
	color: #ffffff;
	line-height: 51px;
	text-decoration: none;
	text-align: center;
	background: #60ce7e;
	border-radius: 360px; 	
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease; 
	overflow:  hidden;
	position: relative; 
	z-index:  1;
	padding: 0 25px;
}

.header-main .contact-us .phone a:before {
	content: "";
	width: 0;
	height: 100%;
	float: left;
	background: #0dd375; 
	border-radius: 360px; 
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.header-main .contact-us .phone a:hover:before,
.header-main .contact-us .phone a:focus:before,
.header-main .contact-us .phone a:active:before {
	width: 100%;
}

.header-main .contact-us .phone a em {
	font-size: 65%;	
	-webkit-transform: rotate3d(0, 0, 1, 90deg);
	transform: rotate3d(0, 0, 1, 90deg);
	position: relative;
	top: -4px;
	margin-right: 10px;
}

.header-main .contact-us .language {
	float: left;
	font-size: 20px;
	color: #071c1c;
	line-height: 51px;
	margin: 0 0 0 32px;
}

.header-main .contact-us .language .divider {
	position: relative;
	top: -2px;
}

.header-main .container .contact-us .language .divider:last-child {
	display: none;
}

.header-main .contact-us .language a {
	color: #071c1c;
	text-decoration: none;
}

.header-main .contact-us .language a:hover,
.header-main .contact-us .language a:focus,
.header-main .contact-us .language a:active {
	color: #0dd375;
}

@media only screen and (max-width: 1399px) {
.header-main {
	height: 140px;
}

.header-main .logo {
	height: 90px;
	margin-top: 25px;
}

.header-main .logo img {
	max-height: 90px;
}

.header-main .contact-us {
	margin: 54px 0 0 0;
}

.header-main .contact-us .phone a {
	height: 46px;
	font-size: 24px;
	line-height: 46px;
}

.header-main .contact-us .phone a em {
	margin-right: 8px;
	top: -3px;
}

.header-main .contact-us .language {
	line-height: 46px;
}
}

@media only screen and (max-width: 1199px) {
.header-main {
	height: 100px;
}

.header-main .logo {
	height: 60px;
	margin-top: 20px;
}

.header-main .logo img {
	max-height: 60px;
}

.header-main .contact-us {
	margin: 30px 0 0 0;
}

.header-main .contact-us .phone a {
	height: 40px;
	font-size: 18px;
	line-height: 40px;
	padding: 0 20px;
}

.header-main .contact-us .phone a em {
	top: -2px;
	margin-right: 6px;
}

.header-main .contact-us .language {
	font-size: 16px;
	line-height: 42px;
	margin: 0 0 0 24px;
}
}

@media only screen and (max-width: 767px) {
.header-main {
	height: 110px;
	padding: 45px 0 15px 0;
}

.header-main .container {
	max-width: 100%;
}

.header-main .logo {
	height: 50px;
	margin-top: 0;
}

.header-main .logo img {
	max-height: 50px;
}

.header-main .contact-us {
	margin: 0;
}

.header-main .contact-us .phone {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.header-main .contact-us .phone a {
	width: 100%;
	height: 30px;
	font-size: 14px;
	line-height: 30px;
	border-radius: 0;
	padding: 0 25px;
}

.header-main .contact-us .phone a em { 
	font-size: 75%;
	top: -1px;
	margin-right: 5px;
}

.header-main .contact-us .language {
	font-size: 14px;
	line-height: 20px;
	margin: 15px 0 0 0;
}

.header-main .contact-us .language .divider {
	top: -1px;
}
}


/*  Header - Main2 */
.header-main2 {
	width: 100%;
	height: 122px;
	float: left;
	background: #ffffff;
	position: relative;
	z-index: 5;
}

.header-main2 .logo {
	height: 50px;
	float: left;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 36px;
}

.header-main2 .logo img {
	max-height: 50px;
}

.header-main2 .contact-us {
	float: right;
	font-size: 20px;
	color: #071c1c;
	line-height: 30px;
	margin: 46px 0 0 0;
}

.header-main2 .contact-us .phone {
	float: left;
}

.header-main2 .contact-us .phone a {
	font-weight: 700;
	color: #071c1c;
	text-decoration: none;
}

.header-main2 .contact-us .phone a em {
	font-size: 95%;
	color: #274b4f;
	-webkit-transform: rotate3d(0, 0, 1, 90deg);
	transform: rotate3d(0, 0, 1, 90deg);
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: relative;
	top: -1px;
	margin-right: 3px;
}

.header-main2 .contact-us .phone a:hover,
.header-main2 .contact-us .phone a:focus,
.header-main2 .contact-us .phone a:active {
	color: #0dd375;
}

.header-main2 .contact-us .phone a:hover em,
.header-main2 .contact-us .phone a:focus em,
.header-main2 .contact-us .phone a:active em {
	color: #0dd375;
}

.header-main2 .contact-us .language {
	float: left;
	margin: 0 0 0 27px;
}

.header-main2 .contact-us .language .divider {
	position: relative;
	top: -2px;
}

.header-main2 .contact-us .language a {
	color: #071c1c;
	text-decoration: none;
}

.header-main2 .contact-us .language a:hover,
.header-main2 .contact-us .language a:focus,
.header-main2 .contact-us .language a:active {
	color: #0dd375;
}

@media only screen and (max-width: 1199px) {
.header-main2 {
	height: 90px;
}

.header-main2 .logo {
	height: 40px;
	margin-top: 25px;
}

.header-main2 .logo img {
	max-height: 40px;
}

.header-main2 .contact-us {
	font-size: 18px;
	line-height: 28px;
	margin: 31px 0 0 0;
}
}

@media only screen and (max-width: 767px) {
.header-main2 {
	height: 90px;
	padding: 45px 0 15px 0;
}

.header-main2 .container {
	max-width: 100%;
}

.header-main2 .logo {
	height: 30px;
	margin-top: 0;
}

.header-main2 .logo img {
	max-height: 30px;
}

.header-main2 .contact-us {
	font-size: 14px;
	line-height: 20px;
	margin: 0;
}

.header-main2 .contact-us .phone {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.header-main2 .contact-us .phone a {
	width: 100%;
	float: left;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background: #F6F7F7;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	overflow: hidden;
	position:  relative;
	z-index: 1;
	padding: 0 20px;
}

.header-main2 .contact-us .phone a em {
	top: 0;
}

.header-main2 .contact-us .language {
	margin: 5px 0 0 0;
}

.header-main2 .contact-us .language .divider {
	top: -1px;
}
}


/*
 4.) Content - Main
----------------------------------------*/
.content-main {
	width: 100%;
	float: left;
	flex: 1 0 auto;
}


/* Welcome - Cont */
.welcome-cont {
	width: 100%;
	background: #f6f7f7;
	overflow: hidden;
	padding: 120px 0;
}

.welcome-cont .box {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-end;
}

.welcome-cont .box .figure {
	width: 33.33%;
	text-align: right;
	overflow: hidden;
}

.welcome-cont .box .figure img {
	max-width: 100%;
}

.welcome-cont .box .aside {
	width: 66.6667%;
	padding: 0 10% 0 0;
}

.welcome-cont .box .aside h1,
.welcome-cont .box .aside .h1,
.welcome-cont .box .aside h2,
.welcome-cont .box .aside .h2 {
	font-weight: 600;
	font-size: 44px;
	line-height: 54px;
	letter-spacing: -0.01em;
}

@media only screen and (max-width: 1399px) {
.welcome-cont {
	padding: 100px 0;
}

.welcome-cont .box .aside {
	padding: 0 9% 0 0;
}

.welcome-cont .box .aside h1,
.welcome-cont .box .aside .h1,
.welcome-cont .box .aside h2,
.welcome-cont .box .aside .h2 {
	font-size: 40px;
	line-height: 50px;
}
}

@media only screen and (max-width: 1199px) {
.welcome-cont {
	padding: 80px 0;
}

.welcome-cont .box .figure img {
	max-width: 220px;
}

.welcome-cont .box .aside {
	padding: 0 40px 0 0;
}

.welcome-cont .box .aside h1,
.welcome-cont .box .aside .h1,
.welcome-cont .box .aside h2,
.welcome-cont .box .aside .h2 {
	font-size: 36px;
	line-height: 46px;
}
}

@media only screen and (max-width: 767px) {
.welcome-cont {
	padding: 60px 0;
}

.welcome-cont .box .figure {
	width: 100%;
	text-align: center;
}

.welcome-cont .box .figure img {
	max-width: 180px;
}

.welcome-cont .box .aside {
	width: 100%;
	padding: 0 0 40px 0;
}

.welcome-cont .box .aside:last-child {
	padding-bottom: 0;
}

.welcome-cont .box .aside h1,
.welcome-cont .box .aside .h1,
.welcome-cont .box .aside h2,
.welcome-cont .box .aside .h2 {
	font-size: 30px;
	line-height: 40px;
}
}


/* Accordation - List */
.accordation-list {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.accordation-list .accord-item {
	width: 100%;
	float: left;
	margin: 0 0 36px 0;
}

.accordation-list .accord-item:last-child {
	margin-bottom: 0;
}

.accordation-list .accord-item .accord-link {
	width: 100%;
	float: left;
	font-weight: 600;
	font-size: 34px;
	color: #071c1c;
	line-height: 44px;
	letter-spacing: -0.01em;
	cursor: pointer;
	position: relative;
	padding: 0 0 0 48px;
}

.accordation-list .accord-item .accord-link:before {
	content: "\f067";
	width: 30px;
	height: 30px;
	float: left;
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	font-size: 24px;
	color: #ffffff;
	line-height: 30px;
	text-align: center;
	background: #0dd375;
	position: absolute;
	top: 7px;
	left: 0;
}

.accordation-list .accord-item .accord-cont {
	width: 100%;
	float: left;
	display: none;
	padding: 35px 0 35px 48px;
}

.accordation-list .accord-item .accord-link.active:before {
	content: "\f068";
}

.accordation-list .accord-item .accord-cont.active {
	display: block;
}

@media only screen and (max-width: 1399px) {
.accordation-list .accord-item {
	margin: 0 0 30px 0;
}

.accordation-list .accord-item .accord-link {
	font-size: 30px;
	line-height: 40px;
	padding: 0 0 0 48px;
}

.accordation-list .accord-item .accord-link:before {
	top: 5px;
}

.accordation-list .accord-item .accord-cont {
	padding: 30px 0 30px 48px;
}
}

@media only screen and (max-width: 1199px) {
.accordation-list .accord-item {
	margin: 0 0 25px 0;
}

.accordation-list .accord-item .accord-link {
	font-size: 26px;
	line-height: 36px;
	padding: 0 0 0 40px;
}

.accordation-list .accord-item .accord-link:before {
	width: 26px;
	height: 26px;
	font-size: 22px;
	line-height: 26px;
}

.accordation-list .accord-item .accord-cont {
	padding: 25px 0 25px 40px;
}
}

@media only screen and (max-width: 767px) {
.accordation-list .accord-item {
	margin: 0 0 20px 0;
}

.accordation-list .accord-item .accord-link {
	font-size: 22px;
	line-height: 32px;
	padding: 0 0 0 34px;
}

.accordation-list .accord-item .accord-link:before {
	width: 22px;
	height: 22px;
	font-size: 16px;
	line-height: 22px;
}

.accordation-list .accord-item .accord-cont {
	padding: 20px 0 20px 34px;
}
}


/* FAQ - List */
.faq-list {
	width: 100%;
	overflow: hidden;
	padding: 60px 0;
}

@media only screen and (max-width: 1399px) {
.faq-list {
	padding: 100px 0;
}
}

@media only screen and (max-width: 1199px) {
.faq-list {
	padding: 80px 0;
}
}

@media only screen and (max-width: 767px) {
.faq-list {
	padding: 60px 0;
}
}


/* Conclusion */
.conclusion {
	width: 100%;
	background: #60ce7e;
	overflow: hidden;
	padding: 100px 0;
}

.conclusion .box {
	width: 100%;
	float: left;
	font-size: 30px;
	line-height: 46px;
	letter-spacing: -0.011em;
	background: #ffffff;
	border-radius: 13px;
	overflow: hidden;
	position: relative;
	padding: 40px 28% 40px 56px;
}

.conclusion .box:before {
	content: "";
	width: 271px;
	height: 212px;
	float: right;
	background: url("../img/icon-tick.png") no-repeat center center;
	background-size: 100% auto;
	position: absolute;
	top: 50%;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	right: -44px;
}

.conclusion .box h3,
.conclusion .box .h3 {
	font-weight: 600;
	color: #60ce7e;
	padding-bottom: 3px;
}

.conclusion .box h3:last-child,
.conclusion .box .h3:last-child {
	padding-bottom: 0;
}

@media only screen and (max-width: 1399px) {
.conclusion {
	padding: 80px 0;
}

.conclusion .box {
	font-size: 26px;
	line-height: 40px;
	padding: 40px 28% 40px 40px;
}

.conclusion .box:before {
	width: 240px;
	height: 188px;
	right: -40px;
}
}

@media only screen and (max-width: 1199px) {
.conclusion {
	padding: 60px 0;
}

.conclusion .box {
	font-size: 22px;
	line-height: 34px;
	padding: 40px 200px 40px 40px;
}

.conclusion .box:before {
	width: 200px;
	height: 156px;
	right: -35px;
}
}

@media only screen and (max-width: 767px) {
.conclusion {
	padding: 50px 0;
}

.conclusion .box {
	font-size: 20px;
	line-height: 32px;
	border-radius: 8px;
	padding: 30px 25px 145px 25px;
}

.conclusion .box:before {
	width: 100%;
	height: 100px;
	background-size: auto 100px;
	position: absolute;
	top: auto;
	bottom: 20px;
	transform: none;
	right: 0;
}

.conclusion .box h3,
.conclusion .box .h3 {
	font-weight: 600;
	color: #60ce7e;
	padding-bottom: 0;
}
}


/* Spli - Cont */
.split-cont {
	width: 100%;
	overflow: hidden;
	padding: 65px 0 100px 0;
}

.split-cont .box {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
}

.split-cont .box .figure-wrap {
	width: 47.15%;
	position: relative;
}

.split-cont .box .figure-wrap:before {
	content: "";
	width: 34%;
	height: 322px;
	float: left;
	background: url("../img/dots.png") no-repeat bottom left;
	background-size: 100% auto;
	position: absolute;
	bottom: 11%;
	left: 18px;
}

.split-cont .box .figure-wrap .figure {
	width: 46%;
	float: left;
	text-align: center;
	box-shadow: rgba(128, 130, 143, .30) 0 0 30px;
	overflow: hidden;
	margin: 0 0 0 16.30%;
}

.split-cont .box .figure-wrap .figure img {
	width: 100%;
}

.split-cont .box .figure-wrap .figure:nth-child(2) {
	width: 49%;
	float: right;
	margin: -30% 0 0 0;
}

.split-cont .box .aside {
	width: 52.85%;
	font-size: 18px;
	line-height: 28px;
	padding: 0 0 0 11.50%;
}

.split-cont .box .aside h2,
.split-cont .box .aside .h2 {
	padding-bottom: 60px;
}

.split-cont .box .aside h2:last-child,
.split-cont .box .aside .h2:last-child {
	padding-bottom: 0;
}

.split-cont .box .aside p {
	color: #80828f;
	padding-bottom: 28px;
}

.split-cont .box .aside p strong {
	color: #071c1c;
}

.split-cont .box .aside p:last-child {
	padding-bottom: 0;
}

.split-cont .box .aside .sub-heading {
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	padding-bottom: 28px;
}

.split-cont .box .aside .sub-heading:last-child {
	padding-bottom: 0;
}

.split-cont .box .aside .btn,
.split-cont .box .aside input[type="button"],
.split-cont .box .aside input[type="submit"] {
	width: 100%;
	max-width: 487px;
}

@media only screen and (max-width: 1399px) {
.split-cont {
	padding: 50px 0 80px 0;
}

.split-cont .box .aside h2,
.split-cont .box .aside .h2 {
	padding-bottom: 50px;
}
}

@media only screen and (max-width: 1199px) {
.split-cont {
	padding: 40px 0 70px 0;
}

.split-cont .box .aside {
	font-size: 16px;
	line-height: 26px;
	padding: 0 0 0 40px;
}

.split-cont .box .aside h2,
.split-cont .box .aside .h2 {
	padding-bottom: 40px;
}

.split-cont .box .aside p {
	padding-bottom: 24px;
}

.split-cont .box .aside .sub-heading {
	font-size: 18px;
	line-height: 28px; 
	padding-bottom: 24px;
}
}

@media only screen and (max-width: 767px) {
.split-cont {
	padding: 30px 0 60px 0;
}

.split-cont .box .figure-wrap {
	width: 100%;
	margin: 0 0 40px 0;
}

.split-cont .box .figure-wrap:last-child {
	margin-bottom: 0;
}

.split-cont .box .aside {
	width: 100%;
	font-size: 15px;
	line-height: 24px;
	padding: 0;
}

.split-cont .box .aside h2,
.split-cont .box .aside .h2 {
	padding-bottom: 30px;
}

.split-cont .box .aside p {
	padding-bottom: 20px;
}

.split-cont .box .aside .sub-heading {
	font-size: 17px;
	line-height: 27px;
	padding-bottom: 20px;
}
}


/* Feature - List */
.feature-list {
	width: 100%;
	overflow: hidden;
	padding: 100px 0;
}

.feature-list .article {
	width: 25%;
	counter-increment: item;
	position: relative;
	padding: 32px 22px 44px 22px;
}

.feature-list .article .box {
	width: 100%;
	height: 100%;
	float: left;
	font-size: 15px;
	line-height: 20px;
	background: #ffffff;
	border-radius: 13px;
	box-shadow: rgba(128, 130, 143, .30) 0 0 60px;
	position: relative;
	padding: 110px 30px 40px 40px;
}

.feature-list .article .box:before {
	content: counter(item);
	width: 64px;
	height: 64px;
	float: left;
	font-weight: 700;
	font-size: 41px;
	color: #ffffff;
	line-height: 64px;
	text-align: center;
	background: #60ce7e;
	position: absolute;
	top: -32px;
	left: 40px;
}

.feature-list .article .box h3,
.feature-list .article .box .h3 {
	font-size: 27px;
	line-height: 37px;
	letter-spacing: normal;
	padding-bottom: 16px;
}

.feature-list .article .box h3:last-child,
.feature-list .article .box .h3:last-child {
	padding-bottom: 0;
}

.feature-list .article .box p {
	color: #80828f;
	padding-bottom: 28px;
}

.feature-list .article .box p:last-child {
	padding-bottom: 0;
}

.feature-list .article-wrap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	counter-reset: item;
	margin: 0 -22px -44px -22px;
}

@media only screen and (max-width: 1399px) {
.feature-list {
	padding: 80px 0;
}

.feature-list .article {
	padding: 28px 15px 30px 15px;
}

.feature-list .article .box {
	padding: 80px 30px 30px 30px;
}

.feature-list .article .box:before {
	width: 56px;
	height: 56px;
	font-size: 36px;
	line-height: 56px;
	top: -28px;
	left: 30px;
}

.feature-list .article .box h3,
.feature-list .article .box .h3 {
	font-size: 26px;
	line-height: 36px;
}

.feature-list .article-wrap {
	margin: 0 -15px -30px -15px;
}
}

@media only screen and (max-width: 1199px) {
.feature-list {
	padding: 70px 0;
}

.feature-list .article {
	width: 50%;
	padding: 28px 15px 30px 15px;
}

.feature-list .article .box p {
	padding-bottom: 24px;
}
}

@media only screen and (max-width: 767px) {
.feature-list {
	padding: 60px 0;
}

.feature-list .article {
	width: 100%;
	padding: 24px 15px 30px 15px;
}

.feature-list .article .box {
	padding: 60px 30px 30px 30px;
}

.feature-list .article .box:before {
	width: 48px;
	height: 48px;
	font-size: 30px;
	line-height: 48px;
	top: -24px;
}

.feature-list .article .box h3,
.feature-list .article .box .h3 {
	font-size: 24px;
	line-height: 24px;
}
	
.feature-list .article .box p {
	padding-bottom: 20px;
}
}


/* Spli - Cont2 */
.split-cont2 {
	width: 100%;
	text-align: center;
	overflow: hidden;
	padding: 60px 0 100px 0;
}

.split-cont2 .article {
	width: 50%;
	padding: 0 22px;
	margin: 0 0 -1px 0;
}

.split-cont2 .article .box {
	width: 100%;
	height: 100%;
	float: left;
	font-size: 18px;
	line-height: 28px;
	border: 1px solid #60ce7e;
	border-right: none;
	border-left: none;
	padding: 60px 0 65px 0;
}

.split-cont2 .article .box h2,
.split-cont2 .article .box .h2 {
	padding-bottom: 60px;
}

.split-cont2 .article .box h2:last-child,
.split-cont2 .article .box .h2:last-child {
	padding-bottom: 0;
}

.split-cont2 .article .box .aside {
	width: 100%;
	max-width: 560px;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.split-cont2 .article .box .aside p {
	color: #80828f;
	padding-bottom: 28px;
}

.split-cont2 .article .box .aside p:last-child {
	padding-bottom: 0;
}

.split-cont2 .article .box .aside .sub-heading {
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	padding-bottom: 28px;
}

.split-cont2 .article .box .aside .sub-heading:last-child {
	padding-bottom: 0;
}

.split-cont2 .article-wrap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0 0 1px 0;
	margin: 0 -22px;
}

@media only screen and (max-width: 1399px) {
.split-cont2 {
	padding: 50px 0 80px 0;
}

.split-cont2 .article {
	padding: 0 15px;
}

.split-cont2 .article .box {
	padding: 50px 0 55px 0;
}

.split-cont2 .article .box h2,
.split-cont2 .article .box .h2 {
	padding-bottom: 50px;
}

.split-cont2 .article-wrap {
	margin: 0 -15px;
}
}

@media only screen and (max-width: 1199px) {
.split-cont2 {
	padding: 40px 0 70px 0;
}

.split-cont2 .article .box {
	font-size: 16px;
	line-height: 26px;
	padding: 41px 0 45px 0;
}

.split-cont2 .article .box h2,
.split-cont2 .article .box .h2 {
	padding-bottom: 40px;
}

.split-cont2 .article .box .aside p {
	padding-bottom: 24px;
}

.split-cont2 .article .box .aside .sub-heading {
	font-size: 18px;
	line-height: 28px;
	padding-bottom: 24px;
}
}

@media only screen and (max-width: 767px) {
.split-cont2 {
	padding: 30px 0 60px 0;
}

.split-cont2 .article {
	width: 100%;
	padding: 0 22px;
	margin: 0 0 -1px 0;
}

.split-cont2 .article .box {
	font-size: 15px;
	line-height: 24px;
	padding: 32px 0 34px 0;
}

.split-cont2 .article .box h2,
.split-cont2 .article .box .h2 {
	padding-bottom: 30px;
}

.split-cont2 .article .box .aside p {
	padding-bottom: 20px;
}

.split-cont2 .article .box .aside .sub-heading {
	font-size: 17px;
	line-height: 27px;
	padding-bottom: 20px;
}
}


/* Articles - List */
.articles-list {
	width: 100%; 
	float: none; 
	display: inline-block; 
	vertical-align: top;
	padding: 60px 0 100px 0;
}

.articles-list .article {
	width: 50%;
	position: relative;
	padding: 0 22px 44px 22px;
}

.articles-list .article .box {
	width: 100%;
	height: 100%;
	float: left;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	font-size: 18px;
	line-height: 24px;
	background: #ffffff;
	border-radius: 13px;
	box-shadow: rgba(128, 130, 143, .30) 0 0 60px;
	position: relative;
	padding: 41px 60px 50px 60px;
}

.articles-list .article .box .aside {
	width: 100%;
	padding: 0 190px 0 0;
}

.articles-list .article .box .aside h3,
.articles-list .article .box .aside .h3 {
	font-size: 27px;
	line-height: 37px;
	letter-spacing: normal;
	padding-bottom: 20px;
}

.articles-list .article .box .aside h3:last-child,
.articles-list .article .box .aside .h3:last-child {
	padding-bottom: 0;
}

.articles-list .article .box .aside h5 {
	font-size: 22px;
	line-height: 27px;
}

.articles-list .article .box .aside p {
	color: #80828f;
	padding-bottom: 28px;
}

.articles-list .article .box .aside p:last-child {
	padding-bottom: 0;
}

.articles-list .article .box .aside .btn,
.articles-list .article .box .aside .input[type="button"],
.articles-list .article .box .aside .input[type="submit"] {
	width: 100%;
	max-width: 210px;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: -0.01em;
	padding: 13px 40px;
}

.articles-list .article .box .aside .btn-out {
	margin: 7px 0 0 0;
}

.articles-list .article .box .icon {
	width: 162px;
	text-align: center;
	overflow: hidden;
	position: relative;
	z-index: 5;
	margin: 0 0 0 -162px;
}

.articles-list .article .box .icon img {
	max-height: 122px;
}

.articles-list .article .box li {
	margin-bottom: 20px;
}

.articles-list .article-wrap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -22px -44px -22px;
}

@media only screen and (max-width: 1399px) {
.articles-list {
	padding: 50px 0 80px 0;
}

.articles-list .article {
	padding: 0 15px 30px 15px;
}

.articles-list .article .box {
	padding: 41px 50px 50px 50px;
}

.articles-list .article .box .aside {
	width: 100%;
	padding: 0 170px 0 0;
}

.articles-list .article .box .aside h3,
.articles-list .article .box .aside .h3 {
	font-size: 26px;
	line-height: 36px;
}

.articles-list .article .box .icon {
	width: 120px;
	margin: 0 0 0 -120px;
}

.articles-list .article .box .icon img {
	max-height: 100px;
}

.articles-list .article-wrap {
	margin: 0 -15px -30px -15px;
}
}

@media only screen and (max-width: 1199px) {
.articles-list {
	padding: 40px 0 70px 0;
}

.articles-list .article .box {
	padding: 40px 40px;
}

.articles-list .article .box .aside {
	order: 2;
	padding: 0;
	height: 100%;
}

.articles-list .article .box .aside p {
	padding-bottom: 24px;
}

.articles-list .article .box .icon {
	width: 100%;
	order: 1;
	margin: 0 0 25px 0;
	max-height: 80px;
}

.articles-list .article .box .icon img {
	max-height: 80px;
}
}

@media only screen and (max-width: 767px) {
.articles-list {
	padding: 30px 0 60px 0;
}

.articles-list .article {
	width: 100%;
	padding: 0 22px 44px 22px;
}

.articles-list .article .box {
	padding: 30px 30px;
}

.articles-list .article .box .aside h3,
.articles-list .article .box .aside .h3 {
	font-size: 24px;
	line-height: 34px;
}

.articles-list .article .box .aside p {
	padding-bottom: 20px;
}

.articles-list .article .box .icon img {
	max-height: 70px;
}
}


/* CTA - Content */
.cta-cont {
	width: 100%;
	color: #ffffff;
	background: #60ce7e;
	text-align: center;
	position: relative;
	overflow: hidden;
	padding: 150px 0;
}

.cta-cont:before {
	content: "";
	width: 0;
	height: 0;
	border-left: 22px solid transparent;
	border-right: 22px solid transparent;
	border-top: 22px solid #ffffff;
	position: absolute;
	top: 0;
	left: 50%;
	-ms-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	z-index: 1;
}

.cta-cont .aside {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.cta-cont .aside h2,
.cta-cont .aside .h2 {
	padding-bottom: 45px;
}

.cta-cont .aside h2:last-child,
.cta-cont .aside .h2:last-child {
	padding-bottom: 0;
}

.cta-cont .aside .btn {
	width: 100%;
	max-width: 490px;
}

@media only screen and (max-width: 1399px) {
.cta-cont {
	padding: 120px 0;
}

.cta-cont .aside h2,
.cta-cont .aside .h2 {
	padding-bottom: 40px;
}

.cta-cont .aside .btn {
	max-width: 440px;
}
}

@media only screen and (max-width: 1199px) {
.cta-cont {
	padding: 80px 0;
}

.cta-cont .aside h2,
.cta-cont .aside .h2 {
	padding-bottom: 30px;
}

.cta-cont .aside .btn {
	max-width: 380px;
}
}

@media only screen and (max-width: 767px) {
.cta-cont {
	padding: 60px 0;
}

.cta-cont:before {
	border-left-width: 17px;
	border-right-width: 17px;
	border-top-width: 17px;
}

.cta-cont .aside h2,
.cta-cont .aside .h2 {
	padding-bottom: 25px;
}

.cta-cont .aside .btn {
	max-width: 300px;
}
}


/* Contact - Content */
.contact-cont {
	width: 100%;
	background: #f6f7f7;
	overflow: hidden;
	padding: 120px 0;
}

.contact-cont h2,
.contact-cont .h2 {
	font-weight: 600;
	font-size: 44px;
	line-height: 54px;
	letter-spacing: -0.01em;
}

.contact-cont .col-wrap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-bottom: 120px;
}

.contact-cont .col-wrap:last-child {
	padding-bottom: 0;
}

.contact-cont .col-wrap .left-col {
	width: 68%;
	float: left;
	padding: 0 50px 0 0;
}

.contact-cont .col-wrap .left-col p {
	width: 100%;
	max-width: 895px;
}

.contact-cont .col-wrap .right-col {
	width: 32%;
	float: left;
	font-size: 24px;
	line-height: 34px;
}

.contact-cont .col-wrap .right-col p {
	padding-bottom: 30px;
}

.contact-cont .col-wrap .right-col p:last-child {
	padding-bottom: 0;
}

.contact-cont .logos-wrap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	font-size: 24px;
	line-height: 34px;
	background: #ffffff;
	box-shadow: rgba(128, 130, 143, .30) 0 0 100px;
	border-radius: 15px;
	overflow: hidden;
	padding: 3% 4%;
	margin-bottom: 120px;
}

.contact-cont .logos-wrap:last-child {
	margin-bottom: 0;
}

.contact-cont .logos-wrap p {
	float: none;
	display: inline-block;
	vertical-align: middle;
	padding: 0;
	margin: 0 23px 0 0;
}

.contact-cont .logos-wrap ul {
	float: none;
	display: inline-block;
	vertical-align: middle;
	padding: 0;
	margin: 0;
}

.contact-cont .logos-wrap ul li {
	float: none;
	display: inline-block;
	vertical-align: middle;
	padding: 0;
	margin: 0;
}

.contact-cont .logos-wrap ul li:before {
	display: none;
}

.contact-cont .logos-wrap .left-col {
	width: 27%;
	float: left;
}

.contact-cont .logos-wrap .right-col {
	width: 73%;
	float: left;
	text-align: right;
}

.contact-cont .logos-wrap .right-col ul {
	margin: 0 -8px -20px -8px;
}

.contact-cont .logos-wrap .right-col ul li {
	margin: 0 8px 20px 8px;
}

@media only screen and (max-width: 1399px) {
.contact-cont {
	padding: 110px 0;
}

.contact-cont h2,
.contact-cont .h2 {
	font-size: 40px;
	line-height: 50px;
}

.contact-cont .col-wrap .right-col {
	font-size: 20px;
	line-height: 30px;
}

.contact-cont .col-wrap .right-col p {
	padding-bottom: 25px;
}

.contact-cont .logos-wrap {
	font-size: 20px;
	line-height: 30px;
	box-shadow: rgba(128, 130, 143, .30) 0 0 70px;
	margin-bottom: 100px;
}

.contact-cont .logos-wrap .left-col ul li img {
	max-height: 90px;
}

.contact-cont .logos-wrap .right-col ul li img {
	max-height: 60px;
}

.contact-cont .logos-wrap .right-col ul li:nth-child(2) img {
	max-height: 34px;
}
}

@media only screen and (max-width: 1199px) {
.contact-cont {
	padding: 80px 0;
}

.contact-cont h2,
.contact-cont .h2 {
	font-size: 36px;
	line-height: 46px;
}

.contact-cont .col-wrap .right-col {
	font-size: 18px;
	line-height: 28px;
}

.contact-cont .col-wrap .right-col p {
	padding-bottom: 25px;
}

.contact-cont .logos-wrap {
	font-size: 18px;
	line-height: 28px;
	align-items: flex-end;
	padding: 40px;
	margin-bottom: 80px;
}

.contact-cont .logos-wrap p {
	width: 100%;
	margin: 0 0 20px 0;
}

.contact-cont .logos-wrap ul {
	float: none;
	display: inline-block;
	vertical-align: middle;
	padding: 0;
	margin: 0;
}

.contact-cont .logos-wrap .left-col {
	width: 50%;
	margin-bottom: -13px;
}

.contact-cont .logos-wrap .right-col {
	width: 50%;
	text-align: center;
}

.contact-cont .logos-wrap .right-col ul {
	margin: 0 -8px -20px -8px;
}

.contact-cont .logos-wrap .right-col ul li {
	margin: 0 8px 20px 8px;
}
}

@media only screen and (max-width: 991px) {
.contact-cont .col-wrap .left-col {
	width: 100%;
	padding: 0 0 50px 0;
}

.contact-cont .col-wrap .right-col {
	width: 100%;
}
}

@media only screen and (max-width: 767px) {
.contact-cont {
	padding: 60px 0;
}

.contact-cont h2,
.contact-cont .h2 {
	font-size: 30px;
	line-height: 40px;
}

.contact-cont .logos-wrap {
	padding: 30px;
	margin-bottom: 80px;
}

.contact-cont .logos-wrap .left-col {
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}

.contact-cont .logos-wrap .right-col {
	width: 100%;
}
}


/*
 5.) Footer - Main
----------------------------------------*/

.footer-main {
	width: 100%;
	float: left;
	background: #4a5c67;
	padding: 85px 0 0 0;
}

.footer-main .container {
	max-width: 1575px;
}

.footer-main .footer-logo {
	width: 100%;
	overflow: hidden;
}

.footer-main .footer-logo img {
	max-height: 38px;
}

.footer-main .pre-footer {
	width: 100%;
	overflow: hidden;
	border-bottom: 2px solid #7d8f9a;
}

.footer-main .pre-footer .article {
	width: 32.40%;
	font-weight: 400;
	font-size: 16px;
	color: #ffffff;
	line-height: 28px;
	letter-spacing: normal;
	border-right: 1px solid #7d8f9a;
	padding: 15px 40px 65px 9%;
}

.footer-main .pre-footer .article h2,
.footer-main .pre-footer .article .h2 {
	font-weight: 600;
	font-size: 16px;
	color: #0dd375;
	line-height: 26px;
	letter-spacing: normal;
	padding: 0;
}

.footer-main .pre-footer .article p {
	padding-bottom: 28px;
}

.footer-main .pre-footer .article p strong {
	font-weight: 600;
}

.footer-main .pre-footer .article p:last-child {
	padding-bottom: 0;
}

.footer-main .pre-footer .article p a {
	color: #ffffff;
	text-decoration: none;
}

.footer-main .pre-footer .article p a:focus,
.footer-main .pre-footer .article p a:active,
.footer-main .pre-footer .article p a:hover {
	color: #0dd375;
}

.footer-main .pre-footer .article .aside {
	width: 100%;
	overflow: hidden;
	padding: 0 0 57px 0;
}

.footer-main .pre-footer .article .aside:last-child {
	padding-bottom: 0;
}

.footer-main .pre-footer .article .aside ul {
	padding: 0;
	margin: 0;
}

.footer-main .pre-footer .article .aside ul li {
	padding: 0;
	margin: 0;
}

.footer-main .pre-footer .article .aside ul li:before {
	display: none;
}

.footer-main .pre-footer .article .aside ul li a {
	color: #ffffff;
	text-decoration: none;
}

.footer-main .pre-footer .article .aside ul li a:focus,
.footer-main .pre-footer .article .aside ul li a:active,
.footer-main .pre-footer .article .aside ul li a:hover {
	color: #0dd375;
}

.footer-main .pre-footer .article .partners-logo {
	width: 100%;
	overflow: hidden;
}

.footer-main .pre-footer .article .partners-logo h2,
.footer-main .pre-footer .article .partners-logo .h2 {
	padding: 0 0 10px 0;
}

.footer-main .pre-footer .article .partners-logo ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	padding: 0;
	margin: 0 -16px -16px -16px;
}

.footer-main .pre-footer .article .partners-logo ul li {
	padding: 0;
	margin: 0 16px 16px 16px;
}

.footer-main .pre-footer .article .partners-logo ul li:before {
	display: none;
}

.footer-main .pre-footer .article .partners-logo ul li img {
	max-height: 100px;
}

.footer-main .pre-footer .article .social-links h2,
.footer-main .pre-footer .article .social-links .h2 {
	padding: 0 0 13px 0;
}

.footer-main .pre-footer .article .social-links ul li a {
	color: #ffffff;
	border-color: #ffffff;
}

.footer-main .pre-footer .article .social-links ul li a:focus,
.footer-main .pre-footer .article .social-links ul li a:active,
.footer-main .pre-footer .article .social-links ul li a:hover {
	color: #ffffff;
	background: #0dd375;
	border-color: #0dd375;
}

.footer-main .pre-footer .article:first-child {
	padding-left: 0;
}

.footer-main .pre-footer .article:nth-child(2) {
	width: 37.60%;
}

.footer-main .pre-footer .article:nth-child(3) {
	width: 30%;
	border-right: none;
}

.footer-main .pre-footer .article-wrap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: top;
}

.footer-main .copyrights {
	width: 100%;
	overflow: hidden;
	font-size: 16px;
	color: #7d8f9a;
	line-height: 28px;
	letter-spacing: normal;
	text-align: center;
	padding: 22px 0;
}

@media only screen and (max-width: 1399px) {
.footer-main .pre-footer .article {
	width: 38%;
	padding: 15px 40px 65px 40px;
}

.footer-main .pre-footer .article:nth-child(2) {
	width: 38%;
}

.footer-main .pre-footer .article:nth-child(3) {
	width: 24%;
	border-right: none;
}
}

@media only screen and (max-width: 1199px) {
.footer-main {
	padding: 60px 0 0 0;
}

.footer-main .pre-footer .article {
	width: 100%;
	padding: 30px 40px 30px 0;
}

.footer-main .pre-footer .article:first-child {
	border-bottom: 1px solid #7d8f9a;
	border-right: none;
	padding-top: 15px;
}

.footer-main .pre-footer .article:nth-child(2) {
	width: 60%;
}

.footer-main .pre-footer .article:nth-child(3) {
	width: 40%;
	padding-left: 40px;
}
}

@media only screen and (max-width: 767px) {
.footer-main {
	text-align: center;
	padding: 50px 0 0 0;
}

.footer-main .container {
	max-width: 600px;
}

.footer-main .footer-logo {
	width: 100%;
	overflow: hidden;
}

.footer-main .footer-logo img {
	max-height: 32px;
}

.footer-main .pre-footer .article {
	width: 100%;
	font-size: 14px;
	line-height: 26px;
	border-right: none;
	border-bottom: 1px solid #7d8f9a;
	padding: 30px 0;
}

.footer-main .pre-footer .article:last-child {
	border-bottom: none;
}

.footer-main .pre-footer .article h2,
.footer-main .pre-footer .article .h2 {
	font-size: 14px;
	line-height: 26px;
}

.footer-main .pre-footer .article p {
	padding-bottom: 20px;
}

.footer-main .pre-footer .article .aside {
	padding: 0 0 30px 0;
}

.footer-main .pre-footer .article .partners-logo ul {
	justify-content: center;
	margin: 0 -10px -20px -10px;
}

.footer-main .pre-footer .article .partners-logo ul li {
	margin: 0 10px 20px 10px;
}

.footer-main .pre-footer .article .social-links ul {
	justify-content: center;
}

.footer-main .pre-footer .article:nth-child(2) {
	width: 100%;
}

.footer-main .pre-footer .article:nth-child(3) {
	width: 100%;
	padding-left: 0;
}

.footer-main .copyrights {
	font-size: 14px;
	line-height: 24px;
	padding: 15px 0;
}
}


/*
 6.) Site - Cores
------------------------------------------------------*/

/* Text - Colors */
.green {
	color: #0dd375!important;
}

.green-dark {
	color: #153c3f!important;
}

.green-light {
	color: #8af9bb!important;
}

.grey {
	color: #141b1f!important;
}

.grey-blue {
	color: #455e68!important;
}

.grey-bg {
	color: #f6f7f7!important;
}

.white {
	color: #ffffff!important;
}


/* Font - Weights */
.light {
	font-weight: 300!important; 
}

.regular {
	font-weight: 400!important; 
}

.medium {
	font-weight: 500!important; 
}

.semi-bold {
	font-weight: 600!important; 
}

.bold {
	font-weight: 700!important; 
}

.extra-bold {
	font-weight: 800!important; 
}

.black {
	font-weight: 900!important; 
}


/* Text - Positions */
.upper-case { 
	text-transform: uppercase!important;
}

.lower-case { 
	text-transform: none!important;
}

.underline {
	text-decoration: underline!important; 
}

.center-align {
	text-align: center!important;
	justify-content: center!important;
}

.vertical-align {
	align-items: center!important;
}

.left-align {
	text-align: left!important;
}

.right-align {
	text-align: right!important;
}


/* Padding/Margin - None */
.p-top-none {
	padding-top: 0!important;
}

.p-bottom-none {
	padding-bottom: 0!important;
}

.m-top-none {
	margin-top: 0!important;
}

.m-bottom-none {
	margin-bottom: 0!important;
}

