/* Reset */

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
dialog,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
font,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
hr,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
meter,
nav,
object,
ol,
output,
p,
pre,
progress,
q,
rp,
rt,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video,
xmp {
	border: 0;
	margin: 0;
	padding: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
div {
	display: block;
}
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body *:first-child {
	margin-top: 0;
}
body *:last-child {
	margin-bottom: 0;
}
html,
body {
	height: 100%;
	padding: 0;
	margin: 0;
}
body {
	min-width: 320px;
	color: #21334A;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	background: #FFF;
	position: relative;
}
body.no-overflow {
	overflow: hidden;
}
a {
	color: #0364A9;
	border: none;
	text-decoration: underline;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
a:hover,
a:focus,
a:active {
	color: #0095FF;
	outline: none;
}
a:focus {
    outline-style: dashed;
    outline-color: rgb(0,0,0,0.5);
    outline-width: 1px;
    outline-offset: 2px;
}

img {
	border: none;
	max-width: 100%;
}
h1,
h2,
h3,
h4,
h5 {
	margin: 40px 0 20px 0;
	padding: 0;
	color: #091D36;
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	line-height: 1.2em;
	position: relative;
}
h1 {
	font-size: 30px;
	line-height: 36px;
}
h2 {
	font-size: 24px;
	line-height: 30px;
}
h3 {
	font-size: 18px;
	line-height: 24px;
}
h4,
h5 {
	margin-top: 30px;
	font-size: 15px;
	line-height: 20px;
}
p,
ul,
ol {
	margin-top: 20px;
	margin-bottom: 20px;
}
ul,
ol {
	margin-left: 40px;
}
ul li,
ol li,
ul ul,
ol ol,
ul p,
ol p {
	margin-top: 10px;
	margin-bottom: 10px;
}
ul li {
	list-style-type: disc;
}
ol li {
	list-style-type: decimal;
}
ol ol li {
	list-style-type: lower-latin;
}
ul.styled {
	margin-left: 0;
}
ul.styled li {
	padding-left: 24px;
	list-style-type: none;
	background: url(../img/checkmark.svg) 0 3px no-repeat;
	background-size: 16px auto;
}
ol.styled {
	counter-reset: my-counter;
}
ol.styled li {
	padding-left: 35px;
	counter-increment: my-counter;
	list-style-type: none;
	position: relative;
}
ol.styled li:before {
    display: block;
	content: counter(my-counter) " ";
	width: 20px;
	height: 20px;
	color: #FFF;
	font-size: 12px;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
	background: #0077CC;
	position: absolute;
	top: 2px;
	left: 0;
	border-radius: 50%;
}
b,
strong {
	font-weight: 700;
}
i {
	color: #0364A9;
	font-style: normal;
}
blockquote {
	margin: 30px 0;
	padding: 5px 0 5px 30px;
	color: #888;
	font-style: italic;
	letter-spacing: 0.025em;
	border-left: 2px solid #E5E5E5;
}
blockquote.text {
	color: #475668;
	font-style: normal;
	letter-spacing: 0.01em;
	border-color: #359CF3;
}

.wrapper {
	max-width: 1340px;
	margin: 0 auto;
	padding-right: 30px;
	padding-left: 30px;
}

.color-black {
	color: #091D36;
}
.color-special {
	color: #07C;
}
.color-special a {
	text-decoration: none;
}
.color-alert,
.color-alert a {
	color: #EF092F;
}
.color-success {
	color: #168500;
}
.color-gold {
	color: #168500;
}
.color-yellow {
	color: #FF7600;
}

.not-bold {
	font-weight: 400;
}

.center {
	text-align: center;
}

.nowrap {
	white-space: nowrap;
}

.section {
	margin-top: 60px;
	margin-bottom: 60px;
}
.section-m {
	margin-top: 50px;
	margin-bottom: 50px;
}
.section-s {
	margin-top: 40px;
	margin-bottom: 40px;
}
.section-xs {
	margin-top: 30px;
	margin-bottom: 30px;
}
.section-xxs {
	margin-top: 20px;
	margin-bottom: 20px;
}

.block {
	margin: 30px 0;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}



/* Clearfix */

.cf:after {
	height: 0;
	line-height: 0;
	display: block;
	visibility: hidden;
	clear: both;
	content: "";
}
.cf {
	display: block;
}
html[xmlns] .cf {
	display: block;
}
* html .cf {
	height: 1%;
}



/* Icons */

.icn-m {
	display: block;
	width: 32px;
	height: 32px;
	background: url(../img/icns_32_main.svg) 0 0 no-repeat;
	background-size: 100% auto;
}

.icn-user {
	background-position: 0 0;
}
.icn-users {
	background-position: 0 -40px;
}
.icn-users2 {
	background-position: 0 -80px;
}
.icn-home {
	background-position: 0 -120px;
}
.icn-pin {
	background-position: 0 -160px;
}
.icn-calendar {
	background-position: 0 -200px;
}
.icn-phone {
	background-position: 0 -240px;
}
.icn-mobile {
	background-position: 0 -280px;
}
.icn-email {
	background-position: 0 -320px;
}
.icn-headphones {
	background-position: 0 -360px;
}
.icn-document {
	background-position: 0 -400px;
}
.icn-dollar {
	background-position: 0 -440px;
}
.icn-dollar-gavel {
	background-position: 0 -480px;
}
.icn-lock-opened {
	background-position: 0 -520px;
}
.icn-shield {
	background-position: 0 -560px;
}
.icn-seal {
	background-position: 0 -600px;
}
.icn-bubbles {
	background-position: 0 -640px;
}
.icn-globe {
	background-position: 0 -680px;
}
.icn-server {
	background-position: 0 -720px;
}
.icn-suitcase {
	background-position: 0 -760px;
}
.icn-cards {
	background-position: 0 -800px;
}
.icn-magnifier {
	background-position: 0 -840px;
}
.icn-gavel {
	background-position: 0 -880px;
}
.icn-scales {
	background-position: 0 -920px;
}
.icn-handcuffs {
	background-position: 0 -960px;
}
.icn-fingerprint {
	background-position: 0 -1000px;
}
.icn-court {
	background-position: 0 -1040px;
}
.icn-rings {
	background-position: 0 -1080px;
}
.icn-folder-gavel {
	background-position: 0 -1120px;
}
.icn-ssn {
	background-position: 0 -1160px;
}
.icn-bars {
	background-position: 0 -1200px;
}
.icn-score {
	background-position: 0 -1240px;
}
.icn-score2 {
	background-position: 0 -1280px;
}



/* Form */

form {
	border: none;
	margin: 0;
	padding: 0;
}
.form .row {
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: center;
	margin: 0 -5px;
}
.form .col {
	flex: 0 1 100%;
	padding: 10px 5px;
	position: relative;
}
.form-start {
	display: block;
	padding: 5px 15px;
	color: #FFF;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	white-space: nowrap;
	background: #168500;
	position: absolute;
	top: 100px;
	left: 5px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
}
.form-start:before {
	display: block;
	content: "";
	width: 8px;
	height: 8px;
	background: #168500;
	position: absolute;
	top: -4px;
	left: 20px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.form-label {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 6px;
	color: #091D36;
	font-size: 18px;
	font-weight: 600;
	line-height: 20px;
}
.form-label .req {
	color: #EF092F;
}
.form-error {
	margin-top: 3px;
	color: #EF092F;
	font-size: 12px;
	line-height: 12px;
}
.form-note {
	margin-top: 4px;
	color: #CCC;
	font-size: 16px;
	line-height: 18px;
	text-align: left;
}
.form-control,
.form-btn {
	width: 100%;
	margin: 0;
	font-family: 'Open Sans', sans-serif;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.form-control {
	height: 50px;
	padding: 0 16px;
	color: #091D36;
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	background-color: #FFF;
	border: 1px solid #999;
}
.form-control.required {
	-webkit-box-shadow: 0 0 5px 3px rgb(255,240,0,0.9);
	-moz-box-shadow: 0 0 5px 3px rgb(255,240,0,0.9);
	box-shadow: 0 0 5px 3px rgb(255,240,0,0.9);
}
.form-control:hover,
.form-control:focus,
.form-control:active {
	background-color: #FFF;
	border-color: #0364A9;
	outline: none;
}
.form-control:focus {
	background-color: #EBF7FF;
}
.form-control.error {
	background-color: #FCC;
}
.form-control[disabled] {
	background-color: #EEE;
	cursor: not-allowed;
	opacity: 1;
}
select.form-control {
	padding: 0 30px 0 16px;
	background-image: url(../img/select.svg);
	background-position: calc(100% - 14px) center;
	background-repeat: no-repeat;
	background-size: 8px 16px;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
}
:i-block-chrome,select.form-control {
	text-indent: 12px;
}
select.form-control::-ms-expand {
	display: none;
}
textarea.form-control {
	display: block;
	height: 160px;
	padding: 14px 16px;
	text-transform: none;
	overflow: auto;
	resize: vertical;
	vertical-align: top;
}
::-webkit-input-placeholder {
	color: rgba(0,0,0,1);
}
:-ms-input-placeholder {
	color: rgba(0,0,0,1);
}
::-moz-placeholder {
	color: rgba(0,0,0,1);
	opacity: 1;
}
:-moz-placeholder {
	color: rgba(0,0,0,1);
	opacity: 1;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	transition: background-color 600000s 0s, color 600000s 0s;
}
.form-btn {
	height: auto;
	padding: 15px 30px;
	color: #FFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 20px;
	background-color: #EF092F;
	border: none;
	vertical-align: top;
	cursor: pointer;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
}
.form-btn:hover,
.form-btn:focus,
.form-btn:active {
	background-color: #FF002A;
}
.form-btn.arw:after {
	display: inline-block;
	content: "";
	width: 13px;
	height: 13px;
	margin: 0 0 0 12px;
	background: url(../img/btn_arw.svg) 0 0 no-repeat;
	background-size: 100% auto;
}
.form-prefilled {
	padding: 13px 16px;
	color: #091D36;
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	background-color: #EEE;
	border-radius: 2px;
}
.form-prefilled .txt {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.form .disclaimer {
	margin-top: 5px;
	color: #FFF;
	font-size: 13px;
	line-height: 16px;
	text-align: center;
}
.form .disclaimer a {
	display: inline-block;
	color: #FFF;
	text-decoration: underline;
	vertical-align: top;
}
.form .disclaimer a:hover {
	opacity: 0.7;
}

.form-input {
	position: relative;
}
a.input-show-hide,
a.input-show-hide2 {
	display: block;
	width: 24px;
	height: 24px;
	background: url(../img/input_show_hide.svg) 0 0 no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: calc(50% - 12px);
	right: 13px;
	z-index: 99;
	cursor: pointer;
	-webkit-transition: all 0s ease;
	-moz-transition: all 0s ease;
	-o-transition: all 0s ease;
	transition: all 0s ease;
}
a.input-show-hide.hide,
a.input-show-hide2.hide {
	background-position: 0 -30px;
}



/* Form Checkbox and Radiobutton */

.form-check-radio {
	display: block;
	padding-left: 24px;
	cursor: pointer;
	position: relative;
}
.form-check-radio input {
	width: 16px;
	height: 16px;
	opacity: 0;
	cursor: pointer;
	position: absolute;
	top: 2px;
	left: 0;
	z-index: 9999;
}
.form-check-radio .checkbox,
.form-check-radio .radiobutton {
	display: block;
	height: 16px;
	width: 16px;
	position: absolute;
	top: 2px;
	left: 0;
	background-color: #FFF;
	border: 1px solid #999;
}
.form-check-radio .checkbox {
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.form-check-radio .radiobutton {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.form-check-radio .checkbox:after,
.form-check-radio .radiobutton:after {
	content: "";
	position: absolute;
	display: none;
	left: 50%;
	top: 50%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.form-check-radio .checkbox:after {
	width: 10px;
	height: 10px;
	margin: -5px 0 0 -5px;
	background-image: url(../img/checkbox.svg);
}
.form-check-radio .radiobutton:after {
	width: 6px;
	height: 6px;
	margin: -3px 0 0 -3px;
	background-image: url(../img/radiobutton.svg);
}
.form-check-radio input:checked ~ .checkbox:after,
.form-check-radio input:checked ~ .radiobutton:after {
	display: block;
}



/* Buttons */

a.btn {
	display: inline-block;
	padding: 11px 30px;
	color: #FFF;
	font-size: 16px;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
	text-decoration: none;
	background-color: #EF092F;
	vertical-align: top;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
}
a.btn:hover,
a.btn:focus,
a.btn:active {
	background-color: #FF002A;
}
a.btn.small {
	padding: 7px 25px;
	font-size: 14px;
	line-height: 16px;
}
a.btn.med {
	padding: 17px 50px;
	font-size: 24px;
	line-height: 26px;
}
a.btn.big {
	padding: 19px 50px;
	font-size: 30px;
	line-height: 32px;
}
a.btn.special,
.form-btn.special {
	background-color: #168500;
}
a.btn.special:hover,
a.btn.special:focus,
a.btn.special:active,
.form-btn.special:hover,
.form-btn.special:focus,
.form-btn.special:active {
	background-color: #00C12D;
}
a.btn.blue,
.form-btn.blue {
	color: #FFF;
	background-color: #0077CC;
}
a.btn.blue:hover,
a.btn.blue:focus,
a.btn.blue:active,
.form-btn.blue:hover,
.form-btn.blue:focus,
.form-btn.blue:active {
	background-color: #0095FF;
}
a.btn.gray,
.form-btn.gray {
	color: #233B4D;
	background-color: rgba(35,59,77,0.15);
}
a.btn.gray:hover,
a.btn.gray:focus,
a.btn.gray:active,
.form-btn.gray:hover,
.form-btn.gray:focus,
.form-btn.gray:active {
	background-color: rgba(35,59,77,0.25);
}
/* Hovsoyan */
a.btn.arw {
	text-transform: uppercase;
}
/* End Hovsoyan */
a.btn.arw:after {
	display: inline-block;
	content: "";
	width: 12px;
	height: 12px;
	margin-left: 10px;
	background: url(../img/btn_arw.svg) 0 0 no-repeat;
	background-size: 100% auto;
}
a.btn.small.arw:after {
	width: 10px;
	height: 10px;
	margin-left: 10px;
}
a.btn.med.arw:after {
	width: 17px;
	height: 17px;
	margin-left: 12px;
}
a.btn.big.arw:after {
	width: 21px;
	height: 21px;
	margin-left: 18px;
}
a.btn.arw.down:after {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
a.btn.arw.up:after {
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}



/* Table */

.table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 1px;
	background: #DDD;
	cursor: default;
}
.table.fixed {
	table-layout: fixed;
}
.table thead tr th {
	color: #091D36;
	font-weight: 700;
	text-align: left;
	background: #EEE;
	vertical-align: top;
}
.table tbody {
	border-bottom: 1px solid #333;
}
.table tbody:last-child {
	border-bottom: none;
}
.table tbody tr {
	background: rgba(255,255,255,0.1);
	border-top: 1px solid #333;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.table tbody tr:nth-of-type(even) {
	background: rgba(255,255,255,0.05);
}
.table tbody tr:hover {
	background: rgba(255,255,255,0.4);
}
.table th,
.table td {
	padding: 10px 20px;
	vertical-align: top;
}
.table td {
	background: #FFF;
}



/* Content */

.content {
	padding: 50px 0;
}


.content h1,
.content h2,
.content h3,
.content h4,
.content h5 {
	font-weight: 700;
}
.content strong {
	color: #091D36;
	font-weight: 600;
}

.separator {
	width: 100%;
	height: 1px;
	background: #DDD;
}



/* Slider */

.slick-slider {
	position: relative;
	display: block;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}
.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.slick-list:focus {
	outline: none;
}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
}
.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}
.slick-track:after {
	clear: both;
}
.slick-loading .slick-track {
	visibility: hidden;
}
.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}
[dir='rtl'] .slick-slide {
	float: right;
}
.slick-slide img {
	display: block;
}
.slick-slide.slick-loading img {
	display: none;
}
.slick-slide.dragging img {
	pointer-events: none;
}
.slick-initialized .slick-slide {
	display: block;
}
.slick-loading .slick-slide {
	visibility: hidden;
}
.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}



/* Header / Footer */

.site-container {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
	width: 100%;
	min-height: 100vh;
}
.content-container {
	flex: 1 1 auto;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: center;
}

.site-header,
.site-footer {
	flex: 0 1 auto;
	position: relative;
}
.site-header {
	padding: 19px 0;
	line-height: 18px;
	background: #FFF;
	z-index: 102;
	-webkit-box-shadow: 0 0 5px 0 rgba(9,29,54,0.1);
	-moz-box-shadow: 0 0 5px 0 rgba(9,29,54,0.1);
	box-shadow: 0 0 5px 0 rgba(9,29,54,0.1);
}
.sh-cont {
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
}
.slogo {
	flex: 0 0 210px;
	width: 210px;
	height: 38px;
	font-size: 0;
	text-indent: -999em;
	background: url(../img/logo.svg) 0 0 no-repeat;
	background-size: 100% auto;
}
.slogo a {
	display: block;
	width: 100%;
	height: 100%;
}
.snav {
	font-size: 18px;
	font-weight: 600;
	line-height: calc(1em + 4px);
}
.snav ul {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	margin: 0;
}
.snav li {
	flex: 0 1 auto;
	margin: 0 0 0 5px;
	list-style-type: none;
	position: relative;
}
.snav a {
	display: block;
	padding: 10px 20px;
	color: #091d36;
	cursor: pointer;
	text-decoration: none;
}
.snav a:hover,
.snav a:focus,
.snav a:active {
	color: #0364A9;
}
.snav a.special {
	padding-left: 20px;
	color: #FFF;
	background: #EF092F;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
}
.snav a.special:hover {
	background: #FF002A;
}
.snav .has-sub {
	position: relative;
	z-index: 2;
}
.snav .has-sub:before {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0);
	position: relative;
	top: 0;
	left: 0;
	z-index: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.snav .has-sub.open:before {
	background: rgba(0,0,0,0.3);
	position: fixed;
}
.snav .has-sub ul {
	display: none;
	width: 320px;
	padding: 20px;
	font-size: 16px;
	text-transform: none;
	background: #FFF;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 9999;
	-webkit-box-shadow: 0 7px 15px 0 rgba(0,0,0,0.3);
	-moz-box-shadow: 0 7px 15px 0 rgba(0,0,0,0.3);
	box-shadow: 0 7px 15px 0 rgba(0,0,0,0.3);
}
.snav .has-sub.open ul {
	display: block !important;
}
.snav .has-sub ul.two-cols {
	width: 620px;
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
}
.snav .has-sub ul li {
	flex: 0 1 auto;
	margin: 0;
}
.snav .has-sub > a {
	padding-right: 40px;
	position: relative;
	z-index: 3;
}
.snav .has-sub.open > a {
	color: #FFF;
	background: #0077CC;
}
.snav .has-sub > a:after {
	display: block;
	content: "";
	width: 10px;
	height: 10px;
	background: url(../img/arw_black.svg) center center no-repeat;
	background-size: 100% auto;
	opacity: 0.5;
	position: absolute;
	top: calc(50% - 5px);
	right: 20px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
.snav .has-sub.open > a:after {
	background-image: url(../img/arw_white.svg);
	opacity: 1;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
.snav .has-sub ul a {
	padding: 10px;
}
.snav .has-sub ul.with-icns a {
	padding-left: 40px;
}
.with-icns a:before {
	display: block;
	content: "";
	width: 16px;
	height: 16px;
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: calc(50% - 8px);
	left: 10px;
}
.with-icns .icn-id:before {
	background-image: url(../img/sn_icn_id.svg);
}
.with-icns .icn-email:before {
	background-image: url(../img/sn_icn_email.svg);
}
.with-icns .icn-phone:before {
	background-image: url(../img/sn_icn_phone.svg);
}
.with-icns .icn-username:before {
	background-image: url(../img/sn_icn_username.svg);
}
.with-icns .icn-ssn:before {
	background-image: url(../img/sn_icn_ssn.svg);
}
.with-icns .icn-license:before {
	background-image: url(../img/sn_icn_license.svg);
}
.with-icns .icn-passport:before {
	background-image: url(../img/sn_icn_passport.svg);
}
.with-icns .icn-document:before {
	background-image: url(../img/sn_icn_document.svg);
}
.with-icns .icn-document-eye:before {
	background-image: url(../img/sn_icn_document_eye.svg);
}
.with-icns .icn-globe:before {
	background-image: url(../img/sn_icn_globe.svg);
}
.with-icns .icn-dollar:before {
	background-image: url(../img/sn_icn_dollar.svg);
}
.with-icns .icn-eye:before {
	background-image: url(../img/sn_icn_eye.svg);
}
.with-icns .icn-username-lock:before {
	background-image: url(../img/sn_icn_username_lock.svg);
}
.with-icns .icn-card-warning:before {
	background-image: url(../img/sn_icn_card_warning.svg);
}
.with-icns .icn-score:before {
	background-image: url(../img/sn_icn_score.svg);
}
.with-icns .icn-medicine:before {
	background-image: url(../img/sn_icn_medicine.svg);
}
.with-icns .icn-dollar-lock:before {
	background-image: url(../img/sn_icn_dollar_lock.svg);
}
.with-icns .icn-id-magnifier:before {
	background-image: url(../img/sn_icn_id_magnifier.svg);
}
.with-icns .icn-documents:before {
	background-image: url(../img/sn_icn_documents.svg);
}
.with-icns .icn-user-stars:before {
	background-image: url(../img/sn_icn_user_stars.svg);
}
.with-icns .icn-shield-checkmark:before {
	background-image: url(../img/sn_icn_shield_checkmark.svg);
}
.with-icns .icn-lock-open:before {
	background-image: url(../img/sn_icn_lock_open.svg);
}
.with-icns .icn-alert:before {
	background-image: url(../img/sn_icn_alert.svg);
}
.with-icns .icn-eye-crossed:before {
	background-image: url(../img/sn_icn_eye_crossed.svg);
}
.with-icns .icn-dark-web:before {
	background-image: url(../img/sn_icn_dark_web.svg);
}
.with-icns .icn-tax:before {
	background-image: url(../img/sn_icn_tax.svg);
}
.with-icns .icn-home:before {
	background-image: url(../img/sn_icn_home.svg);
}
.with-icns .icn-family:before {
	background-image: url(../img/sn_icn_family.svg);
}
.with-icns .icn-mail:before {
	background-image: url(../img/sn_icn_mail.svg);
}
.with-icns .icn-score-arrows:before {
	background-image: url(../img/sn_icn_score_arrows.svg);
}
.with-icns .icn-key:before {
	background-image: url(../img/sn_icn_key.svg);
}
.with-icns .icn-key-gear:before {
	background-image: url(../img/sn_icn_key_gear.svg);
}
.with-icns .icn-key-magnifier:before {
	background-image: url(../img/sn_icn_key_magnifier.svg);
}
.with-icns .icn-alert-bell:before {
	background-image: url(../img/sn_icn_alert_bell.svg);
}
.with-icns .icn-shield-user:before {
	background-image: url(../img/sn_icn_shield_user.svg);
}
.with-icns .icn-gavel:before {
	background-image: url(../img/sn_icn_gavel.svg);
}
.with-icns .icn-web:before {
	background-image: url(../img/sn_icn_web.svg);
}
.with-icns .icn-lock:before {
	background-image: url(../img/sn_icn_lock.svg);
}

body .sh-norton {
	margin: -16px 0;
}
.sh-norton img {
	display: block;
}

.site-footer {
	padding: 40px 0;
	background: #F2F3F5;
	border-top: 1px solid rgba(9,29,54,0.1);
	z-index: 100;
}
.fnav {
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: flex-start;
	margin: 0 -20px;
}
.fnav .col {
	flex: 0 1 50%; /* 50% modified by Hovsoyan, was 100% before */
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: flex-start;
	padding: 0 20px;
}
/* Added By Hovsoyan */
.site-footer:not(.fe) {
	display: none;
}
.fnav .learn-more {
	flex-basis: 100%;
}
.learn-more ul {
	column-count: 2;
}
.learn-more ul li {
	margin-top: 0;
	margin-bottom: 6px;
}
/* End Added By Hovsoyan */

.fnav .col.wide {
	flex: 0 1 50%;
}
.fnav .col:first-child {
	border-left: none;
}
.fnav h5 {
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
}
.fnav ul {
	margin: 0;
}
.fnav ul.two-cols {
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
}
.fnav li {
	margin: 0 0 6px 0;
	list-style-type: none;
}
.fnav a {
	text-decoration: none;
}
.fnav li.icn {
	margin-top: 20px;
	padding-left: 26px;
	position: relative;
}
.fnav li.icn:first-child {
	margin-top: 0;
}
.fnav li.icn:before {
	display: block;
	content: "";
	width: 16px;
	height: 16px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: 3px;
	left: 0;
}
.fnav li.icn-phone:before {
	background-image: url(../img/footer_icn_phone.svg);
}
.fnav li.icn-email:before {
	background-image: url(../img/footer_icn_email.svg);
}
.fnav a.special {
	display: inline-block;
	margin: 4px 0 0 0;
	padding: 2px 12px;
	color: #FFF;
	font-weight: 600;
	vertical-align: top;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
}
.fnav a.special.s1 {
	background: #EF092F;
}
.fnav a.special.s1:hover,
.fnav a.special.s1:focus,
.fnav a.special.s1:active {
	background: #FF002A;
}
.fnav a.special.s2 {
	background: #0364A9;
}
.fnav a.special.s2:hover,
.fnav a.special.s2:focus,
.fnav a.special.s2:active {
	background: #0077CC;
}
.fdisc,
.fcopy {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid rgba(9,29,54,0.1);
}
.fcopy {
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
}
.fseals {
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
}
.fseals .col {
	margin-left: 20px;
}
.fseals img {
	display: block;
	margin: 0 auto;
}



.fnav ul.fsocial {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	margin-top: auto;
	padding-top: 20px;
	text-indent: -999em;
}
.fsocial li {
	flex: 0 1 auto;
	margin: 0 5px 0 0;
	list-style-type: none;
}
.fsocial li:last-child {
	margin-right: 0;
}
.fsocial a {
	display: block;
	width: 32px;
	height: 32px;
	padding: 0;
	background: rgba(9,29,54,0.2) url(../img/footer_social_icns.svg) 0 60px no-repeat;
	background-size: 100% auto;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.fsocial a.fb {
	background-position: 0 0;
}
.fsocial a.fb:hover {
	background-color: #3B5998;
}
.fsocial a.tw {
	background-position: 0 -40px;
}
.fsocial a.tw:hover {
	background-color: #1DA1F2;
}
.fsocial a.yt {
	background-position: 0 -80px;
}
.fsocial a.yt:hover {
	background-color: #CD201F;
}
.fsocial a.li {
	background-position: 0 -120px;
}
.fsocial a.li:hover {
	background-color: #0077B5;
}
.fsocial a.pi {
	background-position: 0 -160px;
}
.fsocial a.pi:hover {
	background-color: #E6001A;
}
.fsocial a.in {
	background-position: 0 -200px;
}
.fsocial a.in:hover {
	background-color: #FF008A;
}
.fsocial a.ps {
	background-position: 0 -240px;
}
.fsocial a.ps:hover {
	background-color: #FF7600;
}



/* Navigation Mobile */

.slicknav_menu {
	display: none;
	width: 80px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1000;
}
a.slicknav_btn {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	position: absolute;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
a.slicknav_btn:hover,
a.slicknav_btn.slicknav_open {
	background-color: #F9F9F9;
}
.slicknav_menutxt {
	display: none;
}
.slicknav_icon {
	display: block;
	width: 30px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
.slicknav_icon-bar {
	display: block;
	height: 2px;
	margin-top: 8px;
	background: #0364A9;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.slicknav_icon-bar:first-child {
	margin-top: 0;
}
a.slicknav_btn:hover .slicknav_icon-bar,
a.slicknav_btn.slicknav_open .slicknav_icon-bar {
	background: #0077CC;
}
.slicknav_nav {
	display: block;
	width: 300px;
	margin: 0;
	background: #FFF;
	position: absolute;
	top: 100%;
	right: 0;
	-webkit-box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
	-moz-box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
}
.slicknav_nav li {
	display: block;
	float: none;
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 16px;
	text-transform: uppercase;
	border-top: 1px solid #EEE;
	list-style-type: none;
}
.slicknav_nav ul {
	display: block;
	margin: 0;
	background-color: #FFF;
}
.slicknav_nav ul li {
	text-transform: none;
}
.slicknav_nav a {
	display: block;
	padding: 15px 20px;
	text-decoration: none;
	background-color: #FFF;
	position: relative;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav a:active {
	background-color: #F9F9F9;
}
.slicknav_nav a > a,
.slicknav_nav a > a:hover,
.slicknav_nav a > a:focus,
.slicknav_nav a > a:active {
	padding: 0;
	background-color: transparent;
}
.slicknav_arrow {
	display: none;
}
.slicknav_nav a.special {
	color: #FFF;
	background-color: #EF092F;
}
.slicknav_nav a.special:hover,
.slicknav_nav a.special:focus,
.slicknav_nav a.special:active {
	background-color: #FF002A;
}
.slicknav_nav .slicknav_parent > a:after {
	display: block;
	content: "";
	width: 10px;
	height: 10px;
	background: url(../img/arw_main.svg) center center no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: calc(50% - 5px);
	right: 15px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
.slicknav_nav .slicknav_parent.slicknav_open > a:after {
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
.slicknav_nav .slicknav_open > a {
	background-color: #F9F9F9;
}
.slicknav_nav ul a {
	padding-left: 40px;
}
.slicknav_nav ul.with-icns a {
	padding-left: 50px;
}
.slicknav_nav ul.with-icns a:before {
	left: 20px;
}



/* More Info */

.more-info {
	max-width: 640px;
	margin: 0 auto;
}

.mi-progress {
	font-size: 13px;
	line-height: 16px;
	text-align: center;
}
body .mi-progress {
	margin: -25px 0 20px 0;
}
.mi-progress ul {
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
	margin: 0;
}
.mi-progress li {
	flex: 0 1 100%;
	margin: 0;
	padding: 0 10px;
	list-style-type: none;
	position: relative;
}
.mi-progress .complete {
	color: #168500;
	font-weight: 700;
}
.mi-progress i {
	display: block;
	content: "";
	width: 32px;
	height: 32px;
	margin: 0 auto 5px auto;
	background: #FFF;
	border: 2px solid #DDD;
	position: relative;
	z-index: 2;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.mi-progress .complete i {
	background-image: url(../img/checkmark_green.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 12px auto;
	border-color: #168500;
}
.mi-progress li:before,
.mi-progress li:after {
	display: block;
	content: "";
	width: 50%;
	height: 2px;
	background: #DDD;
	position: absolute;
	top: 15px;
	z-index: 1;
}
.mi-progress li:before {
	left: 0;
}
.mi-progress li:after {
	right: 0;
}
.mi-progress li:first-child:before,
.mi-progress li:last-child:after {
	display: none;
}
.mi-progress li.complete:before,
.mi-progress li.complete:after {
	background: #168500;
}

.mi-header {
	padding: 20px 40px;
	background: #0364A9;
	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.mi-title {
	color: #FFF;
	font-size: 24px;
	line-height: 28px;
	text-align: center;
}
.mi-title.alert:before {
	display: inline-block;
	content: "";
	width: 32px;
	height: 28px;
	margin-right: 10px;
	background: url(../img/icn_alert.svg) center center no-repeat;
	background-size: 100% auto;
	vertical-align: top;
}
.mi-body {
	padding: 40px;
	background: #F5F5F5;
	border-bottom: 1px solid #CCC;
	-webkit-border-bottom-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-bottomright: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}
.mi-form .row {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px dashed #AAA;
}
.mi-form .form-label {
	font-weight: 700;
}
.mi-form .form-btn {
	padding: 17px;
	font-size: 24px;
	line-height: 26px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
}
.mi-form .form-btn:after {
	display: inline-block;
	content: "";
	width: 17px;
	height: 17px;
	margin: 6px 0 0 15px;
	background: url(../img/btn_arw.svg) 0 0 no-repeat;
	background-size: 100% auto;
	vertical-align: top;
}
.mi-info {
	margin-top: 10px;
	font-size: 13px;
	line-height: 20px;
}
.mi-more {
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	margin-top: 15px;
}
.mi-more .dsc {
	margin-left: 10px;
	color: #999;
	font-size: 13px;
	font-style: italic;
	line-height: 18px;
}
.mi-more .btn {
	padding: 6px 16px;
	font-size: 14px;
	line-height: 16px;
}
.mi-secure {
	margin-top: 20px;
	color: #091D36;
	font-size: 13px;
	line-height: 20px;
	text-align: center;
}
.mi-secure:before {
	display: inline-block;
	content: "";
	width: 20px;
	height: 20px;
	margin-right: 10px;
	background: #168500 url(../img/scan_icn_secure.svg) center center no-repeat;
	background-size: 100% auto;
	vertical-align: top;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.uppercase {
	text-transform: capitalize;
}

::-webkit-input-placeholder {
	text-transform: initial;
}

:-moz-placeholder {
	text-transform: initial;
}

::-moz-placeholder {
	text-transform: initial;
}

:-ms-input-placeholder {
	text-transform: initial;
}

.hide {
	display: none;
}

.View, .View a {
	font-weight: normal;
}

.error-sign {
	text-align: center;
}
.error-sign span {
	display: inline-block;
	padding: 20px 40px 25px 40px;
	background: #0364A9;
	color: #FFF;
	font-size: 160px;
	font-weight: 700;
	line-height: 1em;
	vertical-align: top;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}

.hint {
	display: inline-block;
	width: 16px;
	height: 16px;
	position: relative;
	vertical-align: top;
}
.hint-link {
	display: block;
	width: 16px;
	height: 16px;
	font-size: 9px;
	font-weight: 800;
	line-height: 16px;
	text-align: center;
	text-decoration: none;
	background: #FFF;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.hint-content {
	display: none;
	width: 300px;
	padding: 20px;
	color: #475668;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	line-height: 18px;
	text-align: left;
	text-transform: none;
	background: #FFF;
	position: absolute;
	right: -20px;
	top: 24px;
	z-index: 1000;
	-webkit-box-shadow: 0 10px 20px 0 rgba(0,0,0,0.25);
	-moz-box-shadow: 0 10px 20px 0 rgba(0,0,0,0.25);
	box-shadow: 0 10px 20px 0 rgba(0,0,0,0.25);
}
.hint:hover .hint-content {
	display: block;
}
.hint-content:before {
	display: block;
	content: "";
	width: 8px;
	height: 8px;
	background: #FFF;
	position: absolute;
	top: -4px;
	right: 24px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.hc-header {
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
}
.hc-icn {
	flex: 0 0 40px;
	height: 36px;
	margin-right: 20px;
	background: #168500 url(../img/id_help.svg) center center no-repeat;
	background-size: 30px auto;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.hc-ttl {
	display: block;
	color: #091D36;
	font-size: 15px;
	font-weight: 700;
	line-height: 18px;
}
.hc-txt {
	display: block;
	margin-top: 15px;
	font-weight: 400;
}



/* Sticky Form */

.sticky-form {
	width: 100%;
	background: #FFF;
	background-size: cover;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 999;
	-webkit-box-shadow: 0 0 50px 0 rgba(3,100,169,0.75);
	-moz-box-shadow: 0 0 50px 0 rgba(3,100,169,0.75);
	box-shadow: 0 0 50px 0 rgba(3,100,169,0.75);
}
.sf-ttl {
	padding: 30px 60px;
	cursor: pointer;
	outline: none;
	position: relative;
	z-index: 2;
}
.sf-ttl:after {
	display: block;
	content: "";
	width: 24px;
	height: 24px;
	background: url(../img/btn_arw_red.svg) center center no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: calc(50% - 12px);
	right: 18px;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.sf-ttl.ui-state-active:after {
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
.sf-ttl .ttl {
	margin: 0;
	color: #091D36;
	font-size: 30px;
	font-weight: 700;
	line-height: 34px;
	text-align: center;
}
.sf-ttl .special {
	display: inline-block;
	color: #EF092F;
	position: relative;
	vertical-align: top;
}
.sf-ttl .special:before {
	display: block;
	content: "";
	width: 100%;
	height: 2px;
	background: #EF092F;
	position: absolute;
	bottom: 0;
	left: 0;
}
.sf-ttl.ui-state-active .special:before {
	display: none;
}
.sf-form {
	padding-bottom: 50px;
	position: relative;
	z-index: 2;
}
.sf-form .tnav a {
	-webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.3);
	-moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.3);
	box-shadow: 0 1px 3px 0 rgba(0,0,0,0.3);
}
.sf-form .tnav a:hover:before {
	bottom: 2px;
}
.sf-form .tnav a.active:before {
	bottom: -4px;
}
.sf-form .tnav li.tnav-label,
.sf-form .intro-form .form-label {
	color: #091D36;
}
.sf-form .intro-form .form-label .req,
.sf-form .intro-form .form-error,
.sf-form .intro-required {
	color: #EF092F;
}
.sf-form .intro-form .form-control {
	border: 1px solid #777;
}
.sf-form .intro-secure,
.sf-form .form .disclaimer,
.sf-form .form .disclaimer a {
	color: #475668;
}



.intro3 {
	background: #EEF8FF;
	border-top: 1px solid #CCE4F4;
	border-bottom: 1px solid #CCE4F4;
}
.intro3 .sf-form {
	padding: 40px 0;
}
.intro3 .in-header {
	margin: 0 0 30px 0;
}
.intro3 .in-ttl1,
.intro3 .in-ttl2 {
	color: #091D36;
}
.intro3 .in-ttl1 .special,
.intro3 .in-ttl2 .special {
	color: #EF092F;
}



.login-container {
	flex: 1 1 auto;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	min-width: 100%;
	min-height: 100%;
	padding: 50px 30px;
	background: url(../img/login.jpg) center center no-repeat;
	background-size: cover;
}
.login-section {
	width: 100%;
	max-width: 480px;
	margin: auto;
	padding: 40px;
	background: #FFF;
	-webkit-box-shadow: 0 5px 15px 0 rgba(0,0,0,0.5);
	-moz-box-shadow: 0 5px 15px 0 rgba(0,0,0,0.5);
	box-shadow: 0 5px 15px 0 rgba(0,0,0,0.5);
}
.login-header {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}
.login-title {
	margin: 0;
	color: #091D36;
	font-size: 24px;
	font-weight: 700;
	line-height: 30px;
	text-transform: uppercase;
}
.login-form .form-label {
	display: block;
	font-size: 15px;
	line-height: 18px;
}



.terms-cont {
	padding: 45px 50px;
	background: #FFF;
	border: 1px solid #DDD;
}
body .terms-cont {
	margin: -30px 0;
}



a.free-trial-btn {
	display: none;
	margin-right: 45px;
	padding: 7px 12px;
	color: #FFF;
	font-size: 11px;
	font-weight: 700;
	line-height: 12px;
	text-decoration: none;
	text-transform: uppercase;
	background: #EF092F;
	border-radius: 100px;
	white-space: nowrap;
}



/* Responsive */

@media only screen and (max-width: 1280px) {
	.fnav {
		margin: 0 -30px;
	}
	.fnav .col {
		padding: 0 30px;
	}
}

@media only screen and (min-width: 1200px) {
	.hide-for-desktop {
		display: none;
	}
	.hide-for-progress {
		opacity: 0;
	}
}

@media only screen and (max-width: 1199px) {
	h1,
	h2,
	h3,
	h4,
	h5 {
		margin: 30px 0 20px 0
	}
	.js .slicknav_menu {
		display: block;
	}
	.js #menu,
	.results .slicknav_menu {
		display: none;
	}
	a.free-trial-btn {
		display: block;
	}
	.section-s {
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.section,
	.section-m {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.fdisc,
	.fcopy {
		margin-top: 30px;
		padding-top: 30px;
	}
	.content {
		padding: 30px 0;
	}
	.sf-ttl .ttl {
		font-size: 24px;
		line-height: 28px;
	}
	.terms-cont {
		padding: 10px;
		border: none;
	}
	body .terms-cont {
		margin: 0;
	}
}

@media only screen and (max-width: 1023px) {
	.fnav {
		flex-direction: column;
		margin: 0;
	}
	.fnav .col {
		flex-basis: auto;
		margin-top: 30px;
		padding: 0;
		border-left: none;
	}
	.fnav .col:first-child {
		margin-top: 0;
		padding: 0;
		border-top: none;
	}
	.fdisc,
	.fcopy {
		margin-top: 20px;
		padding-top: 20px;
	}
	.fcopy {
		flex-direction: column;
		text-align: center;
	}
	.fseals {
		padding-top: 15px;
	}
	.fseals .col {
		margin: 0 10px;
	}
	a.btn {
		padding: 8px 20px;
		font-size: 14px;
		line-height: 16px;
	}
	a.btn.med {
		padding: 14px 30px;
		font-size: 18px;
		line-height: 20px;
	}
	a.btn.big {
		padding: 16px 40px;
		font-size: 24px;
		line-height: 28px;
	}
	a.btn.arw:after {
		width: 10px;
		height: 10px;
	}
	a.btn.med.arw:after {
		width: 13px;
		height: 13px;
		margin-left: 10px;
	}
	a.btn.big.arw:after {
		width: 17px;
		height: 17px;
		margin-left: 12px;
	}
}

@media only screen and (max-width: 767px) {
	body {
		font-size: 14px;
		line-height: 22px;
	}
	h1,
	h2,
	h3,
	h4,
	h5 {
		margin: 30px 0 20px 0
	}
	h1 {
		font-size: 24px;
		line-height: 28px;
	}
	h2 {
		font-size: 18px;
		line-height: 22px;
	}
	h3 {
		font-size: 16px;
		line-height: 20px;
	}
	h4,
	h5 {
		font-size: 14px;
		line-height: 18px;
	}
	ol.styled {
		margin-left: 20px;
	}
	ol.styled li {
		padding-left: 30px;
	}
	.wrapper {
		padding-right: 20px;
		padding-left: 20px;
	}
	.section {
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.section-m,
	.section-s,
	.section-xs,
	.block {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.table th,
	.table td {
		padding: 4px 8px;
	}
	.icn-m {
		width: 24px;
		height: 24px;
	}
	.icn-user {
		background-position: 0 0;
	}
	.icn-users {
		background-position: 0 -30px;
	}
	.icn-users2 {
		background-position: 0 -60px;
	}
	.icn-home {
		background-position: 0 -90px;
	}
	.icn-pin {
		background-position: 0 -120px;
	}
	.icn-calendar {
		background-position: 0 -150px;
	}
	.icn-phone {
		background-position: 0 -180px;
	}
	.icn-mobile {
		background-position: 0 -210px;
	}
	.icn-email {
		background-position: 0 -240px;
	}
	.icn-headphones {
		background-position: 0 -270px;
	}
	.icn-document {
		background-position: 0 -300px;
	}
	.icn-dollar {
		background-position: 0 -330px;
	}
	.icn-dollar-gavel {
		background-position: 0 -360px;
	}
	.icn-lock-opened {
		background-position: 0 -390px;
	}
	.icn-shield {
		background-position: 0 -420px;
	}
	.icn-seal {
		background-position: 0 -450px;
	}
	.icn-bubbles {
		background-position: 0 -480px;
	}
	.icn-globe {
		background-position: 0 -510px;
	}
	.icn-server {
		background-position: 0 -540px;
	}
	.icn-suitcase {
		background-position: 0 -570px;
	}
	.icn-cards {
		background-position: 0 -600px;
	}
	.icn-magnifier {
		background-position: 0 -630px;
	}
	.icn-gavel {
		background-position: 0 -660px;
	}
	.icn-scales {
		background-position: 0 -690px;
	}
	.icn-handcuffs {
		background-position: 0 -720px;
	}
	.icn-fingerprint {
		background-position: 0 -750px;
	}
	.icn-court {
		background-position: 0 -780px;
	}
	.icn-rings {
		background-position: 0 -810px;
	}
	.icn-folder-gavel {
		background-position: 0 -840px;
	}
	.icn-ssn {
		background-position: 0 -870px;
	}
	.icn-bars {
		background-position: 0 -900px;
	}
	.icn-score {
		background-position: 0 -930px;
	}
	.icn-score2 {
		background-position: 0 -960px;
	}
	.form-start {
		padding: 5px 15px;
		font-size: 13px;
		line-height: 16px;
		top: -22px;
	}
	.form-label {
		font-size: 14px;
		line-height: 16px;
	}
	.form-control {
		height: 44px;
		padding: 0 12px;
		font-size: 16px;
	}
	select.form-control {
		padding-left: 12px;
	}
	:i-block-chrome,select.form-control {
		text-indent: 4px;
	}
	textarea.form-control {
		padding: 10px 12px;
	}
	.form-btn {
		padding: 11px 20px;
		font-size: 16px;
		line-height: 18px;
	}
	.form-prefilled {
		padding: 12px;
		font-size: 16px;
		line-height: 20px;
	}
	.site-header {
		padding: 15px 0;
	}
	.site-footer {
		padding: 30px 0;
	}
	.fnav ul.two-cols {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
	}
	.slogo {
		flex: 0 0 132px;
		width: 132px;
		height: 24px;
	}
	.slicknav_menu {
		width: 50px;
	}
	.slicknav_icon {
		width: 24px;
	}
	.slicknav_icon-bar {
		margin-top: 6px;
	}
	.error-sign span {
		font-size: 100px;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
	}
	.hint-content {
		width: 200px;
		padding: 15px;
	}
	.hc-icn {
		margin-right: 15px;
	}
	.hc-ttl {
		font-size: 14px;
	}
	.sf-ttl {
		padding: 15px 20px;
	}
	.sf-ttl:after {
		width: 12px;
		height: 12px;
		top: calc(50% - 6px);
		right: 10px;
	}
	.sf-ttl .ttl {
		font-size: 16px;
		line-height: 20px;
	}
	.sf-form{
		padding-bottom: 10px;
	}
	.sf-form .tnav a {
		padding-top: 6px;
		padding-bottom: 6px;
	}
	.sf-form .intro-form .col {
		margin-bottom: 10px;
	}
	.sf-form .intro-form .form-btn {
		padding: 12px;
	}
	.intro3 .sf-form {
		padding: 20px 0;
	}
	.intro3 .in-header {
		margin: 0 0 20px 0;
	}
	.login-container {
		padding: 15px;
		background: #233B4D;
	}
	.login-section {
		padding: 30px;
	}
	.login-header {
		margin-bottom: 15px;
	}
	.terms-cont {
		padding: 0;
	}
}

@media only screen and (max-width: 479px) {
	.wrapper {
		padding-right: 15px;
		padding-left: 15px;
	}
	.form-control {
		height: 40px;
	}
	.form-prefilled {
		padding: 10px 12px;
	}
	.form-start {
		padding: 5px 10px;
		top: -26px;
		left: 0;
	}
}