/*
Theme Name: Financial Technology Laboratories

Theme URI: http://rws-cc.com/

Author: RWS Web Design

Author URI: http://rws-cc.com/

Description: This is a custom theme created by RWS Web Design for exclusive use on www.ftlabs.com/

Version: 2.2
*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */

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%;
	vertical-align: baseline;
}
body {
	line-height: 1;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a:focus {
	outline: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin: 24px;
	margin-bottom: 1.714285714rem;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
	max-width:100%;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
	display: table;
	content: "";
}


/* =Repeatable patterns
-------------------------------------------------------------- */

/* Small headers */
.archive-title,
.page-title,
.widget-title,
.entry-content th,
.comment-content th {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	text-transform: uppercase;
	color: #636363;
}

/* Shared Post Format styling */
article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}

/* Form fields, general styles first */
button,
input,
select,
textarea {
	border: 1px solid #ccc;
	border-radius: 3px;
	font-family: inherit;
	padding: 6px;
	padding: 0.428571429rem;
}
button,
input {
	line-height: normal;
}
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}

/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
	border: 0;
	border-radius: 0;
	padding: 0;
}

/* Buttons */
.menu-toggle,
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
.bypostauthor cite span {
	padding: 6px 10px;
	padding: 0.428571429rem 0.714285714rem;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 1.428571429;
	font-weight: normal;
	color: #7c7c7c;
	background-color: #e6e6e6;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
	border: 1px solid #d2d2d2;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
}
.menu-toggle,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
}
button[disabled],
input[disabled] {
	cursor: default;
}
.menu-toggle:hover,
.menu-toggle:focus,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
	color: #5e5e5e;
	background-color: #ebebeb;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -ms-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -webkit-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -o-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: linear-gradient(top, #f9f9f9, #ebebeb);
}
.menu-toggle:active,
.menu-toggle.toggled-on,
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	color: #757575;
	background-color: #e1e1e1;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: linear-gradient(top, #ebebeb, #e1e1e1);
	box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4;
	border-color: transparent;
}
.bypostauthor cite span {
	color: #fff;
	background-color: #21759b;
	background-image: none;
	border: 1px solid #1f6f93;
	border-radius: 2px;
	box-shadow: none;
	padding: 0;
}

/* Responsive images */
.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	max-width: 100%;
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

/* Make sure videos and embeds fit their containers */
embed,
iframe,
object,
video {
	max-width: 100%;
}
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important; /* Override the Twitter embed fixed width */
}

/* Images */
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {
	/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
	border-radius: 0px;
	box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2);
}
.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}
img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.entry-content dl.gallery-item {
	margin: 0;
}
.gallery-item a,
.gallery-caption {
	width: 90%;
}
.gallery-item a {
	display: block;
}
.gallery-caption a {
	display: inline;
}
.gallery-columns-1 .gallery-item a {
	max-width: 100%;
	width: auto;
}
.gallery .gallery-icon img {
	height: auto;
	max-width: 90%;
	padding: 5%;
}
.gallery-columns-1 .gallery-icon img {
	padding: 3%;
}

/* Navigation */
.site-content nav {
	clear: both;
	line-height: 2;
	overflow: hidden;
}
#nav-above {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous,
.previous-image {
	float: left;
	width: 50%;
}
.nav-next,
.next-image {
	float: right;
	text-align: right;
	width: 50%;
}
.nav-single + .comments-area,
#comment-nav-above {
	margin: 48px 0;
	margin: 3.428571429rem 0;
}

/* Author profiles */
.author .archive-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.author-info {
	border-top: 1px solid #ededed;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	overflow: hidden;
}
.author-description p {
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.author.archive .author-info {
	border-top: 0;
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
}
.author.archive .author-avatar {
	margin-top: 0;
}


/* =Basic structure
-------------------------------------------------------------- */

/* Body, links, basics */
html {
	font-size: 87.5%;
}
body {
	font-size: 16px;
	font-family: 'Hind', sans-serif;
	text-rendering: optimizeLegibility;
	color: #434343;
	line-height:1.5;
}
body.custom-font-enabled {
	font-family: 'Hind', sans-serif;
}
a {
	outline: none;
	color: #00a8e9;
	text-decoration:none;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-o-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	transition: all ease 0.3s;

}
a:hover {
	color: #434343;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-o-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	transition: all ease 0.3s;

}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	overflow: hidden;
	height: 1px;
	width: 1px;
}
.main-navigation .assistive-text:focus,
.site .screen-reader-text:hover,
.site .screen-reader-text:active,
.site .screen-reader-text:focus {
	background: #fff;
	border: 2px solid #333;
	border-radius: 3px;
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 12px;
	height: auto;
	padding: 12px;
	position: absolute;
	top: 5px;
	left: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/* Page structure */
.site {
	padding: 0 24px;
	padding: 0 1.714285714rem;
	background-color: #fff;
}
.site-content {
	margin: 0px 0 0;
	/*margin: 1.714285714rem 0 0;*/
}
.widget-area {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}

/* Header */
.site-header {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
.site-header h1,
.site-header h2 {
	text-align: center;
}
.site-header h1 a,
.site-header h2 a {
	color: #515151;
	display: inline-block;
	text-decoration: none;
}
.site-header h1 a:hover,
.site-header h2 a:hover {
	color: #21759b;
}
.site-header h1 {
	font-size: 24px;
	font-size: 1.714285714rem;
	line-height: 1.285714286;
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.site-header h2 {
	font-weight: normal;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.header-image {
	margin-top: 24px;
	margin-top: 1.714285714rem;
}

/* Navigation Menu */
.main-navigation {
	margin-top: 0px;
	text-align: center;
}
.main-navigation li {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.42857143;
}
.main-navigation a {
	color: #5e5e5e;
}
.main-navigation a:hover,
.main-navigation a:focus {
	color: #21759b;
}
.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
	display: none;
}
.main-navigation ul.nav-menu.toggled-on,
.menu-toggle {
	display: none;
}

/* Banner */
section[role="banner"] {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
}

/* Sidebar */
.widget-area .widget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	word-wrap: break-word;
}
.widget-area .widget h3 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .widget p,
.widget-area .widget li,
.widget-area .widget .textwidget {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget-area .widget p {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .textwidget ul {
	list-style: disc outside;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
.widget-area .textwidget li {
	margin-left: 36px;
	margin-left: 2.571428571rem;
}
.widget-area .widget a {
	color: #757575;
}
.widget-area .widget a:hover {
	color: #21759b;
}
.widget-area .widget a:visited {

}
.widget-area #s {
	width: 53.66666666666%; /* define a width to avoid dropping a wider submit button */
}

/* Footer */
footer[role="contentinfo"] {
	border-top: 1px solid #ededed;
	clear: both;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	max-width: 960px;
	max-width: 68.571428571rem;
	margin-top: 24px;
	margin-top: 1.714285714rem;
	margin-left: auto;
	margin-right: auto;
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
footer[role="contentinfo"] a {
	color: #686868;
}
footer[role="contentinfo"] a:hover {
	color: #21759b;
}


/* =Main content and comment content
-------------------------------------------------------------- */

.entry-meta {
	clear: both;
}
.entry-header {
	margin-bottom: 0px;
	/*margin-bottom: 1.714285714rem;*/
}
.entry-header img.wp-post-image {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header .entry-title {
	font-size: 20px;
	font-size: 1.428571429rem;
	line-height: 1.2;
	font-weight: normal;
}
.entry-header .entry-title a {
	text-decoration: none;
}
.entry-header .entry-format {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-weight: normal;
}
.entry-header .comments-link {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.comments-link a,
.entry-meta a {
	color: #757575;
}
.comments-link a:hover,
.entry-meta a:hover {
	color: #21759b;
}
article.sticky .featured-post {
	border-top: 4px double #ededed;
	border-bottom: 4px double #ededed;
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 3.692307692;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	text-align: center;
}
.entry-content,
.entry-summary,
.mu_register {
	--line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
	--margin: 24px 0;
	--margin: 1.714285714rem 0;
	--line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1 {
	font-size: 21px;
	font-size: 1.5rem;
	line-height: 1.5;
}
.entry-content h2,
.comment-content h2,
.mu_register h2 {
	/*font-size: 18px;*/
	font-size: 24px;
	/*font-size: 1.285714286rem;*/
	font-size: 1.714285714rem;
	line-height: 1.6;
}
.entry-content h3,
.comment-content h3 {
	--font-size: 16px;
	font-size: 18px;
	--font-size: 1.142857143rem;
	--line-height: 1.846153846;
}
.entry-content h4,
.comment-content h4 {
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.846153846;
}
.entry-content h5,
.comment-content h5 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.entry-content h6,
.comment-content h6 {
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.846153846;
}
.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.5;
}
.entry-content a:visited,
.comment-content a:visited {

}
.entry-content .more-link {
	white-space: nowrap;
}
.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}
.entry-content ul ul,
.comment-content ul ul,
.entry-content ol ol,
.comment-content ol ol,
.entry-content ul ol,
.comment-content ul ol,
.entry-content ol ul,
.comment-content ol ul {
	margin-bottom: 0;
}
.entry-content ul,
.comment-content ul,
.mu_register ul {
	list-style: disc outside;
}
.entry-content ol,
.comment-content ol {
	list-style: decimal outside;
}
.entry-content li,
.comment-content li,
.mu_register li {
	margin: 0 0 0 36px;
	margin: 0 0 0 2.571428571rem;
}
.entry-content blockquote,
.comment-content blockquote {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	padding: 24px;
	padding: 1.714285714rem;
	font-style: italic;
}
.entry-content blockquote p:last-child,
.comment-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code,
.comment-content code {
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
}
.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #666;
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	overflow: auto;
	padding: 24px;
	padding: 1.714285714rem;
}
.entry-content pre code,
.comment-content pre code {
	display: block;
}
.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn,
.entry-content acronym,
.comment-content acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
.entry-content address,
.comment-content address {
	display: block;
	line-height: 1.714285714;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
img.alignleft,
.wp-caption.alignleft {
	margin: 12px 24px 12px 0;
	margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
}
img.alignright,
.wp-caption.alignright {
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}
img.aligncenter,
.wp-caption.aligncenter {
	clear: both;
	margin-top: 12px;
	margin-top: 0.857142857rem;
	margin-bottom: 12px;
	margin-bottom: 0.857142857rem;
}
.entry-content embed,
.entry-content iframe,
.entry-content object,
.entry-content video {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content dl,
.comment-content dl {
	margin: 0 24px;
	margin: 0 1.714285714rem;
}
.entry-content dt,
.comment-content dt {
	font-weight: bold;
	line-height: 1.714285714;
}
.entry-content dd,
.comment-content dd {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content table,
.comment-content table {
	border-bottom: 1px solid #ededed;
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	width: 100%;
}
.entry-content table caption,
.comment-content table caption {
	font-size: 16px;
	font-size: 1.142857143rem;
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.entry-content td,
.comment-content td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 0;
}
.site-content article {
	border-bottom: 0px double #ededed;
	margin-bottom: 30px;
	padding-bottom: 0px;
	word-wrap: break-word;
	/*-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;*/
}
.page-links {
	clear: both;
	line-height: 1.714285714;
}
footer.entry-meta {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.single-author .entry-meta .by-author {
	display: none;
}
.mu_register h2 {
	color: #757575;
	font-weight: normal;
}


/* =Archives
-------------------------------------------------------------- */

.archive-header,
.page-header {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	padding-bottom: 22px;
	padding-bottom: 1.571428571rem;
	border-bottom: 1px solid #ededed;
}
.archive-meta {
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin-top: 22px;
	margin-top: 1.571428571rem;
}

/* =Single audio/video attachment view
-------------------------------------------------------------- */

.attachment .entry-content .mejs-audio {
	max-width: 400px;
}

.attachment .entry-content .mejs-container {
	margin-bottom: 24px;
}


/* =Single image attachment view
-------------------------------------------------------------- */

.article.attachment {
	overflow: hidden;
}
.image-attachment div.attachment {
	text-align: center;
}
.image-attachment div.attachment p {
	text-align: center;
}
.image-attachment div.attachment img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}
.image-attachment .entry-caption {
	margin-top: 8px;
	margin-top: 0.571428571rem;
}


/* =Aside post format
-------------------------------------------------------------- */

article.format-aside h1 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
article.format-aside h1 a {
	text-decoration: none;
	color: #4d525a;
}
article.format-aside h1 a:hover {
	color: #2e3542;
}
article.format-aside .aside {
	padding: 24px 24px 0;
	padding: 1.714285714rem;
	background: #d2e0f9;
	border-left: 22px solid #a8bfe8;
}
article.format-aside p {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #4a5466;
}
article.format-aside blockquote:last-child,
article.format-aside p:last-child {
	margin-bottom: 0;
}


/* =Post formats
-------------------------------------------------------------- */

/* Image posts */
article.format-image footer h1 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	font-weight: normal;
}
article.format-image footer h2 {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}
article.format-image footer a h2 {
	font-weight: normal;
}

/* Link posts */
article.format-link header {
	padding: 0 10px;
	padding: 0 0.714285714rem;
	float: right;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	color: #848484;
	background-color: #ebebeb;
	border-radius: 3px;
}
article.format-link .entry-content {
	max-width: 80%;
	float: left;
}
article.format-link .entry-content a {
	font-size: 22px;
	font-size: 1.571428571rem;
	line-height: 1.090909091;
	text-decoration: none;
}

/* Quote posts */
article.format-quote .entry-content p {
	margin: 0;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
}
article.format-quote .entry-content blockquote {
	display: block;
	padding: 24px 24px 0;
	padding: 1.714285714rem 1.714285714rem 0;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.6;
	font-style: normal;
	color: #6a6a6a;
	background: #efefef;
}

/* Status posts */
.format-status .entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.format-status .entry-header header {
	display: inline-block;
}
.format-status .entry-header h1 {
	font-size: 15px;
	font-size: 1.071428571rem;
	font-weight: normal;
	line-height: 1.6;
	margin: 0;
}
.format-status .entry-header h2 {
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	line-height: 2;
	margin: 0;
}
.format-status .entry-header header a {
	color: #757575;
}
.format-status .entry-header header a:hover {
	color: #21759b;
}
.format-status .entry-header img {
	float: left;
	margin-right: 21px;
	margin-right: 1.5rem;
}


/* =Comments
-------------------------------------------------------------- */

.comments-title {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
	font-weight: normal;
}
.comments-area article {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.comments-area article header {
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
	overflow: hidden;
	position: relative;
}
.comments-area article header img {
	float: left;
	padding: 0;
	line-height: 0;
}
.comments-area article header cite,
.comments-area article header time {
	display: block;
	margin-left: 85px;
	margin-left: 6.071428571rem;
}
.comments-area article header cite {
	font-style: normal;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.42857143;
}
.comments-area cite b {
	font-weight: normal;
}
.comments-area article header time {
	line-height: 1.714285714;
	text-decoration: none;
	font-size: 12px;
	font-size: 0.857142857rem;
	color: #5e5e5e;
}
.comments-area article header a {
	text-decoration: none;
	color: #5e5e5e;
}
.comments-area article header a:hover {
	color: #21759b;
}
.comments-area article header cite a {
	color: #444;
}
.comments-area article header cite a:hover {
	text-decoration: underline;
}
.comments-area article header h4 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px 12px;
	padding: 0.428571429rem 0.857142857rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	color: #fff;
	background-color: #0088d0;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #009cee, #0088d0);
	background-image: -ms-linear-gradient(top, #009cee, #0088d0);
	background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
	background-image: -o-linear-gradient(top, #009cee, #0088d0);
	background-image: linear-gradient(top, #009cee, #0088d0);
	border-radius: 3px;
	border: 1px solid #007cbd;
}
.comments-area .bypostauthor cite span {
	position: absolute;
	margin-left: 5px;
	margin-left: 0.357142857rem;
	padding: 2px 5px;
	padding: 0.142857143rem 0.357142857rem;
	font-size: 10px;
	font-size: 0.714285714rem;
}
.comments-area .bypostauthor cite b {
	font-weight: bold;
}
a.comment-reply-link,
a.comment-edit-link {
	color: #686868;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
a.comment-reply-link:hover,
a.comment-edit-link:hover {
	color: #21759b;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {
	margin-top: 48px;
	margin-top: 3.428571429rem;
}
#respond h3#reply-title {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
}
#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	margin-left: 0.714285714rem;
	font-weight: normal;
	font-size: 12px;
	font-size: 0.857142857rem;
}
#respond form {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
#respond form p {
	margin: 11px 0;
	margin: 0.785714286rem 0;
}
#respond form p.logged-in-as {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
#respond form label {
	display: block;
	line-height: 1.714285714;
}
#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	padding: 10px;
	padding: 0.714285714rem;
	width: 100%;
}
#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #5e5e5e;
}
.required {
	color: red;
}


/* =Front page template
-------------------------------------------------------------- */

.entry-page-image {
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.template-front-page .site-content article {
	border: 0;
	margin-bottom: 0;
}
.template-front-page .widget-area {
	clear: both;
	float: none;
	width: auto;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	border-top: 1px solid #ededed;
}
.template-front-page .widget-area .widget li {
	margin: 8px 0 0;
	margin: 0.571428571rem 0 0;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.714285714;
	list-style-type: square;
	list-style-position: inside;
}
.template-front-page .widget-area .widget li a {
	color: #757575;
}
.template-front-page .widget-area .widget li a:hover {
	color: #21759b;
}
.template-front-page .widget-area .widget_text img {
	float: left;
	margin: 8px 24px 8px 0;
	margin: 0.571428571rem 1.714285714rem 0.571428571rem 0;
}


/* =Widgets
-------------------------------------------------------------- */

.widget-area .widget ul ul {
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
.widget_rss li {
	margin: 12px 0;
	margin: 0.857142857rem 0;
}
.widget_recent_entries .post-date,
.widget_rss .rss-date {
	color: #aaa;
	font-size: 11px;
	font-size: 0.785714286rem;
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
#wp-calendar {
	margin: 0;
	width: 100%;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #686868;
}
#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
	text-align: left;
}
#wp-calendar #next {
	padding-right: 24px;
	padding-right: 1.714285714rem;
	text-align: right;
}
.widget_search label {
	display: block;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget_twitter li {
	list-style-type: none;
}
.widget_twitter .timesince {
	display: block;
	text-align: right;
}


/* =Plugins
----------------------------------------------- */

img#wpstats {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.714285714rem;
}


/* Custom Style 06-04-21 */
.portfini-system-parts {margin-bottom: 0px !important;}
.firm_heading_new, .fisa_heading_new{margin-bottom: 30px !important;}
.bh-fix-firm-title {margin-bottom: 50px !important;}
.firm-cd-under {margin-bottom: 50px !important;}
.global_fisa_sub_title{margin-bottom: 30px;}
.firm-bond-track{margin-bottom: 30px!important;}
.bond_pub_firm, .webfisc-bond{margin-top:30px;}
.portfini-heading-new, .webfisc-heading-new {margin-bottom: 30px!important;}
.custom_support_sub_title{margin-top:0px!important;}
.member-photo img {
    border-radius: 50%;
    margin-bottom: 30px;
}
.bond_pub_firm .firm_heading_new {margin-bottom: 60px !important;}
/* Custom Style 06-04-21 */

/* =Media queries
-------------------------------------------------------------- */

/* Does the same thing as <meta name="viewport" content="width=device-width">,
 * but in the future W3C standard way. -ms- prefix is required for IE10+ to
 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
 * the meta tag. See https://core.trac.wordpress.org/ticket/25888.
 */
@-ms-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}

/* Minimum width of 600 pixels. */
@media screen and (min-width: 600px) {
	.author-avatar {
		float: left;
		margin-top: 8px;
		margin-top: 0.571428571rem;
	}
	.author-description {
		float: right;
		width: 80%;
	}
	.site {
		margin: 0 auto;
		max-width: 1140px;
		overflow: hidden;
	}
	.site-content {
		float: left;
		width: 67%;
	}
	body.template-front-page .site-content,
	body.attachment .site-content,
	body.full-width .site-content {
		width: 100%;
	}
	.widget-area {
		float: right;
		width: 30%;
	}
	.site-header h1,
	.site-header h2 {
		text-align: left;
	}
	.site-header h1 {
		font-size: 26px;
		font-size: 1.857142857rem;
		line-height: 1.846153846;
		margin-bottom: 0;
	}
	.main-navigation ul.nav-menu,
	.main-navigation div.nav-menu > ul {
		border-bottom: 0px solid #ededed;
		border-top: 0px solid #ededed;
		display: inline-block !important;
		text-align: right;
		width: 100%;
	}
	.main-navigation ul {
		margin: 0;
		text-indent: 0;
	}
	.main-navigation li a,
	.main-navigation li {
		display: inline-block;
		text-decoration: none;
	}
	.main-navigation li a {
	}
	.main-navigation li a:hover,
	.main-navigation li a:focus {
	}
	.main-navigation li {

	}
	.main-navigation li ul {
		position: absolute;
		top: 100%;
		z-index: 9;
		height: 1px;
		width: 1px;
		overflow: hidden;
		clip: rect(1px, 1px, 1px, 1px);
	}
	.main-navigation li ul ul {
		top: 0;
		left: 100%;
		padding: 0;
	}
	.main-navigation ul li:hover > ul,
	.main-navigation ul li:focus > ul,
	.main-navigation .focus > ul {
		border-left: 0;
		clip: inherit;
		overflow: inherit;
		height: inherit;
		width: inherit;
	}
	.main-navigation li ul li a {
	}
	.main-navigation li ul li a:hover,
	.main-navigation li ul li a:focus {
	}
	.main-navigation ul ul .current-menu-item > a,
	.main-navigation ul ul .current-menu-ancestor > a,
	.main-navigation ul ul .current_page_item > a,
	.main-navigation ul ul .current_page_ancestor > a {
		background: #ed7d31;
		color: #FFF;
		border-bottom: 1px solid #ed7d31;
	}

	.main-navigation .current-menu-item > a,
	.main-navigation .current-menu-ancestor > a,
	.main-navigation .current_page_item > a,
	.main-navigation .current_page_ancestor > a {
		color: #ed7d31;
	}

	.menu-toggle {
		display: none;
	}
	.entry-header .entry-title {
		font-size: 22px;
		font-size: 1.571428571rem;
	}
	#respond form input[type="text"] {
		width: 46.333333333%;
	}
	#respond form textarea.blog-textarea {
		width: 79.666666667%;
	}
	.template-front-page .site-content,
	.template-front-page article {
		overflow: hidden;
	}
	.template-front-page.has-post-thumbnail article {
		float: left;
		width: 47.916666667%;
	}
	.entry-page-image {
		float: right;
		margin-bottom: 0;
		width: 47.916666667%;
	}
	.template-front-page .widget-area .widget,
	.template-front-page.two-sidebars .widget-area .front-widgets {
		float: left;
		width: 51.875%;
		margin-bottom: 24px;
		margin-bottom: 1.714285714rem;
	}
	.template-front-page .widget-area .widget:nth-child(odd) {
		clear: right;
	}
	.template-front-page .widget-area .widget:nth-child(even),
	.template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
		float: right;
		width: 39.0625%;
		margin: 0 0 24px;
		margin: 0 0 1.714285714rem;
	}
	.template-front-page.two-sidebars .widget,
	.template-front-page.two-sidebars .widget:nth-child(even) {
		float: none;
		width: auto;
	}
	.commentlist .children {
		margin-left: 48px;
		margin-left: 3.428571429rem;
	}
}

/* Minimum width of 960 pixels. */
@media screen and (min-width: 960px) {
	body {
		background-color: #FFF;
	}
	body .site {
		padding: 0 0px;
		margin-top: 0px;
		margin-bottom: 0px;
		box-shadow: 0 0px 0px rgba(100, 100, 100, 0.3);
	}
	body.custom-background-empty {
		background-color: #fff;
	}
	body.custom-background-empty .site,
	body.custom-background-white .site {
		padding: 0;
		margin-top: 0;
		margin-bottom: 0;
		box-shadow: none;
	}
}


/* =Print
----------------------------------------------- */

@media print {
	body {
		background: none !important;
		color: #000;
		font-size: 10pt;
	}
	footer a[rel=bookmark]:link:after,
	footer a[rel=bookmark]:visited:after {
		content: " [" attr(href) "] "; /* Show URLs */
	}
	a {
		text-decoration: none;
	}
	.entry-content img,
	.comment-content img,
	.author-avatar img,
	img.wp-post-image {
		border-radius: 0;
		box-shadow: none;
	}
	.site {
		clear: both !important;
		display: block !important;
		float: none !important;
		max-width: 100%;
		position: relative !important;
	}
	.site-header {
		margin-bottom: 72px;
		margin-bottom: 5.142857143rem;
		text-align: left;
	}
	.site-header h1 {
		font-size: 21pt;
		line-height: 1;
		text-align: left;
	}
	.site-header h2 {
		color: #000;
		font-size: 10pt;
		text-align: left;
	}
	.site-header h1 a,
	.site-header h2 a {
		color: #000;
	}
	.author-avatar,
	#colophon,
	#respond,
	.commentlist .comment-edit-link,
	.commentlist .reply,
	.entry-header .comments-link,
	.entry-meta .edit-link a,
	.page-link,
	.site-content nav,
	.widget-area,
	img.header-image,
	.main-navigation {
		display: none;
	}
	.wrapper {
		border-top: none;
		box-shadow: none;
	}
	.site-content {
		margin: 0;
		width: auto;
	}

	.entry-header .entry-title,
	.entry-title {
		font-size: 21pt;
	}
	footer.entry-meta,
	footer.entry-meta a {
		color: #444;
		font-size: 10pt;
	}
	.author-description {
		float: none;
		width: auto;
	}

	/* Comments */
	.commentlist > li.comment {







		background: none;















		position: relative;
		width: auto;
	}
	.commentlist .avatar {
		height: 39px;
		left: 2.2em;
		top: 2.2em;
		width: 39px;
	}
	.comments-area article header cite,
	.comments-area article header time {
		margin-left: 50px;
		margin-left: 3.57142857rem;
	}
}


/* Minimum width of 200 pixels. */
@media screen and (min-width: 200px) {
	
body .site {
	padding: 0 20px;
}

.slicknav_brand {
    height: 55px !important;
}

.slicknav_btn {
    margin: 14px 10px 6px !important;
}
.wreper {
	width:94%;
	margin:0 auto;
}
.top-part {
	background:url(images/top-bg.jpg) repeat-x bottom #FFF;
	float:left;
	width:100%;
	padding:0px 0px 0px 0px;
	margin:0px;
	display:inherit;
	border-top: 1px solid #FFF;
}
.top-part .logo {
	float:left;
	width:100%;
	padding:17px 0px 17px 0px;
	margin:0px;
	text-align:left;
	line-height:0;
	display:none;
}
.top-part .top-right{
	float:left;
	width:100%;
	padding:0px 0px 0px 0px;
	margin:0px;
	text-align:center;
	display:inherit;
	font-family: 'Source Sans Pro', sans-serif;
}

.top-part .top-right .top-detail{
	float:left;
	width:100%;
	padding:15px 0px 10px 0px;
	margin:0px;
	text-align:center;
	display:inherit;
}

.top-part .top-right .top-detail a.tel{
	padding:0px 0px 0px 35px;
	margin:0px 8px 0px 0px;
	display:inline-block;
	vertical-align:middle;
	text-decoration:none;
	color:#00a8e9;
	font-weight:bold;
	font-size:20px;
	background:url(images/phone-icon.png) no-repeat;
	background-position: left center;
	line-height:1.5;
}

.top-part .top-right .top-detail a{
	padding:0px 0px 0px 0px;
	margin:0px 2px;
	display:inline-block;
	vertical-align:middle;
	text-decoration:none;
}

.top-part .top-right .top-detail a.f,
.top-part .top-right .top-detail a.t,
.top-part .top-right .top-detail a.i,
.top-part .top-right .top-detail a.g {
	width:30px;
	height:30px;
}

.top-part .top-right .top-detail a.f {
	background:url(images/facebook.png) no-repeat 0px 0px;
}

.top-part .top-right .top-detail a:hover.f {
	background:url(images/facebookh.png) no-repeat 0px 0px;
}

.top-part .top-right .top-detail a.t {
	background:url(images/twitter.png) no-repeat 0px 0px;
}

.top-part .top-right .top-detail a:hover.t {
	background:url(images/twitterh.png) no-repeat 0px 0px;
}

.top-part .top-right .top-detail a.i {
	background:url(images/in.png) no-repeat 0px 0px;
}

.top-part .top-right .top-detail a:hover.i {
	background:url(images/inh.png) no-repeat 0px 0px;
}

.top-part .top-right .top-detail a.g {
	background:url(images/google.png) no-repeat 0px 0px;
}

.top-part .top-right .top-detail a:hover.g {
	background:url(images/googleh.png) no-repeat 0px 0px;
}

.top-part .top-right .top-menu{
	float:left;
	width:100%;
	padding:20px 0px 0px 0px;
	margin:0px;
	text-align:right;
	display:none;
	
}

.main-navigation li a {
	border-bottom: 0;
	color: #414141;
	line-height: 0;
	text-transform: none;
	white-space: nowrap;
	padding:1px 1px;
	text-transform:uppercase;
}
.main-navigation li a:hover,  .main-navigation li a:focus {
	color: #ed7d31;
}
.main-navigation li {
	margin: 0px 2px 0px 30px;
	padding:0px 0px 0px 0px;
	font-size:17px;
	line-height:1;
	font-weight:600;
	position: relative;
}

.main-navigation li ul {
	padding:20px 0px 0px 0px;
	margin:0px 0px 0px 0px;
}

.main-navigation li ul li {
	padding:0px;
	margin:0px;
}

.main-navigation li ul li a {
		background: #00a8e9;
		border-bottom: 1px solid #0097d1;
		display: block;
		font-size: 17px;
		line-height: 1.4;
		padding: 10px 15px;
		width: 300px;
		white-space: normal;
		color:#FFF;
		text-transform:none;
		text-align:left;
	}
	.main-navigation li ul li a:hover,
	.main-navigation li ul li a:focus {
		background: #ed7d31;
		color: #FFF;
		border-bottom: 1px solid #ed7d31;
	}


.slider-part {
	float:left;
	width:100%;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	min-height:inherit;
	line-height: 1;
}
body.archive .header-part,
body.category .header-part,
body.page-id-553 .header-part,
body.single-post .header-part {
	display:none;
}

.header-part {
	float:left;
	width:100%;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	min-height:115px;
	background-size:cover;
	background:url(/wp-content/uploads/2020/07/company-header.jpg) no-repeat; 
}
.clear {
	clear:both;
}

.welcome-part {
	background:url(images/welcome-bg.jpg) no-repeat center center #2c9cce;
	float:left;
	width:100%;
	padding:20px 0px 20px 0px;
	margin:0px;
	--border-top:4px solid #FFF;
}

.welcome-part aside {
	float:left;
	width:100%;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:left;
	line-height:1.4;
	color:#FFF;
}
.welcome-part aside .widget-title {
	padding:0px 0px 10px 0px;
	margin:0px;
	line-height:1.4;
	font-weight:600;
	font-size:22px;
	color:#FFF;
	text-align:left;
	text-transform:none;
	font-family: 'Source Sans Pro', sans-serif;
}

.welcome-part aside strong {
	display:block;
	padding:0px 0px 15px 0px;
	margin:0px;
	font-weight:400;
	font-size:18px;
	text-align:left;
	font-family: 'Source Sans Pro', sans-serif;
}


.who-what-part {
	float:left;
	width:100%;
	padding:30px 0px 30px 0px;
	margin:0px;
}
.who-what-part aside {
	float:left;
	width:100%;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:center;
	line-height:1.4;
}
.who-what-part aside:nth-child(2) {
	padding:0px 0px;
	margin:15px 0px;
	border-left:0px solid #e2e2e2;
	border-right:0px solid #e2e2e2;
}

.who-what-part aside span {
	min-height:inherit;
	display:inline-block;
}

.who-what-part aside h3 {
	padding:10px 0px 10px 0px;
	margin:0px;
	line-height:1.4;
	font-weight:600;
	font-size:30px;
	color:#434343;
	text-align:center;
	text-transform:uppercase;
	font-family: 'Source Sans Pro', sans-serif;
}

.who-what-part aside a.read-more {
	background:#43515a;
	display:inline-block;
	font-size:18px;
	color:#FFF;
	padding:8px 20px ;
	margin:10px 0px 0px 0px;
	text-align:center;
	line-height:1.4;
	border-radius:3px;
	font-weight:600;
	text-decoration:none;
	text-transform:uppercase;
	font-family: 'Source Sans Pro', sans-serif;
}

.who-what-part aside:nth-child(1) a:hover.read-more {
	background:#ed7d31;
	color:#FFF;
}

.who-what-part aside:nth-child(2) a:hover.read-more {
	background:#75ab22;
	color:#FFF;
}

.who-what-part aside a:hover.read-more {
	background:#00a8e9;
	color:#FFF;
}

.testimonial-part {
	background:url(https://ftlabs.com/wp-content/uploads/2016/12/testimonial-bg-new.jpg) no-repeat top center #e5e5e4;
	float:left;
	width:100%;
	padding:25px 0px ;
	margin:0px;
}

.testimonial-part aside {
	float:left;
	width:100%;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:center;
	line-height:1.4;
	color:#131313;
	font-size:20px;
}

.testimonial-part aside .txt-box{
	float:left;
	width:74%;
	padding:0px 13%;
	margin:0px 0%;
	text-align:center;
	line-height:1.4;
	color:#131313;
	font-size:18px;
	position:relative;
}

.testimonial-part aside .txt-box:before{
	background:url(images/open-quote.png) no-repeat;
	content:'';
	width:33px;
	height:28px;
	position:absolute;
	left:0px;
	top:0px;
}

.testimonial-part aside .txt-box:after{
	background:url(images/close-quote.png) no-repeat;
	content:'';
	width:33px;
	height:28px;
	position:absolute;
	right:0px;
	bottom:0px;
}

.testimonial-part .aut-txt {
	display:block;
    margin: 15px 0;
    text-align: center;
	color:#00a8e9;
	font-size:18px;
	font-weight:600;
	float: left;
    width: 100%;
}


.testimonial-part aside .widget-title {
	padding:0px 0px 20px 0px;
	margin:0px;
	line-height:1.4;
	font-weight:600;
	font-size:30px;
	color:#131313;
	text-align:center;
	text-transform:uppercase;
	font-family: 'Source Sans Pro', sans-serif;
}

.testimonial-part aside a.read-more {
	background:#43515a;
	display:inline-block;
	font-size:18px;
	color:#FFF;
	padding:8px 20px ;
	margin:0px 0px 0px 0px;
	text-align:center;
	line-height:1.4;
	border-radius:3px;
	font-weight:600;
	text-decoration:none;
	text-transform:uppercase;
	font-family: 'Source Sans Pro', sans-serif;
}

.testimonial-part a:hover.read-more {
	background:#00a8e9;
	color:#FFF;
}



.testimonial-part .testimonials-widget-testimonial div.credit {
    margin-top: 30px;
    text-align: center;
	color:#00a8e9;
	font-size:20px;
	font-weight:600;
}

.testimonial-part .open-quote {
    font-size: 90px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    line-height: 0;
    position: relative;
    bottom: -20px;
}

.testimonial-part .close-quote {
    font-size: 90px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    line-height: 0;
    position: relative;
    bottom: -50px;
}
.testimonial-part .testimonials-widget-testimonial blockquote{
	font-style:italic;
}


.home-btm-part {
	float:left;
	width:100%;
	padding:30px 0px 50px;
	margin:0px;
}

.home-btm-part aside {
	float:right;
	width:100%;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
}

.home-btm-part aside .ls-v5 .ls-bottom-slidebuttons {
	top:10px;
}

.home-btm-part aside .ls-v5 .ls-bottom-slidebuttons a.ls-nav-active, .home-btm-part aside .ls-v5 .ls-bottom-slidebuttons a:hover{
	background-image:url(images/bullet1.png);

}

.home-btm-part aside .ls-v5 .ls-bottom-slidebuttons a{
	background-image:url(images/bullet.png);
	background-repeat:no-repeat;
	width:16px;
	height:16px;
	background-position:inherit;
	margin:0px 4px;
}

/*.home-btm-part aside:first-child {
	float:right;
	width:550px;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:center;
	line-height:0;
}

.home-btm-part aside {
	float:left;
	width:550px;
	padding:20px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:left;
	line-height:1.4;
	color:#131313;
	font-size:18px;
}


.home-btm-part aside h3 {
	background:url(images/icon4.png) no-repeat;
	background-position:left center;
	padding:0px 0px 0px 85px;
	margin:0px 0px 25px 0px;
	line-height:1.2;
	font-weight:600;
	font-size:30px;
	color:#131313;
	text-align:left;
	text-transform:none;
	font-family: 'Source Sans Pro', sans-serif;
}

.home-btm-part aside h3 strong{
	font-size:22px;
}
.home-btm-part aside a.learn-more {
	background:#ed7d31;
	display:inline-block;
	font-size:20px;
	color:#FFF;
	padding:8px 20px ;
	margin:25px 0px 0px 0px;
	text-align:center;
	line-height:1.4;
	border-radius:3px;
	font-weight:600;
	text-decoration:none;
	text-transform:none;
	font-family: 'Source Sans Pro', sans-serif;
}

.home-btm-part aside a:hover.learn-more {
	background:#00a8e9;
	color:#FFF;
}*/

body.home .site {
	display:none;
}

.btm-contact-us-part {
	background: #00a8e9;
	float:left;
	width:100%;
	padding:25px 0px ;
	margin:0px;
}

.btm-contact-us-part aside {
	float:left;
	width:100%;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:center;
	line-height:1.4;
	color:#FFF;
	font-size:22px;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight:600;
}

.btm-contact-us-part aside a{
	color:#FFF;
	text-decoration:underline;
}

.btm-contact-us-part aside a:hover{
	color:#FFF;
	text-decoration:none;
}


.ftr-part {
	background: #151515;
	float:left;
	width:100%;
	padding:35px 0px 25px;
	margin:0px;
	color:#FFF;
}

.ftr-part aside {
	float:left;
	width:100%;
	padding:0px 0px 10px 0px;
	margin:0px 0px 0px 0px;
	text-align:center;
	line-height:1.4;
	color:#FFF;
	font-size:15px;
	min-height:inherit;
}

.ftr-part aside .tel{
	font-size:26px;
}

.ftr-part aside ul{
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
}

.ftr-part aside ul li{
	display:inline-block;
	padding:0px 7px 0px 10px;
	margin:0px 0px 0px 0px;
	border-left:1px solid #FFF;
	text-transform:uppercase;
}

.ftr-part aside ul li:first-child{
	border-left:0px solid #FFF;
	padding: 0px 7px 0px 0px;
}

.ftr-part aside:nth-child(1){
	display:none;
}
.ftr-part aside:nth-child(2),
.ftr-part aside:nth-child(3) {
	float:right;
	width:100%;
	padding:0px 0px 10px 0px;
	margin:0px 0px 0px 0px;

	text-align:center;
	line-height:1;
	color:#FFF;
}

.ftr-part aside:nth-child(4) {
}

.ftr-part aside a{
	color:#FFF;

	text-decoration:none;
}

.ftr-part aside a:hover{
	color:#ed7d31;
	text-decoration:none;
}

.company-box{
	float:left;
	width:auto;
	padding:145px 0px 15px 0px;
	margin:0px 0px 15px 0px;
	text-align:justify;
	color:#363636;
	border-bottom: 1px solid #d6d6d6;
}

.company-box h2 {
	padding:0px 0px 0px 0px;
	margin:0px 0px 20px 0px;
	line-height:1;
	font-weight:600;
	font-size:28px;
	color:#ed7d31;
	text-align:center;
	text-transform:none;
	font-family: 'Source Sans Pro', sans-serif;
}

.what h2 {
	color:#75ab22
}

.how h2 {
	color:#00a8e9
}

.who {
	background:url(images/icon1.png) no-repeat top center;
}

.what {
	background:url(images/icon2.png) no-repeat top center;
}

.how {
	background:url(images/icon3.png) no-repeat top center;
	border:none;
}



.company-partner-part {
	background:url(images/partner-bg.jpg) no-repeat top center #ececec;
	float:left;
	width:100%;
	padding:35px 0px ;
	margin:0px;
}

.company-partner-part aside {
	float:left;
	width:100%;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:center;
	line-height:1.4;
	color:#292929;
	font-size:18px;
}
.company-partner-part aside .widget-title {
	padding:0px 0px 15px 0px;
	margin:0px;
	line-height:1.4;
	font-weight:600;
	font-size:28px;
	color:#131313;
	text-align:center;
	text-transform:uppercase;
	font-family: 'Source Sans Pro', sans-serif;
}

.company-partner-part aside a.learn-more {
	display:inline-block;
	font-size:18px;
	color:#292929;
	padding:8px 20px ;
	margin:22px 0px 0px 0px;
	text-align:center;
	line-height:1.4;
	border:2px solid #292929;
	border-radius:3px;
	font-weight:600;
	text-decoration:none;
	text-transform:uppercase;
	font-family: 'Source Sans Pro', sans-serif;
}

.company-partner-part a:hover.learn-more {
	color:#00a8e9;
	border:2px solid #00a8e9;
}


.company-contact-part {
	float:left;
	width:100%;
	padding:40px 0px ;
	margin:0px;
}

.company-contact-part aside:last-child {
	float:right;
	width:100%;
	padding:15px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:center;
	line-height:0;
}

.company-contact-part aside {
	float:left;
	width:100%;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:justify;
	line-height:1.4;
	color:#131313;
	font-size:18px;
}


.company-contact-part aside .widget-title {
	padding:0px 0px 10px 0px;
	margin:0px 0px 0px 0px;
	line-height:1.2;
	font-weight:600;
	font-size:28px;
	color:#ed7d31;
	text-align:center;
	text-transform:none;
	font-family: 'Source Sans Pro', sans-serif;
}

.company-contact-part aside a.cont-btn {
	background:#ed7d31;
	display:inline-block;
	font-size:18px;
	color:#FFF;
	padding:8px 20px ;
	margin:0px 0px 0px 0px;
	text-align:center;
	line-height:1.4;
	border-radius:3px;
	font-weight:600;
	text-decoration:none;
	text-transform:uppercase;
	font-family: 'Source Sans Pro', sans-serif;
}

.company-contact-part aside a:hover.cont-btn {
	background:#00a8e9;
	color:#FFF;
}



.management-part{
	float:left;
	width:100%;
	padding:0px 0px 0px 00px;
	margin:0px 0px 00px 0px;
}

.management-part hr {
	background-color: #d6d6d6;
	border: 0;
	height: 1px;
	margin: 20px 0px;
	width:100%;
	float:left;
}

.management-part .left-img{
	float:left;
	width:60%;
	padding:0px 20% 15px 20%;
	margin:0px 0px 0px 0px;
	text-align:center;
	line-height:0;
}

.management-part .right-detail{
	float:left;
	width:100%;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:justify;
	color:#363636;
}

.management-part h2 {
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	line-height:1;
	font-weight:600;
	font-size:28px;
	color:#00a8e9;
	text-align:center;
	text-transform:none;
	font-family: 'Source Sans Pro', sans-serif;
}

.management-part strong{
	padding:0px 0px 0px 0px;
	margin:10px 0px 0px 0px;
	line-height:1;
	font-weight:600;
	font-size:20px;
	color:#393939;
	text-align:center;
	text-transform:none;
	font-family: 'Source Sans Pro', sans-serif;

	display:block;
}


* {
  box-sizing: border-box;
}

.team-member-row {
  display: flex;
  flex-wrap: wrap;
}

.team-member {
  flex: 33%;
  padding: 20px;
}

@media screen and (max-width: 992px) {
  .team-member {
    flex: 50%;
  }
}
@media screen and (max-width: 767px) {
	.bh-fix-firm-title, .firm-cd-under {margin-bottom: 30px !important;}
}
/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .team-member-row {
    flex-direction: column;
  }
}


.team-member h2 {
	text-align: center;
	line-height: 1;
	color: #00a8e9;
}

.team-member .member-title {
	text-align: center;
	font-size: larger;
}

.team-member .member-resume {
	margin-top: 12px;
}


.team-member .member-photo {
	text-align: center;
}

.team-member .member-photo img {
	width: 200px;
	height: 200px;
}




#fire{
}



#fire h1{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 21px;
	color: #00a8e9;
	font-weight: 600;
	margin: 20px 0 30px 0;
	line-height: 1.2;
}
#fire .left{
	width: 100%;
	float: left;
}
#fire .left h3.cdhead{
		color: #75ab22;
}

#fire .left h3{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 18px;
	color: #00a8e9;
	font-weight: 600;
	margin: 0;
	background: url(/wp-content/uploads/2017/06/icon4.png);
	background-repeat: no-repeat;
	height: 70px;
	line-height: 100%;
	padding-left: 90px;
	margin: 0 0 10px 0;
	padding-top: 12px;
}#fire .left p strong {	color: #72AD29;}
#consulting .left h2, #support .left h3{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 20px;
	color: #131313;
	font-weight: 600;
	margin: 0;
	background-repeat: no-repeat;
	height: 50px;
	padding-left: 90px;
	margin: 0 0 10px 0;
	padding-top: 20px;
	line-height: 1.3;
}
.sd .left h3{
	height: 55px !important;
	padding-top: 15px !important; 
	line-height: 1 !important;
}
#fire .right{
	width: 100%;
	float: left;
}
#fire .right .right-title{
	background: url(https://ftlabs.com/wp-content/uploads/2016/12/enterprise-bg.png);
	background-repeat: no-repeat;
	height:auto;
	background-position: center bottom;
}
#fire .right h2{
	background-size: auto;
	font-family: 'Source Sans Pro', sans-serif;
	color: #fff;
	text-align: center;
	font-size: 18px;
	margin: 0 0 25px 0;
	padding: 10px 0px 30px;
}
.seamless-system-part{
	background: #00a8e9;
	color: #fff;
	text-align: center;
	font-size: 18px;
	padding: 25px 20px 40px 20px;
}
.portfini-system-part{
	background:url(https://ftlabs.com/wp-content/uploads/portfini-bg-mobile.jpg);
	background-repeat:no-repeat;
	background-position: 75% center;
}
.seamless-system-part h3{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 28px;
	color: #fff;
	text-transform: capitalize;
	line-height:1.2;
	margin-bottom: 15px;
}
.seamless-system-part .wreper{
	width:100%;
}
.seamless-system-part a{
	display: inline-block;
	font-size: 18px;
	color: #fff;
	padding: 8px 20px;
	margin: 20px 0px 0px 0px;
	text-align: center;
	line-height: 1.4;
	border: 2px solid #fff;
	border-radius: 3px;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	font-family: 'Source Sans Pro', sans-serif;
}
.seamless-system-part a:hover{
	color: #292929;
	border: 2px solid #292929;
}
.footer-contact-part{
	padding: 35px 0 35px 0 !important;
	text-align: center;
}
.footer-contact-part .left{
	width: 100%;
	float: none;
	display: inline-block;
}
.footer-contact-part .left h3{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 28px;
	color: #ed7d31;
}
.footer-contact-part .left p{
	font-size:18px;
	color:#000;
}
.footer-contact-part .right{
	float: none;
	margin: 35px 0px;
	display: inline-block;
}
.footer-contact-part .right a{
    background: #ed7d31;
    color: #fff;
    padding: 10px 20px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
}
.footer-contact-part .right a:hover{
	background: #00a8e9;
}
.arconix-faq-title {
    background: url(https://ftlabs.com/wp-content/uploads/plus-sign.png) no-repeat 98% #00a8e9;
    cursor: pointer;
    font-size: 25px;
    padding: 10px 0 10px 20px;
	position: relative;
	color: #fff;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	line-height: 1.2;
}
.arconix-faq-wrap {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 0px;
    background: #fff;
    clear: both;
    border: 0px solid #d5d5d5;
    margin: 10px 0;
    padding: 0px;
}
.arconix-faq-title.faq-open {
    background: url(https://ftlabs.com/wp-content/uploads/minus-sign.png) no-repeat 98% #00a8e9;
}
.arconix-faq-content {
    margin-left: 0px;
    padding: 5px 20px;
    border: 2px solid #d5d5d5;
    border-top: 0px;
}
#fire .arconix-faq-wrap .left{
	width: 100%;
	float: left;
}
#fire .arconix-faq-wrap .right{
	width: 100%;
	float: left;
}
#fire .left .webfisc-heading {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/websifc-icon.png);
    background-repeat: no-repeat;
	color: #1a75bb;
}
#fire .left .cdunderwriter-heading {
    background: url(https://ftlabs.com/wp-content/uploads/cdunderwriter-icon.png);
    background-repeat: no-repeat;
	color: #1a75bb;
}
#fire .left .firm-heading {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/firm-icon.png);
    background-repeat: no-repeat;
}
#fire .left .fisa-heading {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/fisa-icon.png);
    background-repeat: no-repeat;
	color: #1b75bb;
}
#amazon .left .bondTrack-heading {
    background: url(http://www.ftlabs.com/wp-content/uploads/2017/07/BT-Revise-0717.png);
    background-repeat: no-repeat;
	color: #00a5e4;
}
#fire .left .usa-fisa-heading {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/firm-icon.png);
    background-repeat: no-repeat;
}
#fire .left .portfini-heading {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/portfini-icon.png);
    background-repeat: no-repeat;
	color: #75ab22;
}
#fire .left .managed-data-heading {
    background: url(https://ftlabs.com/wp-content/uploads/2017/06/icon4.png);
    background-repeat: no-repeat;
}
#consulting .left .soft-dev-heading {
    background: url(https://ftlabs.com/wp-content/uploads/2017/01/soft-dev.png);
    background-repeat: no-repeat;
	color: #75ab22 !important;
}
#support .left .support-heading {
    background: url(https://ftlabs.com/wp-content/uploads/2017/01/support.png);
    background-repeat: no-repeat;
}
#consulting .left .consulting-heading {
    background: url(https://ftlabs.com/wp-content/uploads/2017/01/consulting.png);
    background-repeat: no-repeat;
	color: #ec7d30;
}

.webfisc .p1{
    background-size: 100%;
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
    text-align: center;
    font-size: 25px;
    margin: 0px 0 0px 0;
    font-weight: 600;
    display: block;
    width: 100%;
    line-height: 25px;
}
.webfisc .p2{
	background-size: 100%;
	font-family: 'Source Sans Pro', sans-serif;
	color: #fff;
	text-align: center;
	font-size: 15px;
	margin: 0 0 0px 0;
	font-weight: 600;
	display: block;
	width: 100%;
	line-height: 1;
	padding: 5px 0 17px;
}
.fisa .p1{
    background-size: 100%;
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
    text-align: center;
    font-size: 20px;
    margin: 0px 0 0px 0;
    font-weight: 600;
    display: block;
    width: 100%;
    line-height: 20px;
}
.fisa .p2{
	background-size: 100%;
	font-family: 'Source Sans Pro', sans-serif;
	color: #fff;
	text-align: center;
	font-size: 15px;
	margin: 0 0 0px 0;
	font-weight: 600;
	display: block;
	width: 100%;
	line-height: 1;
	padding: 5px 0 16px 0;
}

.arconix-faq-wrap h3{
	font-size: 20px !important;
	margin: 0 0 10px 0 !important;
}
.ui-accordion .ui-accordion-content {
    margin-left: 0px;
    padding: 30px;
    border: 2px solid #d5d5d5;
    border-top: 0px;
}
.ui-accordion-header {
    background: url(https://ftlabs.com/wp-content/uploads/plus-sign.png) no-repeat 98% #00a8e9 !important;
    cursor: pointer !important;
    font-size: 20px !important;
    padding: 10px 0 10px 20px !important;
    position: relative !important;
    color: #fff !important;
    font-family: 'Source Sans Pro', sans-serif !important;
    font-weight: 600 !important;
}
.ui-icon {
   /* background-image: url("images/ui-icons_454545_256x240.png");*/
    display: none !important;
}
.ui-accordion-header-active {
    background: url(https://ftlabs.com/wp-content/uploads/minus-sign.png) no-repeat 98% #aaa !important;
}
.symple-accordion h3.symple-accordion-trigger {
    border: 0px solid #ddd !important;
	border-radius:0px;
}
.symple-accordion h3.symple-accordion-trigger a {
    color: #fff !important;
    text-decoration: none !important;
}
.symple-accordion .ui-accordion-content {
    background-color: #fff;
    padding: 15px;
    border: 2px solid #ddd;
    border-top: none !important;
    font-size: 16px;
    font-family: 'Hind', sans-serif;
	line-height: 1.5;
}
.fisa .right {
    width: 100%;
    float: left;
    border: 3px solid #43515a;
    border-radius: 10px;
}
.fisa #fire .right h2 {
	margin:0px;
	font-size: 20px;
	line-height: 1.9;
	padding: 10px 0px;
}
.portfini #fire .right h2 {
	margin:0px;
	font-size: 20px;
	line-height: 1.9;
	padding: 0px 0px 20px !important;
}
.usa-fisa #fire .right h2 {
    padding: 5px 0px 20px;
}
.fisa .right-content{
	padding: 10px 20px 25px;
	color: #00a8e9;
}
.portfini .right-content{
	padding: 10px 20px 25px;
	color: #43515a;
}
.fisa .right-content a{
	font-family: 'Hind', sans-serif;
	font-weight: 600;
	color: #00a8e9;
	font-size: 18px;
	text-decoration: underline;
}
.fisa .right-content a:hover{
	color:#ed7d31;
}
.usa-fisa #fire .left h3 {
    margin: 0 0 10px 0;
    padding-top: 0px;
	line-height: 1.3;
}
.usa-fisa .take-tour{
	padding: 20px;
	float: left;
	background: #00a8e9;
	width: auto;
	color: #fff;
	font-family: 'Source Sans Pro', sans-serif;
	margin: 30px 0 50px 0;
}
.usa-fisa .take-tour .left{
	width: 100%;
	float: left;
	font-size: 26px;
	font-weight: 400;
	line-height: 1.2;
}
.usa-fisa .take-tour .right{
	width: auto;
	float: left;
	vertical-align: top;
	border: none;
	padding: 16px 0px;
	margin-right: 30px;
}
.usa-fisa .take-tour a{
	background: #ed7d31;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 600;
	padding: 10px 15px;
	border-radius: 3px;
	border: 2px solid #ed7d31;
}
.usa-fisa .take-tour a:hover{
	border: 2px solid #fff;
	color:#fff;
	background: transparent;
}

.webfisc .take-tour{
	padding: 20px;
	float: left;
	background: #00a8e9;
	width: auto;
	color: #fff;
	font-family: 'Source Sans Pro', sans-serif;
	margin: 30px 0 50px 0;
}
.webfisc .take-tour p{
	margin:0px;
}
.webfisc .take-tour .left{
	width: 100%;
	float: left;
}
.webfisc .take-tour .left h4{
	font-size: 26px;
	font-weight: 400;
	line-height: 1.2;
	margin:0;
}

.webfisc .take-tour .right{
	width: auto;
	float: left;
	vertical-align: top;
	border: none;
	padding: 16px 0px;
	margin-right: 30px;
}
.webfisc .take-tour a{
	background: #ed7d31;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 600;
	padding: 10px 15px;
	border-radius: 3px;
	border: 2px solid #ed7d31;
}
.webfisc .take-tour a:hover{
	border: 2px solid #fff;
	color:#fff;
	background: transparent;
}

.portfini #fire .left h3 {
    margin: 0 0 0px 0;
    padding-top: 0px;

}
.portfini #fire .left h3 strong{
	font-size: 20px;

}

	.portfini #fire .right {
    width: 100%;
    float: left;
    border: 3px solid #43515a;
    border-radius: 10px;
    margin: 0 0 60px 0;
}
#services .left {
    width: 100%;
    float: left;
    padding: 1%;
    border: 1px solid #fff;
	margin:0 0 25px 0;
}
#services .left:hover {
    background: #f9f9f9;
    padding: 1%;
    border: 1px solid #ededed;
}
#services .right {
    width: 100%;
    float: right;
    padding: 1%;
    border: 1px solid #fff;
	margin:0 0 25px 0;
}
#services .right:hover {
    background: #f9f9f9;
    padding: 1%;
    border: 1px solid #ededed;
}

#services .service-box {
    float: left;
    width: 100%;
    padding: 145px 0px 20px 0px;
    margin: 0px 0px 40px 0px;
    text-align: left;
    color: #363636;
}
#services .consulting {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/service-icon1.png) no-repeat top center;
}
#services .fire {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/service-icon2.png) no-repeat top center;
}
#services .software-dev {
    background: url(https://ftlabs.com/wp-content/uploads/2017/06/service-icon3.png) no-repeat top center;
}
#services .support {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/service-icon4.png) no-repeat top center;
}
#services h2{
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 20px 0px;
	line-height: 1;
	font-weight: 600;
	font-size: 28px;
	color: #ed7d31;
	text-align: center;
	text-transform: none;
	font-family: 'Source Sans Pro', sans-serif;
}
#services .consulting h2{
	color:#ec7d30;
}
#services .fire h2{
	color:#75ab22;
}
#services .software-dev h2{
	color:#00a8e9;
}
#services .support h2{
	color:#00a8e9;
}
#services .link{
	color: #00a8e9 !important;
	font-weight: 600 !important;
	font-size: 17px !important;
	text-decoration:underline !important;
}
#services a{
	color: #434343 !important;
	font-weight: normal !important;
	font-size: inherit !important;
	text-decoration: none !important;
}
#services a:hover{
	text-decoration:underline;
}
#services .link::after{

	margin: 0px 0 0 7px;
	vertical-align: middle;
	font-size: 22px;
	background: url(https://ftlabs.com/wp-content/uploads/right-arrow.png);
	background-repeat: no-repeat;
	content: " ";
	width: 7px;
	height: 11px;
	display: inline-block;
}
#services h1{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 21px;
	color: #00a8e9;
	font-weight: 600;
	margin: 20px 0 30px 0;
	line-height: 1.2;
}

#product .left{
	width:auto;
	float:left;
	margin: 0 0 25px 0;
	padding: 3%;
	border: 1px solid #fff;
}
#product .right{
	width:auto;
	float:left;
	margin: 0 0 25px 0;
	padding: 3%;
	border: 1px solid #fff;
}
#product .left:hover{
	background: #f9f9f9;
	border: 1px solid #ededed;
	margin: 0 0 25px 0;
	padding: 3%;
}
#product .right:hover{
	background: #f9f9f9;
	border: 1px solid #ededed;
	margin: 0 0 25px 0;
	padding: 3%;
}
#product .service-box {
    float: left;
    width: 100%;
    padding: 145px 0px 20px 0px;
    margin: 0px 0px 0px 0px;
    text-align: left;
    color: #363636;
    min-height: 230px;
}
#product .webfisc {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/product-icon1.png) no-repeat top center;
}
#product .cdunderwriter {
    background: url(https://ftlabs.com/wp-content/uploads/2018/03/cdunderwriter1.png) no-repeat top center;
}
#product .firm {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/product-icon2.png) no-repeat top center;
}
#product .fisa {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/product-icon3.png) no-repeat top center;
}
#product .fire {
    background: url(https://ftlabs.com/wp-content/uploads/2017/06/product-icon4.png) no-repeat top center;
}
#product .other-tech-pro {
    background: url(https://ftlabs.com/wp-content/uploads/2021/06/other-product-1.png) no-repeat top center;
}
#product .bond {
    background: url(https://ftlabs.com/wp-content/uploads/2021/06/websifc-icon.png) no-repeat top center;
}
#product .bond-track {
    background: url(https://ftlabs.com/wp-content/uploads/2021/06/bt-new.png) no-repeat top center;
}
#product h2{
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 20px 0px;
	line-height: 1;
	font-weight: 600;
	font-size: 28px;
	color: #ed7d31;
	text-align: center;
	text-transform: none;
	font-family: 'Source Sans Pro', sans-serif;
}
#product .consulting h2{
	color:#ec7d30;
}
#product .fire h2{
	color:#75ab22;
}
#product .software-dev h2{
	color:#43525a;
}
#product .support h2{
	color:#00a8e9;
}
#product a{
	color:#00a8e9;
	font-weight:600;
	font-size: 17px;
}
.product .prod_info{

	color:#434343 !important;
	font-weight:normal !important;
	font-size: inherit !important;
}
#product .link:hover{
	text-decoration:underline;
}
#product .link::after{
	margin: 0px 0 0 7px;
	vertical-align: middle;
	font-size: 22px;
	background: url(https://ftlabs.com/wp-content/uploads/right-arrow.png);
	background-repeat: no-repeat;
	content: " ";
	width: 7px;
	height: 11px;
	display: inline-block;
}
#product h1{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 21px;
	color: #00a8e9;
	font-weight: 600;
	margin: 20px 0 30px 0;
	line-height: 1.2;
}

.vfbp-form .btn-primary {
    color: #fff;
    background-color: #00a8e9 !important;
    border-color: #00a8e9 !important;
}
.vfbp-form .btn {
    display: inline-block;
    padding: 10px 30px !important;
    margin-bottom: 0;
    font-size: 20px !important;
    font-weight: 400;
    line-height: 1 !important;
}
#support h1{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 23px;
	color: #00a8e9;
	font-weight: 600;
	margin: 20px 0 15px 0;
	line-height:1.2;
}
#support .left{
	width: 100%;
	float: left;
}
#support .right{
	width: 100%;
	float: left;
	margin-top: 30px;
}
#support .right .right-title{
	background: url(https://ftlabs.com/wp-content/uploads/2016/12/enterprise-bg.png);
	background-repeat: no-repeat;
	height: 70px;
	margin-bottom: 12px;
	background-position: center bottom;
}
#support .right .right-title h2{
	background-size: auto;
	height: 52px;
	font-family: 'Source Sans Pro', sans-serif;
	color: #fff;
	text-align: center;
	font-size: 28px;
	margin: 0 0 25px 0;
}

#support a{
	background: #00a8e9;
	display: block;
	width: auto;
	color: #fff;
	padding: 10px 20px;
	font-weight: 600;
	border: 0px solid #00a8e9;
	border-radius: 5px;
	font-size: 16px;
	margin: 0 0 7px 0;
}
#support a:hover{
	background: #ed7d31 !important;
	border: 0px solid #ed7d31;
}
.vfbp-form label {
    font-size: 16px !important;
	font-weight:600 !important;
}
#contact .left{
	width: 100%;
	float: left;
}
#contact h1{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 22px;
	color: #00a8e9;
	font-weight: 600;
	margin: 0 0 15px 0;
}
#contact .right{
	width: 100%;
	float: left;
	margin-top: 25px;
	margin-left: 16px;
}
#contact .right a{
	padding:0px 0px 0px 0px;
	margin:0px 5px;
	display:inline-block;
	vertical-align:middle;
	text-decoration:none;
}

#contact .right a.f,
#contact .right a.t,
#contact .right a.i,
#contact .right a.g {
	width:30px;
	height:30px;
}

#contact .right a.f {
	background:url(images/facebook.png) no-repeat 0px 0px;
}

#contact .right a:hover.f {
	background:url(images/facebookh.png) no-repeat 0px 0px;
}

#contact .right a.t {
	background:url(images/twitter.png) no-repeat 0px 0px;
}

#contact .right a:hover.t {
	background:url(images/twitterh.png) no-repeat 0px 0px;
}

#contact .right a.i {
	background:url(images/in.png) no-repeat 0px 0px;
}

#contact .right a:hover.i {
	background:url(images/inh.png) no-repeat 0px 0px;
}

#contact .right a.g {
	background:url(images/google.png) no-repeat 0px 0px;
}

#contact .right a:hover.g {
	background:url(images/googleh.png) no-repeat 0px 0px;
}
#partner h1{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 19px;
	color: #00a8e9;
	font-weight: 600;
	margin: 0 0 15px 0;
}
#partner h2{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 24px;
	color: #424242;
	font-weight: 600;
	margin: 0 0 15px 0;
}
#consulting h1{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 23px;
	color: #00a8e9;
	font-weight: 600;
	margin: 0 0 15px 0;
	line-height:1.2;
}
#consulting .left{
	width: 100%;
	float: left;
}
#consulting .right{
	width: 100%;
	float: left;
	margin-top: 30px;
}
#consulting .right .right-title{
	background: url(https://ftlabs.com/wp-content/uploads/2016/12/enterprise-bg.png);
	background-repeat: no-repeat;
	height: 70px;
	margin-bottom: 12px;
	background-position: center bottom;
}
#consulting .right .right-title h3{
	background-size: auto;
	height: 52px;
	font-family: 'Source Sans Pro', sans-serif;
	color: #fff;
	text-align: center;
	font-size: 28px;
	margin: 0 0 25px 0;
}

#consulting .right a{
	background: #00a8e9;
	display: block;
	width: auto;
	color: #fff;
	padding: 10px 20px;
	font-weight: 600;
	border: 0px solid #00a8e9;
	border-radius: 5px;
	font-size: 16px;
	margin: 0 0 7px 0;
}
#consulting .right a:hover{
	background: #ed7d31 !important;
	border: 0px solid #ed7d31;
}
.entry-content blockquote, .comment-content blockquote {
    font-style: normal !important;
	font-size: 17px;
	margin: 0 0 10px;
}
.open-quote{
	display:none !important;
}
.close-quote{
	display:none !important;
}
.testimonials-widget-testimonial blockquote p::before {
	margin: 0px 0 0 0px;
	font-size: 22px;
	background: url(https://ftlabs.com/wp-content/uploads/open-quote.png);
	background-repeat: no-repeat;
	content: " ";
	width: 52px;
	height: 37px;
	display: inline-block;
	padding: 0 0px 20px 0;
	float: left;
}
.testimonials-widget-testimonial blockquote p::after {
	margin: 0px 0 0 0px;
	font-size: 22px;
	background: url(https://ftlabs.com/wp-content/uploads/close-quote.png);
	background-repeat: no-repeat;
	content: " ";
	width: 52px;
	height: 37px;
	display: inline-block;
	padding: 0 25px 20px 0;
	float: right;
}

.testimonials-widget-testimonial {
    border-top: 1px solid #e0e0e0;
    padding: 20px 0px 40px 0;
    margin: 0px !important;
}
.testimonials-widget-testimonials .post-384{
    border-top: 0px solid #e0e0e0;
    padding: 0px 0px 40px 0;
    margin: 0px !important;
}
.testimonials-widget-testimonial div.credit {
    display: block;


    margin-top: 0px !important;
    text-align: left;
    color: #00a8e9;
    font-size: 16px;
    font-weight: 600;
	padding: 0 0 0 0px;
}
#testimonials h1{
	color: #00a8e9;
	font-size:30px;
	font-family: 'Source Sans Pro', sans-serif;
	margin:0px !important;
}
#product .webfisc h2{
	color:#75ab22;
}
#product .cdunderwriter h2{
	color:#75ab22;
}
#product .fire h2{
	color:#00A8E9;
}
#product .fisa h2{
	color:#1b75bb;
}
#product .firm h2{
	color:#00a8e9;
}
.mnged-routing .left a, .learn-more-fisa{
    display: inline-block;
    font-size: 18px;
    color: #00a8e9 !important;
    padding: 8px 20px;
    margin: 20px 0px 0px 0px;
    text-align: center;
    line-height: 1.4;
    border: 2px solid #00a8e9;
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Source Sans Pro', sans-serif;
}
.mnged-routing .left a:hover, .learn-more-fisa:hover{
    color: #fff !important;
    border: 2px solid #ed7d31;
	background:#ed7d31;
}
#company h1{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 21px;
	color: #00a8e9;
	font-weight: 600;
	margin: 20px 0 30px 0;
	line-height: 1.2;
}

#company a .who{
	border:1px solid #fff;
	padding: 150px 10px 10px 10px;
	background-position: top center;
}
#company a .what{
	border:1px solid #fff;
	padding: 150px 10px 10px 10px;
	background-position: top center;
}
#company a .how{
	border:1px solid #fff;
	padding: 150px 10px 10px 10px;
	background-position: top center;
}
#company a:hover .who{
	border:1px solid #e1e1e1;
	background: url(images/icon1.png) no-repeat top left #f5f5f5;
	padding: 150px 10px 10px 10px;
	background-position: top center;
}
#company a:hover .what{
	border:1px solid #e1e1e1;
	background: url(images/icon2.png) no-repeat top left #f5f5f5;
	padding: 150px 10px 10px 10px;
	background-position: top center;
}
#company a:hover .how{
	border:1px solid #e1e1e1;
	background: url(images/icon3.png) no-repeat top left #f5f5f5;
	padding: 150px 10px 10px 10px;
	background-position: top center;
}
#ui-id-9{
/*	visibility:hidden;
	padding: 0 !important;*/
	margin: 0;
}
.breadcrumbs{
	width: 100%;
	text-align: right;
	margin: 30px 0px 20px 0;
	float: left;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 17px;
}
.entry-header .entry-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 34px !important;
    font-weight: 700;
	padding:30px 0px 20px 0px
}
.page-id-11 .breadcrumbs span{
	display:none;
}
#blog ul li {
    list-style: none;
    float: left;
    width: 100%;
    padding: 0px 0px 20px 0px;
    margin: 0px 0px 20px 0px;
    text-align: justify;
    line-height: 1.4;
    border-bottom: 2px solid #e3e3e3;
}
#blog ul li .lcp_dat {
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    text-align: left;
    line-height: 1.4;
    font-size: 16px;
    color: #404041;
    font-weight: 500;
    text-transform: none;
    clear: none;
}
#blog ul li h4 {
    padding: 5px 0px 15px 0px;
    margin: 0px 0px 0px 0px;
    text-align: left;
    line-height: 1.2;
    font-size: 18px;
    color: #404041;
    font-weight: 700;
    text-transform: none;
    clear: none;
}
#blog ul li a {
    color: #404041;
    text-decoration: none;
}
#blog ul li a:hover {
    color: #00a8e9;
    text-decoration: none;
}

#blog ul li .lcp_excerpt {
    display: block;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    text-align: justify;
    line-height: 1.4;
}
#blog ul li a.more {
    display: inline-block;
    font-size: 16px;
    color: #00a8e9;
    padding: 5px 20px;
    margin: 15px 0px 0px 0px;
    text-align: center;
    vertical-align: middle;
    line-height: 1.4;
    border: 2px solid #00a8e9;
    border-radius: 0px;
    font-weight: 600;
    text-decoration: none;
    text-transform: none;
}
#blog ul li a.more:hover {
    background: #1e2432;
    color: #FFF;
    border: 2px solid #1e2432;
}
#recent-posts-2, #categories-2, #synved_social_follow-2 {
    padding: 0px;
    margin-bottom: 25px;
	font-family: 'Source Sans Pro', sans-serif;
	background: #e9e9e9;
}
#recent-posts-2 h3, #categories-2 h3, #synved_social_follow-2 h3{
    padding: 10px 0px 10px 10px;
    margin: 0px 0px 0px 0px;
    text-align: left;
    line-height: 1.4;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Source Sans Pro', sans-serif;
    background: #0888c0;
    color: #fff;
}
#recent-posts-2 ul, #categories-2 ul{
    padding: 15px 25px;
    list-style-image: url(https://ftlabs.com/wp-content/uploads/left-arrow.png);
}
#recent-posts-2 ul li, #categories-2 ul li {
    font-size: 16px;
	font-weight: 400;
	padding:0px 0px 10px 0px;
	line-height:1.4;
}
#recent-posts-2 ul li a, #categories-2 ul li a{
    color: #000;
}
.single-post .entry-header .entry-title {
    margin: 0 0 15px 0;
}
.portfini-login{
	width: auto;
	float: left;
	background: #ed7d31;
	color: #fff;
	padding: 10px 20px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 4px;
	margin: 0 0 15px;
	text-align: center;
}
.portfini-login:hover{
	background: #00a8e9;
	color:#fff;
}
#layerslider_widget-2, #layerslider_widget-3{
	display:none;
}
#layerslider_widget-6{
	display:none;
}
#synved_social_follow-2 div{
	padding: 12px 0 12px 12px;
}


.footer-contact-part1 {
    padding: 35px 0 35px 0 !important;
    text-align: center;
}
.footer-contact-part1 .left {
    float: none;
    display: inline-block;
}
.footer-contact-part1 .right {
    float: none;
	margin: 35px 0px;
	display: inline-block;
}
.footer-contact-part1 .left h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 28px;
    color: #ed7d31;
}
.footer-contact-part1 .left p {
    font-size: 18px;
    color: #000;
}
.footer-contact-part1 .right a {
    background: #ed7d31;
    color: #fff;
    padding: 10px 20px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
}
.footer-contact-part1 .right a:hover {
    background: #00a8e9;
}
#landing-page .left{
	width: 100%;
	float: left;
	display: inline-block;
}
#landing-page .right{
	width: 100%;
	float: right;
	display: inline-block;
	--background-color: #DDD;
	padding: 15px 0px;
}
#vfbp-form-2 .btn-primary:hover {
    color: #fff;
    background-color: #00a8e9 !important;
    border-color: #00a8e9 !important;
}
.vfbp-form .btn-primary {
    color: #fff;
    background-color: #ed7d31 !important;
    border-color: #ed7d31 !important;
}
#landing-page #vfbp-form-2{
	background: #eeeeee;
	border: 1px solid #c6c6c6;
	padding: 24px 12px;
}
#landing-page .left .case-study{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 18px;
	color: #ed7d31;;
	font-weight: 600;
	line-height: 26px;
	display: inline-block;
}
.post-817 {
	border-bottom: 3px dotted #d8d8d8 !important;
	margin-bottom: 0px !important;
	padding-bottom: 31px !important;
}
.landing-slider{
	display:none;
}
.page-id-817 .landing-slider{
	 display: inherit;
    z-index: -1;
    position: relative;
	float:left;
	width:100%;
}
.page-id-817 .header-part {
	display:none;
}
#landing-page {
	margin:10px 0 0 0;
}
.page-id-817 .breadcrumbs {
	display:none;
}
#landing-page .landing-title{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 21px;
	color: #00a8e9;
	font-weight: 600;
	margin: 0 0 30px 0;
	text-align: left;
	line-height: 1.2;
}
.left .landing-button a{
	background: #ed7d31;
	color: #fff;
	padding: 10px 20px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	font-weight: 600;
	border-radius: 4px;
}
.left .landing-button a:hover{
	background:#00a8e9;

}
.landing-button{
	margin: 0 0 30px 0;
	display: inline-block;
}
.down-button{
	background: #ed7d31;
	color: #fff;
	padding: 6px 20px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	text-transform: uppercase;



	font-weight: 600;
	border-radius: 4px;
	margin: 7px 0 0 0;
	display: inline-block;
}
.down-button:hover{
	background: #00a8e9;
	color:#fff;
}
.right .form-conform.conform-button{
	background: #ed7d31;
	color: #fff;
	padding: 6px 20px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 4px;
	margin: 7px 0 0 0;
	display: inline-block;
	text-align: center;
}
.page-id-841 .landing-slider{
	display: inherit;
	z-index: -1;
	position: relative;
		float:left;
	width:100%;

}
.page-id-841 .header-part {
	display:none;
}
.download-portfini .downloadnew-button {
    background: #ed7d31;
	color: #fff;
    padding: 6px 20px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
   margin: 0px 0 25px 0;
    display: inline-block;
}
.download-portfini .downloadnew-button:hover {
    background: #00a8e9;
}
#amazon h2{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 21px;
	color: #00a8e9;
	font-weight: 600;
	margin: 0 0 16px 0;
	line-height: 22px;
}
#amazon .learn-more-fisa12 {
	display: inline-block;
	font-size: 13px;
	color: #00a8e9 !important;
	padding: 8px 20px;
	margin: 0px 0px 0px 0px;
	text-align: center;
	line-height: 1.2;
	border: 2px solid #00a8e9;
	border-radius: 3px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	font-family: 'Source Sans Pro', sans-serif;}
#amazon .learn-more-fisa12:hover {
    color: #fff !important;
    border: 2px solid #ed7d31;
    background: #ed7d31;
}
#amazon .learn-more-fisa34 {
	display: inline-block;
	font-size: 13px;
	color: #00a8e9 !important;
	padding: 8px 20px;
	margin: 9px 0 0 0px;
	text-align: center;
	line-height: 1.4;
	border: 2px solid #00a8e9;
	border-radius: 3px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	font-family: 'Source Sans Pro', sans-serif;}
#amazon .learn-more-fisa34:hover {
    color: #fff !important;
    border: 2px solid #ed7d31;
    background: #ed7d31;
}
#amazon .symple-accordion p {
	text-align:center;
	margin: 0px 0 12px 0;
}
#amazon .symple-accordion .ui-accordion-content {
    padding: 25px;
}
.footer-contact-partnewpart{
	padding: 15px 0 15px 0 !important;
	text-align: center;
	background: #efefef;
}
.footer-contact-partnewpart .left{
	width: 100%;
	float: none;
	display: inline-block;
}
.footer-contact-partnewpart .left h3{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 21px;
	color: #434343;
	margin: 0 0 5px 0;
}
.footer-contact-partnewpart .left h3 p{
	font-size: 18px;
	color: #000;
}
.footer-contact-partnewpart .right {
    float: none;
    margin: 20px 0px;
    display: inline-block;
}
.footer-contact-partnewpart .right a {
    background: #ed7d31;
    color: #fff;
    padding: 10px 20px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
}
.footer-contact-partnewpart .right a:hover {
    background: #00a8e9;
}
.page-id-62 .footer-contact-partnewpart {
    display: none;
}
.footer-contact-amazon hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin: 0px;
    margin-bottom: 0px;
}
#amazon .right{
	text-align:center;
}
.page-id-933 .footer-contact-part1 {
    padding: 0px !important;
    text-align: left;
}
#amazon .bubble-mobile{
	display:inline-block;
}
#amazon .bubble{
	display:none;

}
.page-id-933 .header-part {
    display: none;
}
.header-part {
    display: inherit;
}
.breadcrumbs {
	    display: inherit;
}
.page-id-933 .breadcrumbs {
    display: none;
}
.page-id-933 .footer-contact-bubble{
	background: #00a8e9;
	color: #fff;
	text-align: center;
	font-size: 18px;
	padding: 15px 0 15px 0;
	margin: 0px 0 10px;
	display: inherit;
}
.footer-contact-bubble{
	display: none;
}

.bubble-para p {
	font-size:15px;
}
.bubble-para a {
	background: #ed7d31;
	color: #fff;
	padding: 8px 15px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 17px;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 4px;
	margin: 10px 0 0 0;
	display: inline-block;
}
.bubble-para a:hover{
	background: #fff;
	color: #ed7d31;

}
.footer-contact-partnewpart .left a {
	background: #ed7d31;
	color: #fff;
	padding: 8px 15px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 4px;
	margin: 10px 0 0 0;
	display: inline-block;
}
.footer-contact-partnewpart .left a:hover{
	background: #00a8e9;

}
.footer-contact-partnewpart .right a {
	background: #ed7d31;
	color: #fff;
	padding: 8px 15px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 4px;
	margin: 10px 0 0 0;
	display: inline-block;
}
.footer-contact-partnewpart .right a:hover{
	background: #00a8e9;

}
.footer-contact-partnewpart .right h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 21px;
	color: #434343;
	margin: 0 0 5px 0;
}
.page-id-933  .footer-contact-bubble1{
	margin: 20px 0 20px;
	display: inherit;
}
.footer-contact-bubble1{
	display: none;
}

#amazon{
	margin: 5px 0 0 0;
}
.bubble-para h4{
	    margin: 0 0 10px 0;
}
.page-id-933  .Amazon-Alexa-slider{
	display:inherit;
}
.Amazon-Alexa-slider{
	display:none;
}
.footer-contact-bubble1 .question{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 32px;
	color: #00a8e9;
	font-weight: 600;
	margin: 0 0 30px 0;
	text-align: center;
}
.page-id-933 .Amazon-Alexa-slider-mobile{
	display:inherit;
	position: relative;
		float:left;
	width:100%;
}
.page-id-933 .Amazon-Alexa-slider{
	display:none;
}
.Amazon-Alexa-slider-mobile{
	display:none;
}
.Amazon-Alexa-slider{
	display:none;
}
#layerslider_19 .para-layer1 {
    background: rgba(13, 13, 13, 0.75);
    padding: 3px 11px !important;
    display: inline-block;
    width: 73% !important;
    left: 10% !important;
}
#layerslider_19 a{
	left:24% !important; 
	display: inline-block;

}
.Download-alexa{    
	background: #ed7d31;
	color: #fff !important;
	padding: 10px 20px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 4px;
	margin: 20px 0px 0px 0px;
	border:0px !important;
	display: inline-block;
}
.Download-alexa:hover{  
	background: #00a8e9;
}
.new-para{
	text-align:center;
}
.alexa-number p{
	font-size: 16px;
	padding: 0 0 0 10px !important;

}
.alexa-number::before{
		list-style: decimal;
		content:'';

}
.alexa-question{
	counter-reset: alexa-question;
}

.alexa-number {
    margin: 0px 0 13px 54px;
    list-style-type: none;
}
.alexa-number::before {
    border: 1px solid;
    padding: 4px 13px 1px 13px;
    margin: 0 0 0 -52px;
    border-radius: 54%;
    display: inline-block;
    counter-increment: alexa-question;
    content: "" counter(alexa-question) " ";
    font-size: 22px;
    background: #eee;
    text-align: center;
	position:absolute;
	width:10px;
}
#secondary ul li a:hover{
	color: #ed7d31;
}

#secondary .widget_recent_entries li {
	margin-bottom: 12px;
	border-bottom: 1px solid silver;
}

#secondary li.cat-item {
	margin-bottom: 4px;
}


.single-post .attachment-post-thumbnail, .category .attachment-post-thumbnail{
	display:none;
}
#blog ul li .lcp_cat{
    padding: 5px 10px 5px 10px;
    margin: 0px 0px 15px 0px;
    text-align: center;
    line-height: 1.4;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Source Sans Pro', sans-serif;
    background: #0888c0;
    color: #fff;
    display: inline-block;
    width: 8%;
}

#blog ul.lcp_paginator {
	padding:20px 0px 0px 0px;
	margin:0px 0px 0px 0px;
}

#blog ul.lcp_paginator li {
	list-style:none;
	padding:3px 0px;
	margin:0px 0px 0px 5px;
	position:relative;
	float:left;
	width:auto;
	font-size:16px;
	font-weight:500;
	border:1px solid #e9e9e9;
	line-height:1.4;
}

#blog ul.lcp_paginator li a{
	padding:1px 7px ;
	margin:0px 0px 0px 0px;
	line-height:1.4;
}

#blog ul.lcp_paginator li a:hover{
	padding:1px 7px ;
	margin:0px 0px 0px 0px;
	background:#ececec;
	line-height:1.4;
}

#blog ul.lcp_paginator li.lcp_currentpage{
	background:#ececec;
	padding:3px 7px ;
	line-height:1.4;
}

}
/* Minimum width of 480 pixels. */
@media screen and (min-width: 480px) {
	.header-part {
    min-height: 130px;
}
.portfini-login {
    width: 92%;
    float: left;
    background: #ed7d31;
    color: #fff;
    padding: 10px 20px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    margin: 0 0 15px;
    text-align: center;
}
.footer-contact-partnewpart .left h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 27px;
}
#layerslider_19 .para-layer1{
	background: rgba(13, 13, 13, 0.75);
	padding: 4px 11px !important;
	display: inline-block;
}
#layerslider_19 a{
	left:26% !important; 
	display: inline-block;

}
}
/* Minimum width of 640 pixels. */
@media screen and (min-width: 640px) {

.welcome-part aside .widget-title {
    padding: 0px 0px 10px 0px;
    font-size: 30px;
}
.welcome-part aside strong {

     font-size: 20px;
}
	.who-what-part aside {
    width: 30%;
	}
	.who-what-part aside:nth-child(2) {
    padding: 0px 2.4%;
    margin: 0px 2.4%;
    border-left: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
	}
	.who-what-part aside span {
    min-height: 230px;
    display: inline-block;
}
	.btm-contact-us-part aside {
    font-size: 24px;
}
.header-part {
    min-height: 145px;
}

.company-box {
    width: 75%;
    padding: 0px 0px 5px 25%;
    margin: 0px 0px 25px 0px;
    text-align: left;
}
.company-box h2 {
    text-align: left;
}

.who {
    background: url(images/icon1.png) no-repeat top left;
}
.what {
    background: url(images/icon2.png) no-repeat top left;
}
.how {
    background: url(images/icon3.png) no-repeat top left;
    border: none;
}

.management-part .left-img {
    width: 26%;
    padding: 0px 4% 15px 0%;
    text-align: left;
}

.management-part .right-detail {
    width: auto;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    text-align: justify;
    color: #363636;
}

.management-part h2 {
    text-align: left;
}

.management-part strong {
    text-align: left;
}
.fisa #fire .right {
    width: 91%;
    float: left;
}
#fire .right h2 {
    background-size: auto;
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
    text-align: center;
    font-size: 25px;
    margin: 0 0 25px 0;
    padding: 10px 0px 30px;
}
.webfisc .p1{
    background-size: 100%;
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
    text-align: center;
    font-size: 25px;
    margin: 0px 0 0px 0;
    font-weight: 600;
    display: block;
    width: 100%;
    line-height: 40px;
	height: 37px;
}
.webfisc .p2{
	background-size: 100%;

	font-family: 'Source Sans Pro', sans-serif;
	color: #fff;
	text-align: center;
	font-size: 15px;
	margin: 0 0 0px 0;
	font-weight: 600;
	display: block;
	width: 100%;
	line-height: 1;
	padding: 5px 0 24px;
}
#services .left {
    width: 45%;
    float: left;
}
#services .right {
    width: 45%;
    float: right;
}
#services h2 {
    font-size: 21px;
}
#services a {
    color: #00a8e9;
    font-weight: 600;
    font-size: 15px;
}
#product .left {
    width: 43%;
    float: left;
	padding: 3%;
	margin: 0;
	border: 1px solid #fff;
}
#product .right {
	width: 43%;
	float: right;
	padding: 3%;
	margin: 0;
	border: 1px solid #fff;
}
#product h2 {
    font-size: 21px;
}
#product .link {
    color: #00a8e9;
    font-weight: 600;
    font-size: 15px;
}
.portfini-system-part{
	background:url(https://ftlabs.com/wp-content/uploads/portfini-bg-mobile.jpg);
	background-repeat:no-repeat;
	background-position: 65% center;
	text-align:left;
}

.portfini-system-part #text-22,
.portfini-system-part #text-28{
	margin-left: 20px;
    width: 50%;
}
#company a .who{
	border:1px solid #fff;
	padding: 15px 0 0 150px;
	background-position: 1% 20%;
}
#company a .what{
	border:1px solid #fff;
	padding: 15px 0 0 150px;
	background-position: 1% 20%;
}
#company a .how{
	border:1px solid #fff;
	padding: 15px 0 0 150px;
	background-position: 1% 20%;
}
#company a:hover .who{
	border:1px solid #e1e1e1;
	padding: 15px 0 0 150px;
	background: url(images/icon1.png) no-repeat top left #f5f5f5;
	background-position: 1% 20%;
}
#company a:hover .what{
	border:1px solid #e1e1e1;
	padding: 15px 0 0 150px;

	background: url(images/icon2.png) no-repeat top left #f5f5f5;
	background-position: 1% 20%;
}
#company a:hover .how{
	border:1px solid #e1e1e1;
	padding: 15px 0 0 150px;
	background: url(images/icon3.png) no-repeat top left #f5f5f5;
	background-position: 1% 20%;
}
.portfini-login {
    width: 85%;
}
.page-id-817 .landing-slider {
    display: inherit;
    z-index: -1;
    position: relative;
    	float:left;
	width:100%;

}
.page-id-841 .landing-slider {
    display: inherit;
    z-index: -1;
    position: relative;
   	float:left;
	width:100%;

}

#amazon .right .amazon-img img {
    margin: 87px 27px 0 11px;
	float: right;
	width:auto;
}
#layerslider_19 a{
	left:32% !important; 
	display: inline-block;

}
}

/* Minimum width of 768 pixels. */
@media screen and (min-width: 768px) {
	
	.top-part .logo {
    width: 25%;
    padding: 17px 0px 17px 0px;
    text-align: left;
    display: inherit;
}

.top-part .top-right .top-detail a {
    margin: 0px 5px;
}

.top-part .top-right {
    width: 75%;
    padding: 0px 0px 0px 0px;
    text-align: right;
    display: inherit;
}
.top-part .top-right .top-detail {
    padding: 10px 0px 0px 0px;
    text-align: right;
}

.top-part .top-right .top-menu {
    padding: 10px 0px 0px 0px;
    text-align: right;
    display: inherit;
}

.main-navigation li {
    margin: 0px 2px 0px 10px;
    font-size: 16px;
}

.main-navigation li ul {
    padding: 16px 0px 0px 0px;
}

.main-navigation li ul li a {
    font-size: 15px;
    padding: 6px 10px;
    width: 280px;
}

.header-part {
    min-height: 170px;
}


.testimonial-part aside .txt-box::after {
    right: -40px;
}

.testimonial-part aside .txt-box::before {
    left: -40px;
}

.testimonial-part aside .txt-box {
    width: 90%;
    padding: 0px 0%;
    margin: 0px 5%;
}

.btm-contact-us-part aside {
    font-size: 26px;
}

.ftr-part {
    background: #151515;
    float: left;
    width: 100%;
    padding: 25px 0px 0px;
    margin: 0px;
    color: #FFF;
}

.ftr-part aside:nth-child(1) {
    display: inherit;
}

.ftr-part aside {
    float: left;
    width: 55%;
    padding: 0px 0px 18px 0px;
    margin: 0px 0px 0px 0px;
    text-align: left;
    line-height: 1.4;
    color: #FFF;
    font-size: 13px;
    min-height: inherit;
}

.ftr-part aside:nth-child(2), .ftr-part aside:nth-child(3) {
    float: right;
    width: 45%;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
    text-align: right;
    line-height: 1;
    color: #FFF;
}

.ftr-part aside ul li {
    display: inline-block;
    padding: 0px 2px 0px 4px;
    margin: 0px 0px 0px 0px;
    border-left: 1px solid #FFF;
    text-transform: uppercase;
}

.ftr-part aside ul li:first-child {
    border-left: 0px solid #FFF;
    padding: 0px 2px 0px 0px;
}

.company-box {
    width: 79%;
    padding: 0px 0px 5px 21%;
    margin: 0px 0px 25px 0px;
    text-align: left;
}

.company-contact-part aside .widget-title {
    text-align: left;
}

.company-contact-part aside {
    width: 78%;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    text-align: justify;
    font-size: 18px;
}

.company-contact-part aside:last-child {
    float: right;
    width: 20%;
    padding: 60px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    text-align: right;
    line-height: 0;
}
.management-part .left-img {
    width: 22%;
    padding: 0px 3% 15px 0%;
    text-align: left;
}

.management-part .right-detail {
    width: auto;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    text-align: justify;
    color: #363636;
}
#fire .left{
	width: 48%;
	float: left;
}
#fire .right{
	width: 48%;
	float: right;
}
.footer-contact-part .left{
	width: 70%;

	float: none;
	display: inline-block;
}
.footer-contact-part .right{
	float: right;
	margin: 35px 0px;
	display: inline-block;
}
#fire .right .right-title {
	background: url(https://ftlabs.com/wp-content/uploads/2016/12/enterprise-bg.png);
    background-position: center bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
#fire .right h2 {
    height: auto;
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
    text-align: center;
    font-size: 20px;
    margin: 0 0 25px 0;
    padding: 5px 0 20px;
}
#fire h3 {

    font-family: 'Source Sans Pro', sans-serif;
    font-size: 25px;
}

#fire .left h3.cdhead{
		color: #75ab22;
}

#fire .left h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 27px;
    color: #00a8e9;
    font-weight: 600;
    margin: 0;
    background: url(https://ftlabs.com/wp-content/uploads/2017/06/icon4.png);
    background-repeat: no-repeat;
    height: 70px;
	line-height: 100%;
    padding-left: 90px;
    margin: 0 0 10px 0;
    padding-top: 0px;
}
.footer-contact-part {
    padding: 35px 0 35px 0 !important;
    text-align: left;
}
#fire .arconix-faq-wrap .left{
	width: 24%;
	float: left;
}
#fire .arconix-faq-wrap .right{
	width: 24%;
	float: left;
}
.webfisc .p1{
    background-size: 100%;
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
    text-align: center;
    font-size: 28px;
    margin: 0px 0 0px 0;
    font-weight: 600;
    display: block;
    width: 100%;
    line-height: 30px;
}
.webfisc .p2{
	background-size: 100%;
	font-family: 'Source Sans Pro', sans-serif;
	color: #fff;
	text-align: center;
	font-size: 15px;
	margin: 0 0 0px 0;
	font-weight: 600;
	display: block;
	width: 100%;
	line-height: 1;
	padding: 0 0 25px;
}
.fisa .p1{
    background-size: 100%;
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
    text-align: center;
    font-size: 28px;
    margin: 0px 0 0px 0;
    font-weight: 600;
    display: block;
    width: 100%;
    line-height: 30px;
}
.fisa .p2{
	background-size: 100%;
	font-family: 'Source Sans Pro', sans-serif;
	color: #fff;
	text-align: center;
	font-size: 15px;
	margin: 0 0 0px 0;
	font-weight: 600;
	display: block;
	width: 100%;
	line-height: 1;
	padding: 0 0 25px 0;
}

.arconix-faq-wrap h3{
	font-size: 25px !important;
	margin: 0 0 10px 0 !important;
}
.fisa #fire .right {
    width: 48%;
    float: right;
    border: 3px solid #43515a;
    border-radius: 10px;
}
.fisa #fire .right h2 {
	margin:0px;
	font-size: 22px;
	line-height: 1.9;
	padding: 5px 0px;
}
.fisa .right-content{
	padding: 10px 20px 25px;
}
.usa-fisa #fire .left h3 {
    margin: 0 0 10px 0;
    padding-top: 10px;
    font-size: 22px;
}
.usa-fisa .take-tour{
	padding: 20px;
	float: left;
	background: #00a8e9;
	width: auto;
	color: #fff;
	font-family: 'Source Sans Pro', sans-serif;
	margin: 30px 0 50px 0;
}
.usa-fisa .take-tour .left{
	width: 75%;
	float: left;
	font-size: 26px;
	font-weight: 400;
	line-height: 1.2;
}
.usa-fisa .take-tour .right{
	width: auto;
	float: right;
	vertical-align: top;
	border: none;
	padding: 31px 0px;
	margin-right: 00px;
}
.usa-fisa .take-tour a{
	background: #ed7d31;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 600;
	padding: 10px 15px;
	border-radius: 3px;
	border: 2px solid #ed7d31;
}
.usa-fisa .take-tour a:hover{
	border: 2px solid #fff;
	color:#fff;
	background: transparent;
}
.ui-accordion-header {
    background: url(https://ftlabs.com/wp-content/uploads/plus-sign.png) no-repeat 98% #00a8e9 !important;
    cursor: pointer !important;
    font-size: 25px !important;
    padding: 10px 0 10px 20px !important;
    position: relative !important;
    color: #fff !important;
    font-family: 'Source Sans Pro', sans-serif !important;
    font-weight: 600 !important;
}
.portfini .ui-accordion-content img{
	width: 32%;
}
.portfini #fire .right {
    width: 48%;
    float: right;
    border: 3px solid #43515a;
    border-radius: 10px;
    margin: 0 0 60px 0;
}
#services .left {
    width: 47%;
    float: left;
    padding: 1%;
    border: 1px solid #fff;
}
#services .left:hover {
    background: #f9f9f9;
    padding: 1%;
    border: 1px solid #ededed;
}
#services .right {
    width: 47%;
    float: right;
    padding: 1%;
    border: 1px solid #fff;
}
#services .right:hover {
    background: #f9f9f9;
    padding: 1%;
    border: 1px solid #ededed;
}

#services .service-box {
    float: left;
    width: auto;
    padding: 0px 0px 20px 160px;
    margin: 0px 0px 40px 0px;
    text-align: left;
    color: #363636;
}
#services .consulting {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/service-icon1.png) no-repeat top left;
}
#services .fire {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/service-icon2.png) no-repeat top left;
}
#services .software-dev {

    background: url(https://ftlabs.com/wp-content/uploads/2017/06/service-icon3.png) no-repeat top left;
}
#services .support {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/service-icon4.png) no-repeat top left;
}
#services h2{
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 20px 0px;
	line-height: 1;
	font-weight: 600;
	font-size: 24px;
	color: #ed7d31;
	text-align: left;
	text-transform: none;
	font-family: 'Source Sans Pro', sans-serif;
}
#services .software-dev h2{
	color:#00a8e9;
	font-size: 23px;
}
#services a{
	color:#00a8e9;
	font-weight:600;
	font-size: 15px;
}
#services a:hover{
	text-decoration:underline;
}
#services .prod_info{
	color:#434343 !important;
	font-weight:normal !important;
	font-size: inherit !important;
}
#services .prod_info:hover{
	text-decoration:none;
}
#services .link::after{

	margin: 0px 0 0 7px;
	vertical-align: middle;
	font-size: 22px;
	background: url(https://ftlabs.com/wp-content/uploads/right-arrow.png);
	background-repeat: no-repeat;
	content: " ";
	width: 7px;
	height: 11px;
	display: inline-block;
}
#services h1{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 25px;
}
#product .left{

	width: 47%;
	float: left;
	padding: 1%;
	border: 1px solid #fff;
}
#product .right{
	width: 47%;
	float: right;
	padding: 1%;
	border: 1px solid #fff;
}
#product .service-box {
    float: left;
    width: auto;
    padding: 0px 0px 20px 100px;
    margin: 0px 0px 40px 0px;
    text-align: left;
    color: #363636;
	min-height: 310px;
}
#product .webfisc {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/product-icon1-tab.png) no-repeat top left;
}
#product .cdunderwriter {
    background: url(https://ftlabs.com/wp-content/uploads/2018/03/cdunderwriter1.png) no-repeat top left;
	background-size: 80px 80px;
}
#product .firm {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/product-icon2-tab.png) no-repeat top left;
}
#product .fisa {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/product-icon3-tab.png) no-repeat top left;
}
#product .fire {
    background: url(https://ftlabs.com/wp-content/uploads/2017/06/product-icon4-tab.png) no-repeat top left;
}
#product .other-tech-pro {
    background: url(https://ftlabs.com/wp-content/uploads/2021/06/other-product-1.png) no-repeat top left;
    background-size: 80px 80px;
}
#product .bond {
    background: url(https://ftlabs.com/wp-content/uploads/2021/06/websifc-icon.png) no-repeat top left;
	background-size: 80px 80px;
}
#product .bond-track {
    background: url(https://ftlabs.com/wp-content/uploads/2021/06/bt-new.png) no-repeat top left;
	background-size: 80px 80px;
}
#product h2{
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 20px 0px;
	line-height: 1;
	font-weight: 600;
	font-size: 24px;
	color: #ed7d31;
	text-align: left;
	text-transform: none;
	font-family: 'Source Sans Pro', sans-serif;
}
#product .consulting h2{
	color:#ec7d30;
}
#product .fire h2{
	color:#00a8e9;
}
#product .software-dev h2{
	color:#43525a;
	font-size: 23px;
}
#product .support h2{
	color:#00a8e9;
}
#product a{
	color:#00a8e9;
	font-weight:600;
	font-size: 15px;
}
.product .prod_info{

	color:#434343 !important;
	font-weight:normal !important;
	font-size: inherit !important;
}
#product .link:hover{
	text-decoration:underline;
}
#product .link::after{
	margin: 0px 0 0 7px;
	vertical-align: middle;
	font-size: 22px;
	background: url(https://ftlabs.com/wp-content/uploads/right-arrow.png);
	background-repeat: no-repeat;
	content: " ";
	width: 7px;
	height: 11px;
	display: inline-block;
}
#product h1{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 25px;
}
#support .left{
	width: 48%;
	float: left;
}
#support .right{
	width: 48%;
	float: right;
	margin-top:0px;
}
#support h1{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 30px;
	line-height:inherit;
}
#support .right .right-title{
	background: url(https://ftlabs.com/wp-content/uploads/2016/12/enterprise-bg.png);

	background-repeat: no-repeat;
	height: 76px;
	margin-bottom: 12px;
	background-position: center bottom;
}
#support .right .right-title h2{
	background-size: auto;
	height: 52px;
	font-family: 'Source Sans Pro', sans-serif;
	color: #fff;
	text-align: center;
	font-size: 30px;
	margin: 0 0 25px 0;
}

#support a{
	background: #00a8e9;
	display: block;
	width: auto;
	color: #fff;
	padding: 10px 20px;
	font-weight: 600;
	border: 0px solid #00a8e9;
	border-radius: 5px;
	font-size: 18px;
	margin: 0 0 7px 0;
}
#support a:hover{
	background: #ed7d31 !important;
	border: 0px solid #ed7d31;
}
#contact .left{
	width: 48%;
	float: left;
}
#contact h1{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 30px;
	color: #00a8e9;
	font-weight: 600;
	margin: 0 0 15px 0;
}
#contact .right{
	width: 48%;
	float: right;
	margin-top: 0px;
	margin-left: 0px;
}
#partner h1 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 25px;
    color: #00a8e9;
    font-weight: 600;
    margin: 0 0 15px 0;
}
.usa-fisa #fire .right h2 {
    padding: 5px 0px 20px;
}
#consulting .left{
	width: 48%;
	float: left;
}
#consulting .right{
	width: 48%;
	float: right;
	margin-top:0px;
}
#consulting h1{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 30px;
	line-height:inherit;
}
#consulting .right .right-title{
	background: url(https://ftlabs.com/wp-content/uploads/2016/12/enterprise-bg.png);
	background-repeat: no-repeat;
	height: 76px;
	margin-bottom: 12px;

	background-position: center bottom;
}
#consulting .right .right-title h3{
	background-size: auto;
	height: 52px;
	font-family: 'Source Sans Pro', sans-serif;
	color: #fff;
	text-align: center;
	font-size: 30px;
	margin: 0 0 25px 0;
}

#consulting .right a{
	background: #00a8e9;
	display: block;
	width: auto;
	color: #fff;
	padding: 10px 20px;
	font-weight: 600;
	border: 0px solid #00a8e9;
	border-radius: 5px;
	font-size: 18px;
	margin: 0 0 7px 0;
}
#consulting .right a:hover{
	background: #ed7d31 !important;
	border: 0px solid #ed7d31;
}
.testimonials-widget-testimonial blockquote p::before {
    margin: 0px 0 0 0px;
    font-size: 22px;
    background: url(https://ftlabs.com/wp-content/uploads/open-quote.png);
    background-repeat: no-repeat;
    content: " ";
    width: 52px;
    height: 37px;
    display: inline-block;
    padding: 0 0px 150px 0;
    float: left;
}
.testimonials-widget-testimonial blockquote p::after {
    margin: 0px 0 0 0px;
    font-size: 22px;
    background: url(https://ftlabs.com/wp-content/uploads/close-quote.png);
    background-repeat: no-repeat;
    content: " ";
    width: 52px;
    height: 37px;
    display: inline-block;
    padding: 0 25px 150px 0;
    float: right;
}

.testimonials-widget-testimonial div.credit {
    display: block;
    margin-top: 0px !important;
    text-align: left;
    color: #00a8e9;
    font-size: 16px;
    font-weight: 600;
    padding: 0 0 0 100px;
}
#product .link {
    color: #00a8e9;
    font-weight: 600;
    font-size: 17px;
}
#product .left:hover{
	background: #f9f9f9;
	padding: 1%;
	border: 1px solid #ededed;
}
#product .right:hover{
	background: #f9f9f9;
	padding: 1%;
	border: 1px solid #ededed;
}
#consulting .left h2, #support .left h3{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 27px;
}
.soft-dev-heading{
	line-height: 1 !important;
	padding: 10px 0 0 90px !important; font-size: 30px !important; font-weight: 600 !important; color: #000 !important;
}
.scroll-back-to-top-wrapper{
	display:none;
}
#to_top_scrollup {
    display: none !important;
}
/*.n2-ss-slide-background-image{
	background-position:50% 0% !important;
}
#n2-ss-3{
	height:550px !important;
}*/
.sd .left h3 {
    height: 65px !important;
    padding-top: 5px !important;
    line-height: 1 !important;
}
.webfisc .take-tour {
    padding: 15px;
    float: left;
    background: #00a8e9;
    width: 96%;
    color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    margin: 30px 0 50px 0;
}
.webfisc .take-tour .left {
    width: 83% !important;
    float: left !important;
}
.webfisc .take-tour .left h4{
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
	margin:0;
}

.webfisc .take-tour .right {
    width: 15% !important;
    float: right !important;
    vertical-align: top;
    border: none;
    padding: 12px 0px;
    margin-right: 5px;
}
.webfisc .take-tour a {
    background: #ed7d31;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 10px;
    border-radius: 3px;
    border: 2px solid #ed7d31;
}
.portfini-login {
    width: 46%;
    float: right;
    background: #ed7d31;
    color: #fff;
    padding: 10px 10px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    margin: 0 0 15px;
    text-align: center;
}
#layerslider_widget-2{
	display:inherit;
}
#layerslider_widget-4, #layerslider_widget-5, #layerslider_widget-3{
	display:none;
}
.prod_slide_txt{
	font-size:15px;
}
#layerslider_widget-6{
	display:inherit;
}
#landing-page .left {
    width: 48%;		
	--height: 550px;
	height: 100%;
    float: left;
    display: inline-block;
}
#landing-page .right {
    width: 48%;
	--height: 470px;
	height: 100%;
	margin-bottom: 30px;
    float: right;
    display: inline-block;
	--background-color: #DDD;		
	padding: 15px 0px;
}#landing-page .full{	width: 100%;	float: left;	display: inline-block;}
.footer-contact-part1 {
    padding: 35px 0 35px 0 !important;
    text-align: left;
}
.footer-contact-part1 .left {
    width: 70%;
    float: none;
    display: inline-block;
}
.footer-contact-part1 .right {
    float: right;
    margin: 35px 0px;
    display: inline-block;
}
.page-id-817 .landing-slider {

    display: inherit;
    z-index: -1;
    position: relative;
	float:left;
	width:100%;
}
#layerslider_widget-8{
	display:none;
}
.page-id-841 .landing-slider {
    display: inherit;
    z-index: -1;
    position: relative;
    	float:left;
	width:100%;

}
#amazon .left{
	width: 39%;
	float: left;
	display: inline-block;
	text-align: justify;
}
#amazon .right{
	width: 58%;
	float: right;
	display: inline-block;
}
#amazon .amazon-img1{
	float:left;
}
#amazon .right .amazon-img img {
    margin: -221px 27px 0 11px;
    float: right;
    width: 29%;
}
#amazon .learn-more-fisa34 {
    font-size: 18px;
    padding: 6px 20px;
    margin: 8px 0 0 6px;
    font-weight: 600;
}
#amazon .learn-more-fisa12 {
    font-size: 18px;
    padding: 8px 20px;
    font-weight: 600;
}
#amazon h2 {
   font-size: 22px;
	margin: 0 0 14px 0;
	text-align: left;
}
#amazon .right .amazon-img img {
    margin: -221px 27px 0 11px;
    float: right;
    width: 29%;
}
.footer-contact-partnewpart {
    padding: 20px 0 20px 0 !important;
	text-align: left;
	width: 100%;
	display: inline-block;
}
.footer-contact-partnewpart .right {
    float: right;
    margin: 18px 0px;
    display: inline-block;
}
#amazon .bubble-mobile{
	display:none;
}
#amazon .bubble{
	display:inline-block;
}
.page-id-933 .footer-contact-bubble {
    background: #00a8e9;
    color: #fff;
    text-align: center;
    font-size: 18px;
    padding: 15px 0 15px 0;
    margin: 0px 0 10px;
    display: inline-block;
    width: 100%;
}
.footer-contact-bubble .bubble-img{
	width: 48%;
	float: left;
	display: inline-block;
}
.footer-contact-bubble .bubble-para{
	width: 48%;
	float: right;
	display: inline-block;
	text-align: left;
}
.bubble-para h4 {
    margin: 0 0 10px 0;
    font-size: 19px;
    line-height: 24px;
}
.footer-contact-partnewpart .left {
    width: 50%;
    float: left;
    display: inline-block;
    text-align: center;
}
.footer-contact-partnewpart .right {
    float: right;
    margin: 0px;
    display: inline-block;
    width: 50%;
    text-align: center;
}
.footer-contact-partnewpart .right h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 23px;
    color: #434343;
    line-height: 25px;
    min-height: 63px;
}
.footer-contact-partnewpart .left h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 23px;
    color: #434343;
    line-height: 25px;
    min-height: 63px;
}
.page-id-933 .Amazon-Alexa-slider-mobile{
	display:none;
}
.page-id-933 .Amazon-Alexa-slider{
	display: inherit;
	position: relative;
	float:left;
	width:100%;
}
.Amazon-Alexa-slider-mobile{
	display:none;
}
.Amazon-Alexa-slider{
	display:none;
}
#layerslider_18 .new-layer {
	width:83% !important;
	left:60px !important;
}
#layerslider_18 .para-layer{
	background: rgba(13, 13, 13, 0.75);
	padding: 10px 11px !important;
	display: inline-block;
	width:91% !important; 
}
#layerslider_18 .bondtrack{
	padding: 11px 12px !important;
	font-size: 16px !important; 
}
#amazon {
    margin: 1% 0 0 0;
}
.page-id-933 .entry-header .entry-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 34px !important;
    font-weight: 700;
    --margin-top: 80px;
}
#blog ul li .lcp_img{
    width: 40%;
    float: left;
    margin: 0 30px 0 0;
}
}

/* Minimum width of 900 pixels. */
@media screen and (min-width: 900px) {
	
	.who-what-part aside span {
    min-height: 195px;
    display: inline-block;
}

.main-navigation li {
    margin: 0px 2px 0px 16px;
    font-size: 17px;
}
.ftr-part aside {
    font-size:14px;
}

.header-part {
    min-height: 200px;
}

.company-box {
    width: 82%;
    padding: 0px 0px 5px 18%;
    margin: 0px 0px 25px 0px;
    text-align: left;
}
.top-part .top-right .top-menu {
    padding: 18px 0px 0px 0px;
    text-align: right;
    display: inherit;
}
#fire .right .right-title {
    background: url(https://ftlabs.com/wp-content/uploads/enterprise-bg-tab.png);
    background-position: center bottom;
    background-repeat: no-repeat;
	background-size: 472px 66px;
}
#fire .right h2 {
    height: auto;
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
    text-align: center;
    font-size: 28px;
    margin: 0 0 25px 0;
	padding: 10px 0 20px;
}
#fire h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 30px;
}
.webfisc .p1 {
    background-size: 100%;
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
    text-align: center;
    font-size: 30px;
    margin: 0px 0 0px 0;
    font-weight: 600;
    display: block;
    width: 100%;
    line-height: 33px;
}
.webfisc .p2 {
    background-size: 100%;
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
    text-align: center;
    font-size: 17px;
    margin: 0 0 0px 0;
    font-weight: 600;
    display: block;
    width: 100%;
    line-height: 5px;
}
.fisa .p1 {
    background-size: 100%;
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
    text-align: center;
    font-size: 27px;
    margin: 0px 0 0px 0;
    font-weight: 600;
    display: block;
    width: 100%;
    line-height: 30px;
}
.fisa .p2 {
    background-size: 100%;
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
    text-align: center;
    font-size: 17px;
    margin: 0 0 0px 0;
    font-weight: 600;
    display: block;
    width: 100%;
    line-height: 1;
	padding: 0 0 19px 0;
}

.fisa #fire .right h2 {
    margin: 0px;
    font-size: 26px;
    line-height: 1.9;
    padding: 3px 0px;
}
.usa-fisa #fire .left h3 {
    margin: 0 0 10px 0;
    padding-top: 0px;
    font-size: 26px;
}
.portfini .ui-accordion-content img {
    width: 33%;
}
#support a{
	background: #00a8e9;
	display: block;
	width: auto;
	color: #fff;
	padding: 10px 20px;
	font-weight: 600;
	border: 0px solid #00a8e9;
	border-radius: 5px;
	font-size: 18px;
	margin: 0 0 7px 0;
}
#partner h1 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 30px;
    color: #00a8e9;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.usa-fisa #fire .right h2 {
    padding: 5px 0px 12px;
}
#product .service-box {
    float: left;
    width: auto;
    padding: 0px 0px 0px 100px;
    margin: 0px 0px 0px 0px;
    text-align: left;
    color: #363636;
    min-height: 240px;
}
#consulting .right a{
	background: #00a8e9;
	display: block;
	width: auto;
	color: #fff;
	padding: 10px 20px;
	font-weight: 600;
	border: 0px solid #00a8e9;
	border-radius: 5px;
	font-size: 18px;
	margin: 0 0 7px 0;
}
#services .left {
    width: 47%;
    float: left;
    padding: 1%;
    border: 1px solid #fff;
}
#services .left:hover {
    background: #f9f9f9;
    padding: 1%;
    border: 1px solid #ededed;
}
#services .right {
    width: 47%;
    float: right;
    padding: 1%;
    border: 1px solid #fff;
}
#services .right:hover {
    background: #f9f9f9;
    padding: 1%;
    border: 1px solid #ededed;
}
.soft-dev-heading{
	/*line-height: inherit !important;*/
	line-height: 1 !important;
	padding: 10px 0 0 90px !important; font-size: 30px !important; font-weight: 600 !important; color: #000 !important;
}
.portfini-slider{
	width: 85%;
	position: relative;
	padding: 0 7%;
}
.portfini #fire .right h2 {
    margin: 0px;
    font-size: 20px;
    line-height: 1.9;
    padding: 0px 0px 15px !important;
}
.sd .left h3 {
    height: 50px !important;
    padding-top: 20px !important;
    line-height: 1 !important;
}
.webfisc .take-tour {
    padding: 20px;
    float: left;
    background: #00a8e9;
    width: 96%;
    color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    margin: 30px 0 50px 0;
}
.portfini-login {
    width: 46%;
    float: right;
    background: #ed7d31;
    color: #fff;
    padding: 10px 10px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    margin: 0 0 15px;
    text-align: center;
}
#layerslider_widget-6{
	display:none;
}
#layerslider_widget-3{
	display:inherit;
}
#amazon .right {
    width: 54%;
    float: right;
    display: inline-block;
}
#amazon .left {
    width: 42%;
    float: left;
    display: inline-block;
    text-align: justify;
}
#amazon .right .amazon-img img {
   margin: -220px 26px 0 20px;
	float: right;
	width: auto;
}
.bubble-para h4 {
    margin: 0 0 19px 0;
    font-size: 22px;
    line-height: 24px;
}
.bubble-para p {
    font-size: 18px;
}
.bubble-para a {
    background: #ed7d31;
    color: #fff;
    padding: 8px 15px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    margin: 21px 0 0 0;
    display: inline-block;
}
.footer-contact-bubble .bubble-para {
    width: 48%;
    float: right;
    display: inline-block;
    text-align: left;
    margin: 15px 0 0 0;
}
#layerslider_18 .new-layer {
	width:85% !important;
	left:60px !important;
}
#layerslider_18 .bondtrack{
	padding: 11px 15px !important;
	font-size: 18px !important; 
}
.page-id-933 .Amazon-Alexa-slider {
    display: inherit;
		float:left;
	width:100%;

	position: relative;
}
#amazon {
    margin: 1% 0 0 0;
}
}
/* Minimum width of 960 pixels. */
@media screen and (min-width: 960px) {
	
	.main-navigation li {
    margin: 0px 2px 0px 20px;
    font-size: 17px;
}

.top-part .top-right .top-detail {
    padding: 14px 0px 0px 0px;
    text-align: right;
}


.page-id-817 .landing-slider {
    display: inherit;
    z-index: -1;
    position: relative;
    	float:left;
	width:100%;

}
.page-id-841 .landing-slider {
    display: inherit;
    z-index: -1;
    position: relative;
    	float:left;
	width:100%;

}

.page-id-933 #page {
    --margin-top: 50px;
}

}

/* Minimum width of 1140 pixels. */
@media screen and (min-width: 1140px) {
	
body .site {
	padding: 0 0px;
}
.wreper {
	width:1140px;
	margin:0 auto;
}
.top-part {
	background:url(images/top-bg.jpg) repeat-x bottom #FFF;
	float:left;
	width:100%;
	padding:0px 0px 0px 0px;
	margin:0px;
	display:inherit;
	border:none;
}
.top-part .logo {
	float:left;
	width:340px;
	padding:17px 0px 17px 0px;
	margin:0px;
	text-align:left;
	line-height:0;
	display:inherit;
}
.top-part .top-right{
	float:left;
	width:800px;
	padding:0px 0px 0px 0px;
	margin:0px;
	text-align:right;
	display:inherit;
	font-family: 'Source Sans Pro', sans-serif;
}

.top-part .top-right .top-detail{
	float:left;
	width:100%;
	padding:15px 0px 0px 0px;
	margin:0px;
	text-align:right;
	display:inherit;
}

.top-part .top-right .top-detail a.tel{
	padding:0px 0px 0px 35px;
	margin:0px 30px 0px 0px;
	display:inline-block;
	vertical-align:middle;
	text-decoration:none;
	color:#00a8e9;
	font-weight:bold;
	font-size:20px;
	background:url(images/phone-icon.png) no-repeat;
	background-position: left center;
	line-height:1.5;
}

.top-part .top-right .top-detail a{
	padding:0px 0px 0px 0px;
	margin:0px 5px;
	display:inline-block;
	vertical-align:middle;
	text-decoration:none;
}

.top-part .top-right .top-detail a.f,
.top-part .top-right .top-detail a.t,
.top-part .top-right .top-detail a.i,
.top-part .top-right .top-detail a.g {
	width:30px;
	height:30px;
}

.top-part .top-right .top-detail a.f {
	background:url(images/facebook.png) no-repeat 0px 0px;
}

.top-part .top-right .top-detail a:hover.f {
	background:url(images/facebookh.png) no-repeat 0px 0px;
}

.top-part .top-right .top-detail a.t {
	background:url(images/twitter.png) no-repeat 0px 0px;
}

.top-part .top-right .top-detail a:hover.t {
	background:url(images/twitterh.png) no-repeat 0px 0px;
}

.top-part .top-right .top-detail a.i {
	background:url(images/in.png) no-repeat 0px 0px;
}

.top-part .top-right .top-detail a:hover.i {
	background:url(images/inh.png) no-repeat 0px 0px;
}

.top-part .top-right .top-detail a.g {
	background:url(images/google.png) no-repeat 0px 0px;
}

.top-part .top-right .top-detail a:hover.g {
	background:url(images/googleh.png) no-repeat 0px 0px;
}

.top-part .top-right .top-menu{
	float:left;
	width:100%;
	padding:20px 0px 0px 0px;
	margin:0px;
	text-align:right;
	display:inherit;
	
}

.main-navigation li a {
	border-bottom: 0;
	color: #414141;
	line-height: 0;
	text-transform: none;
	white-space: nowrap;
	padding:1px 1px;
	text-transform:uppercase;
}
.main-navigation li a:hover,  .main-navigation li a:focus {
	color: #ed7d31;
}
.main-navigation li {
	margin: 0px 2px 0px 30px;
	padding:0px 0px 0px 0px;
	font-size:17px;
	line-height:1;
	font-weight:600;
	position: relative;
}

.main-navigation li ul {
	padding:20px 0px 0px 0px;
	margin:0px 0px 0px 0px;
}

.main-navigation li ul li {
	padding:0px;
	margin:0px;
}

.main-navigation li ul li a {
		background: #00a8e9;
		border-bottom: 1px solid #0097d1;
		display: block;
		font-size: 17px;
		line-height: 1.4;
		padding: 10px 15px;
		width: 300px;
		white-space: normal;
		color:#FFF;
		text-transform:none;
		text-align:left;
	}
	.main-navigation li ul li a:hover,
	.main-navigation li ul li a:focus {
		background: #ed7d31;
		color: #FFF;
		border-bottom: 1px solid #ed7d31;
	}


.slider-part {
	float:left;
	width:100%;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	--min-height:472px;
	line-height: 1;
}

.header-part {
	float:left;
	width:100%;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	min-height:300px;
	background-size:cover;
}
.clear {
	clear:both;
}


.welcome-part {
	background:url(images/welcome-bg.jpg) no-repeat center center #2c9cce;
	float:left;
	width:100%;
	padding:40px 0px 40px 0px;
	margin:0px;
	--border-top:4px solid #FFF;
}

.welcome-part aside {
	float:left;
	width:100%;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:left;
	line-height:1.4;
	color:#FFF;
}
.welcome-part aside .widget-title {
	padding:0px 0px 10px 0px;
	margin:0px;
	line-height:1.4;
	font-weight:600;
	font-size:30px;
	color:#FFF;
	text-align:left;
	text-transform:none;
	font-family: 'Source Sans Pro', sans-serif;
}

.welcome-part aside strong {
	display:block;
	padding:0px 0px 15px 0px;
	margin:0px;
	font-weight:400;
	font-size:20px;
	text-align:left;
	font-family: 'Source Sans Pro', sans-serif;
}


.who-what-part {
	float:left;
	width:100%;
	padding:70px 0px 70px 0px;
	margin:0px;
}
.who-what-part aside {

	float:left;
	width:337px;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:center;
	line-height:1.4;
}
.who-what-part aside:nth-child(2) {
	padding:0px 31px;
	margin:0px 32px;
	border-left:1px solid #e2e2e2;
	border-right:1px solid #e2e2e2;
}

.who-what-part aside span {
	min-height:150px;
	display:inline-block;
}

.who-what-part aside h3 {
	padding:10px 0px 10px 0px;
	margin:0px;
	line-height:1.4;
	font-weight:600;
	font-size:30px;
	color:#434343;
	text-align:center;
	text-transform:uppercase;
	font-family: 'Source Sans Pro', sans-serif;
}

.who-what-part aside a.read-more {
	background:#43515a;
	display:inline-block;
	font-size:18px;
	color:#FFF;
	padding:8px 20px ;
	margin:0px 0px 0px 0px;
	text-align:center;
	line-height:1.4;

	border-radius:3px;
	font-weight:600;
	text-decoration:none;
	text-transform:uppercase;
	font-family: 'Source Sans Pro', sans-serif;
}

.who-what-part aside:nth-child(1) a:hover.read-more {
	background:#ed7d31;
	color:#FFF;
}

.who-what-part aside:nth-child(2) a:hover.read-more {
	background:#75ab22;
	color:#FFF;
}

.who-what-part aside a:hover.read-more {
	background:#00a8e9;
	color:#FFF;
}

.testimonial-part {
	--background:url(https://ftlabs.com/wp-content/uploads/testimonial-bg-new.jpg) no-repeat top center #e5e5e4;
	background:url(https://ftlabs.com/wp-content/uploads/2016/12/testimonial-bg-new.jpg) no-repeat top center #e5e5e4;
	float:left;
	width:100%;
	padding:55px 0px ;
	margin:0px;
}

.testimonial-part aside {
	float:left;
	width:100%;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:center;
	line-height:1.4;
	color:#131313;
	font-size:20px;
}

.testimonial-part aside .txt-box{
	float:left;
	width:100%;
	padding:0px 0;
	margin:0px 0%;
	text-align:center;
	line-height:1.4;
	color:#131313;
	font-size:20px;
	position:relative;
}

.testimonial-part aside .txt-box:before{
	background:url(images/open-quote.png) no-repeat;
	content:'';
	width:33px;
	height:28px;
	position:absolute;
	left:-45px;
	top:0px;
}

.testimonial-part aside .txt-box:after{
	background:url(images/close-quote.png) no-repeat;
	content:'';
	width:33px;
	height:28px;
	position:absolute;
	right:-45px;
	bottom:0px;
}

.testimonial-part .aut-txt {
	display:block;
    margin: 30px 0;
    text-align: center;
	color:#00a8e9;
	font-size:20px;
	font-weight:600;
	float: left;
    width: 100%;
}


.testimonial-part aside .widget-title {
	padding:0px 0px 20px 0px;
	margin:0px;
	line-height:1.4;
	font-weight:600;
	font-size:30px;
	color:#131313;
	text-align:center;
	text-transform:uppercase;
	font-family: 'Source Sans Pro', sans-serif;
}

.testimonial-part aside a.read-more {
	background:#43515a;
	display:inline-block;
	font-size:18px;
	color:#FFF;
	padding:8px 20px ;
	margin:0px 0px 0px 0px;
	text-align:center;
	line-height:1.4;
	border-radius:3px;
	font-weight:600;
	text-decoration:none;
	text-transform:uppercase;
	font-family: 'Source Sans Pro', sans-serif;
}

.testimonial-part a:hover.read-more {
	background:#00a8e9;
	color:#FFF;
}

.testimonial-part .testimonials-widget-testimonial div.credit {
    margin-top: 30px;
    text-align: center;
	color:#00a8e9;
	font-size:20px;
	font-weight:600;
}

.testimonial-part .open-quote {
    font-size: 90px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    line-height: 0;
    position: relative;
    bottom: -20px;
}

.testimonial-part .close-quote {
    font-size: 90px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    line-height: 0;
    position: relative;
    bottom: -50px;
}
.testimonial-part .testimonials-widget-testimonial blockquote{
	font-style:italic;
}


.home-btm-part {
	float:left;
	width:100%;
	padding:70px 0px ;
	margin:0px;
}

.home-btm-part aside {
	float:right;
	width:100%;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
}

.home-btm-part aside .ls-v5 .ls-bottom-slidebuttons {
	top:10px;
}

.home-btm-part aside .ls-v5 .ls-bottom-slidebuttons a.ls-nav-active, .home-btm-part aside .ls-v5 .ls-bottom-slidebuttons a:hover{
	background-image:url(images/bullet1.png);

}

.home-btm-part aside .ls-v5 .ls-bottom-slidebuttons a{
	background-image:url(images/bullet.png);
	background-repeat:no-repeat;
	width:16px;
	height:16px;
	background-position:inherit;
	margin:0px 4px;

}

/*.home-btm-part aside:first-child {
	float:right;
	width:550px;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:center;
	line-height:0;
}

.home-btm-part aside {
	float:left;
	width:550px;
	padding:20px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:left;
	line-height:1.4;
	color:#131313;
	font-size:18px;
}


.home-btm-part aside h3 {
	background:url(images/icon4.png) no-repeat;
	background-position:left center;
	padding:0px 0px 0px 85px;
	margin:0px 0px 25px 0px;
	line-height:1.2;
	font-weight:600;
	font-size:30px;
	color:#131313;
	text-align:left;
	text-transform:none;
	font-family: 'Source Sans Pro', sans-serif;
}


.home-btm-part aside h3 strong{
	font-size:22px;
}
.home-btm-part aside a.learn-more {
	background:#ed7d31;
	display:inline-block;
	font-size:20px;
	color:#FFF;
	padding:8px 20px ;
	margin:25px 0px 0px 0px;
	text-align:center;
	line-height:1.4;
	border-radius:3px;
	font-weight:600;
	text-decoration:none;
	text-transform:none;
	font-family: 'Source Sans Pro', sans-serif;
}

.home-btm-part aside a:hover.learn-more {
	background:#00a8e9;
	color:#FFF;
}*/

body.home .site {
	display:none;
}

.btm-contact-us-part {
	background: #00a8e9;
	float:left;
	width:100%;
	padding:25px 0px ;
	margin:0px;
}

.btm-contact-us-part aside {
	float:left;
	width:100%;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:center;
	line-height:1.4;
	color:#FFF;
	font-size:30px;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight:600;
}

.btm-contact-us-part aside a{
	color:#FFF;
	text-decoration:underline;
}

.btm-contact-us-part aside a:hover{
	color:#FFF;
	text-decoration:none;
}


.ftr-part {
	background: #151515;
	float:left;
	width:100%;
	padding:35px 0px 25px;
	margin:0px;
	color:#FFF;
}

.ftr-part aside {
	float:left;
	width:50%;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:left;
	line-height:1.4;
	color:#FFF;
	font-size:15px;
	min-height:30px;
}

.ftr-part aside .tel{
	font-size:26px;
}

.ftr-part aside ul{
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
}

.ftr-part aside ul li{
	display:inline-block;
	padding:0px 7px 0px 10px;
	margin:0px 0px 0px 0px;
	border-left:1px solid #FFF;
	text-transform:uppercase;
}

.ftr-part aside ul li:first-child{
	border-left:0px solid #FFF;
	padding: 0px 7px 0px 0px;
}

.ftr-part aside:nth-child(1){
	display:inherit;
}

.ftr-part aside:nth-child(2),
.ftr-part aside:nth-child(3) {
	float:right;
	width:50%;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:right;
	line-height:1;
	color:#FFF;
}

.ftr-part aside:nth-child(4) {
}

.ftr-part aside a{
	color:#FFF;
	text-decoration:none;
}


.ftr-part aside a:hover{
	color:#ed7d31;
	text-decoration:none;
}

.company-box{
	float:left;
	width:980px;
	padding:0px 0px 20px 160px;
	margin:0px 0px 40px 0px;
	text-align:left;
	color:#363636;
	border-bottom: 1px solid #d6d6d6;
}

.company-box h2 {
	padding:0px 0px 0px 0px;
	margin:0px 0px 20px 0px;
	line-height:1;
	font-weight:600;
	font-size:28px;
	color:#ed7d31;
	text-align:left;
	text-transform:none;
	font-family: 'Source Sans Pro', sans-serif;
}

.what h2 {
	color:#75ab22
}

.how h2 {
	color:#00a8e9
}

.who {
	background:url(images/icon1.png) no-repeat top left;
}

.what {
	background:url(images/icon2.png) no-repeat top left;
}

.how {
	background:url(images/icon3.png) no-repeat top left;
	border:none;
}



.company-partner-part {
	background:url(images/partner-bg.jpg) no-repeat top center #ececec;
	float:left;
	width:100%;
	padding:35px 0px ;
	margin:0px;
}

.company-partner-part aside {
	float:left;
	width:100%;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:center;
	line-height:1.4;
	color:#292929;
	font-size:18px;
}
.company-partner-part aside .widget-title {
	padding:0px 0px 15px 0px;
	margin:0px;
	line-height:1.4;
	font-weight:600;
	font-size:28px;

	color:#131313;
	text-align:center;
	text-transform:uppercase;
	font-family: 'Source Sans Pro', sans-serif;
}

.company-partner-part aside a.learn-more {
	display:inline-block;
	font-size:18px;
	color:#292929;
	padding:8px 20px ;
	margin:22px 0px 0px 0px;
	text-align:center;
	line-height:1.4;
	border:2px solid #292929;
	border-radius:3px;
	font-weight:600;
	text-decoration:none;
	text-transform:uppercase;
	font-family: 'Source Sans Pro', sans-serif;
}

.company-partner-part a:hover.learn-more {
	color:#00a8e9;
	border:2px solid #00a8e9;
}


.company-contact-part {
	float:left;
	width:100%;
	padding:40px 0px ;
	margin:0px;
}

.company-contact-part aside:last-child {
	float:right;
	width:200px;
	padding:35px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:right;
	line-height:0;
}

.company-contact-part aside {
	float:left;
	width:940px;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:left;
	line-height:1.4;
	color:#131313;
	font-size:18px;
}


.company-contact-part aside .widget-title {
	padding:0px 0px 10px 0px;
	margin:0px 0px 0px 0px;
	line-height:1.2;
	font-weight:600;
	font-size:28px;
	color:#ed7d31;
	text-align:left;
	text-transform:none;
	font-family: 'Source Sans Pro', sans-serif;
}

.company-contact-part aside a.cont-btn {
	background:#ed7d31;
	display:inline-block;
	font-size:18px;
	color:#FFF;
	padding:8px 20px ;
	margin:0px 0px 0px 0px;
	text-align:center;
	line-height:1.4;
	border-radius:3px;
	font-weight:600;
	text-decoration:none;
	text-transform:uppercase;
	font-family: 'Source Sans Pro', sans-serif;
}

.company-contact-part aside a:hover.cont-btn {
	background:#00a8e9;
	color:#FFF;
}



.management-part{
	float:left;
	width:1140px;
	padding:0px 0px 0px 00px;

	margin:0px 0px 00px 0px;
}

.management-part hr {
	background-color: #d6d6d6;
	border: 0;
	height: 1px;
	margin: 40px 0px;
	width:100%;
	float:left;
}

.management-part .left-img{
	float:left;
	width:330px;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:left;
	line-height:0;
}

.management-part .right-detail{
	float:left;
	width:auto;
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	text-align:left;
	color:#363636;
}



.management-part h2 {
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	line-height:1;
	font-weight:600;
	font-size:28px;
	color:#00a8e9;
	text-align:left;
	text-transform:none;
	font-family: 'Source Sans Pro', sans-serif;
}

.management-part strong{
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	line-height:2;
	font-weight:600;
	font-size:20px;
	color:#393939;
	text-align:left;
	text-transform:none;
	font-family: 'Source Sans Pro', sans-serif;
	display:inherit;
}
#fire{
}
#fire h1{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 30px;
	color: #00a8e9;
	font-weight: 600;
	margin: 30px 0 30px 0;
}
#fire .left{
	width: 48%;
	float: left;
}

#fire .left h3.cdhead{
		color: #75ab22;
}

#fire .left h3{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 28px;
	color: #00a8e9;
	font-weight: 600;
	margin: 0;
	background: url(https://ftlabs.com/wp-content/uploads/2017/06/icon4.png);
	background-repeat: no-repeat;
	height: 70px;
	padding-left: 90px;
	margin: 0 0 0px 0;
	padding-top:20px;
	padding-top: 10px;
	padding-bottom: 25px;
}
#fire .right{
	width: 49%;
	float: right;
}
#fire .right .right-title{
	background: url(https://ftlabs.com/wp-content/uploads/2016/12/enterprise-bg.png);
	background-repeat: no-repeat;
	height: 76px;
}
#fire .right h2{
	background-size: 100%;
	font-family: 'Source Sans Pro', sans-serif;
	color: #fff;
	text-align: center;
	font-size: 28px;
	margin: 0 0 25px 0;
	padding: 5px 5px 0px 0px;
}
.seamless-system-part{
	background: #00a8e9;
	color: #fff;
	text-align: center;
	font-size: 18px;
	padding: 25px 0 40px 0;
	margin: 30px 0 10px;
}
.portfini-system-part{
	background:url(https://ftlabs.com/wp-content/uploads/2017/01/portfini-bg.jpg) #00a8e9;
	background-repeat:no-repeat;
	background-position:center;
	text-align: left;
}
.portfini-system-part #text-22,
.portfini-system-part #text-28{
	margin-left: 0px;
	width: 55%;
}
.portfini-system-part .wreper{
	width:1140px !important;
}
.seamless-system-part h3{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 28px;
	color: #fff;
	text-transform: capitalize;
}
.seamless-system-part .wreper{
	width:70%;
}
.seamless-system-part a{
	display: inline-block;
	font-size: 18px;
	color: #fff;
	padding: 8px 20px;
	margin: 20px 0px 0px 0px;
	text-align: center;
	line-height: 1.4;
	border: 2px solid #fff;
	border-radius: 3px;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	font-family: 'Source Sans Pro', sans-serif;
}
.seamless-system-part a:hover{
	color: #292929;
	border: 2px solid #292929;
}
.footer-contact-part{
	padding: 35px 0 35px 0 !important;
	text-align:left;
}
.footer-contact-part .left{
	width: 70%;
	float: none;
	display: inline-block;
}
.footer-contact-part .left h3{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 28px;
	color: #ed7d31;
}
.footer-contact-part .left p{
	font-size:18px;
	color:#000;
}
.footer-contact-part .right{
	float: right;
	margin: 35px 0px;
	display: inline-block;
}
.footer-contact-part .right a{
    background: #ed7d31;
    color: #fff;
    padding: 10px 20px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
}
.footer-contact-part .right a:hover{
	background: #00a8e9;
}
/*.arconix-faq-wrap {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 0px;
    background: #fff;
    clear: both;
    border: 0px solid #d5d5d5;
    margin: 10px 0;
    padding: 0px;
}*/
/*.arconix-faq-wrap h3{
	font-size: 25px !important;
	margin: 0 0 10px 0 !important;
}*/
.ui-accordion .ui-accordion-content {
    margin-left: 0px;
    padding: 30px;
    border: 2px solid #d5d5d5;
    border-top: 0px;
}
.ui-accordion-header {
    background: url(https://ftlabs.com/wp-content/uploads/plus-sign.png) no-repeat 98% #00a8e9 !important;
    cursor: pointer !important;
    font-size: 25px !important;
    padding: 10px 0 10px 20px !important;
    position: relative !important;
    color: #fff !important;
    font-family: 'Source Sans Pro', sans-serif !important;
    font-weight: 600 !important;
}
.ui-icon {
   /* background-image: url("images/ui-icons_454545_256x240.png");*/
    display: none !important;
}
.ui-accordion-header-active {
    background: url(https://ftlabs.com/wp-content/uploads/minus-sign.png) no-repeat 98% #00a8e9 !important;
}
.symple-accordion h3.symple-accordion-trigger {
    border: 0px solid #ddd !important;
	border-radius:0px;
}
.symple-accordion h3.symple-accordion-trigger a {
    color: #fff !important;
    text-decoration: none !important;
}
.symple-accordion .ui-accordion-content {
    background-color: #fff;
    padding: 15px;
    border: 2px solid #ddd;
    border-top: none !important;
    font-size: 16px;
    font-family: 'Hind', sans-serif;
	line-height: 1.5;
}
#fire .arconix-faq-wrap .left{
	width: 24%;
	float: left;
}
#fire .arconix-faq-wrap .right{
	width: 24%;
	float: left;
}
#fire .left .webfisc-heading {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/websifc-icon.png);
    background-repeat: no-repeat;
}
#fire .left .cdunderwriter-heading {
    background: url(https://ftlabs.com/wp-content/uploads/cdunderwriter-icon.png);
    background-repeat: no-repeat;
}
#fire .left .firm-heading {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/firm-icon.png);
    background-repeat: no-repeat;
}
#fire .left .bh-fix-firm-title {
    background: url(https://ftlabs.com/wp-content/uploads/2017/06/icon4.png);
    background-repeat: no-repeat;
}
#fire .left .fisa-heading {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/fisa-icon.png);
    background-repeat: no-repeat;
}
#amazon .left .bondTrack-heading {
    background: url(http://www.ftlabs.com/wp-content/uploads/2017/07/BT-Revise-0717.png);
    background-repeat: no-repeat;
}
#fire .left .usa-fisa-heading {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/firm-icon.png);
    background-repeat: no-repeat;
}
#fire .left .portfini-heading {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/portfini-icon.png);
    background-repeat: no-repeat;

}
#fire .left .managed-data-heading {
    background: url(https://ftlabs.com/wp-content/uploads/2017/06/icon4.png);
    background-repeat: no-repeat;
}
.webfisc .p1{
    background-size: 100%;
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
    text-align: center;
    font-size: 30px;
    margin: 0px 0 0px 0;
    font-weight: 600;
    display: block;
    width: 100%;
    line-height: 30px;
}
.webfisc .p2{
	background-size: 100%;
	font-family: 'Source Sans Pro', sans-serif;
	color: #fff;
	text-align: center;
	font-size: 17px;
	margin: 0 0 0px 0;
	font-weight: 600;
	display: block;
	width: 100%;
}
.fisa .p1 {
    background-size: 100%;
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
    text-align: center;
    font-size: 30px;
    margin: 0px 0 0px 0;
    font-weight: 600;
    display: block;
    width: 100%;
    line-height: 30px;
}
.fisa .p2{
	background-size: 100%;
	font-family: 'Source Sans Pro', sans-serif;
	color: #fff;
	text-align: center;
	font-size: 17px;
	margin: 0 0 0px 0;
	font-weight: 600;
	display: block;
	width: 100%;
}

.fisa .right {
    width: 48%;
    float: right;
    border: 3px solid #43515a;
    border-radius: 10px;
}
.fisa #fire .right h2 {
	margin:0px;
	font-size: 26px;
	line-height: 1.9;
	padding: 3px 0px;
}
.fisa .right-content{
	padding: 10px 20px 25px;
}
.usa-fisa #fire .left h3 {
    margin: 0 0 25px 0;
    padding-top: 0px;
}
.usa-fisa .take-tour{
	padding: 20px;
	float: left;
	background: #00a8e9;
	width: auto;
	color: #fff;
	font-family: 'Source Sans Pro', sans-serif;
	margin: 30px 0 50px 0;
}
.usa-fisa .take-tour .left{
	width: 80%;
	float: left;
	font-size: 26px;
	font-weight: 400;
	line-height: 1.2;
}
.usa-fisa .take-tour .right{
	width: auto;
	float: right;
	vertical-align: top;
	border: none;
	padding: 16px 0px;
	margin-right: 30px;
}
.usa-fisa .take-tour a{
	background: #ed7d31;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 600;
	padding: 10px 15px;
	border-radius: 3px;
	border: 2px solid #ed7d31;
}
.usa-fisa .take-tour a:hover{
	border: 2px solid #fff;
	color:#fff;
	background: transparent;
}

.webfisc .take-tour{
	padding: 25px 20px;
	float: left;
	background: #00a8e9;
	width: 1100px;
	color: #fff;
	font-family: 'Source Sans Pro', sans-serif;
	margin: 30px 0 50px 0;
}
.webfisc .take-tour .left{
	width: 80% !important;
	float: left !important;
}
.webfisc .take-tour .left h4{
	font-size: 26px;
	font-weight: 400;
	line-height: 1.2;
	margin:0;
}
.webfisc .take-tour .right{
	width: auto !important;
	float: right !important; 
	vertical-align: top;
	border: none;
	padding: 15px 0px;
	margin-right: 30px;
}
.webfisc .take-tour a{
	background: #ed7d31;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 600;
	padding: 10px 15px;
	border-radius: 3px;
	border: 2px solid #ed7d31;
}
.webfisc .take-tour a:hover{
	border: 2px solid #fff;
	color:#fff;
	background: transparent;
}

.portfini #fire .left h3 {
    margin: 0 0 0px 0;
    padding-top: 0px;

}
.portfini #fire .left h3 strong{
	font-size: 20px;

}
.portfini .ui-accordion-content img{
	width: auto;
	margin: 0 15px;
}
#services{
}
#services .left{
	width: 47%;
	float: left;
	padding: 1%;
	border: 1px solid #fff;
}
#services .right{
	width: 47%;
	float: right;
	padding: 1%;
	border: 1px solid #fff;
}
#services .left:hover{
	background: #f9f9f9;
	padding: 1%;
	border: 1px solid #ededed;
}
#services .right:hover{
	background: #f9f9f9;
	padding: 1%;
	border: 1px solid #ededed;
}
#services .service-box {
    float: left;
    width: auto;
    padding: 0px 0px 20px 160px;
    margin: 0px 0px 40px 0px;
    text-align: left;
    color: #363636;
}
#services .consulting {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/service-icon1.png) no-repeat top left;
}
#services .fire {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/service-icon2.png) no-repeat top left;
}
#services .software-dev {
    background: url(https://ftlabs.com/wp-content/uploads/2017/06/service-icon3.png) no-repeat top left;
}
#services .support {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/service-icon4.png) no-repeat top left;
}
#services h2{
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 20px 0px;
	line-height: 1;
	font-weight: 600;
	font-size: 28px;
	color: #ed7d31;
	text-align: left;
	text-transform: none;
	font-family: 'Source Sans Pro', sans-serif;
}
#services .software-dev h2{
	color:#00a8e9;
	font-size:28px;
}
#services a{
	color:#00a8e9;
	font-weight:600;
	font-size: 18px;
}
#services a:hover{
	text-decoration:underline;
}
#services .link::after{

	margin: 0px 0 0 7px;
	vertical-align: middle;
	font-size: 22px;
	background: url(https://ftlabs.com/wp-content/uploads/right-arrow.png);
	background-repeat: no-repeat;
	content: " ";
	width: 7px;
	height: 11px;
	display: inline-block;
}
#services h1{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 30px;
	color: #00a8e9;
	font-weight: 600;
	margin: 30px 0 30px 0;
}

#product{
}
#product .left{
	width:47%;
	float:left;
	padding:1%;
	border:1px solid #fff;
}
#product .right{
	width:47%;
	float:right;
	padding:1%;
	border:1px solid #fff;
}
#product .left:hover{
	background: #f9f9f9;
	padding: 1%;
	border: 1px solid #ededed;
	margin: 0;
}
#product .right:hover{
	background: #f9f9f9;
	padding: 1%;
	border: 1px solid #ededed;
	margin: 0;
}
#product .service-box {
    float: left;
    width: auto;
    padding: 0px 0px 0px 160px;
    margin: 0px 0px 0px 0px;
    text-align: left;
    color: #363636;
	min-height: 190px;
}
#product .webfisc {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/product-icon1.png) no-repeat top left;
}
#product .other-tech-pro {
    background: url(https://ftlabs.com/wp-content/uploads/2021/06/other-product-1.png) no-repeat top left;
}
#product .bond {
    background: url(https://ftlabs.com/wp-content/uploads/2021/06/websifc-icon.png) no-repeat top left;
}
#product .cdunderwriter {
    background: url(https://ftlabs.com/wp-content/uploads/2018/03/cdunderwriter1.png) no-repeat top left;
}
#product .firm {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/product-icon2.png) no-repeat top left;
}
#product .fisa {
    background: url(https://ftlabs.com/wp-content/uploads/2016/12/product-icon3.png) no-repeat top left;
}
#product .fire {
    background: url(https://ftlabs.com/wp-content/uploads/2017/06/product-icon4.png) no-repeat top left;
}
#product .bond-track{
	background:url(https://ftlabs.com/wp-content/uploads/2021/06/bt-new.png) no-repeat top left;
}
#product h2{
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 20px 0px;
	line-height: 1;
	font-weight: 600;
	font-size: 28px;
	color: #ed7d31;
	text-align: left;
	text-transform: none;
	font-family: 'Source Sans Pro', sans-serif;
}
#product .webfisc h2{
	color:#75ab22;
}
#product .cdunderwriter h2{
	color:#75ab22;
}
#product .other-tech-pro h2{color: #75ab22;}
#product .fire h2{
	color:#00A8E9;
}
#product .fisa h2, #product .bond h2{
	color:#1b75bb;
}
#product .firm h2{
	color:#00a8e9;
}
#product .bond-track h2{color:#00a5e4;}
#product a{
	color:#00a8e9;
	font-weight:600;
	font-size: 18px;
}
.product .prod_info{

	color:#434343 !important;
	font-weight:normal !important;
	font-size: inherit !important;
}
#product .link:hover{
	text-decoration:underline;
}
#product .link::after{
	margin: 0px 0 0 7px;
	vertical-align: middle;
	font-size: 22px;
	background: url(https://ftlabs.com/wp-content/uploads/right-arrow.png);
	background-repeat: no-repeat;
	content: " ";
	width: 7px;
	height: 11px;
	display: inline-block;
}
#product h1{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 30px;
	color: #00a8e9;
	font-weight: 600;
	margin: 30px 0 30px 0;
}

#support h1{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 30px;
	color: #00a8e9;
	font-weight: 600;
	margin: 30px 0 30px 0;
}
#support .left{
	width: 48%;
	float: left;
}
#support .right{
	width: 49%;
	float: right;
}
#support .right .right-title{
	background: url(https://ftlabs.com/wp-content/uploads/2016/12/enterprise-bg.png);
	background-repeat: no-repeat;
	height: 76px;	
	margin-bottom: 12px;
}
#support .right .right-title h2{
	background-size: auto;
	height: 52px;
	font-family: 'Source Sans Pro', sans-serif;
	color: #fff;
	text-align: center;
	font-size: 30px;
	margin: 0 0 25px 0;
}

#support a{
	background: #00a8e9;
	display: block;
	width: auto;
	color: #fff;
	padding: 10px 25px;
	font-weight: 600;
	border: 0px solid #00a8e9;
	border-radius: 5px;
	font-size: 24px;
	margin: 0 0 7px 0;
}
#support a:hover{
	background: #ed7d31 !important;
	border: 0px solid #ed7d31;
}
#contact .left{
	width: 60%;
	float: left;
}
#contact h1{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 30px;
	color: #00a8e9;
	font-weight: 600;
	margin: 0 0 15px 0;
}
#contact .right{
	width: 30%;
	float: right;
}
#contact .right a{
	padding:0px 0px 0px 0px;
	margin:0px 5px;
	display:inline-block;
	vertical-align:middle;
	text-decoration:none;
}

#contact .right a.f,
#contact .right a.t,
#contact .right a.i,
#contact .right a.g {
	width:30px;
	height:30px;
}

#contact .right a.f {
	background:url(images/facebook.png) no-repeat 0px 0px;
}

#contact .right a:hover.f {
	background:url(images/facebookh.png) no-repeat 0px 0px;
}

#contact .right a.t {
	background:url(images/twitter.png) no-repeat 0px 0px;
}

#contact .right a:hover.t {
	background:url(images/twitterh.png) no-repeat 0px 0px;
}

#contact .right a.i {
	background:url(images/in.png) no-repeat 0px 0px;
}

#contact .right a:hover.i {
	background:url(images/inh.png) no-repeat 0px 0px;
}

#contact .right a.g {
	background:url(images/google.png) no-repeat 0px 0px;
}

#contact .right a:hover.g {
	background:url(images/googleh.png) no-repeat 0px 0px;
}
#partner h1{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 30px;
	color: #00a8e9;
	font-weight: 600;
	margin: 0 0 15px 0;
}
#partner h2{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 24px;
	color: #424242;
	font-weight: 600;
	margin: 0 0 15px 0;
}
#consulting h1{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 30px;
	color: #00a8e9;
	font-weight: 600;
	margin: 0 0 30px 0;
}
#consulting .left{
	width: 48%;
	float: left;
}
#consulting .right{
	width: 49%;
	float: right;
}
#consulting .right .right-title{
	background: url(https://ftlabs.com/wp-content/uploads/2016/12/enterprise-bg.png);
	background-repeat: no-repeat;
	height: 76px;	
	margin-bottom: 12px;
}
#consulting .right .right-title h3{
	background-size: auto;
	height: 52px;
	font-family: 'Source Sans Pro', sans-serif;
	color: #fff;
	text-align: center;
	font-size: 30px;
	margin: 0 0 25px 0;
}

#consulting .right a{
	background: #00a8e9;
	display: block;
	width: auto;
	color: #fff;
	padding: 10px 25px;
	font-weight: 600;
	border: 0px solid #00a8e9;
	border-radius: 5px;
	font-size: 24px;
	margin: 0 0 7px 0;
}
#consulting .right a:hover{
	background: #ed7d31 !important;
	border: 0px solid #ed7d31;
}
.entry-content blockquote, .comment-content blockquote {
    font-style: normal !important;
	font-size: 17px;
	margin: 0 0 10px;
}
.open-quote{
	display:none !important;
}
.close-quote{
	display:none !important;
}
.testimonials-widget-testimonial blockquote p::before {
	margin: 0px 0 0 0px;
	font-size: 22px;
	background: url(https://ftlabs.com/wp-content/uploads/open-quote.png);
	background-repeat: no-repeat;
	content: " ";
	width: 52px;
	height: 37px;
	display: inline-block;
	padding: 0 0px 70px 0;
	float: left;
}
.testimonials-widget-testimonial blockquote p::after {
	margin: 0px 0 0 0px;
	font-size: 22px;
	background: url(https://ftlabs.com/wp-content/uploads/close-quote.png);
	background-repeat: no-repeat;
	content: " ";
	width: 52px;
	height: 37px;
	display: inline-block;
	padding: 0 25px 70px 0;
	float: right;
}
.testimonials-widget-testimonial {
    border-top: 1px solid #e0e0e0;
    padding: 20px 0px 40px 0;
    margin: 0px !important;
}
.testimonials-widget-testimonials .post-384{
    border-top: 0px solid #e0e0e0;
    padding: 0px 0px 40px 0;
    margin: 0px !important;
}
.testimonials-widget-testimonial div.credit {
    display: block;
    margin-top: 0px !important;
    text-align: left;
    color: #00a8e9;
    font-size: 16px;
    font-weight: 600;
	padding: 0 0 0 100px;
}
#testimonials h1{
	color: #00a8e9;
	font-size:30px;
	font-family: 'Source Sans Pro', sans-serif;
	margin:0px !important;
}
#product .link {
    color: #00a8e9;
    font-weight: 600;
    font-size: 18px;
}
#company h1{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 30px;
	color: #00a8e9;
	font-weight: 600;
	margin: 30px 0 30px 0;
}

#company a .who{
	border:1px solid #fff;
	padding: 15px 0 0 170px;
	background-position: 1% 20%;
}
#company a .what{
	border:1px solid #fff;
	padding: 15px 0 0 170px;
	background-position: 1% 20%;
}
#company a .how{
	border:1px solid #fff;
	padding: 15px 0 0 170px;
	background-position: 1% 20%;
}
#company a:hover .who{
	border:1px solid #e1e1e1;
	padding: 15px 0 0 170px;
	background: url(images/icon1.png) no-repeat top left #f5f5f5;
	background-position: 1% 20%;
}
#company a:hover .what{
	border:1px solid #e1e1e1;

	padding: 15px 0 0 170px;
	background: url(images/icon2.png) no-repeat top left #f5f5f5;
	background-position: 1% 20%;
}
#company a:hover .how{
	border:1px solid #e1e1e1;
	padding: 15px 0 0 170px;
	background: url(images/icon3.png) no-repeat top left #f5f5f5;
	background-position: 1% 20%;

}
#consulting .left h2, #support .left h3{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 32px;
	padding-top: 0px;
	height: 70px;
}
.breadcrumbs{
	width: 100%;
	text-align: right;
	margin: 30px 0px 20px 0;
	float: left;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 17px;
}
#blog ul li {
    list-style: none;
    float: left;
    width: 100%;
    padding: 0px 0px 20px 0px;
    margin: 0px 0px 20px 0px;
    text-align: justify;
    line-height: 1.4;
    border-bottom: 2px solid #e3e3e3;
}
#blog ul li .lcp_dat {
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    text-align: left;
    line-height: 1.4;
    font-size: 16px;
    color: #404041;
    font-weight: 500;
    text-transform: none;
    clear: none;
}
#blog ul li .lcp_img{
    width: 40%;
    float: left;
    margin: 0 30px 0 0;
}
#blog ul li h4 {
    padding: 5px 0px 15px 0px;
    margin: 0px 0px 0px 0px;
    text-align: left;
    line-height: 1.2;
    font-size: 18px;
    color: #404041;
    font-weight: 700;
    text-transform: none;
    clear: none;
}
#blog ul li a {
    color: #404041;
    text-decoration: none;
}
#blog ul li .lcp_excerpt {
    display: block;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    text-align: justify;
    line-height: 1.4;
}
#blog ul li a.more {
    display: inline-block;
    font-size: 16px;
    color: #00a8e9;
    padding: 5px 20px;
    margin: 15px 0px 0px 0px;
    text-align: center;
    vertical-align: middle;
    line-height: 1.4;
    border: 2px solid #00a8e9;
    border-radius: 0px;
    font-weight: 600;
    text-decoration: none;
    text-transform: none;
}
#blog ul li a.more:hover {
    background: #1e2432;
    color: #FFF;
    border: 2px solid #1e2432;
}
#recent-posts-2, #categories-2, #synved_social_follow-2{
    padding: 0px;
    margin-bottom: 25px;
	font-family: 'Source Sans Pro', sans-serif;
	background: #e9e9e9;
}
#recent-posts-2 h3, #categories-2 h3, #synved_social_follow-2 h3{
    padding: 10px 0px 10px 10px;
    margin: 0px 0px 0px 0px;
    text-align: left;
    line-height: 1.4;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Source Sans Pro', sans-serif;
    background: #0888c0;
    color: #fff;
}
#recent-posts-2 ul, #categories-2 ul{
    padding: 15px 25px;
    list-style-image: url(https://ftlabs.com/wp-content/uploads/left-arrow.png);
}
#recent-posts-2 ul li, #categories-2 ul li {
    font-size: 16px;
	font-weight: 400;
}
#recent-posts-2 ul li a, #categories-2 ul li a{
    color: #000;
}
.portfini-slider{
	width: 85%;
	position: relative;
	padding: 0 7%;
}
/*.n2-ss-slide-background-image{
	background-position:50% 0% !important;
}
#n2-ss-3{
	height:550px !important;
}*/
.n2-style-eebba5d1bd13599f2cfb36c1c675b009-simple{
	background:#eaeaeaff !important;
}
.portfini-login{
	width: 45%;
	float: right;
	background: #ed7d31;
	color: #fff;
	padding: 10px 20px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 21px;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 4px;
	margin: 0 0 15px;
	text-align: center;
}
.portfini-login:hover{
	background: #00a8e9;
	color:#fff;
}
.page-id-817 .footer-contact-part1 {
    padding: 35px 0 35px 0 !important;
    text-align: left;
}
.footer-contact-part1 {
    padding: 0px !important;
    text-align: left;
}
.footer-contact-part1 .left {
    width: 70%;
    float: none;
    display: inline-block;
}
.footer-contact-part1 .right {
    float: right;
    margin: 35px 0px;
    display: inline-block;
}
.footer-contact-part1 .left h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 28px;
    color: #ed7d31;
}
.footer-contact-part1 .left p {
    font-size: 18px;
    color: #000;
}
.footer-contact-part1 .right a {
    background: #ed7d31;
    color: #fff;
    padding: 10px 20px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
}
.footer-contact-part1 .right a:hover {
    background: #00a8e9;
}
#landing-page .left{
	width: 48%;		
	--height: 550px;
	height: 100%;
	float: left;
	display: inline-block;
}
#landing-page .right{
	width: 48%;		
	--height: 470px;
	height: 100%;
	margin-bottom: 30px;
	float: right;
	display: inline-block;
	--background-color: #DDD;
	padding: 15px 0px;
}
#landing-page .full{	width: 100%;	float: left;	display: inline-block;}#landing-page #vfbp-form-2{
	background: #eeeeee;
	border: 1px solid #c6c6c6;
	padding: 24px 12px;
}
#landing-page .left .case-study{
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 1;
	font-weight: 600;
	font-size: 25px;
	color: #ed7d31;
	text-align: left;
	text-transform: none;
	font-family: 'Source Sans Pro', sans-serif;
}
.post-817 {
	border-bottom: 3px dotted #d8d8d8 !important;
	margin-bottom: 0px !important;
	padding-bottom: 31px !important;
}
.landing-slider{
	display:none;
}
.page-id-817 .landing-slider{
	display:inherit;
	z-index: -1;
	position: relative;
		float:left;
	width:100%;

}
.page-id-817 .header-part {
	display:none;
}
#landing-page .landing-title{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 30px;
	color: #00a8e9;
	font-weight: 600;
	margin: 0 0 35px 0;
	text-align: center;
}
.left .landing-button{
	margin:15px 0 0 0;
}
.left .landing-button a{
	background: #ed7d31;
	color: #fff;
	padding: 10px 20px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 20px;
	font-weight: 600;
	border-radius: 4px;
}
.left .landing-button a:hover{
	background:#00a8e9;

}
#post-841{
	margin-bottom: 0px;
	padding-bottom: 0px;
}
#layerslider_widget-8{
	display:none;
}
.down-button{
	background: #ed7d31;
	color: #fff;
	padding: 6px 20px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 4px;
	margin: 7px 0 0 0;
	display: inline-block;
}
.down-button:hover{
	background: #00a8e9;
	color:#fff;
}
.right .form-conform.conform-button{
	background: #ed7d31;
	color: #fff;
	padding: 6px 20px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 4px;
	margin: 7px 0 0 0;
	display: inline-block;
	text-align: center;
}
.page-id-841 .landing-slider{
	display: inherit;
	z-index: -1;
	position: relative;
		float:left;
	width:100%;

}
.page-id-841 .header-part {
	display:none;
}
.download-portfini .downloadnew-button {
    background: #ed7d31;
	color: #fff;
    padding: 6px 20px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    margin: 0px 0 25px 0;
    display: inline-block;
}
.download-portfini .downloadnew-button:hover {
    background: #00a8e9;
}
#amazon .left{
	width: 49%;
    float: left;
    display: inline-block;
	text-align:left
}
#amazon .right{
	width: 47%;
    float: right;
    display: inline-block;
}
#amazon h2{
	font-family: 'Source Sans Pro', sans-serif;
    font-size: 28px;
    color: #00a8e9;
    font-weight: 600;
    margin: 0 0 22px 0;
}

#amazon .right .amazon-img img {
    float: right;
    margin: 86px 50px 0 -19px;
	width:auto;
}
#amazon .learn-more-fisa12 {
    display: inline-block;
	font-size: 18px;
	color: #00a8e9 !important;
	padding: 8px 60px;
	margin: 0px 0px 15px 0px;
	text-align: center;
	line-height: 1.4;
	border: 2px solid #00a8e9;
	border-radius: 3px;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	font-family: 'Source Sans Pro', sans-serif;
}
#amazon .learn-more-fisa12:hover {
    color: #fff !important;
    border: 2px solid #ed7d31;
    background: #ed7d31;
}
#amazon .learn-more-fisa34 {
	display: inline-block;
	font-size: 18px;
	color: #00a8e9 !important;
	padding: 8px 20px;
	margin: 0px 0 0 0px;
	text-align: center;
	line-height: 1.4;
	border: 2px solid #00a8e9;
	border-radius: 3px;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	font-family: 'Source Sans Pro', sans-serif;
}
#amazon .learn-more-fisa34:hover {
    color: #fff !important;
    border: 2px solid #ed7d31;
    background: #ed7d31;
}
#amazon .symple-accordion p {
	text-align:center;
	margin: 0px 0 12px 0;
}
#amazon .symple-accordion .ui-accordion-content {
    padding: 25px;
}
.footer-contact-partnewpart{
	background: #efefef;
	text-align: center;
	margin: 0px 0 -8px;
	display: inline-block;
	width: 100%;
}
.footer-contact-partnewpart .left{
	width: 49%;
	float: left;
	display: inline-block;
	text-align: center;
	border-right: 1px solid #d8d8d8;
}
.footer-contact-partnewpart .right h3{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 25px;
	color: #434343;
	min-height: 64px;
	line-height: 34px;
}
.footer-contact-partnewpart .left h3{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 25px;
	color: #434343;;
	min-height: 64px;
	line-height: 34px;
}

.footer-contact-partnewpart .left h3 p{
	font-size: 18px;
	color: #000;
}
.footer-contact-partnewpart .right {
    float: right;
	margin: 0px 0px;
	display: inline-block;
	width: 50%;
	text-align: center;
	line-height: 27px;
}
.footer-contact-partnewpart .right a {
    background: #ed7d31;
    color: #fff;
    padding: 10px 20px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
}
.footer-contact-partnewpart .right a:hover {
    background: #00a8e9;
}
.footer-contact-partnewpart .left a {
    background: #ed7d31;
    color: #fff;
    padding: 10px 20px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
}
.footer-contact-partnewpart .left a:hover {
    background: #00a8e9;
}

.page-id-62 .footer-contact-partnewpart {
    display: none;
}
.footer-contact-amazon hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin: 0px;
    margin-bottom: 0px;
}
#amazon .bubble-mobile{
	display:none;
}
#amazon .bubble{
	display:inline-block;
}
#amazon .left .para{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 27px;
	color: #00a8e9;
	font-weight: 600;
	margin: 0 0 22px 0;
	line-height: 22px;
}
.page-id-933 .Amazon-Alexa-slider {
    display: inherit;
    position: relative;
   	float:left;
	width:100%;
}
.page-id-933 .header-part {
    display: none;
}
.Amazon-Alexa-slider{
	display:none;
}
.page-id-933 .footer-contact-bubble1{
	/*text-align: center;
	font-size: 18px;
	padding: 25px 0 40px 0;*/
	margin: 40px 0 40px 0;
	display:inherit;
}
.page-id-933 .footer-contact-bubble{
	background: #00a8e9;
	color: #fff;
	text-align: center;
	font-size: 18px;
	padding: 25px 0 25px 0;
	margin: 0px 0 10px;
	display:inherit;
}
.footer-contact-bubble aside{
	width: 100%;
    display: inline-block;
}
.footer-contact-bubble aside .bubble-img{
	width: 44%;
	float: left;
	display: inline-block;
	text-align: left;
	padding: 31px 0 0 0;
}
.footer-contact-bubble aside .bubble-para{
	float: right;
	width: 55%;
	text-align: left;
	line-height: 28px;
	margin: 43px 0 0 0;
	display: inline-block;
}
.footer-contact-bubble aside .bubble-para h4{
	font-size: 27px;
	margin: 0 0 20px 0;
	line-height: 30px;
}
.bubble-para p {
	font-size:18px;
}
.page-id-933 .breadcrumbs{
	display:none;
}
.footer-contact-bubble1{
	display:none;
}
.footer-contact-bubble{
	display:none;
}
#amazon {
    margin: 1% 0 0 0;
}
.page-id-933 #page{
	--margin-top: 50px;
}
.bubble-para a{
	background: #ed7d31;
	color: #fff;
	padding: 10px 20px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 4px;
	margin: 24px 0 0 0;
	display: inline-block;
}
.bubble-para a:hover{
	background: #fff;
	color: #ed7d31;

}
.page-id-933 .site-content article {
	margin-bottom:0px;
}
.footer-contact-bubble1 .question{
	font-family: 'Source Sans Pro', sans-serif;

	font-size: 32px;
	color: #00a8e9;
	font-weight: 600;
	margin: 0 0 30px 0;
	text-align: center;
}
.page-id-933 .Amazon-Alexa-slider-mobile{
	display:none;
}
.Amazon-Alexa-slider-mobile{
	display:none;
}
.Amazon-Alexa-slider{
	display:none;
}
.footer-contact-partnewpart{
	display:none;
}
.page-id-933 .footer-contact-partnewpart{
	display:none;
}
#layerslider_18 .new-layer {
	width:69% !important;
	left: 15% !important;
}
#layerslider_18 .para-layer{
	background: rgba(13, 13, 13, 0.75);
	padding: 15px 11px !important;
    display: inline-block;
	width: auto !important;
}
#layerslider_18 .bondtrack{
	left:412px !important;
	font-size:18px !important;
	padding:10px 20px !important;
}
.ui-accordion-header-active {
    background: url(https://ftlabs.com/wp-content/uploads/minus-sign.png) no-repeat 98% #aaa !important;
}
.Download-alexa{    
	background: #ed7d31;
	color: #fff !important;
	padding: 10px 20px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 4px;
	margin: 20px 0px 0px 0px;
	border:0px !important;
	display: inline-block;
}
.Download-alexa:hover{  
	background: #00a8e9;
}
.new-para{
	text-align:center;
}
/*.alexa-question {
	list-style: decimal;
	padding: 0 0 0 20px !important;
	font-size: 27px;
	vertical-align: middle;
}*/
.alexa-number p{
	font-size: 16px;
	padding: 0 0 0 10px !important;

}
.alexa-number::before{
		list-style: decimal;
		content:'';

}
.alexa-question{
	counter-reset: alexa-question;
}

.alexa-number {
    margin: 0px 0 15px 54px;
    list-style-type: none;
}
.alexa-number:last-child {
    margin: 0px 0 0px 54px;
    list-style-type: none;
}

.alexa-number::before {
    border: 1px solid #7c7c7c;
    padding: 4px 13px 1px 13px;
    margin: 0 0 0 -52px;
    border-radius: 54%;
    display: inline-block;
    counter-increment: alexa-question;
    content: "" counter(alexa-question) " ";
    font-size: 22px;
    background: #eee;
    text-align: center;
	position:absolute;
	width:10px;
}
}
@media screen and (min-width: 1250px){
.page-id-933 .Amazon-Alexa-slider {
    display: inherit;
    position: relative;
	float:left;
	width:100%;
}
#amazon {
    margin: 1% 0 0 0;
}
.page-id-933 .entry-header .entry-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 34px !important;
    font-weight: 700;
    --margin-top: 50px;
}

.site-content {
		float: left;
		width: 68%;
	}
	.widget-area {
		float: right;
		width: 26%;
	}
	
	
}

body.home .slider-part img{width:100%!important;}
.header-parts img {width: 100%;}
@media(max-width:1170px){
	#support .left .custom_support_heading {
		height: auto;
		padding-bottom: 40px;
	}
}
@media(max-width:767px){
	body.home .grid-plus-container .grid-post-item.thumbnail-title .thumbnail-image {
		background-size: contain;
		background-repeat: no-repeat;
	}
	p.ftlabs_pro_img {text-align: center;}
	.testimonial-part aside .txt-box{width: 100%;}
	#to_top_scrollup {bottom: 220px;}
	#product .left, #product .right{margin-bottom:0px!important;}
	body.page-id-2676 h3.entry-title, body.page-id-15 h3.entry-title, #product{text-align: center;}
	body.page-id-2676 article{margin-bottom:0px!important;}
	#product .service-box{
		padding-bottom:0px!important;
		text-align: center;
	}
	body.page-id-2676 .footer-contact-part1{padding-top: 0px!important;}
	.footer-contact-part1 {display: none;}
	body.page-id-817 .footer-contact-part1 {display: block;}
	.fisa #fire .right{width:100%!important;}
	.pro_broc_btn {margin-bottom: 30px;}
	body.page-id-119 h3.entry-title, .ftlabs_team_intro, .ftlabs_team_wrap_sec .team-member {text-align: center;}
}
@media(max-width:480px){
	.header-part {
		min-height: 150px;
		background-size: 100% 150px;
    	background-position: top left !important;
	}
	.cd_under_right_title h2{font-size:15px!important;}
	.bond_pub_firm .firm_heading_new {margin-bottom: 35px !important;}
	.header-parts img {
		width: 100%;
		height: 150px;
		object-fit: cover !important;
	}
}
@media(max-width:320px){
	.fisa_border_title{font-size:19px!important;}
}