/*
Table Of Contents
 
 1.) Typography
 2.) Default Styles
 3.) Header - Main
 4.) Content - Main
 5.) Footer - Main
 6.) Inner - Pages

========================================*/

/*
 1.) Typography
----------------------------------------*/
 
.gf-inter { font-family: "Inter", sans-serif;}


/*
 2.) Default Styles
----------------------------------------*/

/* -----------------------------------------------------------
   Modern Global Reset (2025)
----------------------------------------------------------- */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
	-webkit-font-smoothing: antialiased;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
	font-family: "Inter", sans-serif;
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 0px;
	    letter-spacing: 0px;
	color: #1d174f;
	line-height: 23px;	
	background: #f7f8f8;
	margin: 0;
	padding: 0;
}

strong {
    font-weight: 600;
}


/* -----------------------------------------------------------
   Links
----------------------------------------------------------- */

a {
	color: #1d174f;
	text-decoration: none;
	transition: all .25s ease-out;
	cursor: pointer;
}

a:hover,
a:focus,
a.active {
	color: #1a2abd;
	text-decoration: none;
}

a:visited {
	outline: 0;
}

a[href^="mailto:"] {
	word-break: break-all;
}


/* -----------------------------------------------------------
   Typography
----------------------------------------------------------- */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 { 
	font-weight: 500;
	color: #1a2abd;
	padding-bottom: 20px;
}

h1,
.h1 {
	font-size: 60px; 
	line-height: 60px; 
	letter-spacing: 0.04em;
	    letter-spacing: 0px;
}

h2,
.h2 {
	font-size: 46px; 
	line-height: 46px; 
}

h3,
.h3 {
	font-size: 30px;
	line-height: 36px; 
}

h3.special_spacing::before {
  content: "";
  display: block;
  /* Use a negative margin to pull the top space up, effectively moving all spacing downward */
  margin-top: -5px; 
}

h3.thicker {font-weight: 600;
}

h4,
.h4 {
	font-size: 24px;
	line-height: 26px; 
}

h5,
.h5{
	font-size: 20px;
	line-height: 24px;
}

h6,
.h6 {	
	font-size: 18px;
	line-height: 22px;
}

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
	font-weight: inherit;
	color: inherit;
	text-decoration: none;
}

h1 a:hover,
.h1 a:hover,
h2 a:hover,
.h2 a:hover,
h3 a:hover,
.h3 a:hover,
h4 a:hover,
.h4 a:hover,
h5 a:hover,
.h5 a:hover,
h6 a:hover,
.h6 a:hover {
	text-decoration: none;
}

h1:last-child,
.h1:last-child,
h2:last-child,
.h2:last-child,
h3:last-child,
.h3:last-child,
h4:last-child,
.h4:last-child,
h5:last-child,
.h5:last-child,
h6:last-child,
.h6:last-child {
	padding-bottom: 0;
}

p { 
	padding-bottom: 40px;
}

p:last-child {
	padding-bottom: 0;
}

p.special_spacing::before {
  content: "";
  display: block;
  /* Use a negative margin to pull the top space up, effectively moving all spacing downward */
  margin-top: -5px; 
}




/* -----------------------------------------------------------
   Lists
----------------------------------------------------------- */

ul,
ol {
	list-style: none;
}

li {
	position: relative; 
	padding-left: 20px;
	margin-bottom: 18px;
}

li:last-child {
	margin-bottom: 18px;
}

ul:last-child li:last-child,
ol:last-child li:last-child {
	margin-bottom: 0;
}

ul li ul,
ol li ol {
	padding: 5px 0 0 0;
}

ul li:before {	
	content: "";
	width: 4px;
	height: 4px;
	background: #1d174f;
	border-radius: 900px;
	position: absolute;
	top: 10px;
	left: 0;
}


/* Ordered list numbers */
ol {
	counter-reset: item;
}

ol > li {
	counter-increment: item;
	padding-left: 24px;
}

ol > li:before {
	content: counter(item)".";
	font-weight: 600;
	color: #1d174f;
	position: absolute;
	top: 1px;
	left: 0;
	padding: 0;
	margin: 0;
}


/* -----------------------------------------------------------
   Images
----------------------------------------------------------- */

img {
    max-width: 100%;
    height: auto;
    border: 0;
    vertical-align: middle;
}


/* -----------------------------------------------------------
   Form Controls
----------------------------------------------------------- */

textarea,
select,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
	outline: 0; 
}

input,
textarea,
select {
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
	-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s;
}

label {
	width: 100%;
	float: left;
	font-family: "Lato", sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: #ffffff;
	line-height: 32px;
	letter-spacing: normal;
	    letter-spacing: 0px;
	padding: 0 0 10px 0;
	margin: 0;
}

textarea,
select,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	width: 100%;
	height: 60px;
	float: left; 
	font-family: "Inter", sans-serif;
	font-weight: 500;
	font-size: 17px;
	color: #000000;
	line-height: 23px;
	letter-spacing: normal;
	    letter-spacing: 0px;
	background: none;
	border: 1px solid #e4e4e4;
	border-radius: 4px;
	outline: none;
	position: relative;
	padding: 16px 24px;
	margin: 0;
}

textarea {
	height: 112px;
	outline: none;
	resize: none;
}

::-webkit-input-placeholder, 
::-webkit-textarea-placeholder {
	color: #000000;
}

input::-moz-placeholder, 
textarea::-moz-placeholder {
	color: #000000;
}

::-moz-placeholder {
	color: #000000;
}

::-ms-input-placeholder {
	color: #000000;
}


/* -----------------------------------------------------------
   Buttons
----------------------------------------------------------- */

.btn,
input[type="button"],
input[type="submit"] {
	width: auto;
	height: auto;
	float: none;
	display: inline-block;
	vertical-align: middle;
	font-family: "Inter", sans-serif;
	font-weight: 500;
	font-size: 17px;
	color: #ffffff;
	line-height: 23px;
	text-align: center;
	text-decoration: none;
	text-shadow: none;
	white-space: normal;
	background: #1d174f;
	border: none;
	box-shadow: none;
	border-radius: 4px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	cursor: pointer;
	outline: 0;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	padding: 16px 32px;
	margin: 0;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn.active,
.btn.active:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="button"]:active:focus,
input[type="button"].active,
input[type="button"].active:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="submit"]:active:focus,
input[type="submit"].active,
input[type="submit"].active:focus,
.btn:not(:disabled):not(.disabled).active {
	color: #ffffff;
	background: #1a2abd;
	outline: 0;
}

.disabled {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	opacity: .65;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
	opacity: .65;
}

a.btn.disabled,
fieldset[disabled] a.btn {
	pointer-events: none;
}

.btn-out { 
	width: 100%; 
	float: none; 
	display: inline-block; 
	vertical-align: top;
}


/* -----------------------------------------------------------
   Swiper - Navigation
----------------------------------------------------------- */

.swiper-navigation { 	
	display: flex;
	flex-wrap: wrap;
	position: absolute; 
	bottom: 0; 
	right: 0; 
	z-index: 10001;
	margin: 0 88px 0 -5px;
}

.swiper-navigation button {
	width: 34px; 
	height: 34px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	vertical-align: top;
	font-weight: inherit;
	font-size: 20px;
	color: #1a2abd;
	line-height: 1em;
	text-decoration: none;
	text-align: center;
	background: #a3d9ff; 
	border: none;
	box-shadow: none;
	border-radius: 360px;
	cursor: pointer;
	z-index: 5;
	outline: 0;
	padding: 0;
	margin: 0 5px;
}

.swiper-navigation button img { 
	width: 18px;
}

.swiper-navigation .swiper-button-disabled {
	cursor: not-allowed;
	pointer-events: none; 
	opacity: 1; 
	background:  #eaecec;
}


/* Swiper - Pagination */
.swiper-pagination { 
	display: flex;
	flex-wrap: wrap; 
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 13px!important;
	left: 0!important; 
	margin: 0 -4px!important;
}

.swiper-pagination-bullet {
	width: 6px;
	height: 8px;	
	transform: none;
	background: #a3d9ff; 
	border-radius: 0; 
	opacity: 1; 
	margin: 0 4px!important;
}

.swiper-pagination-bullet-active {
	background: #1a2abd; 
}


/*= Container - Main
=======================================================*/
.container-main {
	width: 100%;
	min-height: 100vh;
	float: left;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.container {
	width: 100%;
	max-width: 1200px;
	padding: 0 30px;
	margin: 0 auto;
}

@media (max-width: 767px) {
	
	h3.special_spacing::before {
  content: "";
  display: block;
  /* Use a negative margin to pull the top space up, effectively moving all spacing downward */
  margin-top: 0px; 
}
	p.special_spacing::before {
  content: "";
  display: block;
  /* Use a negative margin to pull the top space up, effectively moving all spacing downward */
  margin-top: 0px; 
}
	
	
.container {
	max-width: 600px;
	padding: 0 25px;
}
	
	.swiper-navigation { 	
	margin: 0 -5px;
}
}


/* Hidden */
.hidden {
	width: 1px;
	height: 1px;
	clip: rect(0,0,0,0);	
	overflow: hidden;	
	position: absolute;
	padding: 0;
	margin: -1px;
}


/* Read - More */
.read-more {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin: 10px 0 0 0;
}

.read-more a,
.read-more .a {
	float: none;
	display: inline-block;
	vertical-align: top;
	font-weight: 400;
	    font-size: 15px;
    color: #1d174f;
    line-height: 23px;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: relative;
	z-index: 1;
}

.read-more a:before,
.read-more .a:before {
	content: "";
	width: 100%;
	height: 1px;
	float: left;
	background: rgba(29, 23, 79, 0.5);
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}

.read-more a:hover,
.read-more a:focus,
.read-more a:active,
a.box:hover .read-more .a,
a.box:focus .read-more .a,
a.box:active .read-more .a {
	text-decoration: none;
}

.read-more a:hover:before,
.read-more a:focus:before,
.read-more a:active:before,
a.box:hover .read-more .a:before,
a.box:focus .read-more .a:before,
a.box:active .read-more .a:before {
	width: 0;
}


/* Accordation - List */
.accordation-list {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.accordation-list .accord-item {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #1a2abd;
	position: relative;
}

.accordation-list .accord-item .accord-link {
	width: 100%;
	float: left; 
	font-weight: 500;
	font-size: 17px;
	color: #1a2abd;
	line-height: 23px;
	letter-spacing: 0.02em;
	    letter-spacing: 0px;
	cursor: pointer;
	position: relative;
	padding: 12px 48px 10px 0;
}

.accordation-list .accord-item .accord-link::before {
	content: ""; 
	width: 25px; 
	height: 25px; 
	float: left; 
	background: url(../img/plus-blue.svg) no-repeat center center; 
	background-size: 100% auto;
	position: absolute;
	top: 12px;
	right: 24px; 
	z-index: 3;
}

.accordation-list .accord-item .accord-link .hide-txt { 
	min-height: 50px;
	float: none; 
	display: inline-block; 
	vertical-align: top; 
	position: relative; 
	z-index: 1;
}

.accordation-list .accord-item .accord-link.active .hide-txt { 
	width: 34%; 
	padding-right: 24px;
}

.accordation-list .accord-item .accord-link.active::before {
	background-image: url(../img/minus-blue.svg); 
}

.accordation-list .accord-item .accord-cont {
	width: 66%;
	float: left;
	display: none;
	padding: 0;
	margin: 0; 
	position: relative; 
	top: -58px; 
	left: 34%; 
}

.accordation-list .accord-item .accord-cont .aside {
	width: 100%;
}

.accordation-list .accord-item .accord-cont .aside p {
	position: relative;
	padding-bottom: 10px;
}

.accordation-list .accord-item .accord-cont .aside p:last-child {
	padding-bottom: 0;
}

.accordation-list .accord-item .accord-cont .aside p a {
	display: inline;
	color: #1d174f;
	text-decoration: none;
	border-bottom: 1px solid #1d174f;
}

.accordation-list .accord-item .accord-cont .aside p a:hover,
.accordation-list .accord-item .accord-cont .aside p a:focus,
.accordation-list .accord-item .accord-cont .aside p a:active {
	color: #1a2abd;
	border-bottom-color: #1a2abd;
}


.accordation-list .accord-item .accord-cont .aside .txt.alt p {
	padding-left: 36px;
}

.accordation-list .accord-item .accord-cont .aside .txt.alt .txt-l {
	font-weight: 700;
	position: absolute;
	top: 0;
	left: 0;
}

.accordation-list .accord-item .accord-cont .aside .sub-heading {
	width: 100%;
	font-size: 9px;
	color: #1a2abd;
	line-height: 13px;
	letter-spacing: 0.02em;
	 
	overflow: hidden;
	padding-bottom: 8px;
}

.accordation-list .accord-item .accord-cont .aside .sub-heading:last-child {
	padding-bottom: 0;
}

.accordation-list .accord-item .accord-cont .aside .txt {
	width: 100%;
	overflow: hidden;
	padding-bottom: 32px;
}

.accordation-list .accord-item .accord-cont .aside .txt:last-child {
	padding-bottom: 0;
}

.accordation-list .accord-item .accord-cont .aside .txt-max {
	width: 100%;
	overflow: hidden;
	padding: 0 100px 0 0;
}

@media (max-width: 767px) {
	
	li#menu-item-95 a {
color: #a3d9ff;
} 

li#menu-item-95 ul li a {
color: #ffffff;
} 
	
	    .header-main .main-menu .nav-bar nav ul li#menu-item-95 {
        width: 100%;
        border-top: 1px solid #a3d9ff;
	}
	
.accordation-list .accord-item .accord-link {
	padding: 12px 48px 34px 0;
}

.accordation-list .accord-item .accord-link::before {
	right: 0;
}

.accordation-list .accord-item .accord-link.active .hide-txt { 
	width: 100%; 
	padding-right: 48px;
}

.accordation-list .accord-item .accord-link .hide-txt { 
	min-height: auto;
	float: none; 
	display: inline-block; 
	vertical-align: top; 
	position: relative; 
	z-index: 1;
}

.accordation-list .accord-item .accord-cont {
	width: 100%;
	top: -12px; 
	left: 0; 
	padding: 0 0 28px 0;
}

.accordation-list .accord-item .accord-cont .aside {
	width: 100%;
}

.accordation-list .accord-item .accord-cont .aside .txt-max {
	padding: 0;
}
}


/* 
 3.) Header - Main
----------------------------------------*/

.header-main {
	width: 100%;
	height: 125px;
	float: left;
	background: #f7f7f7;
	position: relative;
	z-index: 5;
}

.header-main .logo {
	width: 680px;
	height: 55px;
	float: left;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 35px 0 0 0;
}

.header-main .logo img {
	width: 100%;
	height: 55px;
}

.header-main .main-menu {
	float: right;
	margin: 47px 0 0 0;
}

.header-main .main-menu .nav-bar {
	float: left;
}

.header-main .main-menu .nav-bar .logo {
	display: none;
}

.header-main .main-menu .nav-bar nav {
	float: left;
}

.header-main .main-menu .nav-bar nav ul {
	float: left;
	padding: 0;
	margin: 0 -12px;
}

.header-main .main-menu .nav-bar nav ul li {
	float: left;
	padding: 0;
	margin: 0 12px;
}

.header-main .main-menu .nav-bar nav ul li:before {
	display: none;
}

.header-main .main-menu .nav-bar nav ul li a {
	height: 50px;
	float: left;
	font-size: 18px;
	color: #1a2abd;
	line-height: 50px;
	text-decoration: none;
	position: relative;
}

.header-main .main-menu .nav-bar nav ul li a:hover,
.header-main .main-menu .nav-bar nav ul li a:focus,
.header-main .main-menu .nav-bar nav ul li.active a {
	color: #1d174f;
}

.header-main .main-menu .nav-bar nav ul li ul {
	width: 220px;
	float: left;
	background: #f7f7f7;
	position: absolute;
	top: 35px;
	left: -12px;
	z-index: 5;
	padding: 12px 12px;
	margin: 0;
}

.header-main .main-menu .nav-bar nav ul li ul li { 
	width: 100%; 
	padding: 0; 
	margin: 0;
}

.header-main .main-menu .nav-bar nav ul li ul li a { 
	height: auto; 	
	font-size: 17px;
	color: #1d174f;
	line-height: 23px;
	padding: 0;
}

.header-main .main-menu .nav-bar nav ul li ul li a:after { 
	display: none;
}

.header-main .main-menu .nav-bar nav ul li ul li a:hover,
.header-main .main-menu .nav-bar nav ul li ul li a:focus,
.header-main .main-menu .nav-bar nav ul li ul li a:active {
	color: #1a2abd;
}

.header-main .main-menu .nav-bar .menu-close {
	width: 26px;
	height: 26px;
	display: none;
	cursor: pointer;
	position: absolute;
	top: 38px;
	right: 30px;
	z-index: 5;
}

.header-main .main-menu .nav-bar .menu-close button {
	width: 100%;
	height: 100%;
	float: left;
	background: url(../img/plus-white.svg) no-repeat center center;
	background-size: 100% auto;
	border: none;
	border-radius: 0;
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
	transform: rotate3d(0, 0, 1, 45deg);
	padding: 0;
	margin: 0;
}

.header-main .menu-btn {
	float: left;
	display: none;
	cursor: pointer;
	z-index: 5;
	position: absolute;
	top: 40px;
	right: 30px;
}

.header-main .menu-btn .icon-bar {
	width: 100%;
	float: right;
	font-size: 15px;
	color: #1d174f;
	line-height: 22px;
	text-transform: uppercase;
	    letter-spacing: 0.05em;
	    
	text-decoration: none;
	position: relative;
}

@media (max-width: 1199px) {
.header-main {
	height: 100px;
}

.header-main .logo {
	width: 500px;
	height: 40px;
	margin: 30px 0 0 0;
}

.header-main .logo img {
	height: 40px;
}

.header-main .main-menu {
	margin: 30px 0 0 0;
}
}

@media (min-width: 992px) {
.header-main .main-menu .nav-bar nav ul li.child a {
	padding-right: 20px;
}

.header-main .main-menu .nav-bar nav ul li.child a:after {
	content: ""; 
	width: 12px; 
	height: 8px; 
	float: left; 
	background: url(../img/arrow-down-blue.svg) no-repeat center center; 
	background-size: 12px auto;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	margin-top: 2px;
}

.header-main .main-menu .nav-bar nav ul li a:hover:after,
.header-main .main-menu .nav-bar nav ul li a:focus:after,
.header-main .main-menu .nav-bar nav ul li.active a:after {
	background-image: url(../img/arrow-down-navy.svg); 
}

.header-main .main-menu .nav-bar nav ul li.child:hover > a {
	color: #1d174f;
}

.header-main .main-menu .nav-bar nav ul li.child:hover > a:after {
	background-image: url(../img/arrow-down-navy.svg); 
}

.header-main .main-menu .nav-bar nav ul li ul {
	transition: all .2s ease-in-out;	
	transform-origin: left top;	
	transform: scaleY(0);
	visibility: hidden;
	opacity: 0;
	display: block!important;
}

.header-main .main-menu .nav-bar nav ul li:hover > ul {
	transform: scaleY(1);
	visibility: visible;
	opacity: 1;	 
}
}

@media (max-width: 991px) {
.hidden-body {
	overflow: hidden;
}

.header-main .main-menu {
	margin: 0;
}

.header-main .main-menu .nav-bar {
	width: 100%;
	height: 100%;
	float: left;
	background: #1d174f;
	;
	overflow: auto;
	overflow-x: hidden;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
	display: none;
	        padding: 0 25px;
	margin: 0;
}

.header-main .main-menu .nav-bar .logo {
	display: inline-block;
	margin-bottom: 60px;
}

.header-main .main-menu .nav-bar nav {
	width: 100%;
	padding: 0;
}

.header-main .main-menu .nav-bar nav ul {
	width: 100%;
	margin: 0;
}

.header-main .main-menu .nav-bar nav ul li {
	width: 100%;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	margin: 0;
}

.header-main .main-menu .nav-bar nav ul li a {
	width: 100%;
	height: auto;
	font-size: 24px;
	color: #ffffff;
	line-height: 30px;
	letter-spacing: 0.02em;
	    letter-spacing: 0px;
	padding: 10px 0 25px 0;
}

.header-main .main-menu .nav-bar nav ul li:hover > a,
.header-main .main-menu .nav-bar nav ul li a:focus,
.header-main .main-menu .nav-bar nav ul li.active a {
	color: #a3d9ff;
}

.header-main .main-menu .nav-bar nav ul li ul {
	width: 100%;
	background: none;
	position: relative;
	top: -18px;
	left: 0;
	padding: 0 0 20px 15px;
	margin: 0;
}

.header-main .main-menu .nav-bar nav ul li ul li { 
	border: none;
}

.header-main .main-menu .nav-bar nav ul li ul li a { 
	font-size: 24px;
	color: #ffffff;
	line-height: 37px;
}

.header-main .main-menu .nav-bar nav ul li ul li:hover > a,
.header-main .main-menu .nav-bar nav ul li ul li a:focus,
.header-main .main-menu .nav-bar nav ul li ul li a:active {
	color: #a3d9ff;
}

.header-main .main-menu .nav-bar .menu-close {
	display: inline-block;
}

.header-main .menu-btn {
	display: inline-block;
}
}

@media (max-width: 767px) {
.header-main {
	height: 70px;
}

.header-main .container {
	max-width: 100%;
}

.header-main .logo {
	width: 232px;
	height: 20px;
	margin: 25px 0 0 0;
}

.header-main .logo img {
	height: 20px;
}

.header-main .main-menu {
	margin: 30px 0 0 0;
}

.header-main .main-menu .nav-bar .logo {
	margin-bottom: 45px;
}

.header-main .menu-btn {
	top: 28px;
	right: 25px;
}

.header-main .main-menu .nav-bar .menu-close {
	width: 22px;
	height: 22px;
	top: 26px;
	right: 25px;
}
}
@media (max-width: 340px) {
    .header-main .logo {
        width: 175px;
}
}


/* 
 4.) Content - Main
----------------------------------------*/

.content-main {
	width: 100%;
	float: left;
	flex: 1 0 auto;
}


/* Hero - Main */
.hero-main {
	width: 100%;
	background: url(https://stg-presidiolawfirm-presidiodev.kinsta.cloud/img/home_hero.jpg);
	min-height: 605px;
	overflow: hidden;
	position: relative;
	background-size: cover;
    background-position: center bottom;
}

@media (max-width: 767px) {
	.hero-main {
		width: 100%;
		background: url(/wp-content/uploads/2026/01/home_hero-mobile.jpg);
		min-height: 605px;
		overflow: hidden;
		position: relative;
		background-size: cover;
		background-position: center bottom;
	}
}

.hero-main .figure {
	width: 100.50%;
	height: 100%;
	text-align: center;
	overflow: hidden;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.hero-main .figure img {
	width: auto;
	max-width: none;
	min-width: 100%;
	min-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.hero-main .hero-right {
	width: 68.42%;
	height: 100%;
	float: left;
	position: absolute;
	top: 0;
	right: 0;
	overflow: hidden;
}

.hero-main .hero-left {
	width: 31.58%;
	height: 100%;
	float: left;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}

.hero-main .banner-cont {
	width: 100%;
	height: 100%;
	color: #ffffff;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	position: absolute;
	top: 0;
	left: 0;
}

.hero-main .banner-cont h1,
.hero-main .banner-cont .h1,
.hero-main .banner-cont h2,
.hero-main .banner-cont .h2,
.hero-main .banner-cont h3,
.hero-main .banner-cont .h3,
.hero-main .banner-cont h4,
.hero-main .banner-cont .h4 {
	color: inherit;
}

.hero-main .banner-cont .aside {
	width: 100%;
	overflow: hidden;
	padding: 0 0 30px 0;
}

@media (max-width: 1199px) {
.hero-main {
	min-height: 500px;
}

.hero-main .hero-right {
	width: 57.85%;
}

.hero-main .hero-left {
	width: 42.15%;
}
}

@media (max-width: 767px) {
.hero-main {
	min-height: 190px;
}

.hero-main .banner-cont {
	align-items: flex-start;
}

.hero-main .banner-cont h1,
.hero-main .banner-cont .h1 {
	font-size: 21px;
	line-height: 22px;
}

.hero-main .banner-cont .aside {
	padding: 15px 0;
}
}


/* Welcome - Cont */
.welcome-cont {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 40px 0 80px 0;
}

.welcome-cont .top-cont {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top; 
	font-weight: 500;
	font-size: 24px;
	line-height: 29px;
	letter-spacing: 0.02em;
	    letter-spacing: 0px;
	padding-bottom: 60px;
}

.welcome-cont .top-cont:last-child {
	padding-bottom: 0;
}

.welcome-cont .top-cont .txt-max {
	width: 100%;
	max-width: 735px;
	float: left;
}

.welcome-cont .practice-areas {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #1a2abd;
	padding: 12px 0 0 0;
}

.welcome-cont .practice-areas h4,
.welcome-cont .practice-areas .h4 {
	width: 34%;
	font-size: 17px;
	line-height: 23px;
	letter-spacing: 0.02em;
	    letter-spacing: 0px;
	padding: 0 30px 0 0;
}

.welcome-cont .practice-areas .list-wrap {
	width: 66%;
	font-size: 17px;
	color: #000000;
	line-height: 23px;
	letter-spacing: 0.02em;
	    letter-spacing: 0px;
}

.welcome-cont .practice-areas .list-wrap .aside {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -50px;
}

.welcome-cont .practice-areas .list-wrap .aside ul {
	width: 33.33333333333333%;
	padding: 0 50px;
	margin: 0;
}

.welcome-cont .practice-areas .list-wrap .aside ul li {
	width: 100%;
	padding: 0 0 8px 0;
	margin: 0;
}

.welcome-cont .practice-areas .list-wrap .aside ul li::before {
	display: none;
}

.welcome-cont .practice-areas .list-wrap .aside ul li:last-child {
	padding-bottom: 0;
}

.welcome-cont .practice-areas .list-wrap .aside ul li a { 
	font-weight: 500;
	color: #000000;
	text-decoration: none;
}

.welcome-cont .practice-areas .list-wrap .aside ul li a:hover,
.welcome-cont .practice-areas .list-wrap .aside ul li a:focus,
.welcome-cont .practice-areas .list-wrap .aside ul li a:active {
	color: #1a2abd;
}

@media (max-width: 1199px) {
.welcome-cont .practice-areas .list-wrap .aside ul {
	width: 50%;
}
}

@media (max-width: 767px) {
.welcome-cont {
	padding: 20px 0 60px 0;
}

.welcome-cont .top-cont {
	font-size: 14px;
	line-height: 18px;
	letter-spacing: 0.01em;
	    letter-spacing: 0px;
	padding-bottom: 40px;
}

.welcome-cont .top-cont .txt-max {
	max-width: 100%;
}

.welcome-cont .practice-areas h4,
.welcome-cont .practice-areas .h4 {
	width: 100%;
	padding: 0 0 26px 0;
}

.welcome-cont .practice-areas h4:last-child,
.welcome-cont .practice-areas .h4:last-child {
	padding-bottom: 0;
}

.welcome-cont .practice-areas .list-wrap {
	width: 100%;
}

.welcome-cont .practice-areas .list-wrap .aside {
	margin: 0;
}

.welcome-cont .practice-areas .list-wrap .aside ul {
	width: 100%;
	padding: 0 0 8px 0;
}

.welcome-cont .practice-areas .list-wrap .aside ul:last-child {
	padding-bottom: 0;
}
}


/* Split - Cont */
.split-cont {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.split-cont .box {
	display: flex;
	flex-wrap: wrap;
	background: #eaecec;
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 40px 30px 80px 30px;
}

.split-cont .box::before {
	content: "";
	width: 680px;
	height: 1000px;
	float: left;
	background: url(../img/plf-symbol-white.svg) no-repeat bottom center;
	background-size: 100% auto;
	opacity: 0.3;
	position: absolute;
	bottom: -80px;
	right: 0; z-index: -1;
}

.split-cont .box h3,
.split-cont .box .h3 {
	width: 33.15%;
	color: #1d174f;
	padding: 0 30px 0 0;
}

.split-cont .box .aside {
	width: 66.15%;
}

.split-cont .box .aside ul {
	width: 100%;
	max-width: 655px;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0;
}

.split-cont .box .aside ul li {
	width: 100%; 
	font-weight: 500;
	font-size: 21px;
	line-height: 29px;
	letter-spacing: 0.02em;
	    letter-spacing: 0px;
	border-top: 1px solid #1d174f;
	padding: 15px 0;
	margin: 0;
}

.split-cont .box .aside ul li::before {
	display: none;
}

.split-cont .box .aside ul li:last-child {
	padding-bottom: 0;
}

@media (max-width: 1199px) {
.split-cont .box::before {
	width: 560px;
	bottom: -60px;
}
}

@media (max-width: 767px) {
.split-cont .container {
	padding: 0;
}

.split-cont .box {
	padding: 40px 25px 60px 25px;
}

.split-cont .box::before {
	bottom: 25px;
	right: auto;
	left: -10px;
}

.split-cont .box h3,
.split-cont .box .h3 {
	width: 100%;
	padding: 0 0 36px 0;
}

.split-cont .box .aside {
	width: 100%;
}

.split-cont .box .aside ul {
	max-width: 100%;
	padding: 0;
	margin: 0;
}

.split-cont .box .aside ul li {
	width: 100%;
	font-size: 18px;
	line-height: 25px;
	letter-spacing: 0.01em;
	    letter-spacing: 0px;
	padding: 20px 0 10px 0;
}

.split-cont .box .aside ul li::before {
	display: none;
}

.split-cont .box .aside ul li:last-child {
	padding-bottom: 0;
}
}


/* Engagements - Slider */
.engagements-slider {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 50px 0 60px 0;
}

.engagements-slider h4,
.engagements-slider .h4 {
	font-size: 17px;
	line-height: 23px;
	border-top: 1px solid #1a2abd;
	padding: 12px 0 30px 0;
}

.engagements-slider .item {
	width: 100%;
	height: 100%;
	float: left;
	background: #a3d9ff url(../img/pattern-1.png) repeat center center;
	padding: 16px 16px;
}

.engagements-slider .item .sub-heading {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top; font-weight: 500;
	font-size: 17px;
	color: #1a2abd;
	line-height: 23px;
	letter-spacing: 0.01em;
	    letter-spacing: 0px;
	border-bottom: 1px solid #1d174f;
	padding: 0 0 10px 0;
	margin: 0 0 10px 0;
}

.engagements-slider .item h3,
.engagements-slider .item .h3 {
	font-size: 26px;
	color: #1d174f;
	line-height: 26px;
	letter-spacing: 0.02em;
	    letter-spacing: 0px;
	padding-bottom: 30px;
}

.engagements-slider .item h3:last-child,
.engagements-slider .item .h3:last-child {
	padding-bottom: 0;
}

.engagements-slider .swiper {
	padding: 0 0 58px 0;
}

.engagements-slider .swiper-slide {
	height: auto;
}

.engagements-slider .swiper-pagination { 
	padding: 0 80px;
}

@media (max-width: 767px) {
.engagements-slider {
	padding: 40px 0 50px 0;
}

.engagements-slider .swiper-slide {
	width: 265px;
}

.engagements-slider .swiper {
	overflow: visible; 
}

.engagements-slider .swiper-pagination { 
	justify-content: left; 
	padding: 0 80px 0 0;
}
}


/* Bottom - Slider */
.bottom-slider {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	background: #eaecec;
	padding: 25px 0 60px 0;
	margin-bottom: 40px;
}

.bottom-slider .item {
	width: 100%;
	height: 100%;
	float: left;
	background: #ffffff;
	padding: 36px 36px;
}

.bottom-slider .item h3,
.bottom-slider .item .h3 {
	width: 51.15%; 
	font-weight: 600;
	padding: 0 35px 0 0;
}

.bottom-slider .item h3:last-child,
.bottom-slider .item .h3:last-child {
	padding-bottom: 0;
}

.bottom-slider .item .aside {
	    width: 48.85%;
    font-size: 15px;
    color: #1d174f;
    line-height: 23px;
}

.bottom-slider .item .aside p {
	padding-bottom: 36px;
}

.bottom-slider .item .aside p:last-child {
	padding-bottom: 0;
}

.bottom-slider .item .aside .txt-max {
	width: 100%;
	max-width: 375px;
	float: left;
}

.bottom-slider .item .aside-wrap {
	display: flex;
	flex-wrap: wrap;
}

.bottom-slider .swiper {
	overflow: visible; 
	padding: 0 0 58px 0;
}

.bottom-slider .swiper-slide {
	width: 940px; 
	height: auto;
}

.bottom-slider .swiper-navigation button {
	background: #ffffff;
}

.bottom-slider .swiper-navigation .swiper-button-disabled {
	background: #f7f7f7;
}

.bottom-slider .swiper-pagination { 
	padding: 0 80px;
}

.bottom-slider .swiper-pagination-bullet {
	background: #ffffff;
}

.bottom-slider .swiper-pagination-bullet-active {
	background: #1a2abd;
}

@media (max-width: 1199px) {
.bottom-slider .swiper-slide {
	width: 860px;
}
}

@media (max-width: 992px) {
.bottom-slider .swiper-slide {
	width: 680px;
}
}

@media (max-width: 767px) {
.bottom-slider {
	padding: 25px 0 60px 0;
	margin: 0;
}

.bottom-slider .item {
	padding: 32px 16px;
}

.bottom-slider .item h3,
.bottom-slider .item .h3 {
	width: 100%;
	font-size: 24px;
	line-height: 28px;
	padding: 0 30% 18px 0;
}

.bottom-slider .item .aside {
	width: 100%;
	font-size: 15px;
	line-height: 23px;
}

.bottom-slider .item .aside p {
	padding-bottom: 28px;
}

.bottom-slider .item .aside p:last-child {
	padding-bottom: 0;
}

.bottom-slider .swiper-slide {
	width: 265px;
}

.bottom-slider .swiper-pagination { 
	display: none; 
	padding: 0;
}

.bottom-slider .swiper-pagination { 
	justify-content: flex-start;

}
}


/* 
 5.) Footer - Main
----------------------------------------*/

.footer-main {
	width: 100%;
	float: left;
	flex-shrink: 0;
	background: #1d174f  url(../img/pattern-2.png) repeat center center;
	padding: 25px 0 45px 0;
}

.footer-main .pre-footer {
	min-height: 200px;
	display: flex;
	flex-wrap: wrap;
	padding: 0 0 60px 0;
}

.footer-main .pre-footer .logo {
	width: 50px;
	position: relative;
	z-index: 1;
	margin: 0 -50px 0 0;
}

.footer-main .pre-footer .logo img {
	width: 100%;
}

.footer-main .pre-footer .address-block {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	color: #ffffff;
	padding: 0 0 0 98px;
}

.footer-main .pre-footer .address-block .inner-cont {
	width: 100%;
	max-width: 640px;
	float: left;
}

.footer-main .pre-footer .address-block .article {
	width: 28.70%;
	padding: 0 15px 30px 15px;
}

.footer-main .pre-footer .address-block .article p a {
	color: #ffffff;
	text-decoration: none;
}

.footer-main .pre-footer .address-block .article p a:hover,
.footer-main .pre-footer .address-block .article p a:focus,
.footer-main .pre-footer .address-block .article p a:active {
	color: #a3d9ff;
}

.footer-main .pre-footer .address-block .article:first-child {
	width: 42.60%;
}

.footer-main .pre-footer .address-block .article-wrap {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px -30px -15px;
}

.footer-main .copyrights {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	color: #ffffff;
	padding: 0 0 0 98px;
}

.footer-main .copyrights .top-txt {
	font-size: 9px;
	color: #ffffff;
	line-height: 13px;
	letter-spacing: 0.02em;
	border-bottom: 1px solid rgba(163, 217, 255, 0.5);
	padding-bottom: 12px;
	margin-bottom: 12px;
}

.footer-main .copyrights .top-txt a {
	color: #ffffff;
	text-decoration: none;
}

.footer-main .copyrights .top-txt a:hover,
.footer-main .copyrights .top-txt a:focus,
.footer-main .copyrights .top-txt a:active {
	color: #a3d9ff;
}

.footer-main .copyrights .btm-txt {
	display: flex;
	flex-wrap: wrap;
	font-size: 9px;
	color: #a3d9ff;
	line-height: 13px;
	letter-spacing: 0.02em;
	    letter-spacing: 0px;
	margin: 0 -15px -15px -15px;
}

.footer-main .copyrights .btm-txt p {
	width: 27.25%;
	padding: 0 15px 15px 15px;
}

.footer-main .copyrights .btm-txt p.no_left_padding {
	padding: 0 15px 15px 0px;
}




.footer-main .copyrights .btm-txt p a {
	color: #a3d9ff;
	text-decoration: none;
}

.footer-main .copyrights .btm-txt p a:hover,
.footer-main .copyrights .btm-txt p a:focus,
.footer-main .copyrights .btm-txt p a:active {
	color: #ffffff;
}

.footer-main .copyrights .btm-txt p:nth-child(2) {
	width: 35.90%;
}

.footer-main .copyrights .btm-txt p:nth-child(2) {
	width: 36.85%;
}

@media (max-width: 767px) {
.footer-main {
	padding: 30px 0;
}

.footer-main .pre-footer {
	min-height: inherit;
	padding: 0 0 50px 0;
}

.footer-main .pre-footer .address-block {
	padding: 0 0 0 75px;
}

.footer-main .pre-footer .address-block .inner-cont {
	max-width: 100%;
}

.footer-main .pre-footer .address-block .article {
	width: 100%;
	padding: 0 0 20px 0;
}

.footer-main .pre-footer .address-block .article:first-child {
	width: 100%;
}

.footer-main .pre-footer .address-block .article-wrap {
	margin: 0 0 -20px 0;
}

.footer-main .copyrights {
	padding: 0;
}

.footer-main .copyrights .btm-txt {
	margin: 0 0 -8px 0;
}

.footer-main .copyrights .btm-txt p {
	width: 100%;
	padding: 0 0 8px 0;
}
	.footer-main .copyrights .btm-txt p.no_left_padding {
	padding: 0 0 8px 0;
}

.footer-main .copyrights .btm-txt p:first-child {
	padding-bottom: 0;
}

.footer-main .copyrights .btm-txt p:nth-child(2) {
	width: 100%;
}

.footer-main .copyrights .btm-txt p:nth-child(2) {
	width: 100%
}
}


/* 
 6.) Inner - Pages
----------------------------------------*/

/* -----------------------------------------------------------
   Page 2
----------------------------------------------------------- */

/*  Split - Cont */
.split-cont2 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 100px 0;
}

.split-cont2 .box {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -20px -12px;
}

.split-cont2 .box .left-heading {
	width: 33.33333333333333%;
	padding: 0 12px 20px 12px;
}

.split-cont2 .box .left-heading h3,
.split-cont2 .box .left-heading .h3 {
	width: 100%;
	max-width: 300px;
	font-size: 24px;
	line-height: 29px;
	letter-spacing: 0.02em;
	    letter-spacing: 0px;
	overflow: hidden;
}

.split-cont2 .box .aside {
	width: 66.66666666666667%;
	padding: 0 12px 20px 12px;
}

.split-cont2 .box .aside .txt-max {
	width: 100%;
	max-width: 560px;
	float: left;
}

@media (max-width: 1199px) {
.split-cont2 {
	padding: 80px 0;
}
}

@media (max-width: 767px) {
.split-cont2 {
	padding: 40px 0;
}

.split-cont2 .box .left-heading {
	width: 100%;
}

.split-cont2 .box .left-heading h3,
.split-cont2 .box .left-heading .h3 {
	max-width: 100%;
}

.split-cont2 .box .aside {
	width: 100%;
}

.split-cont2 .box .aside .txt-max {
	max-width: 100%;
}
}


/*  Split - Cont */
.split-cont3 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	background: #ffffff;
	padding: 70px 0 100px 0;
}

.split-cont3 .box {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -50px -12px;
}

.split-cont3 .box .left-heading {
	width: 33.33333333333333%;
	padding: 0 12px 50px 12px;
}

.split-cont3 .box .left-heading h3,
.split-cont3 .box .left-heading .h3 {
	width: 100%;
	max-width: 300px;
	font-size: 24px;
	color: #1d174f;
	line-height: 29px;
	letter-spacing: 0.02em;
	    letter-spacing: 0px;
	overflow: hidden;
}

.split-cont3 .box .aside {
	width: 66.66666666666667%;
    padding: 0 12px 65px 12px;
}

.split-cont3 .box .aside ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -55px -12px;
}

.split-cont3 .box .aside ul li {
	width: 50%;
	font-weight: 500;
	font-size: 17px;
	line-height: 23px;
	padding: 0 12px 55px 12px;
	margin: 0;
}

.split-cont3 .box .aside ul li::before {
	display: none;
}

.split-cont3 .box .aside ul li a {
	width: 100%;
	float: left;
	border-top: 1px solid #1d174f;
	padding: 10px 0 0 0;
}

@media (max-width: 1199px) {
.split-cont3 {
	padding: 60px 0 80px 0;
}
}

@media (max-width: 767px) {
.split-cont3 {
	padding: 40px 0;
}

.split-cont3 .box .left-heading {
	width: 100%;
}

.split-cont3 .box .left-heading h3,
.split-cont3 .box .left-heading .h3 {
	max-width: 100%;
}

.split-cont3 .box .aside {
	width: 100%;
}

.split-cont3 .box .aside ul {
	margin: 0 -12px -36px -12px;
}

.split-cont3 .box .aside ul li {
	width: 100%;
	padding: 0 12px 36px 12px;
}
}


/*  Practice - Areas */
.practice-areas2 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	color: #ffffff;
	background: #1d174f;
	padding: 70px 0 80px 0;
}

.practice-areas2 .col-wrap {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -40px -12px;
}

.practice-areas2 .col-wrap .left-heading {
	width: 33.33333333333333%;
	padding: 0 12px 40px 12px;
}

.practice-areas2 .col-wrap .left-heading h3,
.practice-areas2 .col-wrap .left-heading .h3 {
	width: 100%;
	max-width: 300px;
	font-size: 24px;
	color: inherit;
	line-height: 29px;
	letter-spacing: 0.02em;
	    letter-spacing: 0px;
	overflow: hidden;
}

.practice-areas2 .col-wrap .accordation-list {
	width: 66.66666666666667%;
	padding: 0 12px 40px 12px;
}

.practice-areas2 .col-wrap .accordation-list .accord-item {
	border-top: 1px solid #ffffff;
}

.practice-areas2 .col-wrap .accordation-list .accord-item .accord-link {
	color: #ffffff;
}

.practice-areas2 .col-wrap .accordation-list .accord-item .accord-link::before {
	background-image: url(../img/plus-white.svg); 
}

.practice-areas2 .col-wrap .accordation-list .accord-item .accord-link.active .hide-txt { 
	width: 28.10%;
}

.practice-areas2 .col-wrap .accordation-list .accord-item .accord-link.active::before {
	background-image: url(../img/minus-white.svg); 
}

.practice-areas2 .col-wrap .accordation-list .accord-item .accord-cont {
	width: 71.90%; 
	padding-right: 60px; 
	left: 28.10%;
}

.practice-areas2 .col-wrap .accordation-list .accord-item .accord-cont .aside {
	color: #a3d9ff;
}

.practice-areas2 .col-wrap .accordation-list .accord-item .accord-cont .aside p a {
	color: #a3d9ff;
	border-bottom-color: #a3d9ff;
}

.practice-areas2 .col-wrap .accordation-list .accord-item .accord-cont .aside p a:hover,
.practice-areas2 .col-wrap .accordation-list .accord-item .accord-cont .aside p a:focus,
.practice-areas2 .col-wrap .accordation-list .accord-item .accord-cont .aside p a:active {
	color: #ffffff;
	border-bottom-color: #ffffff;
}

.practice-areas2 .col-wrap .accordation-list .accord-item .accord-cont .aside .sub-heading {
	color: #ffffff;
}

@media (max-width: 1199px) {
.practice-areas2 {
	padding: 60px 0 80px 0;
}

.practice-areas2 .col-wrap .accordation-list .accord-item .accord-link.active .hide-txt { 
	width: 100%;
}

.practice-areas2 .col-wrap .accordation-list .accord-item .accord-cont {
	width: 100%;
	padding: 0 0 40px 0;
	left: 0; top: -12px;
}
}

@media (max-width: 767px) {
.practice-areas2 {
	padding: 40px 0;
}

.practice-areas2 .col-wrap .left-heading {
	width: 100%;
}

.practice-areas2 .col-wrap .left-heading h3,
.practice-areas2 .col-wrap .left-heading .h3 {
	max-width: 100%;
}

.practice-areas2 .col-wrap .accordation-list {
	width: 100%;
}
}


/*  Industries - Cont */
.industries-cont {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 50px 0 100px 0;
}

.industries-cont .box {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -24px -12px;
}

.industries-cont .box .left-heading {
	width: 33.33333333333333%;
	padding: 0 12px 24px 12px;
}

.industries-cont .box .left-heading h3,
.industries-cont .box .left-heading .h3 {
	width: 100%;
	max-width: 300px;
	font-size: 24px;
	color: #1d174f;
	line-height: 29px;
	letter-spacing: 0.02em;
	    letter-spacing: 0px;
	overflow: hidden;
}

.industries-cont .box .list-wrap {
	width: 66.66666666666667%;
	padding: 0 12px 24px 12px;
}

.industries-cont .box .list-wrap .aside-wrap {
	max-width: 580px;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -10px -12px;
}

.industries-cont .box .list-wrap .aside {
	width: 50%;
	padding: 0 12px 10px 12px;
}

.industries-cont .box .aside ul {
	display: flex;
	flex-wrap: wrap;
}

.industries-cont .box .aside ul li {
	width: 100%;
	font-weight: 500;
	font-size: 17px;
	line-height: 23px;
	padding: 0;
	margin: 0 0 10px 0;
	color: #1a2abd;
}

.industries-cont .box .aside ul li::before {
	display: none;
}

.industries-cont .box .aside ul li:last-child {
	margin-bottom: 0;
}

.industries-cont .box .aside ul li a {
	color: #1a2abd;
	text-decoration: none;
}

.industries-cont .box .aside ul li a:hover,
.industries-cont .box .aside ul li a:focus,
.industries-cont .box .aside ul li a.active {
	color: #1d174f;
}

@media (max-width: 1199px) {
.industries-cont {
	padding: 40px 0 80px 0;
}
}

@media (max-width: 767px) {
.industries-cont {
	        padding: 40px 0 48px 0;
}

.industries-cont .box .left-heading {
	width: 100%;
}

.industries-cont .box .left-heading h3,
.industries-cont .box .left-heading .h3 {
	max-width: 100%;
}

.industries-cont .box .list-wrap {
	width: 100%;
}

.industries-cont .box .list-wrap .aside {
	width: 100%;
}
}


/*  Trending Issues */
.trending-issues {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	background: #a3d9ff;
	padding: 40px 0;
}

.trending-issues .box {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -20px -12px;
}

.trending-issues .box .left-heading {
	width: 33.33333333333333%;
	padding: 0 12px 20px 12px;
}

.trending-issues .box .left-heading h3,
.trending-issues .box .left-heading .h3 {
	width: 100%;
	max-width: 300px;
	font-size: 24px;
	color: #1d174f;
	line-height: 29px;
	letter-spacing: 0.02em;
	    letter-spacing: 0px;
	overflow: hidden;
}

.trending-issues .box .aside {
	width: 66.66666666666667%;
	padding: 0 12px 20px 12px;
}

.trending-issues .box .aside ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -24px -12px;
}

.trending-issues .box .aside ul li {
	width: 50%;
	font-weight: 500;
	font-size: 17px;
	line-height: 23px;
	padding: 0 12px 24px 12px;
	margin: 0;
	min-height: 134px;
}

.trending-issues .box .aside ul li::before {
	display: none;
}

.trending-issues .box .aside ul li a {
	width: 100%;
	height: 100%;
	float: left;
	color: #000000;
	text-decoration: none;
	background: #ffffff;
	position: relative;
	padding: 20px 80px 20px 24px;
}

.trending-issues .box .aside ul li a::before {
	content: "";
	width: 34px;
	height: 34px;
	float: left; 
	background: url(../img/plus-navy.svg) no-repeat center center; 
	    background-size: 22px auto;
/*	border: 2px solid #1d174f;*/
	border-radius: 360px;
	position: absolute;
	top: 16px;
	right: 24px;
	
}

.trending-issues .box .aside ul li a:hover {
	color: #ffffff;
	background: #1a2abd;
}

.trending-issues .box .aside ul li a:hover::before {
	background-image: url(../img/plus-lrg-white.svg); 
	border-color: #ffffff;
}

@media (max-width: 1199px) {
.trending-issues {
	padding: 60px 0 80px 0;
}
}

@media (max-width: 991px) {
.trending-issues .box .aside ul li {
	width: 100%;
}
}

@media (max-width: 767px) {
.trending-issues {
	padding: 40px 0;
}

.trending-issues .box .left-heading {
	width: 100%;
}

.trending-issues .box .left-heading h3,
.trending-issues .box .left-heading .h3 {
	max-width: 100%;
}

.trending-issues .box .aside {
	width: 100%;
}

.trending-issues .box .aside ul {
	margin: 0 -12px -12px -12px;
}

.trending-issues .box .aside ul li {
	width: 100%;
	padding: 0 12px 12px 12px;
}

.trending-issues .box .aside ul li a::before {

	top: 16px;
	
}
}


/* -----------------------------------------------------------
   Page 3
----------------------------------------------------------- */

/* Profile - Details */
.profile-details {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0 0 100px 0;
}

.profile-details:last-child {
	padding-bottom: 0;
}

.profile-details .author-heading {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding-bottom: 32px;
}

.profile-details .author-heading:last-child {
	padding-bottom: 0;
}

.profile-details .author-heading .box {
	display: flex;
	flex-wrap: wrap;
	justify-content: right;
	margin: 0 -12px -24px -12px;
}

.profile-details .author-heading .box .aside {
	width: 66.66666666666667%;
	padding: 0 12px 24px 12px;
}

.profile-details .author-heading .box .aside h3 br,
.profile-details .author-heading .box .aside .h3 br {
	display: none;
}

.profile-details .author-heading .box .position {
	font-size: 9px;
	color: #1d174f;
	line-height: 14px;
	letter-spacing: 0.04em;
	   
}

.profile-details .profile-wrap {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.profile-details .profile-wrap .box {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -16px -12px;
}

.profile-details .profile-wrap .box .author-wrap {
	width: 33.33333333333333%;
	padding: 0 12px 16px 12px;
}

.profile-details .profile-wrap .box .author-inn {
	width: 100%;
	max-width: 266px;
	float: left;
}

.profile-details .profile-wrap .box .figure {
	width: 100%;
	text-align: center;
	overflow: hidden;
	margin-bottom: 16px;
}

.profile-details .profile-wrap .box .figure:last-child {
	margin-bottom: 0;
}

.profile-details .profile-wrap .box .figure img {
	width: 100%;
}

.profile-details .profile-wrap .box .author-txt {
	width: 100%;
	overflow: hidden;
}

.profile-details .profile-wrap .box .author-txt p {
	padding-bottom: 10px;
}

.profile-details .profile-wrap .box .author-txt p:last-child {
	padding-bottom: 0;
}

.profile-details .profile-wrap .box .author-txt p a {
	display: inline;
	color: #1d174f;
	text-decoration: none;
	border-bottom: 1px solid #1d174f;
}

.profile-details .profile-wrap .box .author-txt p a:hover,
.profile-details .profile-wrap .box .author-txt p a:focus,
.profile-details .profile-wrap .box .author-txt p a:active {
	color: #1a2abd;
	border-bottom-color: #1a2abd;
}

.profile-details .profile-wrap .box .author-txt .position {
	font-size: 9px;
	color: #1a2abd;
	line-height: 14px;
	letter-spacing: 0.04em;
	    
}

.profile-details .profile-wrap .box .aside {
	width: 66.66666666666667%;
	padding: 0 12px 16px 12px;
}

.profile-details .profile-wrap .box .aside p {
	padding-bottom: 10px;
}

.profile-details .profile-wrap .box .aside p:last-child {
	padding-bottom: 0;
}

.profile-details .profile-wrap .box .aside .txt-max {
	width: 100%;
	max-width: 660px;
	float: left;
}

@media (max-width: 1199px) {
.profile-details {
	padding: 0 0 80px 0;
}
}

@media (max-width: 767px) {
.profile-details {
	padding: 0 0 60px 0;
}

.profile-details .author-heading {
	padding-bottom: 16px;
}

.profile-details .author-heading .box .aside {
	width: 100%;
}

.profile-details .author-heading .box .aside h3 br,
.profile-details .author-heading .box .aside .h3 br {
	display: inline-block;
}

.profile-details .profile-wrap .box .author-wrap {
	width: 100%;
}

.profile-details .profile-wrap .box .author-inn {
	display: flex;
	flex-wrap: wrap;
	max-width: 100%;
}

.profile-details .profile-wrap .box .figure {
	width: 152px;
	position: relative;
	z-index: 1;
	margin: 0 -152px 0 0;
}

.profile-details .profile-wrap .box .author-txt {
	padding: 0 0 0 176px;
}

.profile-details .profile-wrap .box .aside {
	width: 100%;
}

.profile-details .profile-wrap .box .aside .txt-max {
	max-width: 100%;
}
}


/* -----------------------------------------------------------
   Page 4
----------------------------------------------------------- */

/* Content - Inner */
.content-inner2 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 100px 0 0 0;
}

@media (max-width: 1199px) {
.content-inner2 {
	padding: 80px 0 0 0;
}
}

@media (max-width: 767px) {
.content-inner2 {
	padding: 40px 0 0 0;
}

.content-inner2 .container {
	padding: 0;
}
}


/* Banner - CTA */
.banner-inner {
	width: 100%;
	min-height: 535px;
	float: none;
	display: inline-block;
	vertical-align: top;
	position: relative;
	z-index: 1;
}

.banner-inner .figure {
	width: 100%;
	height: 100%;
	text-align: center;
	overflow: hidden;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1;
}

.banner-inner .figure img {
	width: auto;
	max-width: none;
	min-width: 100%;
	min-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.banner-inner .box {
	width: 100%;
	max-width: 370px;
	float: left;
	background: rgba(163, 217, 255, 0.51);
	padding: 25px 25px;
}

.banner-inner .box .dark-blue {
	color: #1d174f !important;
}

@media (max-width: 767px) {
.banner-inner {
	min-height: 505px;
}

.banner-inner h1,
.banner-inner .h1 {
	color: #a3d9ff;
}

.banner-inner .box .dark-blue {
	color: #ffffff !important;
}

.banner-inner .box {
	background: none;
}
}


/* Service - Cont */
.service-cont {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	background: #a3d9ff;
	padding: 40px 0;
}

.service-cont .box {
	display: flex;
	flex-wrap: wrap;
	justify-content: right;
	margin: 0 -12px -24px -12px;
}

.service-cont .box .aside {
	width: 66.66666666666667%;
	padding: 0 12px 24px 12px;
}

.service-cont .box .aside .txt-max {
	width: 100%;
	max-width: 560px;
	float: left;
	padding: 0 24px 0 0;
}

@media (max-width: 767px) {
.service-cont .box .aside {
	width: 100%;
}

.service-cont .box .aside .txt-max {
	max-width: 100%;
	padding: 0 25px;
}
}


/* Profile - Cont */
.profile-cont {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	color: #ffffff;
	background: #1d174f;
	padding: 40px 0;
}

.profile-cont .box {
	display: flex;
	flex-wrap: wrap;
	justify-content: right;
	margin: 0 -12px -24px -12px;
}

.profile-cont .box .aside {
	width: 66.66666666666667%;
	padding: 0 12px 24px 12px;
}

.profile-cont .box .aside h4,
.profile-cont .box .aside .h4 {
	font-size: 17px;
	color: #a3d9ff;
	line-height: 23px;
	letter-spacing: 0.02em;
	    letter-spacing: 0px;
	padding-bottom: 10px;
}

.profile-cont .box .aside .txt-max {
	width: 100%;
	max-width: 560px;
	float: left;
	padding: 0 24px 0 0;
}

@media (max-width: 767px) {
.profile-cont .box .aside {
	width: 100%;
}

.profile-cont .box .aside .txt-max {
	max-width: 100%;
	padding: 0 25px;
}
}


/* Services - List */
.service-list {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 70px 0;
}

.service-list .article {
	width: 100%;
	padding: 0 0 50px 0;
}

.service-list .article:last-child {
	padding-bottom: 0;
}

.service-list .article .box {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -14px -12px;
}

.service-list .article .left-heading {
	width: 33.33333333333333%;
	padding: 0 12px 14px 12px;
}

.service-list .article .left-heading h4,
.service-list .article .left-heading .h4 {
	font-size: 17px;
	line-height: 23px;
	letter-spacing: 0.02em;
	    letter-spacing: 0px;
}

.service-list .box .aside {
	width: 66.66666666666667%;
	padding: 0 12px 14px 12px;
}

.service-list .box .aside .txt-max {
	width: 100%;
	max-width: 560px;
	float: left;
}

.service-list .article-wrap {
	display: flex;
	flex-wrap: wrap;
}

@media (max-width: 767px) {
.service-list {
	padding: 40px 25px;
}

.service-list .box .left-heading {
	width: 100%;
}

.service-list .box .aside {
	width: 100%;
}

.service-list .box .aside .txt-max {
	max-width: 100%;
}
}


/* Banner - Single */
.banner-single {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	overflow: hidden;
}

.banner-single img {
	width: 100%;
}


/* Services - List */
.service-list {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 70px 0;
}

.service-list .article {
	width: 100%;
	padding: 0 0 50px 0;
}

.service-list .article:last-child {
	padding-bottom: 0;
}

.service-list .article .box {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -14px -12px;
}

.service-list .article .left-heading {
	width: 33.33333333333333%;
	padding: 0 12px 14px 12px;
}

.service-list .article .left-heading h4,
.service-list .article .left-heading .h4 {
	font-size: 17px;
	line-height: 23px;
	letter-spacing: 0.02em;
	    letter-spacing: 0px;
}

.service-list .box .aside {
	width: 66.66666666666667%;
	padding: 0 12px 14px 12px;
}

.service-list .box .aside .txt-max {
	width: 100%;
	max-width: 560px;
	float: left;
}

.service-list .article-wrap {
	display: flex;
	flex-wrap: wrap;
}

@media (max-width: 767px) {
.service-list {
	padding: 40px 25px;
}

.service-list .box .left-heading {
	width: 100%;
}

.service-list .box .aside {
	width: 100%;
}

.service-list .box .aside .txt-max {
	max-width: 100%;
}
}


/* Services - List2 */
.service-list2 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 40px 0 80px 0;
}

.service-list2 h2,
.service-list2 .h2 {
	color: #1d174f;
	padding-bottom: 15px;
}

.service-list2 h2:last-child,
.service-list2 .h2:last-child {
	padding-bottom: 0;
}

.service-list2 .article {
	width: 33.33333333333333%;
	padding: 0 12px 12px 12px;
}

.service-list2 .article .box {
	width: 100%;
	float: left;
}

.service-list2 .article-wrap {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -12px -12px;
}

@media (max-width: 767px) {
.service-list2 {
	padding: 40px 25px 60px 25px;
}

.service-list2 h2,
.service-list2 .h2 {
	font-size: 32px;
	line-height: 36px;
	padding-bottom: 28px;
}

.service-list2 .article {
	width: 100%;
}
}


/* Legal - Cont */
.legal-cont {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.legal-cont .inner-cont {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	border-top: 1px solid #1a2abd;
	padding: 20px 0 80px 0;
}

.legal-cont h4,
.legal-cont .h4 {
	font-size: 17px;
	line-height: 23px;
	letter-spacing: 0.02em;
	    letter-spacing: 0px;
	padding-bottom: 36px;
}

.legal-cont h4:last-child,
.legal-cont .h4:last-child {
	padding-bottom: 0;
}

.legal-cont .box {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -14px -12px;
}

.legal-cont .box .aside {
	width: 33.33333333333333%;
	padding: 0 12px 36px 12px;
}

.legal-cont .box .list-wrap {
	width: 66.66666666666667%;
	padding: 0 12px 36px 12px;
}

.legal-cont .box .list-wrap ul {
	display: flex;
	flex-wrap: wrap;
	max-width: 560px;
	padding: 0;
	margin: 0;
}

@media (max-width: 767px) {
.legal-cont {
	padding: 0 25px;
}

.legal-cont .inner-cont {
	padding: 20px 0 60px 0;
}

.legal-cont .box .aside {
	width: 100%;
}

.legal-cont .box .list-wrap {
	width: 100%;
}

.legal-cont .box .list-wrap ul {
	max-width: 100%;
}
} 


/* -----------------------------------------------------------
   Page 5
----------------------------------------------------------- */

/* Content - Inner */
.content-inner {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 100px 0;
}

@media (max-width: 1199px) {
.content-inner {
	padding: 80px 0;
}
}

@media (max-width: 767px) {
.content-inner {
	padding: 40px 0;
}
}


/* Articles - News */
.articles-news {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -24px -12px;
}

.articles-news h1,
.articles-news .h1,
.articles-news h2,
.articles-news .h2 {
	font-size: 24px;
	line-height: 29px;
	letter-spacing: 0.02em;
	    letter-spacing: 0px;
}


.articles-news .left-sidebar {
	width: 33.33333333333333%;
	padding: 0 12px 24px 12px;
}

.articles-news .left-sidebar h1,
.articles-news .left-sidebar .h1 {
	padding-bottom: 40px;
}

.articles-news .left-sidebar h1:last-child,
.articles-news .left-sidebar .h1:last-child {
	padding-bottom: 0;
}

.articles-news .left-sidebar .accordation-list2 { 
	width: 100%; 
	float: none; 
	display: inline-block; 
	vertical-align: top;
}

.articles-news .left-sidebar .accordation-list2 .accord-item { 
	width: 100%; 
	float: left;
	position: relative;
}

.articles-news .left-sidebar .accordation-list2 .accord-item .accord-link {
	width: 100%;
	float: left; 
	font-weight: 500;
	font-size: 17px;
	color: #1d174f;
	line-height: 23px;
	text-decoration: none;
	padding: 8px 30px 8px 0;
}

.articles-news .left-sidebar .accordation-list2 .accord-item .accord-link::before {
	content: ""; 
	width: 10px; 
	height: 10px; 
	float: left; background: url(../img/plus-lrg-navy.svg) no-repeat center center; 
	background-size: 10px auto;
	position: absolute;
	top: 14px;
	right: 0; 
	z-index: 1;
}
.articles-news .left-sidebar .accordation-list2 .accord-item .accord-link.active { 
	color: #1a2abd;
}

.articles-news .left-sidebar .accordation-list2 .accord-item .accord-link.active::before {
	background: url(../img/minus-navy.svg) no-repeat center center; 
}

.articles-news .left-sidebar .accordation-list2 .accord-item .accord-cont {
	width: 100%;
	float: left;
	display: none;
	padding: 0 30px 0 0;
	margin: 0; 
	position: relative; 
}

.articles-news .news-list {
	width: 66.66666666666667%;
	padding: 0 12px 24px 12px;
}

.articles-news .news-list .article {
	width: 50%;
	padding: 0 12px 24px 12px;
}

.articles-news .news-list .article .box {
	width: 100%;
	height: 100%;
	float: left;
	display: flex;
	flex-direction: column;
	font-weight: inherit;
	color: inherit;
	text-decoration: none;
	background: #ffffff;
	padding: 20px 20px;
}

.articles-news .news-list .article .box h2,
.articles-news .news-list .article .box .h2 {
	transition: all .25s ease-out;
}

.articles-news .news-list .article .box .date {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-weight: 500;
	font-size: 10px;
	color: #000000;
	line-height: 14px;
	letter-spacing: 0.01em;
	    letter-spacing: 0px;
	padding-bottom: 5px;
}

.articles-news .news-list .article .box .aside {
	width: 100%;
	max-width: 200px;
	float: left;
	flex: 1 0 auto;
	padding: 0 0 40px 0;
}

.articles-news .news-list .article .box .aside:last-child {
	padding-bottom: 0;
}

.articles-news .news-list .article .box .news {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	flex-shrink: 0;
	font-weight: 500;
	font-size: 10px;
	color: #000000;
	line-height: 14px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.articles-news .news-list .article .box:hover h2,
.articles-news .news-list .article .box:hover .h2,
.articles-news .news-list .article .box:focus h2,
.articles-news .news-list .article .box:focus .h2,
.articles-news .news-list .article .box:active h2,
.articles-news .news-list .article .box:active .h2 {
	color: #1d174f;
}

.articles-news .news-list .article-wrap {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -24px -12px;
}

@media (max-width: 767px) {
.articles-news .left-sidebar {
	width: 100%;
}

.articles-news .news-list {
	width: 100%;
}

.articles-news .news-list .article {
	width: 100%;
}

.articles-news .news-list .article .box h2,
.articles-news .news-list .article .box .h2 {
	font-size: 18px;
	line-height: 20px;
}

.articles-news .news-list .article .box .aside {
	max-width: 100%;
	padding: 0 0 20px 0;
}
}


/* -----------------------------------------------------------
   Page 6
----------------------------------------------------------- */

/* News - Cont */
.news-cont { 
	width: 100%; 
	float: none; 
	display: inline-block; 
	vertical-align: top; 
 }

.news-cont h1,
.news-cont .h1 { 
	padding-bottom: 80px;
}

.news-cont h1:last-child,
.news-cont .h1:last-child { 
	padding-bottom: 0;
}

.news-cont .box {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -24px -12px;
}

.news-cont .box .date {
	width: 33.33333333333333%;
	padding: 0 12px 24px 12px;
}

.news-cont .box .date ul {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 -12px -24px -12px;
}

.news-cont .box .date ul li {
	font-size: 10px;
	color: #000000;
	line-height: 14px;
	letter-spacing: 0.01em;
	    letter-spacing: 0px;
	padding: 0 12px 24px 12px;
	margin: 0;
}

.news-cont .box .date ul li::before {
	display: none;
}

.news-cont .box .date ul li a {
	color: #000000;
}

.news-cont .box .date ul li a:hover,
.news-cont .box .date ul li a:focus,
.news-cont .box .date ul li a:active {
	color: #1a2abd;
}

.news-cont .box .aside {
	width: 66.66666666666667%;
	padding: 0 12px 24px 12px;
}

.news-cont .box .aside .txt-max { 
	width: 100%; 
	max-width: 560px; 
	float: left;
}

@media (max-width: 1199px) {
.news-cont h1,
.news-cont .h1 { 
	padding-bottom: 60px;
}
}

@media (max-width: 767px) {
.news-cont h1,
.news-cont .h1 { 
	font-size: 24px; 
	line-height: 29px; 
	padding-bottom: 13px;
}

.news-cont .box .date {
	width: 100%;
}

.news-cont .box .aside {
	width: 100%;
}

.news-cont .box .aside .txt-max { 
	max-width: 100%; 
}
}


/* Articles - Pager */
.articles-pager { 
	width: 100%; 
	float: none; 
	display: inline-block; 
	vertical-align: top; 
	background: #ffffff; 
	padding:60px 0;
}

.articles-pager .pager {	
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -24px -12px;
}

.articles-pager .article-wrap { 	
	width: 33.33333333333333%;
	padding: 0 12px 24px 12px;
}

.articles-pager .article-inn {	
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -24px -12px;
}

.articles-pager .article { 	
	width: 50%;
	padding: 0 12px 24px 12px;
}

.articles-pager .article .box {
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	font-weight: inherit;
	color: inherit;
	text-decoration: none;
	border-top: 1px solid #1d174f; 
	padding: 10px 0 0 0;
}

.articles-pager .article .box .prev,
.articles-pager .article .box .next { 
	float: left; 
	font-weight: 500;
	font-size: 10px;
	color: #1d174f;
	line-height: 14px;
	letter-spacing: 0.02em; 
	    letter-spacing: 0px;
	text-transform: uppercase; 
	margin-bottom: 20px; 
	position: relative;
}

.articles-pager .article .box .prev::before,
.articles-pager .article .box .next::before {
	content: "";
	width: 10px;
	height: 11px; 
	background-repeat: no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

.articles-pager .article .box .prev { 
	padding: 0 0 0 15px;
}

.articles-pager .article .box .prev::before {
	background-image: url(../img/arrow-left-navy.svg); 
	background-position: left center; 
	left: 0;
}

.articles-pager .article .box .next { 
	padding: 0 15px 0 0;
}

.articles-pager .article .box .next::before {
	background-image: url(../img/arrow-right-navy.svg);
	background-position: right center; 
	right: 0;
}

.articles-pager .article .box h3,
.articles-pager .article .box .h3 { 
	width: 100%;
	font-weight: 500; 
	font-size: 17px; 
	color: #1d174f; 
	line-height: 23px; 
	letter-spacing: normal;
	transition: all .25s ease-out;
}

.articles-pager .article .box .date { 
	width: 100%;
	font-weight: 500;
	font-size: 10px;
	color: #1d174f;
	line-height: 14px;
	letter-spacing: normal; 
	    letter-spacing: 0px;
	overflow: hidden; 
	padding-bottom: 4px;
}

.articles-pager .article .box:hover h3,
.articles-pager .article .box:hover .h3,
.articles-pager .article .box:focus h3,
.articles-pager .article .box:focus .h3,
.articles-pager .article .box:active h3,
.articles-pager .article .box:active .h3 {
	color: #1a2abd;
}

@media (max-width: 1199px) {
.articles-pager .article-wrap { 	
	width: 40%;
}
}

@media (max-width: 991px) {
.articles-pager .article-wrap { 	
	width: 50%;
}
}

@media (max-width: 767px) {
.articles-pager { 
	padding: 40px 0;
}

.articles-pager .article-wrap { 	
	width: 100%;
}
}


/* -----------------------------------------------------------
   Page 7
----------------------------------------------------------- */

/* Privacy - Cont */
.privacy-cont {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top; 
	padding: 100px 0;
}

.privacy-cont .privacy-heading {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding-bottom: 40px;
}

.privacy-cont .privacy-heading:last-child {
	padding-bottom: 0;
}

.privacy-cont .privacy-heading .box {
	display: flex;
	flex-wrap: wrap;
	justify-content: right;
	margin: 0 -12px -24px -12px;
}

.privacy-cont .privacy-heading .box .aside {
	width: 66.66666666666667%;
	padding: 0 12px 24px 12px;
}

.privacy-cont .privacy-heading .box .aside h3,
.privacy-cont .privacy-heading .box .aside .h3 { 
	font-weight: 500;
	font-size: 24px; 
	line-height: 29px;
}

.privacy-cont .privacy-wrap {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.privacy-cont .privacy-wrap .box {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -16px -12px;
}

.privacy-cont .privacy-wrap .box .sidebar {
	width: 33.33333333333333%;
	padding: 0 12px 16px 12px;
}

.privacy-cont .privacy-wrap .box .sidebar-inn { 
	width: 100%; 
	float: left;
}

.privacy-cont .privacy-wrap .box .sidebar ul { 
	padding: 0; 
	margin: 0;
}

.privacy-cont .privacy-wrap .box .sidebar ul li { 
font-weight: 500;
	padding: 0; 
	margin: 0 0 10px 0;
}

.privacy-cont .privacy-wrap .box .sidebar ul li:last-child { 
	margin-bottom: 0;
}

.privacy-cont .privacy-wrap .box .sidebar ul li::before { 
	display: none;
}

.privacy-cont .privacy-wrap .box .aside {
	width: 66.66666666666667%; 
	font-size: 10px; 
	line-height: 14px;
	padding: 0 12px 16px 12px;
}

.privacy-cont .privacy-wrap .box .aside h4,
.privacy-cont .privacy-wrap .box .aside .h4 { 
	width: 100%;
	font-size: 10px; 
	line-height: 14px; 
	border-top: 1px solid #1a2abd; 
	overflow: hidden; 
	padding: 10px 0 20px 0;
}

.privacy-cont .privacy-wrap .box .aside p {
	padding-bottom: 10px;
}

.privacy-cont .privacy-wrap .box .aside p:last-child {
	padding-bottom: 0;
}

.privacy-cont .privacy-wrap .box .aside p a,
.privacy-cont .privacy-wrap .box .aside ul li a {
	display: inline;
	color: #1a2abd;
	text-decoration: none;
	border-bottom: 1px solid #1a2abd;
}

.privacy-cont .privacy-wrap .box .aside p a:hover,
.privacy-cont .privacy-wrap .box .aside p a:focus,
.privacy-cont .privacy-wrap .box .aside p a:active,
.privacy-cont .privacy-wrap .box .aside ul li a:hover,
.privacy-cont .privacy-wrap .box .aside ul li a:focus,
.privacy-cont .privacy-wrap .box .aside ul li a:active {
	color: #1d174f;
	border-bottom-color: #1d174f;
}

.privacy-cont .privacy-wrap .box .aside ul { 
	padding: 0; 
	margin: 0 0 10px 0;
}

.privacy-cont .privacy-wrap .box .aside ul:last-child { 
	margin-bottom: 0;
}

.privacy-cont .privacy-wrap .box .aside ul li { 
	padding: 0 0 0 10px; 
	margin: 0 0 10px 0;
}

.privacy-cont .privacy-wrap .box .aside ul li::before { 
	width: 3px; 
	height: 3px; 
	top: 7px;
}

.privacy-cont .privacy-wrap .box .aside ul li:last-child { 
	margin-bottom: 0;
}

.privacy-cont .privacy-wrap .box .aside .sub-heading { 
	font-weight: 700;
	font-size: 10px; 
	color: #1d174f; 
	line-height: 14px; 
	padding: 0 0 10px 0;
}

.privacy-cont .privacy-wrap .box .aside .txt-max {
	width: 100%;
	max-width: 560px;
	float: left;
}

.privacy-cont .privacy-wrap .box .aside .txt { 
	padding-bottom: 30px;
}

.privacy-cont .privacy-wrap .box .aside .txt:last-child { 
	padding-bottom: 0;
}

.privacy-cont .privacy-wrap .box .aside .txt-inn { 
	padding-bottom: 24px;
}

.privacy-cont .privacy-wrap .box .aside .txt-inn:last-child { 
	padding-bottom: 0;
}

@media (max-width: 1199px) {
.privacy-cont {
	padding: 80px 0;
}
}

@media (max-width: 767px) {
.privacy-cont { 
	background: #ffffff;
	padding: 30px 0 0 0;
}

.privacy-cont .privacy-heading {
	padding-bottom: 16px;
}

.privacy-cont .privacy-heading .box .aside {
	width: 100%;
}

.privacy-cont .privacy-wrap .box .sidebar {
	width: 100%;
	order: 2; 
}

.privacy-cont .privacy-wrap .box .sidebar-inn { 
	width: 900%; 
	background: #f7f7f7; 
	padding: 30px 400% 60px 400%; 
	margin: 0 -400%;
}

.privacy-cont .privacy-wrap .box .aside {
	width: 100%; 
	order: 1;
}

.privacy-cont .privacy-wrap .box .aside .txt-max { 
	padding-bottom: 40px;
}
}


/* Privacy - Accord */
.privacy-accord { 
	width: 100%; 
	float: none; 
	display: none; 
	vertical-align: top; 
	padding: 40px 0 0 0;
}

.privacy-accord .accord-item {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	border-top: 1px solid #1d174f;
	position: relative;
}

.privacy-accord .accord-item .accord-link {
	width: 100%;
	float: left; 
	font-weight: 700;
	font-size: 15px;
	color: #1d174f;
	line-height: 23px;
	letter-spacing: 0.02em;
	    letter-spacing: 0px;
	cursor: pointer;
	position: relative;
	padding: 12px 14px 12px 0;
}

.privacy-accord .accord-item .accord-link::before {
	content: ""; 
	width: 10px; 
	height: 10px; 
	float: left;
	background: url(../img/plus-lrg-navy.svg) no-repeat center center; 
	background-size: 100% auto;
	position: absolute;
	top: 50%;
	right: 0;	
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	margin-top: -3px;
}

@media (max-width: 767px) {
.privacy-accord { 
	display: inline-block; 
}
}


/* -----------------------------------------------------------
   Popup - Content
----------------------------------------------------------- */

.popup-cont {
	width: 940px;
	display: none;
	color: #ffffff;
	background: #1a2abd;
	padding: 70px 7%;
}

.popup-cont h3,
.popup-cont .h3 {
	font-size: 24px;
	color: #ffffff;
	line-height: 29px;
	letter-spacing: 0.02em;
	    letter-spacing: 0px;
	padding-bottom: 12px;
}

.popup-cont h3:last-child,
.popup-cont .h3:last-child {
	padding-bottom: 0;
}

.fancybox-close-small { 
	width: 34px; 
	height: 34px;
	font-size: 24px;
	color: #a3d9ff!important;
	background: transparent;
	border: 2px solid #a3d9ff;
	border-radius: 360px;	
	opacity: 1;
	padding: 1px;
}

.fancybox-close-small:hover {
	color: #a3d9ff!important;
	opacity: 1
}

.fancybox-slide--html .fancybox-close-small {
	right: 20px;
	top: 20px;
	padding: 1px;
}

@media (max-width: 767px) {
.popup-cont {
	padding: 90px 25px;
}

.fancybox-close-small { 
	width: 36px; 
	height: 36px;
	border: none;
	border-radius: 0;
	padding: 0;
}

.fancybox-slide--html .fancybox-close-small {
	right: 24px;
	top: 24px;
}
}


