@charset "utf-8";

/* CR Web Studio framework CSS */

/* PRESETS */

.clear {
	clear: both;
}
.group:after {
	content: "";
	display: table;
	clear: both;
}
.left {
	float: left;
}
.right {
	float: right;
}
.hidden {
	display: none;
}
.align-left {
	text-align: left;
}
.align-center {
	text-align: center;
}
.align-right {
	text-align: right;
}
.padding-left {
	padding-left: 20px;
}
.padding-right {
	padding-right: 20px;
}
.absolutecenter {
	display: block;
	width: 80%;
	height: auto;
	margin: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.table {
	width: 100%;
	vertical-align: middle;
	display: table;
}
.table-cell {
	vertical-align: middle;
	display: table-cell;
	float: none !important;
}
.button {
	font-family: 'open_sansbold';
	font-size: 0.8em;
	text-transform: uppercase;
	color: #fff;
	background: #00a4de;
	padding: 13px 20px;
	display: inline-block;
	border-radius: 5px;
	-webkit-border-radius: 5px;
}
.button p {
	margin: 0px;
}
.button.alt {
	background: #3ca33d;
}
.button-big {
	font-size: 1.1em;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	border: 2px solid #fff;
	padding: 10px 35px;
	display: inline-block;
	border-radius: 30px;
	-webkit-border-radius: 30px;
}

/* FONTS */
@font-face {
    font-family: 'open_sansregular';
    src: url('../fonts/opensans-regular-webfont.eot');
    src: url('../fonts/opensans-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/opensans-regular-webfont.woff2') format('woff2'),
         url('../fonts/opensans-regular-webfont.woff') format('woff'),
         url('../fonts/opensans-regular-webfont.ttf') format('truetype'),
         url('../fonts/opensans-regular-webfont.svg#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'open_sansbold';
    src: url('../fonts/opensans-bold-webfont.eot');
    src: url('../fonts/opensans-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/opensans-bold-webfont.woff') format('woff'),
         url('../fonts/opensans-bold-webfont.ttf') format('truetype'),
         url('../fonts/opensans-bold-webfont.svg#open_sansbold') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'latoregular';
    src: url('../fonts/lato-regular-webfont.eot');
    src: url('../fonts/lato-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/lato-regular-webfont.woff2') format('woff2'),
         url('../fonts/lato-regular-webfont.woff') format('woff'),
         url('../fonts/lato-regular-webfont.ttf') format('truetype'),
         url('../fonts/lato-regular-webfont.svg#latoregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* GLOBAL STYLE */

body {
	font-family: 'open_sansregular';
	font-size: 16px;
	line-height: 1.5;
	color: #000;
	background: #fff;
}
img {
	max-width: 100%;
	vertical-align: middle;
}
a {
	color: #00a4de;
	text-decoration: none;
}
a:hover {
	color: #bde2df;
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'open_sansbold';
	font-weight: normal;
	margin-top: 0;
}
p {
	font-size: 0.95em;
}
header {
	padding: 10px 0;
	-webkit-box-shadow: 0 1px 7px 0 rgba(0,0,0,0.3);
	box-shadow: 0 1px 7px 0 rgba(0,0,0,0.3);
	position: relative;
	z-index: 99;
}
#main {
	overflow-x: hidden; 
}
#logo img {
	max-width: 125px;
}
nav {
	text-align: right;
}
#navigation {
	text-align: right;
	margin: 0;
	display: inline-block;
}
#navigation a {
	color: #000;
}
#navigation li {
	font-family: 'latoregular';
	font-size: 0.9em;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
	list-style: none;
	margin-left: 2em;
	display: inline-block;
}
#navigation li:first-child {
	margin-left: 0;
}
.slicknav_menu {
	display:none;
}
#chat-whatsapp img {
    width: 100px;
}
#language {
	font-size: 0.9em;
	margin-left: 30px;
	display: inline-block;
	position: relative;
}
#language img {
	width: 20px;
}
#language a {
	color: #000;
	background: #fff;
	border: 1px solid #ccc;
	padding: 7px 20px;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	display: block;
}
#language a.option {
	position: absolute;
	top: 90%;
	left: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#language:hover a.option {
	top: 100%;
	opacity: 1;
	visibility: visible;
}
.widget-language ul {
	text-align: left;
	list-style: none;
	padding: 0px;
	margin: 0px;
	position: relative;
}
.widget-language ul ul {
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.widget-language ul:hover ul {
	padding-top: 5px;
	top: 100%;
	opacity: 1;
	visibility: visible;
}
#hamburger {
	width: 25px;
	padding: 5px;
	margin-bottom: -10px;
	display: inline-block;
	float: right;
	position: relative;
	z-index: 998;
}
#hamburger span {
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 5px 0;
    display: block;
}
.sidenav {
	width: 0;
	height: 100%;
	background-color: #fff;
	padding-top: 55px;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999;
	overflow-x: hidden;
	transition: 0.5s;
}
.sidenav a {
	font-size: 1.3em;
	text-decoration: none;
	line-height: 1;
	color: #000;
	display: block;
}
.sidenav ul {
	list-style: none;
	padding: 0;
	margin: 0 0 10px 0;
}
.sidenav ul a {
	padding: 8px 8px 8px 32px;
}
.sidenav .closebtn {
	font-size: 36px;
	padding: 10px;
	position: absolute;
	top: -2px;
	right: 12px;
}
.sidenav #language a {
	font-size: 1.1em;
	padding: 7px 10px;
	border-radius: 5px;
    -webkit-border-radius: 5px;
}
.sidenav #language img {
	width: 20px;
}
#slideshow {
	display: block !important;
	position: relative;
}
.slide-content h3 {
	font-size: 2.2em;
	margin: 0 0 30px 0;
}
.slide-image {
	padding-top: 30px;
}
section {
	padding: 50px 0;
	position: relative;
}
.section-heading {
	text-transform: uppercase;
	letter-spacing: 1px;
}
.section-title {
	font-family: 'open_sansbold';
	font-size: 2.2em;
	font-weight: normal;
	line-height: 1.3;
	margin-bottom: 20px;
}
section#promo {
	background: #f3f3f3;
}
section#how-it-works {
	text-align: center;
	background: url("../images/bg-how-it-works.jpg") center center no-repeat;
	background-size: cover;
	padding: 70px 0;
}
section#how-it-works .section-title {
	margin-bottom: 0px;
}
.steps {
	list-style: none;
	padding: 80px 0 80px 0;
	margin: 0;
}
.steps-wrapper {
	display: inline-block;
	position: relative;
}
.steps-number span {
	width: 50px;
	font-family: 'open_sansbold';
	font-size: 1.2em;
	line-height: 50px;
	color: #fff;
	background: #3ca33d;
	display: inline-block;
	border-radius: 50px;
	-webkit-border-radius: 50px;
}
.steps-number::after {
	content: " ";
	width: 10px;
	height: 10px;
	background: #3ca33d;
	margin: 20px auto;
	display: block;
	border-radius: 20px;
	-webkit-border-radius: 20px;
}
.steps-item:last-child .steps-number::after {
	display: none;
}
.steps-content {
	width: 375px;
	text-align: left;
	margin-top: -75px;
	position: absolute;
	top: 25%;
	left: 170%;
}
.steps-content > div {
	display: inline-block;
	float: left;
}
.steps-info {
	font-family: 'open_sansbold';
	font-size: 1.3em;
	font-weight: normal;
}
.steps-info p {
	margin: 0;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
.steps-item:nth-of-type(even) .steps-content {
	left: auto;
	right: 170%;
}
.steps-item:nth-of-type(even) .steps-content > div {
	float: right;
}
.steps-item:nth-of-type(odd) .steps-info {
	padding-left: 20px;
}
.steps-item:nth-of-type(even) .steps-info {
	text-align: right;
	padding-right: 20px;
}
section#about-get-fluent {
	text-align: center;
	color: #fff;
	background: #3ca33d;
}
.video-container {
	margin-bottom: 50px;
	position: relative;
}
.video-button {
	position: relative;
	z-index: 7;
	top: 35px;
}
.video-button p {
	font-family: 'open_sansbold';
	text-transform: uppercase;
	margin: 0 0 5px 0;
}
.video-button a {
	color: #fff;
}
.play-button {
	font-size: 2.5em;
	background: #00a4de;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	display: inline-block;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.play-button i {
	padding: 15px;
}
.play-button a {
	display: block;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.play-button:hover {
	background: #fff;
}
.play-button:hover a {
	color: #00a4de;
}
.features-image {
	position: absolute;
	top: 12%;
	right: 0;
}
.features-image img {
	max-width: 450px;
}
.features-list {
	width: 65%;
	list-style: none;
	padding: 0;
	margin: 0;
}
.features-list li {
	margin-bottom: 30px;
}
.features-list li:nth-of-type(odd) {
	margin-left: 0 !important;
}
.features-list li h3:after {
	content: " ";
	width: 50px;
	border-bottom: 3px solid #3ca33d;
	margin-top: 10px;
	display: block;
}
section#blog {
	background: #f3f3f3;
	padding-bottom: 80px;
}
.blog-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.blog-list li {
	background: #fff;
	margin-bottom: 40px;
	-webkit-box-shadow: 0 1px 7px 0 rgba(0,0,0,0.3);
	box-shadow: 0 1px 7px 0 rgba(0,0,0,0.3);
}
.blog-title {
	padding: 20px 0px 20px 20px;
}
.blog-title h3 {
	font-family: 'open_sansregular';
	font-size: 1.4em;
	padding-right: 20px;
	margin: 0;
}
.blog-category {
	margin: 0 0 10px 0;
	position: relative;
}
.blog-category a {
	font-size: 0.8em;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #000;
}
.blog-category span {
	background: #fff;
	padding-right: 15px;
	display: inline-block;
	position: relative;
	z-index: 2;
}
.blog-category:after {
	content: " ";
	width: 100%;
	height: 3px;
	background: #3ca33d;
	margin-top: -0.5px;
	display: block;
	position: absolute;
	top: 50%;
	z-index: 1;
}
.blog-list {
	margin-bottom: 20px;
}
.blog-list li:nth-of-type(even) .blog-category:after {
	background: #00a4de;
}
section#support {
	color: #fff;
	background: #00a4de;
}
.support-image span {
	display: block;
}
.support-image img {
	max-width: 320px;
	position: absolute;
	bottom: 0;
	margin-left: 20px;
}
.support-info h3 {
	line-height: 1.2;
	margin-bottom: 10px;
}
.support-info p {
	margin: 0;
}
section#download-now {
	text-align: center;
	background: url("../images/bg-download.jpg") center center no-repeat;
	background-size: cover;
	padding: 250px 0;
}
section#download-now h3 {
	margin-bottom: 10px;
}
section#download-now p {
	margin-bottom: 30px;
}
section#download-now img {
	max-width: 170px;
	margin: 0 5px;
}
#page-content {
	background: #f3f3f3;
	position: relative;
}
#page-header-image {
	content: " ";
	min-height: 300px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	position: relative;
}
#page-header-image article {
	text-align: center;
	padding-top: 120px;
}
.page-section {
	position: relative;
}
#slogan {
	font-family: 'open_sansbold';
	font-size: 2.2em;
	font-weight: normal;
	text-align: center;
}
#slogan span {
	color: #fff;
	background: #3ca33d;
	padding: 20px 40px;
	margin: 0px;
	display: inline-block;
	position: relative;
	top: -50px;
}
.card {
	margin-bottom: 50px;
}
.card-content {
	background: #fff;
	padding: 50px;
}
#why-get-fluent {
	color: #fff;
	background: #00a4de;
	padding: 60px 0 20px 0;
}
#why-get-fluent .section-title {
	text-align: center;
}
#why-get-fluent .section-title p {
	margin: 0px;
}
#reasons {
	padding: 30px 0;
	margin: 0;
}
.reasons-item {
	margin-bottom: 40px;
}
.reasons-item:nth-of-type(odd) {
	margin-left: 0;
}
#learn-efficiently {
	background: #fff;
	padding: 60px 0;
}
#learn-efficiently p:first-child {
	margin-top: 0;
}
#experienced-company {
	background: #fff;
}
#experienced-company article {
	text-align: center;
	padding: 60px 15%;
}
#features-intro {
	text-align: center;
	background: #fff;
	padding: 50px 0;
}
#features-intro article {
	padding: 0 20%;
}
.features-detail {
	padding: 30px;
}
.features-detail-list {
	list-style: none;
	text-align: center;
	padding: 0;
	margin: 0;
	columns: 2;
    column-gap: 40px;
    display: block;
}
.features-detail-item {
	width: 100%;
	background: #fff;
	padding-top: 60px;
	margin-bottom: 20px;
	display: inline-block;
}
.features-detail-item:first-child {
	color: #fff;
	background: #00a4de;
	padding-bottom: 60px;
}
.features-detail-item:nth-of-type(4) {
	color: #fff;
	background: #3ca33d;
	padding-bottom: 60px;
}
.features-detail-item:nth-of-type(5) {
	padding-bottom: 60px;
}
.features-detail-item:nth-of-type(6) {
	padding-bottom: 60px;
}
.features-detail-item article {
	padding: 0 60px 30px 60px;
}
.features-detail-item h3 {
	font-family: 'open_sansregular';
    font-size: 1.8em;
    margin-bottom: 20px;
}
.features-detail-item p {
	margin-top: 0;
}
#promo-archive,
.post-content {
	padding: 40px 0;
}
.post-image {
	margin-bottom: 30px;
}
.blog-heading {
	color: #fff;
}
.blog-heading p {
	margin: 0;
}
#categories {
	text-align: center;
}
#blog-category-menu {
	font-size: 0;
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-block;
	-webkit-box-shadow: 0 1px 7px 0 rgba(0,0,0,0.3);
	box-shadow: 0 1px 7px 0 rgba(0,0,0,0.3);
	position: relative;
	top: -40px;
}
#blog-category-menu li {
	font-family: 'open_sansregular';
    font-size: 22px;
	display: inline-block;
	white-space: normal;
}
#blog-category-menu li a {
	color: #000;
	background: #fff;
	padding: 20px 35px;
	display: block;
}
#latest-blog .section-title {
	font-family: 'open_sansregular';
	font-size: 2em;
	font-weight: normal;
	margin-bottom: 30px;
}
#latest-blog .section-title span {
	font-size: 26px;
}
.blog-list a {
	color: #000;
}
#blog-archive .blog-list li.first-page:nth-of-type(-n+2) {
	width: 48%;
}
#blog-archive .blog-list li p {
	color: #777;
	padding-right: 20px;
	margin-top: 5px;
}
.pagination ul {
	text-align: center;
	padding: 0;
	margin-top: 0;
	margin-bottom: 30px;
}
.pagination ul li {
	display: inline-block;
}
.pagination ul li a {
	padding: 10px;
	display: block;
}
.pagination ul li a:hover {
	color: #00a4de;
	text-decoration: underline;
}
.pagination ul li.active a {
	background: #eaeaea;
}
#faq-content {
	padding: 50px 0 20px 0;
}
.tab {
	width: 100%;
	color: #fff;
	margin-bottom: 20px;
	overflow: hidden;
	position: relative;
}
.tab h3 {
	margin: 0;
}
input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
label {
	font-weight: bold;
	line-height: 3;
	padding: 0 0 0 1em;
	display: block;
	cursor: pointer;
	position: relative;
}
.tab:nth-of-type(odd) {
	background: #3ca33d;
}
.tab:nth-of-type(even) {
	background: #00a4de;
}
.tab-content {
	max-height: 0;
	color: #000;
	background: #fff;
	overflow: hidden;
	-webkit-transition: max-height .35s;
	-o-transition: max-height .35s;
	transition: max-height .35s;
}
.tab-content p {
	margin: 1em;
}
input:checked ~ .tab-content {
	max-height: 10em;
}
label::after {
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	width: 3em;
	height: 3em;
	line-height: 3;
	text-align: center;
	-webkit-transition: all .35s;
	-o-transition: all .35s;
	transition: all .35s;
}
input[type=checkbox] + label::after {
	content: "+";
}
input[type=radio] + label::after {
	content: "\25BC";
}
input[type=checkbox]:checked + label::after {
	transform: rotate(315deg);
}
input[type=radio]:checked + label::after {
	transform: rotateX(180deg);
}
.find-answer {
	text-align: center;
	padding-bottom: 50px;
}
.find-answer article {
	background: #fff;
	padding: 50px;
}
.find-answer .section-title {
	margin-bottom: 0;
}
#error404 {
	min-height: 300px;
	text-align: center;
	padding: 60px 20px;
}
footer {
	color: #fff;
	background: #3ca33d;
	padding: 40px 0;
}
footer a {
	color: #fff;
}
footer p {
	font-size: 0.9em;
	margin-top: 0;
}
.footer-top {
	border-bottom: 1px solid #fff;
	padding-bottom: 30px;
	margin-bottom: 30px;
}
.footer-logo img {
	max-width: 180px;
}
#nav-footer ul {
	list-style: none;
	text-align: center;
	padding: 0;
	margin: 0;
}
#nav-footer ul li {
	font-family: 'open_sansbold';
	text-transform: uppercase;
	margin-left: 2em;
	display: inline-block;
}
#nav-footer ul li:first-child {
	margin-left: 0;
}
.social-links {
	text-align: right;
}
.social-icons {
	font-size: 1.3em;
}
.social-icons i {
	margin-left: 10px;
}
.payment-logo {
	text-align: center;
}
.payment-logo img {
	height: 35px !important;
	margin: 0 5px;
}
.copyright {
	text-align: right;
}
.footer-links a {
	font-family: 'open_sansbold';
}
#floating-chat {
	color: #fff;
	position: fixed;
	bottom: 30px;
	right: 30px;
	cursor: pointer;
}
#floating-chat img {
	width: 60px;
}
#floating-chat a {
	color: #fff;
}
.floating-info {
	font-size: 0.9rem;
	background-color: #30318b;
	padding: 6px 12px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	position: fixed;
	bottom: 23px;
	right: 90px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
#floating-chat:hover .floating-info {
	right: 100px;
	opacity: 100;
	visibility: visible;
}

/* iPad Pro */
@media screen and (min-width: 1024px) {
	#language {
		min-width: 140px;
	}
	#about-get-fluent article {
		padding: 0 15%;
	}
	#blog-archive .blog-list li:nth-of-type(3n+3) {
		margin-left: 0;
	}
	.post-content article {
		padding-right: 30%
	}
}

/* Tablet */
@media screen and (max-width: 768px) {
	.container-wide {
		width: 90%;
		margin: 0 auto;
	}
	#language a {
		margin-bottom: 10px;
	}
	.section-title {
		font-size: 1.8em;
	}
	.features-image {
		width: 36%;
		top: auto;
		bottom: 20%;
	}
	.features-image img {
		max-width: 100%;
	}
	section#support {
		padding: 30px 0;
	}
	.support-info {
		padding-left: 70px;
	}
	.support-info > div {
		display: block;
	}
	.support-image img {
		max-width: 240px;
	}
	.support-button {
		padding-top: 15px;
	}
	section#blog {
		padding: 50px 0;
	}
}

/* Mobile Phone */
@media screen and (max-width: 480px) {
	.table-cell {
		display: block;
	}
	header .col {
		width: auto;
		display: inline-block;
	}
	#logo img {
		max-width: 80px;
	}
	header nav {
		display: none !important;
		visibility: hidden;
	}
	.slide-content {
		text-align: center;
		padding: 30px 20px;
	}
	.slide-content h3 {
		font-size: 1.8em !important;
	}
	.slide-content img {
		max-width: 45%;
	}
	.slide-image {
		padding: 0 30px;
	}
	.section-title {
		font-size: 1.8em !important;
	}
	section#how-it-works {
		padding: 30px 0;
	}
	.steps {
		padding: 20px 0;
	}
	.steps-item {
		margin-bottom: 20px;
	}
	.steps-wrapper {
		text-align: left;
		vertical-align: middle;
		display: block !important;
	}
	.steps-number {
		width: 18%;
		text-align: center;
		vertical-align: middle;
		display: inline-block;
		float: none !important;
	}
	.steps-number span {
		width: 40px;
		font-size: 1em;
		line-height: 40px;
		border-radius: 50px;
		-webkit-border-radius: 50px;
	}
	.steps-number::after {
		display: none;
		visibility: hidden;
	}
	.steps-content {
		width: 79%;
		text-align: left;
		margin-top: 0px;
		vertical-align: middle;
		display: inline-block;
		float: none !important;
		position: relative;
		top: -8px;
		left: auto;
	}
	.steps-content > div {
		display: inline-block;
		float: none !important;
	}
	.steps-image {
		width: 25%;
		text-align: center;
	}
	.steps-image img {
		width: auto !important;
		height: 60px !important;
	}
	.steps-info {
		width: 72%;
		font-family: 'open_sansbold';
		font-size: 1.1em;
		font-weight: normal;
	}
	.steps-info p {
		margin: 0;
		position: relative;
		top: 15px;
		transform: translateY(0);
	}
	.steps-item:nth-of-type(even) .steps-content {
		left: auto;
		right: auto;
	}
	.steps-item .steps-info {
		padding: 0px;
		position: relative;
		bottom: 0;
	}
	.steps-item:nth-of-type(odd) .steps-info {
		padding-left: 0px;
	}
	.steps-item:nth-of-type(even) .steps-info {
		text-align: left;
		padding-right: 0px;
	}
	#features-intro article {
		padding: 0 10%;
	}
	.features-image {
		position: relative;
		top: auto;
		display: none;
	}
	.features-list {
		width: 100%;
	}
	.features-detail-list {
		columns: 1;
	    column-gap: 0px;
	}
	.features-detail-item:nth-of-type(5) {
		padding-left: 35px;
		padding-right: 35px;
	}
	.features-detail-item article {
		padding: 0 35px 30px 35px;
	}
	.features-detail-item:nth-of-type(5) article {
		padding: 0 0 30px 0;
	}
	section#support {
		text-align: center;
		padding-bottom: 0;
	}
	.support-image,
	.support-info {
		padding-left: 0;
		float: right;
	}
	.support-image img {
		max-width: 300px;
		position: relative;
		bottom: 0;
		margin-left: 0px;
	}
	.support-button {
		padding: 20px 0;
		display: block;
	}
	.support-button a {
		display: inline-block;
	}
	section#download-now {
		padding: 50px 0;
	}
	section#download-now img {
		margin-bottom: 20px;
	}
	#page-header-image {
		min-height: 180px;
		background-size: 100%;
		background-position: top center;
		background-attachment: scroll;
	}
	#slogan {
		font-size: 1.6em;
	}
	#slogan span {
		padding: 10px 20px;
		top: -28px;
	}
	#page-header-image article {
		padding-top: 30px;
	}
	.reasons-item {
		text-align: center;
	}
	.reasons-image {
		margin-bottom: 20px;
	}
	.reasons-content p {
		text-align: left;
	}
	#categories {
		margin-bottom: 25px;
	}
	#blog-category-menu {
		background: #fff;
		top: -15px;
	}
	#blog-category-menu li {
		font-size: 18px;
	}
	#blog-archive .blog-list li.first-page:nth-of-type(-n+2) {
		width: 100%;
	}
	footer {
		text-align: center;
	}
	.footer-logo {
		margin-bottom: 20px;
	}
	#nav-footer ul {
		margin-bottom: 20px;
	}
	#nav-footer ul li {
		margin-left: 0;
		margin-bottom: 5px;
		display: block;
	}
	.social-links {
		text-align: center;
	}
	.footer-address {
		margin-bottom: 15px;
	}
	#floating-chat {
		bottom: 20px;
		right: 20px;
	}
	#floating-chat img {
		width: 50px;
	}
	.payment-logo {
		margin-bottom: 20px;
	}
	.copyright {
		text-align: center;
	}
}
