@font-face {
    font-family: 'gilroy-regularregular';
    src: url('../fonts/gilroy-regular-webfont.woff2') format('woff2'),
         url('../fonts/gilroy-regular-webfont.woff') format('woff');
         url('../fonts/Gilroy-Regular.ttf') format('ttf');
}
@font-face {
    font-family: 'gilroysemibold';
    src: url('../fonts/gilroy-semibold-webfont.woff2') format('woff2'),
         url('../fonts/gilroy-semibold-webfont.woff') format('woff');
          url('../fonts/Gilroy-SemiBold.ttf') format('ttf');
}
@font-face {
    font-family: 'neurial_groteskbold';
    src: url('../fonts/neurialgrotesk-bold-webfont.woff2') format('woff2'),
         url('../fonts/neurialgrotesk-bold-webfont.woff') format('woff');
         url('../fonts/NeurialGrotesk-Bold.otf') format('otf');
}
@font-face {
    font-family: 'neurial_grotesklight';
    src: url('../fonts/neurialgrotesk-light-webfont.woff2') format('woff2'),
         url('../fonts/neurialgrotesk-light-webfont.woff') format('woff');
         url('../fonts/NeurialGrotesk-Light.otf') format('otf');
}
@font-face {
    font-family: 'neurial_groteskregular';
    src: url('../fonts/neurialgrotesk-regular-webfont.woff2') format('woff2'),
         url('../fonts/neurialgrotesk-regular-webfont.woff') format('woff');
         url('../fonts/NeurialGrotesk-Regular.otf') format('otf');
}

html {
	margin: 0 auto;
	width: 100%;
	height: 100%;
}
body {
	margin: 0 auto;
	font-size: 150%;
	line-height: 1;
	color: #666766;
	background: #fff;
	cursor: default;
	letter-spacing: 0.2px;
	font-family: 'neurial_groteskregular';
	font-weight: normal;
    font-style: normal;
}
.container {
	margin: 0 auto;
	max-width: 1900px;
	padding: 0 2%;
	box-sizing: border-box;
}

a {
	color: #074487;
	text-decoration: none;
	filter:alpha(opacity=100);
	opacity: 1;
	-webkit-transition:all 0.2s linear;
	-moz-transition:all 0.2s linear;
	-o-transition:all 0.2s linear;
	transition:all 0.2s linear;
}
a:hover, a:focus {
	color: #0077de;
	text-decoration: underline;
	outline: 0;
	filter:alpha(opacity=100);
	opacity: 1;
	-webkit-transition:all 0.2s linear;
	-moz-transition:all 0.2s linear;
	-o-transition:all 0.2s linear;
	transition:all 0.2s linear;
}
a img {
	border: 0;
}
a.btn {
	display: inline-block;
	background: #074487;
	color: #fff;
	padding: 10px 25px 12px;
	border-radius: 30px;
	text-decoration: none;
	font-size: 25px;
	font-family: 'neurial_groteskbold';
	font-weight: normal;
    font-style: normal;
}
a.btn:hover {
	background: #7bb2e1;
}
a.btn-secondary {
	font-family: 'neurial_groteskregular';
	font-size: 85% !important;
}
a.lb {
	background: #7bb2e1;
}
a.lb:hover {
	background: #1A579A;
}
a.btp {
	margin-top: 20px;
}
a.ctp {
	margin-top: 35px;
}

/* FORMS */
::placeholder {
	color: #959595;
}
input[type='text'], input[type='tel'],input[type='email'], input[type='password'], textarea {
	background: rgba(240, 240, 240, 1);
	border: 1px solid rgba(240, 240, 240, 1);
	border-radius: 6px;
	outline: 0;
	font-size: 90%;
	padding: 10px 15px 12px;
	width: 100%;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
	 font-family: 'neurial_groteskregular';
	 font-weight: normal;
    font-style: normal;
	 	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
input[type='text']:focus,
input[type='tel']:focus,
input[type='email']:focus,
input[type='password']:focus,
textarea:focus {
	border: 1px solid rgba(0, 161, 145, 0.4);
}
input[type='text'].invalid, 
input[type='tel'].invalid,
input[type='email'].invalid {
	border: 1px solid #ff964b;
}
input[type='submit'], input[type='button'], button {
	border: 0;
	outline: 0;
	font-size: 100%;
	text-transform: uppercase;
	background: #1b4586;
	border-radius: 50px;
	padding: 10px 30px;
	color: #fff;
	letter-spacing: 0.5px;
	cursor: pointer;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	filter: alpha(opacity=100);
	opacity: 1;
	-webkit-transition:all 0.2s linear;
	-moz-transition:all 0.2s linear;
	-o-transition:all 0.2s linear;
	transition:all 0.2s linear;
	 font-family: 'neurial_groteskbold';
	 font-weight: normal;
    font-style: normal;
	 	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
input[type='submit']:hover, input[type='button']:hover, button:hover {
	background: rgba(28, 71, 135, 0.6);
	filter:alpha(opacity=100);
	opacity: 1;
	-webkit-transition:all 0.2s linear;
	-moz-transition:all 0.2s linear;
	-o-transition:all 0.2s linear;
	transition:all 0.2s linear;
}
button.rsform-thankyou-button {
	padding: 10px 30px;
	font-size: 100%;
}

/* CHECKBOX STYLING */
[type=checkbox] {
  width: 2.5rem;
  height: 2.5rem;
  color: dodgerblue;
  vertical-align: middle;
  -webkit-appearance: none;
  background: none;
  border: 0;
  outline: 0;
  flex-grow: 0;
  border-radius: 50%;
  background-color: #e6e2e2;
  transition: background 300ms;
  cursor: pointer;
  margin-right: 6px;
  margin-bottom: 15px;
}
[type=checkbox]:hover {
	background-color: #1b4586;
}
[type=checkbox]::before {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: transparent;
  background-size: contain;
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23ccc'/%3E %3C/svg%3E");
}


/* Checked */

[type=checkbox]:checked {
  background-color: #1b4586;
}

[type=checkbox]:checked::before {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}

.has-error-foundation input[type="text"].rsform-error:not(:focus), 
.has-error-foundation input[type="email"].rsform-error:not(:focus) {
	color: #fff !important;
}

div.formBody {
	float: none !important;
}
.formError {
	color: #b50000 !important;
	font-size: 13px !important;
	font-weight: normal !important;
	display: block;
	margin-top: 0;
	text-align: center;
}
.has-error-foundation input[type="text"].rsform-error:not(:focus), .has-error-foundation input[type="password"].rsform-error:not(:focus), .has-error-foundation input[type="email"].rsform-error:not(:focus), .has-error-foundation textarea.rsform-error:not(:focus), .has-error-foundation select.rsform-error:not(:focus) {
  background-color: rgba(28, 71, 135, 0.5) !important;
  border-color: rgba(64, 236, 107, 0) !important;
}
.formClr {
	display: inline-block !important;
}
fieldset.formFieldset, fieldset {
	border: none;
	padding: 0 !important;
	margin: 0 !important;
}
fieldset.addshipto {
	margin-top: 50px !important;
}
fieldset.formFieldset ol.formContainer li {
	padding: 0 0 10px !important;
}
fieldset.formFieldset ol.formContainer li:last-child {
	padding-bottom: 0 !important;
}
.formCaption2 {
	margin-bottom: 1%;
}

div.formError {
	left: 30% !important;
}

hr {
	border: none;
	border-bottom: 1px solid #ccc;
	margin: 1% 0;
}
img {
	max-width: 100%;
	max-height: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 10px;
	line-height: 1.1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: 'neurial_groteskbold';
	font-weight: normal;
    font-style: normal;
}
h1, h2 {
	font-size: 50px;
	line-height: 1.15;
	color: #1b4586;
	margin-bottom: 25px;
}
p {
	margin-top: 0;
	margin-bottom: 20px;
	line-height: 1.3;
}
.p p {
	margin: 0;
	line-height: 0;
}
dl {
	margin: 15px 0;
	font-size: 75%;
	color: #a0a0a0;
}
dd {
	margin-left: 0;
}
strong, b {
	font-family: 'neurial_groteskbold';
	font-weight: normal;
    font-style: normal;
}
ul.ul, .ul ul, .ol ol {
	list-style: none;
	padding: 0;
	margin: 0;
}
.li li {
	display: inline-block;
	vertical-align: top;
}
li p {
	margin-bottom: 25px;
}
li strong {
	color: #1b4586;
}
li::marker {
	color: #7bb2e1;
	font-size: 32px;
}
.grid {
	display: inline-block;
	vertical-align: top;
}
.left {
	float: left;
}
.right {
	float: right;
}
.center {
	text-align: center;
}
.hidden {
	overflow: hidden;
}
.padding {
	padding: 9% 0;
}
.blue {
	background: #074487;
	color: #fff;
	overflow: hidden;
}
.blue h2 {
	color: #7bb2e1;
}

#header-wrapper {
	overflow: hidden;
	position: fixed;
	top: 0;
	z-index: 999;
	width: 100%;
	box-shadow: 0 -15px 25px 10px #00000014;
}
#body-wrapper {
	margin-top: 175px;
}

/* HEADER */
#header-top {
	clear: both;
	background-color: #074487;
	color: #fff;
	padding: 12px 0 14px;
	overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#header-top .grid {
	vertical-align: middle;
}
#header-top p {
	margin-bottom: 0;	
}
#header-top .tel a {
	color: #fff;
	font-size: 100%;
	background: url(../images/tel.svg) no-repeat 0 0 / 28px;
	display: inline-block;
	padding-left: 38px;
	text-decoration: none;
	padding-bottom: 3px;
}
#header-top .sfs em {
	font-family: 'gilroy-regularregular';
	font-weight: normal;
    font-style: normal;
	font-size: 80%;
	background: url(../images/sfs.svg) no-repeat 0 0 / 33px;
	padding: 6px 0 6px 45px;
	font-style: normal;
}
#header-top .sfs strong {
	color: #7cb3df;
}

#header {
	background: rgba(255, 255, 255, 0.98);
	padding: 24px 0 22px;
	text-align: center;
	overflow: hidden;
}
#header h1 {
	margin-bottom: 0;
	line-height: 0;
}
#header .logo a {
	display: inline-block;
	width: 300px;
	padding-top: 70px;
	background: url(../images/pension_divorce.svg) no-repeat 0 0 / 100%;
	text-indent: -99999px;
}

#header .mainmenu {
	margin-top: 44px;
	margin-right: 20px;
}
#header .mainmenu li a {
	font-size: 95%;
	margin-left: 12px;
	text-decoration: none;
	color: #1b4586;
	letter-spacing: normal;
}
#header .mainmenu li:first-child a {
	margin-left: 0;
}
#header .mainmenu li a:hover,
#header .mainmenu li.active a {
	color: #5b92c1;
}
#header .mainmenu li.active a {
	font-family: 'neurial_groteskbold';
	font-weight: normal;
    font-style: normal;
    font-size: 90%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

#header .social {
	margin-top: 40px;
}
#header .social li a {
	display: inline-block;
	text-indent: -99999px;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 28px;
	width: 28px;
	height: 28px;
	margin-left: 10px;
}
#header .social li:first-child a,
#header .social li:last-child {
	margin-left: 0;
}
#header .social li a.yt {
	background-image: url(../images/yt.svg);
}
#header .social li a.yt:hover {
	background-image: url(../images/yt_h.svg);
}
#header .social li a.fb {
	background-image: url(../images/fb.svg);
}
#header .social li a.fb:hover {
	background-image: url(../images/fb_h.svg);
}
#header .social li a.ld {
	background-image: url(../images/in.svg);
}
#header .social li a.ld:hover {
	background-image: url(../images/in_h.svg);
}

/* BURGER */
#header .burger {
	margin-top: 9px;
	margin-right: 10px
}
.menu-icon-cont .menu-icon3 {
	height: .25em !important;
	margin: 0.05em !important;
}

/* BANNER */
#home #banner {
	background: #074487 url(../../../images/banner/home.png) no-repeat right top / 51%;
	color: #fff;
}
#divorce-and-pension-sharing #banner {
	background: #7bb2e1 url(../../../images/banner/divorce-pension-sharing.png) no-repeat right top / 70%;
	color: #fff;
	padding: 10% 0;
}
#pode-reports #banner {
	background: #7bb2e1 url(../../../images/banner/pode-report.png) no-repeat right top / 57%;
	color: #fff;
	padding: 10% 0;
}
#about-us #banner {
	background: #7bb2e1 url(../../../images/banner/about.png) no-repeat 115% bottom / 70%;
	color: #fff;
	padding: 7% 0;
}
#home #banner {
	padding: 7% 0;
}
#home #banner p:last-child {
	margin-bottom: 0;
}
#home #banner h1,
#home #banner h2 {
	color: #7bb2e1;
	font-size: 60px;
}
#home #banner p {
	width: 550px;
	font-size: 35px;
}
#divorce-and-pension-sharing #banner h1,
#divorce-and-pension-sharing #banner h2,
#pode-reports #banner h1 {
	width: 600px;
	font-size: 60px;
}
#pension-sharing-orders #content {
	background: #7bb2e1;
	color: #fff;
}
#divorce-and-pension-sharing #banner h1,
#divorce-and-pension-sharing #banner h2,
#pension-sharing-orders #banner h1,
#pension-sharing-orders #banner h2,
#about-us #banner h1,
#about-us #banner h2,
#pode-reports #banner h1 {
	color: #074487;
}
#about-us #banner h1,
#about-us #banner h2 {
	font-size: 55px;
	width: 50%;
}
#about-us #banner p {
	font-size: 32px;
	width: 45%;
}
.contact {
	margin: 0 auto;
	width: 92%;
}
.home.padding {
	padding: 10% 0;
}
.home.center p {
	font-size: 120%;
}
.split .image {
	width: 38%;
	display: inline-block;
}
.split .image img {
	border-radius: 50%;
	width: 100% !important;
	height: 100% !important;
}
.split .para {
	width: 56%;
	display: inline-block;
	float: right;
}

.expertadvice {
	 background: #e5ecf3 url(../images/expertadvice_bg.svg) no-repeat -1% 31% / 520px;
	 overflow: hidden;
 }
.expertadvice p {
	line-height: 1.2;
}
.expertadvice li p {
	 margin-bottom: 20px;
}

.whychoose h2 {
	margin-bottom: 60px;
}
.whychoose h3 {
	font-size: 28px;
	margin-bottom: 20px;
}
.whychoose li {
  margin-right: 5%;
  width: 29%;
  padding-top: 160px;
  background-size: 130px;
  background-position: center top;
  background-repeat: no-repeat;
}
.whychoose li:last-child {
	margin-right: 0;	
}
.whychoose li.experties {
	background-image: url(../images/experties.svg);
}
.whychoose li.compre {
	background-image: url(../images/compre.svg);
}
.whychoose li.client {
	background-image: url(../images/client.svg);
}


.home-image {
	background: url(../../../images/footer/home.jpg) no-repeat center top / cover;
	padding: 18% 0;
}
.dps-image {
	background: url(../../../images/footer/divorce-and-pension-sharing.jpg) no-repeat center top / cover;
	padding: 18% 0;
}
.pso-image {
	background: url(../../../images/footer/pension-sharing-orders.jpg) no-repeat center top / cover;
	padding: 18% 0;
}
.contact-image {
	background: url(../../../images/footer/contact.jpg) no-repeat center top / cover;
	padding: 18% 0;
}

/* DIVORCE PENSION */
.divorcepension {
	background: #e5ecf3 url(../images/type_bg.svg) no-repeat 0 101% / 1050px;
}
.divorcepension h2 {
	margin-bottom: 35px;
}
.divorcepension .grid {
	width: 45%;
}
.divorcepension .grid:first-child {
	margin-right: 8%;
}

/* PENSION SHARING ORDERS */
.psow {
	background: #e5ecf3 url(../images/sharingorder_bg.svg) no-repeat right top / 20%;
}
.psow h2 {
	width: 90%;
}
.psow li {
	width: 90%;
}
.pso {
	font-size: 120%;
}
.pso h3 {
	margin-bottom: 30px;
}
.pso a.btn:hover {
	background: #66a7e0;
}
.lpc h2 {
	margin-bottom: 60px;
}
.lpc h3 {
	font-size: 32px;
	margin-bottom: 15px;
}
.lpc li {
	width: 44%;
}
.lpc li:first-child {
	margin-right: 5%;
}
.lpc li:last-child {
	margin-left: 5%;
}
.wpso {
	background: #1b4586 url(../images/pensionsharing_bg.svg) no-repeat left 30% / 22%;
}
.wpso h2 {
	color: #fff;
}

/* PODE REPORTS */
#pode-reports #content {
	background: #1b4586;
}
.pode .para {
	margin-top: 11%;
}
.podebg {
	background: #e5ecf3 url(../images/pode_bg.svg) no-repeat right -5px / 20%;
}
.podebg .para {
	width: 80%;
}
.pode .para h2 {
	color: #7bb2e1;
}

/* ABOUT  */
.team .item {
	display: inline-block;
	vertical-align: top;
	width: 19%;
	margin: 70px 5% 5% 0;
}
/* .team .item:nth-child(3), */
.team .item:last-child {
	margin-right: 0;
	margin-bottom: 0;
}
.team .item img {
	background: #7bb2e1;
	border-radius: 50%;
}
.team .item .item-image {
	margin-bottom: 40px;
}
.team .item h2 {
	font-size: 115%;
	margin-bottom: 10px;
}
.team .item h3 {
	 font-family: 'neurial_grotesklight';
	 font-weight: normal;
     font-style: normal;
     font-size: 105%;
     color: #1b4586;
     margin-bottom: 20px;
}
.team .item h4 {
	font-size: 90%;
}
.team .item a {
	display: inline-block;
	margin-top: 30px;
	background: #1b4586;
	color: #fff;
	font-family: 'neurial_groteskbold';
	font-weight: normal;
    font-style: normal;
    font-size: 90%;
    padding: 8px 30px 10px;
    border-radius: 50px;
    text-decoration: none;
}
.team .item a:hover {
	background: #7bb2e1;
}

/* POWERED */
.powered {
	background: #e5ecf3 url(../images/powered_top.svg) no-repeat left top / 260px;
}
.powered .item-page {
	background: url(../images/powered_btm.svg) no-repeat right bottom / 350px;
}
.powered .container {
	max-width: 1500px;
	padding-top: 6%;
	padding-bottom: 6%;
	font-size: 100%;
}
.powered h2 {
	font-size: 43px;
}
.powered h3 {
	font-weight: 400;
	font-size: 170%;
	line-height: 1.3;
	margin-bottom: 20px;
}
.powered h3 strong {
	color: #7ab1e0;
}
.powered a {
	color: #7ab1e0;
	font-family: 'neurial_groteskbold';
}
.powered a.btn {
	margin-top: 40px;
	color: #fff;
}

/* CONTACT */
#contact, .get-in-touch a:hover {
	color: #1b4586;
}
#get-in-touch #content {
	background: #1b4586;
}
#content .contact.padding {
	padding: 10% 0;
	color: #fff;
	font-size: 130%;
}
#content .contact h1 {
	color: #7bb2e1;
}

/* FORM */
#contact, .get-in-touch {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	background: #7bb2e1;
	color: #fff;
}
.get-in-touch div.grid.header {
	margin-right: 8%;
	width: 45%;
}
.get-in-touch .disclamier {
	clear: both;
}
.get-in-touch .disclamier.adp {
	padding-top: 15px;
}
.get-in-touch .disclamier.adp .right {
	margin-top: 10px;
}
.get-in-touch div.grid.inputs {
	width: 45%;
}
.get-in-touch div.grid.left {
	width: 50px;
}
.get-in-touch div.grid.right {
	width: 90%;
	font-size: 85%;
	text-align: left;
}
.get-in-touch div.grid.right p {
	line-height: 1.2;
	margin-bottom: 10px;
}
.get-in-touch div.grid.left label {
	display: inline-block;
	text-indent: -99999px;
}
.get-in-touch p.asterisk {
	clear: both;
	font-size: 70%;
}
.get-in-touch .caption {
	font-size: 125%;
	margin-bottom: 5%;
}
.get-in-touch .inputs div {
	margin-bottom: 20px;
}
.get-in-touch .inputs .rsform-block-submit {
	text-align: right;
	margin-bottom: 0;
}
.map p {
	margin-bottom: -4px;
}

/* COMPANY */
#company {
	font-size: 85%;
	color: #666766;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#company .sfs h2 {
	font-size: 105%;
}


/* BLOG STYLING */
#content .blog {
	margin: 260px 0 12%;
}
#content .blog .item {
	margin-bottom: 6%;
	font-size: 90%;
}
#content .blog .item div.item-image,
#content .blog .item div.full-text {
	display: inline-block;
	vertical-align: top;
	text-align: left;
}
#content .blog .item div.item-image {
	width: 33%;
	margin-top: 0.5%;
	margin-right: 3%;
}
#content .blog .item div.full-text em,
#content .item-page.blog em {
	font-size: 70%;
}
#content .blog .item div.item-image + div.full-text {
	width: 62%;
}
#content .blog .item h2 {
	font-size: 150%;
	margin-bottom: 30px;
}
#content .blog .item div.item-image + div.header {
	width: 44%;
}
#content .blog div.item-image img {
	border-radius: 10px;
	height: auto;
}
#content .blog.item-page {
	font-size: 90%;
}
#content .blog.item-page div.item-image {
	width: 46%;
	text-align: right;
	float: right;
	margin-left: 3%;
	margin-bottom: 10px;
}


/* FOOTER */
#footer {
	background: #074487;
	overflow: hidden;
	padding: 90px 0 50px;
	color: #fff;
	font-size: 85%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#footer a {
	color: #fff;
}
#footer a:hover,
#footer .links li.active a {
	color: #7bb2e1;
}
#footer .links li.active a {
	font-family: 'neurial_groteskbold';
	font-weight: normal;
    font-style: normal;
}
#footer .msg {
	width: 41%;
	font-size: 85%;
	margin-right: 14%;
}
#footer .msg h3 {
	text-indent: -99999px;
	background: url(../images/sfs_logo.svg) no-repeat 0 0 / 320px;
	padding-top: 50px;
	margin-bottom: 30px;
}
#footer .msg p::empty {
	display: none;
}
#footer .msg .cr {
	margin-top: 50px;
	font-size: 90%;
}
#footer .msg .cr p {
	line-height: 1.4;
}

#footer .links,
#footer .address {
	margin-top: 30px;
}
#footer .links {
	margin-right: 5%;
}
#footer .links a {
	display: inline-block;
	margin-bottom: 18px;
}
#footer .address {
	float: right;
}
#footer .address p {
	line-height: 1.55;
}
#footer .address p:first-child {
	margin-bottom: 34px;
}
#footer .cm a {
	text-decoration: none;
	font-size: 40%;
	text-transform: uppercase;
}


/* PAGINATION */
.pagination {
	text-align: center;
	margin: 4% 0 0;
}
.pagination p.counter {
	font-size: 70%;
	color: #a0a0a0;
}
.pagination ul li a {
	margin: 0 4px;
	background: #e5ecf3;
	padding: 10px 10px 15px;
	box-sizing: border-box;
	width: 44px;
	display: inline-block;
	color: #666766;
	text-decoration: none;
	border-radius: 50px;
	font-size: 85%;
}
.pagination ul li a:hover {
	background: #7bb2e1;
	color: #fff;
}
.pagination ul li.active a {
	background: #1b4586;
	color: #fff;
}
.pagination ul li.disabled,
.pagination ul li:first-child,
.pagination ul li:nth-child(2),
.pagination ul li:nth-last-of-type(2),
.pagination ul li:last-child {
	display: none;
}


/* SYSTEM MESSAGES */
#system-message-container joomla-alert {
	background: #ffe3e5;
	color: #000;
	margin-top: 4%;
	padding: 15px;
	text-align: center;
	border-radius: 10px;
	font-size: 85%;
}
#system-message-container joomla-alert button {
	float: right;
	background: #00a08f;
	width: 29px;
	padding: 2px 8px 2px;
	border-radius: 50%;
	top: -25px;
	right: -25px;
	position: relative;
	color: #fff;
	font-size: 140%;
	text-decoration: none;
	font: bold normal normal 25px/1 FontAwesome;
	cursor: pointer;
}
#system-message-container joomla-alert button:hover {
	background: #ff964b;
}
#system-message-container joomla-alert div.alert-heading {
	display: none;
}
#system-message-container joomla-alert .alert-message {
	margin-bottom: 5px;
	line-height: 1.4;
}



/* SCROLL TO TOP */
#button_top {
  display: inline-block;
  background-color: #70ace0;
  width: 42px;
  height: 32px;
  padding: 12px 4px 5px;
  text-align: center;
  border-radius: 50px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button_top::after {
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button_top:hover {
  cursor: pointer;
  background-color: #29518c;
}
#button_top:active {
  background-color: #29518c;
}
#button_top.show {
  opacity: 1;
  visibility: visible;
}


/* reCaptcha Overrides */
.grecaptcha-badge {
	opacity: 0;
	right: -300px !important;
}



/* RESPONSIVE ELEMENTS */
@media (max-width:2500px) {
	#home #banner {
		background-size: 1280px;	
	}
}

@media (max-width:2000px) {
	#about-us #banner h1,
	#about-us #banner h2 {
		font-size: 2.7vw;
	}
	#about-us #banner p {
		font-size: 1.7vw;
	}
}

@media (max-width:1900px) {
	#home #banner {
		background-size: 1180px;	
	}
	#about-us #banner {
		background-size: 75%;
	}
}

@media (max-width:1800px) {
	.powered .container {
		max-width: 1300px;
	}
	.powered {
		background-size: 14.5%;
	}
	.powered .item-page {
		background-size: 22%;
	}
	#footer .msg {
		margin-right: 12%;
	}
}
@media (max-width:1700px) {
	#footer .msg {
		margin-right: 9%;
	}
}

@media (max-width:1620px) {
	#header .logo a {
		width: 250px;
		padding-top: 58px;
	}
	#header .mainmenu {
		margin-top: 34px;
	}
	#header .social {
		margin-top: 30px;
	}
	#body-wrapper {
	  margin-top: 163px;
	}
}

@media (max-width:1600px) {
	#home #banner {
		background-size: 1085px;	
	}
	#header .mainmenu li a {
		font-size: 85%;
	}
	.divorcepension {
		background-size: 900px;
	}
	.expertadvice {
		background-position-x: -12%;
	}
	#footer .msg {
		margin-right: 7%
	}
}

@media (max-width:1500px) {
	#header .logo a {
		width: 200px;
		padding-top: 47px;
	}
	#header .mainmenu {
		margin-top: 22px;
		margin-right: 15px;
	}
	#header .mainmenu li a {
		font-size: 88%;
		margin-left: 8px;
	}
	#header .social {
		margin-top: 18px;
	}
	#body-wrapper {
    	margin-top: 152px;
  	}	
}

@media (max-width:1450px) {
	a.btn {
		font-size: 20px;
	}
	h1, h2 {
		font-size: 40px;
	}
	#home #banner {
		background-size: 915px;
	}
	#home #banner h1,
	#home #banner h2 {
		font-size: 3.4vw;
	}
	#home #banner p {
		width: 450px;
		font-size: 2vw;
	}
	#divorce-and-pension-sharing #banner {
		background-size: 82%;
		padding: 11% 0;
	}
	#divorce-and-pension-sharing #banner h1,
	#divorce-and-pension-sharing #banner h2 {
		width: 40%;
		font-size: 50px;
	}
	#pode-reports #banner {
		background-size: 65%;
	}
	#pode-reports #banner h1 {
		font-size: 45px;
	}
	#about-us #banner h1,
	#about-us #banner h2,
	 #about-us #banner p {
		width: 45%;
	}
	#content .contact.padding {
		font-size: 110%;
	}
	.lpc h2 {
		margin-bottom: 45px;
	}
	.pso {
		font-size: 110%;
	}
	.pso h3 {
		font-size: 100%;
	}
	.wpso .para {
		font-size: 90%;
	}
	.pode .para {
		margin-top: 7%;
	}
	.team .item h2 {
		font-size: 100%;
	}
	.team .item h3 {
		font-size: 90%;
	}
	.team .item h4 {
		font-size: 80%;
	}
	.powered .container {
		padding-left: 8%;
		padding-right: 8%;
		font-size: 95%;
		width: 95%;
	}
	#footer .msg {
		width: 38%;
		margin-right: 6%
	}
	#footer .links {
		width: 27%;
		margin-right: 0;
	}
}

@media (max-width:1400px) {
	#header .mainmenu {
		display: none;
	}
	#header .mainmenu li a {
		font-size: 0;
		margin-left: 0;
	}
}

@media (max-width:1320px) {
/*
	#body-wrapper {
		margin-top: 166px;
	}
	#header .logo a {
		width: 260px;
		padding-top: 60px;
	}
	#header .mainmenu {
		margin-top: 36px;
	}
	#header .social {
		margin-top: 30px;
	}
	#header .social li a {
		width: 25px;
		height: 25px;
		background-size: 25px;
		margin-left: 8px;
	}
*/
	.expertadvice {
		background-position-x: -24%;
		background-position-y: 20%
	}
	.divorcepension {
    	background-size: 65%;
  	}
}

@media (max-width:1300px) {
	h1, h2 {
		font-size: 41px;
	}
	.whychoose h3 {
		font-size: 140%;
		margin-bottom: 12px;
	}
	.whychoose li {
		font-size: 80%;
	}
	.powered h3 {
		font-size: 150%;
	}
	#footer .msg {
		margin-right: 5%
	}
	#content .blog {
		margin-top: 220px;
	}
}

@media (max-width:1270px) {
	.image img {
		width: 40%;
	}
	#footer .msg {
		margin-right: 3%;
	}
}

@media (max-width:1200px) {
	#home #banner {
	    background-size: 70%;
	    background-position-x: 130%;
	}
	#home #banner h1,
	#home #banner h2 {
		margin-bottom: 12px;
	}
	#home #banner p {
		width: 430px;
		font-size: 2.4vw;
	}
	#home #banner a.btp {
		margin-top: 5px;
		font-size: 1.6vw;
	}
	#divorce-and-pension-sharing #banner {
		background-position-x: 150%;
	}
	#divorce-and-pension-sharing #banner h1,
	#divorce-and-pension-sharing #banner h2 {
		font-size: 44px;
		width: 420px;
	}
	#about-us #banner {
    	background-size: 85%;
    	background-position-x: 200%;
  	}
	.get-in-touch div.grid.right {
		width: 88%;
	}
	#footer {
		padding: 60px 0 30px;
	}
	#footer .links,
	#footer .address {
		margin-top: 0;
	}
	#footer .msg {
		float: none;
		margin-top: 70px;
		margin-right: 0;
		width: 100%;
	}
	#footer .links {
		width: 47%;
		margin-right: 0;
	}
}

@media (max-width:1150px) {
	.image img {
		margin-top: 4%;
	}
	.expertadvice {
		background-position-x: -40%;
	}
}

@media (max-width:1100px) {
	.wpso {
		text-align: center;
		background-size: 40%;
		background-position-y: 15%;
	}
	.split .image {
		width: 60%;
		margin: 0 auto 8%;
		display: inherit;
	}
	.split .para {
		width: 100%;
		float: none;
	}
	.expertadvice {
		background-position-x: 0%;
		background-position-y: 15%;
	}
	.team .item {
		width: 28%;
		margin-right: 12%;
	}
	.team .item:nth-child(2) {
		margin-right: 0;
	}
}

@media (max-width:1000px) {
	#home #banner {
		background-size: 74%;
	}
	#home #banner h1,
	#home #banner h2 {
		font-size: 3.9vw;
	}
	#home #banner p {
		width: 47%;;
		font-size: 2.5vw;
	}
	#home #banner a.btp {
		font-size: 2.2vw;
	}
	.home p {
		font-size: 110%;
	}
	#about-us #banner {
		background-size: 110%;
		background-position-x: -350%;
	}
	#about-us #banner h1,
	#about-us #banner h2 {
		width: 65%;
		font-size: 4vw;
	}
	 #about-us #banner p {
		 font-size: 2.5vw;
		 width: 55%;
	}
	.podebg {
		background-size: 27%;
	}
	.home.center p {
		font-size: 110%;
	}
	.contact {
		width: 100%;
	}
	.height {
		padding: 25% 0;
	}
	.psow li {
		width: 100%;
	}
	.divorcepension {
		background-size: 72%;
	}
	.divorcepension.padding {
		padding-bottom: 18%;
	}
	.divorcepension .grid {
		width: 100%;
	}
	.divorcepension .grid:first-child {
		margin-bottom: 5%;
		margin-right: 0;
	}
	.image img {
		margin-top: 8%;
	}
	.whychoose li {
		background-size: 100px;
		padding-top: 125px;
	}
	.powered h2 {
		font-size: 40px;
	}
	.powered h3 {
		font-size: 130%;
	}
	.get-in-touch div.grid.header {
		margin-bottom: 20px;
		margin-right: 0;
	}
	.get-in-touch div.grid.header,
	.get-in-touch div.grid.inputs {
		width: 100%;
	}
	.get-in-touch .caption {
		margin-bottom: 20px;
	}
	.get-in-touch div.grid.right {
		width: 92%;
	}
	.get-in-touch .inputs .rsform-block-submit {
		text-align: center;
	}
	#content .blog .item div.item-image,
	#content .blog.item-page div.item-image {
		width: 100%;
		margin-right: 0;
		margin-bottom: 25px;
	}
	#content .blog .item div.item-image + div.full-text {
		width: 100%;
		margin-bottom: 30px;
	}
}

@media (max-width:850px) {
	h1, h2 {
		font-size: 40px;
	}
	a.btn {
		font-size: 20px;
	}
	input[type="text"], input[type="tel"], input[type="email"], input[type="password"], textarea {
		font-size: 100%;
		padding: 10px 15px 12px;
	}
	input[type="submit"], input[type="button"], button {
		font-size: 110%;
	}
	.padding {
		padding-top: 70px;
		padding-bottom: 80px;
	}
	#about-us #banner h1,
	#about-us #banner h2 {
		width: 78%;
		font-size: 4.5vw;
	}
	#about-us #banner p {
		font-size: 3vw;
		width: 60%;
	}
	.divorcepension.padding {
		padding-bottom: 16%;
	}
	.expertadvice {
		background-position-x: 0;
		background-position-y: 8%;
		background-size: 60%;
	}
	.expertadvice li p {
		font-size: 95%;
	}
	.expertadvice li strong {
		display: block;
	}
	.image img {
		margin-top: 0;
		margin-bottom: 2%;
		width: 70%;
	}
	.image .para {
		width: auto;
		margin-left: 0;
	}
	.whychoose h3 {
		font-size: 135%;
	}
	.whychoose li {
		font-size: 75%;
	}
	.lpc li {
		width: 100%;
	}
	.lpc li:first-child {
		margin-right: 0%;
		margin-bottom: 30px;
	}
	.lpc li:last-child {
		margin-left: 0%;
	}
	.team .item {
		width: 40%;
	}
	.team .item:nth-child(2) {
		margin-right: 0;
	}
	.team .item:nth-child(3) {
		margin-right: 10%;
	}
	.get-in-touch .caption {
		font-size: 120%;
	}
	#footer .msg h3 {
		background-size: 250px;
		padding-top: 32px;
		margin-bottom: 20px;
	}
}

@media (max-width:800px) {
	#divorce-and-pension-sharing #banner h1,
	#divorce-and-pension-sharing #banner h2 {
		font-size: 35px;
		width: 330px;
	}
	#pode-reports #banner h1 {
		font-size: 35px;
	}
}

@media (max-width:760px) {
	h1, h2 {
		font-size: 35px;
	}
	.home.center p {
		font-size: 100%;
	}
  	.podebg .para {
  		width: 95%;
	}
	#content .contact.padding {
		font-size: 110%;
	}
	.powered h2 {
		font-size: 34px;
	}
	.powered h3 {
		font-size: 120%;
	}
	.powered .container {
		font-size: 85%;
	}
	.get-in-touch .caption {
		font-size: 110%;
	}
}

@media (max-width:740px) {
	#body-wrapper {
    	margin-top: 196px;
  	}
	#header-top {
		text-align: center;
		padding: 10px 0 18px;
	}
	#header-top .grid {
		vertical-align: top;
		width: 100%;
	}
	#header-top .right {
		float: none;
	}
	#header-top .tel a {
		margin-bottom: 5px;
	}
	#header-top .sfs p {
		line-height: 0.8;
	}
	#about-us #banner {
		background-position-x: -450%;
	}
	#about-us #banner h1,
	#about-us #banner h2 {
		width: 100%;
		font-size: 5.8vw;
		margin-bottom: 10px;
	}
	#about-us #banner p {
		font-size: 4.5vw;
		width: 78%;
	}
	.powered .container {
		width: 98%;
	}
}

@media (max-width:700px) {
	#header-wrapper {
		position: relative;
	}
	#body-wrapper {
		margin-top: 0;
	}
	#home #banner {
		background-size: 91%;
		background-position-x: 350%;
	}
	#home #banner h1,
	#home #banner h2 {
		font-size: 4.5vw;
	}
	#home #banner p {
		font-size: 2.8vw;
	}
	#divorce-and-pension-sharing #banner {
		background-size: 110%;
		background-position-x: -150%;
		background-position-y: top;
		padding: 14% 0;
	}
	#divorce-and-pension-sharing #banner h1,
	#divorce-and-pension-sharing #banner h2 {
	 	width: 60%;
	 	font-size: 5.5vw;
  	}
  	#pode-reports #banner h1 {
    	width: auto;
  	}
	.home.padding {
		padding: 70px 0;
	}
	.divorcepension {
		background-size: 80%;
	}
	.whychoose h3 {
		font-size: 130%;
	}
	.whychoose li {
		width: auto;
		margin-right: 0;
		margin-bottom: 30px;
		font-size: 85%;
	}
	.whychoose li:last-child {
		margin-bottom: 0;
	}
	.get-in-touch div.grid.right {
    	width: 90%;
  	}
	#footer .links,
	#footer .address {
		width: 100%;
	}
	#footer .address {
		float: none;
		margin-top: 20px;
	}
	#footer .address p:first-child {
		margin-bottom: 10px;
	}
	#content .blog {
		margin-top: 50px;
	}
}

@media (max-width:600px) {
	#banner p {
		width: 50%;
		font-size: 3vw;
	}
	#banner a.btp {
		font-size: 2.5vw;
  	}
  	#about-us #banner {
	  	background-image: none;
  	}
  	#about-us #banner h1,
  	#about-us #banner h2 {
	  	font-size: 35px;
	  	margin-bottom: 20px;
  	}
  	#pode-reports #banner h1 {
    	font-size: 25px;
  	}
  	#about-us #banner p {
	  	font-size: 110%;
	  	width: 100%;
  	}
	.get-in-touch div.grid.right {
		width: 85%;
		text-align: left;
	}
	.get-in-touch div.grid.left,
	.get-in-touch div.grid.right {
	  width: 100%;
	  text-align: center;
  	}
  	.split .image {
	  	width: 80%;
  	}
  	.wpso {
	  	background-size: 60%;
	  	background-position-y: 12%;
  	}
  	.height {
		padding: 30% 0;
	}
}

@media (max-width:540px) {
	#pode-reports #banner {
	 	background-size: 83%;
	 	background-position-x: 230%;
  	}
	.team .item {
		width: 100%;
		margin-right: 0 !important;
		margin-bottom: 50px;
	}
	.team .item .item-image {
		width: 80%;
		margin: 0 auto 30px;
	}
	.team .item h2 {
		font-size: 115%;
		margin-bottom: 10px;
	}
	.podebg .para {
		width: 100%;
  	}
}

@media (max-width:520px) {
	#header-top .sfs em {
		font-size: 70%;
		background-size: 30px;
		padding: 5px 0 5px 40px;
	}
}

@media (max-width:500px) {
	#header {
		padding: 15px 0;
	}
	#header .logo a {
		width: 200px;
		padding-top: 46px;
	}
	#header .burger {
		margin-top: 8px;
	}
	#header .social {
		margin-top: 17px;
	}
	#header .social li a {
		margin-left: 8px;
	}
	#home #banner {
    	background-size: 110%;
    	background-position-x: -400%;
    	background-position-y: bottom;
	}
	#home #banner h1,
	#home #banner h2 {
		font-size: 5.8vw;
	}
	#home #banner p {
		font-size: 4.3vw;
		width: 60%;
	}
	#home #banner a.btp {
		font-size: 3vw;
	}
	#divorce-and-pension-sharing #banner {
	 	background-size: 110%;
    	background-position-x: -160%;
  	}
  	#divorce-and-pension-sharing #banner h1,
  	#divorce-and-pension-sharing #banner h2 {
	  	width: 67%;
  	}
	h1, h2 {
		font-size: 35px;
	}
	.lpc h3 {
		font-size: 110%;
	}
  	.wpso {
	  	background-size: 50%;
	  	background-position-y: 9%;
  	}
}

@media (max-width:390px) {
	#header .logo a {
		width: 170px;
		padding-top: 40px;
	}
	#header .social {
		margin-top: 9px;
	}
	#header .social li a {
		margin-left: 5px;
	}
	#header .burger {
		margin-top: 0;
	}
	#divorce-and-pension-sharing #banner {
    	background-size: 115%;
    	background-position-x: -180%;
 	}
 	#divorce-and-pension-sharing #banner h1,
 	#divorce-and-pension-sharing #banner h2 {
	 	font-size: 7vw;
 	}
 	#pode-reports #banner h1 {
    	font-size: 22px;
  	}
}

@media (max-width:350px) {
	#header .logo a {
		width: 150px;
		padding-top: 36px;
	}
	#header .burger {
		margin-top: -1px;
	}
	.sm-btn-113 .menu-icon3 {
		font-size: 66px !important;
	}
	#header .social {
		margin-top: 7px;
	}
	#footer .links, #footer .address {
		font-size: 90%;
	}
}

@media (max-width:315px) {
	#header .logo {
		width: 100%;
		margin-bottom: 5px;
	}
	#home #banner {
		background-image: none;
	}
	#home #banner h1,
	#home #banner h2 {
		font-size: 8vw;
	}
	#home #banner p {
		font-size: 6.5vw;
		width: 100%;
	}
	#home #banner a.btp {
		font-size: 5vw;
	}
	#divorce-and-pension-sharing #banner {
		background-image: none;
	}
	#divorce-and-pension-sharing #banner h1,
	#divorce-and-pension-sharing #banner h2 {
		width: 100%;
		font-size: 9vw;
	}
}




