/*----------------------------------------------------------------------------

      MPS Webpage
      Version: 1.0

/*  1.  Document Setup 
/*----------------------------------------------------------------------------*/
@font-face {
    font-family: 'BariolBold';
    src: url('fonts/bariol_bold-webfont.eot');
    src: url('fonts/bariol_bold-webfont.woff') format('woff'),
         url('fonts/bariol_bold-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'BariolLight';
    src: url('fonts/bariol_light-webfont.eot');
    src: url('fonts/bariol_light-webfont.woff') format('woff'),
         url('fonts/bariol_light-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'BariolRegular';
    src: url('fonts/bariol_regular-webfont.eot');
    src: url('fonts/bariol_regular-webfont.woff') format('woff'),
         url('fonts/bariol_regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
    font-size: 100%;
}

body {
    background-color: #fff;
    font-family: 'BariolRegular', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #535353;
    line-height: 24px;
    margin: auto !important;
}


/*  1.1  Typography
/*----------------------------------------------------------------------------*/
.navbar a {
   font-family: 'BariolBold';
}
a {
    font-family: 'BariolRegular', sans-serif;
	color: #343434;
    text-decoration: underline;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

a:hover {
    color: #00abc7;
    text-decoration: none;
}

a img {
    border: none;
}

p img {
    padding-left: 24px;
    padding-right: 24px;
}

img {
    max-width: 100%;
    height: auto;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

ul {
    padding-left: 0px !important;
}

li {
    list-style: none;
    line-height: 24px;
}

li i {
    padding-right: 6px;
}

p,
ul {
    margin-bottom: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #343434;
    font-family: BariolRegular,sans-serif;
    font-weight: 600;
    padding: 0;
    margin-top: 0px;
    margin-bottom: 24px;
    text-transform: none;
}

h1 {
    font-size: 36px;
    line-height: 36px;
}

h2 {
    font-size: 24px;
    line-height: 24px;
}

h3 {
    font-size: 18px;
    line-height: 24px;
}

h4,
h5,
h6 {
    font-size: 16px;
    line-height: 24px;
}

b,
strong {
    font-family: 'BariolBold', sans-serif;
}

.meta,
.meta a {
    font-family: 'BariolBold', sans-serif;
    font-size: 14px;
    color: #066b9b;
    text-decoration: none;
    margin-bottom: 24px;
}

.meta:hover a {
    color: #00abc7;
}

.txt-yellow {
    color: #ffa613;
}

.txt-blue {
    color: #00abc7;
}

.txt-purple {
    color: #7e3f99;
}

.txt-green {
    color: #94c33c;
}

.txt-red {
    color: #fb3d1d;
}

.txt-dark-blue {
    color: #066b9b;
}


/*  1.2  Floats 
/*----------------------------------------------------------------------------*/

.float-left {
    float: left;
    text-align: left;
}

.float-right {
    float: right;
    text-align: right;
}


/*  1.3  Wrappers  
/*----------------------------------------------------------------------------*/

.content-container {
    padding-top: 96px;
}

.wrapper-color h1,
.wrapper-color h2,
.wrapper-color h3,
.wrapper-color a,
.wrapper-color {
    color: #fff;
}

.wrapper-black {
    width: 100%;
    background-color: rgba(2, 2, 2, 0.60);
    padding: 96px 0px 72px 0px;
}

.wrapper-white {
    width: 100%;
    margin-bottom: 48px;
}

.wrapper-grey {
    background-color: #f5f5f5;
    width: 100%;
}

.wrapper-blue {
    width: 100%;
    background-color: rgba(10, 171, 200, 0.90);
    padding: 96px 0px 72px 0px;
    margin-bottom: 48px;
}

.wrapper-dark-blue {
    width: 100%;
    background-color: rgba(6, 107, 155, 0.90);
    padding: 96px 0px 72px 0px;
    margin-bottom: 48px;
}


/*  1.4  Boxes  
/*----------------------------------------------------------------------------*/

.box {
    padding: 24px;
    padding-bottom: 0px;
    color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    display: inline-block;
    width: 100%;
    margin-bottom: 24px;
}

.box-color h1,
.box-color h2,
.box-color h3,
.box-color a,
.box-color {
    color: #fff;
}

.box-white {
    background-color: #fff;
}

.box-yellow {
    background: #ffa613 url('../img/bg-box-yellow.png');
    background-position: bottom center;
    background-repeat: no-repeat;
}

.box-blue {
    background: #00abc7 url('../img/bg-box-blue.png');
    background-position: bottom right;
    background-repeat: no-repeat;
}

.box-purple {
    background: #7e3f99 url('../img/bg-box-purple.png');
    background-position: top center;
    background-repeat: no-repeat;
}

.box-dark-blue {
    background: #066b9b url('../img/bg-box-purple.png');
    background-position: bottom center;
    background-repeat: no-repeat;
}

.box-green {
    background: #94c33c url('../img/bg-box-blue.png');
    background-position: top center;
    background-repeat: no-repeat;
}

.box-red {
    background: #fb3d1d url('../img/bg-box-yellow.png');
    background-position: bottom left;
    background-repeat: no-repeat;
}


/*  1.5  Buttons  
/*----------------------------------------------------------------------------*/

.btn {
    font-family: 'BariolBold', sans-serif;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    line-height: 48px;
    padding: 0px 48px;
    height: 48px;
    margin: 0px 24px 24px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.btn-small {
    font-family: 'BariolBold', sans-serif;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    line-height: 48px;
    padding: 0px 48px;
    height: 48px;
    margin: 0px 24px 24px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.btn:last-of-type {
    margin: 0px 0px 24px 0px;
}

.btn:hover {
    opacity: 0.85;
    color: #fff;
}

.wrapper-color .btn-white,
.box-color .btn-white,
.btn-white {
    background-color: #fff;
    color: #00abc7;
}

.btn-white:hover {
    opacity: 1;
    color: #066b9b;
}

.btn-yellow {
    background-color: #ffa613;
}

.btn-blue {
    background-color: #00abc7;
}

.btn-dark-blue {
    background-color: #066b9b;
}

.btn-purple {
    background-color: #7e3f99;
}

.btn-green {
    background-color: #94c33c;
}

.btn-red {
    background-color: #fb3d1d;
}


/*  1.6  Icons  
/*----------------------------------------------------------------------------*/

.icon {
    text-align: center;
    font-size: 18px;
    color: #fff;
    padding-top: 15px;
    width: 48px;
    height: 48px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    float: left;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.icon-small {
    text-align: center;
    font-size: 12px;
    color: #fff;
    padding-top: 8px;
    width: 24px;
    height: 24px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    float: left;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.icon:hover {
    opacity: 0.85;
}

.icon-clean {
    text-align: left;
    font-size: 18px;
    padding-top: 5px;
    float: left;
}

.icon-white {
    color: #535353;
    background-color: #fff;
}

.icon-green {
    background-color: #94c33c;
}

.icon-blue {
    background-color: #00abc7;
}

.icon-big {
    font-size: 48px;
    margin-bottom: 24px;
}

.icon-medium {
    font-size: 32px;
}

.icon-left {
    float: left;
}

.icon-left .icon-medium {
    float: left;
}

.icon-left .icon-txt {
    padding-top: 6px;
    margin-left: 48px;
}


/*----------------------------------------------------------------------------*/


/*  2.  Header 
/*----------------------------------------------------------------------------*/


/*  2.1  Navbar  
/*----------------------------------------------------------------------------*/

#navigation-menu {
    float: left;
}

.navbar {
    margin-bottom: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 24px 0px 0px 0px;
    background-color: #fff;
}

.navbar-nav > li {
    background-color: transparent;
    padding-bottom: 0px;
}

.navbar-nav > li > a {
    font-weight: 400;
    font-size: 18px;
    display: block;
    color: #535353;
    text-decoration: none;
    line-height: 48px;
    padding: 0 24px;
    background-color: transparent;
}
.navbar-nav li.current-menu-item > a{
	color: #fff;
    background-color: #066b9b;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;  }
	/*
.navbar-nav > li.current-menu-item a, 
.navbar-nav > li.current-menu-item a:active,
.navbar-nav > li.current-menu-item a:focus,
.navbar-nav > li.current-menu-item a:hover,
.navbar-nav > .current a {
    color: #fff;
    background-color: #066b9b;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
*/
 .navbar-nav > li > a:active,
.navbar-nav > li > a:focus,
.navbar-nav > li > a:hover,
.navbar-nav > .current a {
    color: #fff;
    background-color: #066b9b;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

nav:after {
    content: "";
    display: table;
    clear: both;
}

nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    z-index: 999;
}

nav ul li {
    margin: 0px;
    display: inline-block;
    float: left;
    text-align: left;
	
}

nav ul li ul {
    /*margin-top: 2px;*/
    padding: 12px 0px;
    background-color: #00abc7;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

nav ul li ul a {
    color: #fff;
    padding: 6px 24px;
}

nav ul li ul li:hover > a {
    color: #066b9b;
    background: rgb(247, 247, 247);
}

nav ul li ul a:hover {
    color: #fff;
    background: rgb(247, 247, 247);
}

nav a {
    display: block;
    text-decoration: none;
}

nav ul ul {
    display: none;
    position: absolute;
    top: 100%;
}

nav ul li:hover > ul {
    display: inherit;
}

nav ul ul li {
    min-width: 220px;
    float: none;
    display: list-item;
    position: relative;
}

nav ul ul ul {
    position: absolute;
    top: 0px;
    left: 100%;
    background: rgb(247, 247, 247);
    -webkit-border-radius: 4px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius: 4px;
    -moz-border-radius-topleft: 0;
    border-radius: 4px;
    border-top-left-radius: 0;
}

nav ul ul ul a {
    color: #535353;
}

.navbar-toggle {
    position: relative;
    float: right;
    padding: 0px;
    margin-top: 0px;
    margin-right: 12px;
    margin-left: 12px;
    margin-bottom: 0px;
    background-color: transparent;
    background-image: none;
    border: none;
    border-radius: 4px;
}

.nav {
    margin: 0px;
}


/*  

li > a:after {
    content: ' \25BE';
    color: #ffa613;
    margin-left: 6px;
    font-size: 16px;
    margin-top: -2px;
    position: absolute;
}

li > a:only-child:after {
    content: '';
}

*/


/*  2.2  Socila Icons  
/*----------------------------------------------------------------------------*/

.header-social {
    float: right;
    text-decoration: none;
}

.header-social ul li {
    display: inline-block;
}


/*----------------------------------------------------------------------------*/


/*  3.  Slider 
/*----------------------------------------------------------------------------*/


/*  3.1 OWL Slider - Controls
/*----------------------------------------------------------------------------*/

.owl-pagination {
    width: 100%;
    position: absolute;
    bottom: -40px;
    text-align: center;
}

.owl-controls .owl-page {
    display: inline-block;
    zoom: 1;
}

.owl-controls .owl-page span {
    display: block;
    width: 12px;
    height: 12px;
    margin: 0 4px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background-color: transparent;
    border: 2px solid #fff;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    -ms-transition: all .2s linear;
    transition: all .2s linear;
}

.owl-controls .owl-page.active span,
.owl-controls .clickable .owl-page:hover span {
    background-color: #fff;
    border: 2px solid #fff;
}

.owl-controls .owl-buttons {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    width: 100%;
    display: block;
}

.owl-controls .owl-buttons .owl-prev {
    position: absolute;
    left: -60px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.owl-controls .owl-buttons .owl-next {
    position: absolute;
    right: -60px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in;
    transition: all .2s ease-in-out;
}


/*  3.1 Intro Picture Slider
/*----------------------------------------------------------------------------*/

#header-slider {
    width: 100%;
    height: 384px;
    background-color: #000;
    overflow: hidden;
        color: #fff;
}

#header-slider .slider-txt {
    position: absolute;
    background-color: rgba(2, 2, 2, 0.60);
    left: 0px;
    padding-top: 96px;
    color: #fff;
    width: 100%;
    height: 100%;
    z-index: 10;
}

#header-slider h1 {
    color: #fff;
}

#header-slider h2 {
    font-family: 'BariolLight', sans-serif;
    color: #fff;
    font-size: 36px;
    line-height: 36px;
}

#header-slider .slider-img {
    width: 100%;
    overflow: hidden;
}

#header-slider .slider-img img {
    width: 100%;
    height: auto;
}

#header-slider .owl-pagination {
    width: 100%;
    position: absolute;
    bottom: 40px;
    text-align: center;
}

#header-slider .owl-controls .owl-buttons .owl-prev {
    left: 0px;
    opacity: 0;
}

#header-slider .owl-controls .owl-buttons .owl-next {
    right: 0px;
    opacity: 0;
}

#header-slider:hover .owl-controls .owl-buttons .owl-prev {
    left: 48px;
    opacity: 1;
}

#header-slider:hover .owl-controls .owl-buttons .owl-next {
    right: 48px;
    opacity: 1;
}


/*  3.2 Subpage slider
/*----------------------------------------------------------------------------*/

#subpage-slider {
    width: 100%;
    height: 432px;
    overflow: hidden;
    margin-bottom: 48px;
    background-color: #94c33c;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

#subpage-slider .owl-pagination {
    width: 100%;
    position: absolute;
    bottom: 40px;
    text-align: center;
}

#subpage-slider .owl-controls .owl-buttons .owl-prev {
    left: 0px;
    opacity: 0;
}

#subpage-slider .owl-controls .owl-buttons .owl-next {
    right: 0px;
    opacity: 0;
}

#subpage-slider:hover .owl-controls .owl-buttons .owl-prev {
    left: 48px;
    opacity: 1;
}

#subpage-slider:hover .owl-controls .owl-buttons .owl-next {
    right: 48px;
    opacity: 1;
}

#subpage-slider .item {
    height: 432px;
    overflow: hidden;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

#subpage-slider .slider-txt {
    position: absolute;
    left: 0px;
    padding: 72px 48px;
    color: #fff;
    background-color: #94c33c;
    width: 50%;
    height: 100%;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

#subpage-slider .slider-txt h3 {
    color: #fff;
    font-size: 24px;
    line-height: 36px;
}

#subpage-slider .slider-txt a {
    color: #fff;
}		

#subpage-slider .slider-img {
    width: 50%;
    float: right;
    overflow: hidden;
}

#subpage-slider .slider-img img {
    width: 100%;
    height: auto;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-bottomleft: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}


/*----------------------------------------------------------------------------*/


/*  4.  Lists Types
/*----------------------------------------------------------------------------*/

.star-list li::before {
    font-family: 'FontAwesome';
    content: '\f005';
    color: #00abc7;
    padding-right: 12px;
    margin-left: -24px;
    font-size: 13px;
}

.star-list li {
    margin-left: 24px;
}

.circle-list li::before {
    font-family: 'FontAwesome';
    content: '\f111';
    color: #94c33c;
    padding-right: 12px;
    margin-left: -24px;
    font-size: 13px;
}

.circle-list li {
    margin-left: 24px;
}

div.text-content li::before {
    font-family: 'FontAwesome';
    content: '\f111';
    color: #94c33c;
    padding-right: 12px;
    margin-left: -24px;
    font-size: 13px;
}

div.content li::before {
    font-family: 'FontAwesome';
    content: '\f111';
    color: #94c33c;
    padding-right: 12px;
    margin-left: -24px;
    font-size: 13px;
}

div.text-content li {
    margin-left: 24px;
}

div.content li {
    margin-left: 24px;
}

.square-list li::before {
    font-family: 'FontAwesome';
    content: '\f0c8';
    color: #337ab7;
    padding-right: 12px;
    margin-left: -24px;
    font-size: 13px;
}

.square-list li {
    margin-left: 24px;
}

.check-list li::before {
    font-family: 'FontAwesome';
    content: '\f00c';
    color: #ffa613;
    padding-right: 12px;
    margin-left: -24px;
    font-size: 13px;
}

.check-list li {
    margin-left: 24px;
}


/*----------------------------------------------------------------------------*/


/*  5.  Homepage Elements
/*----------------------------------------------------------------------------*/

.homepage-title-box .box-bg {
    z-index: -1;
    position: absolute;
    top: -48px;
    left: -48px;
    width: 60%;
}

.homepage-title-box h3 {
    font-size: 24px;
    line-height: 36px;
}

.homepage-box {
    padding: 48px 0px;
    padding-bottom: 24px;
}

.homepage-box .box-ease-out {
    opacity: 1;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.homepage-box:hover .box-ease-out {
    opacity: 0;
    transform: scale(0.1);
}

.homepage-box:hover .box-ease-in {
    opacity: 1;
    visibility: visible;
    bottom: 10%;
}

.homepage-box .box-ease-in {
    position: absolute;
    left: 0%;
     margin: 0px 24px 12px 24px;
    bottom: -20px;
    opacity: 0;
    visibility: hidden;
    display: inline-block;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.homepage-post {
    margin-bottom: 24px;
}

.homepage-post h3 {
    margin-bottom: 0px;
}

.homepage-post h3 a {
    text-decoration: none;
}

.homepage-post img {
    max-height: 192px;
    margin-bottom: 24px;
    overflow: hidden;
}

.mps-in-numbers {
    background: url('../img/slider-bg-01.jpg');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.mps-in-numbers .wrapper-blue {
    margin-bottom: 0px;
}

.mps-numbers-txt .number {
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 12px;
}

.mps-numbers-txt {
    font-family: 'BariolBold', sans-serif;
    font-size: 18px;
    padding: 12px 0px;
}


/*----------------------------------------------------------------------------*/


/*  6.  Subpages 
/*----------------------------------------------------------------------------*/

.subpage-container {
    padding-top: 72px;
}

.page-title {
    background: url('../img/slider-bg-01.jpg');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-title .wrapper-color {
    margin-bottom: 0px;
}

.page-title .breadcrumbs {
    padding-top: 12px;
    float: right;
    font-size: 14px;
}

.page-title .breadcrumbs a {
    text-decoration: none;
    font-family: 'BariolRegular', sans-serif;
}

.page-title .breadcrumbs a:hover {
    text-decoration: underline;
}

.page-title .breadcrumbs .current {
    font-family: 'BariolBold', sans-serif;
}

.page-title .breadcrumbs span {
    padding: 0px 8px;
}

.subpage h2,
.subpage h1,
.subpage .section-title {
    color: #066b9b;
    padding-bottom: 12px;
    border-bottom: 1px solid #f5f5f5;
    font-size: 23px;
    line-height: 24px;
}

.subpage .box h1,
.subpage .box h2 {
    padding-bottom: 0;
    border-bottom: none;
}

.subpage img {
    margin-bottom: 24px;
}

.subpage-post {
    margin-bottom: 24px;
}

.subpage-post h3 {
    margin-bottom: 0px;
}

.subpage-post h3 a {
    text-decoration: none;
}

.subpage-post img {
    width: auto;
    margin-bottom: 24px;
}


/*  7.  News page  
/*----------------------------------------------------------------------------*/

.pagination {
    width: auto;
    margin-top: 15px;
    margin-bottom: 15px;
}

.post-news-page {
    border-bottom: 1px solid #f5f5f5;
    padding: 48px 0px 24px 0px;
    float: left;
}

.post-news-page:first-of-type {
    padding-top: 0px;
}

.post-content {
    overflow: hidden;
    padding-left: 24px;
}

.post-content h3 {
    margin-bottom: 0px;
}

.post-content h3 a {
    text-decoration: none;
}

.post-img {
    width: 35%;
    float: left;
}

.tags,
.archive {
    padding: 24px;
    margin-bottom: 24px;
    background-color: #f5f5f5;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.tags a {
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 12px;
    background-color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin-right: 6px;
    margin-bottom: 12px;
}

.tags a:hover {
    background-color: #00abc7;
    color: #fff;
}

.archive ul {
    margin-bottom: 0px;
}

.archive a {
    text-decoration: none;
    color: #066b9b;
    font-size: 14px;
}

.pager {
    width: 100% !important;
    text-align: center !important;
    margin: 48px 0px 0px 0px !important;
}

.pager a {
    display: inline-block !important;
    text-decoration: none !important;
    font-size: 14px !important;
    padding: 5px 12px !important;
    color: #343434 !important;
    background-color: #f5f5f5 !important;
    border: none !important;
    -webkit-border-radius: 4px !important;
    -moz-border-radius: 4px !important;
    border-radius: 4px !important;
}

.pager a:hover {
    background-color: #00abc7 !important;
    color: #fff !important;
}

.pager .previous {
    float: left !important;
}

.pager .next {
    float: right !important;
}

.pager ul li {
    display: inline-block !important;
}

.pager .active {
    background-color: #00abc7 !important;
    color: #fff !important;
}

.pager li > a,
.pager li > span {
    border: none !important;
}

.pager {
    padding-bottom: 30px;
}

.pagination {
    width: 100%;
    text-align: center;
    margin: 48px 0px 0px 0px;
}

.pagination a {
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 12px;
    color: #343434;
    background-color: #f5f5f5;
    border: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.pagination a:hover {
    background-color: #00abc7;
    color: #fff;
}

.pagination .previous {
    float: left;
}

.pagination .next {
    float: right;
}

.pagination ul li {
    display: inline-block;
}

.pagination .active {
    background-color: #00abc7;
    color: #fff;
}


/*  8.  Our Staff  
/*----------------------------------------------------------------------------*/

.staff-member-small,
.staff-member-big {
    padding-bottom: 24px;
    float: left;
}

.staff-member-big .staff-member-content {
    overflow: hidden;
    padding-left: 24px;
}


/* zmiana .staff-member-big .staff-member-img { */

.staff-member-big img {
    float: left;
    width: 40%;
}

.staff-member-small h2 {
    font-size: 18px;
}

.staff-member-small .staff-member-content {
    overflow: hidden;
    padding-left: 0;
}


/* zmiana .staff-member-small .staff-member-img { */

.staff-member-small img {
    width: 100%;
}


/*  9.  Sidebars  
/*----------------------------------------------------------------------------*/

.sidebar-list {
    background: #f5f5f5;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.sidebar-piramry-ul,
.sidebar-piramry-ul a {
    text-decoration: none;
    color: #066b9b;
    font-size: 14px;
}

.sidebar-piramry-ul a:hover {
    color: #00abc7;
}

.sidebar-piramry-ul li {
    line-height: 12px;
    padding: 12px 24px;
}

.sidebar-piramry-ul li:first-child {
    padding-top: 24px;
}

.sidebar-piramry-ul li:last-child {
    border-bottom: none;
    padding-bottom: 24px;
}

.sidebar-piramry-ul li {
    border-bottom: 1px solid #fff;
}

.sidebar-secondary-ul,
.sidebar-secondary-ul a {
    font-family: 'BariolRegular', sans-serif;
    text-decoration: none;
}

.sidebar-secondary-ul li {
    border-bottom: none;
    line-height: 12px;
    padding: 6px 24px;
    padding-left: 36px;
}

.sidebar-secondary-ul li:hover {
    border-bottom: none;
}

.sidebar-secondary-ul li:first-child {
    padding-top: 12px;
}

.sidebar-secondary-ul li:last-child {
    border-bottom: 1px solid #fff;
    padding-bottom: 12px;
}

.sidebar-buttons a .icon-left .icon-medium,
.sidebar-buttons a {
    text-decoration: none;
    color: #fff;
}

.sidebar-buttons a:hover .icon-left .icon-medium {
    color: #fff;
}

.sidebar-buttons a:hover {
    opacity: 0.85;
}


/*  10.  Tabs  
/*----------------------------------------------------------------------------*/

#Tabs > li {
    width: 125px;
}

.nav-tabs {
    border-bottom: none;
    display: inline-block;
}

.nav-tabs > li {
    background: #f5f5f5;
    padding: 0px;
    text-align: center;
    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.nav-tabs > li > a {
    max-width: 136px;
    min-height: 136px;
    margin: 0px;
    border: none;
    padding: 24px 24px;
    border-radius: 0px;
    display: inline-block;
    text-decoration: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.nav-tabs > li > a:hover {
    background: #94c33c;
    color: #fff;
}

.nav-tabs > li > a .icon-medium {
    width: 100%;
    margin-bottom: 12px;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.nav-tabs > li > a:hover .icon-medium {
    color: #fff;
}

.nav-tabs>li.active>a .icon-medium,
.nav-tabs>li.active>a:hover .icon-medium,
.nav-tabs>li.active>a:focus .icon-medium,
.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
    color: #fff;
    border: none;
    background: #00abc7;
}

.tab-content .tab-box {
    padding-top: 48px;
}


/*  11.  Forms  
/*----------------------------------------------------------------------------*/

.form-box {
    background: #f5f5f5;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 24px;
}

.form-box .btn {
    margin-left: 24px;
}

.form-inner-grup {
    border-bottom: 1px solid #fff;
    padding: 24px;
}

.form-inner-grup p {
    margin-bottom: 0px;
}

.form-inner-grup:last-of-type {
    border-bottom: none;
}

.form-control:hover,
.form-control:focus,
.form-control:active {
    border-color: #00abc7;
    box-shadow: none;
}

#inputError1,
#inputError1:hover,
#inputError1:focus,
#inputError1:active {
    border-color: #fb3d1d;
    box-shadow: none;
}

.has-error,
.has-error .checkbox-inline,
.has-error.checkbox label {
    color: #fb3d1d;
}

#checkboxError,
#checkboxError:hover,
#checkboxError:focus,
#checkboxError:active {
    border-color: #fb3d1d;
    box-shadow: none;
}

.form-req {
    color: #fb3d1d;
    padding: 0px 4px;
}


/*----------------------------------------------------------------------------*/


/*  12.  Modal 
/*----------------------------------------------------------------------------*/

.modal-content {
    padding: 24px;
    text-align: center;
}

.modal-content h1,
.modal-content h2 {
    color: #066b9b;
    padding-bottom: 12px;
    border-bottom: 1px solid #f5f5f5;
    font-size: 24px;
    line-height: 24px;
}


/*----------------------------------------------------------------------------*/


/*  13.  Footer 
/*----------------------------------------------------------------------------*/

.donations {
    margin-bottom: 24px;
}

.donations h2 {
    margin-top: 12px;
}

.twett-box {
    margin-bottom: 24px;
}

.twett-box .twett-txt {
    margin-left: 36px;
}

.update-box .box-color {
    padding-bottom: 16px;
}

.update-box .btn-white {
    padding: 0px 24px;
}

.update-box ul li {
    display: inline-block;
}

.update-box li {
    padding-right: 4px;
}

.update-box li:last-child {
    padding-right: 0px;
}

.update-box .box-blue .icon-white {
    color: #00abc7;
}

.contact-box .box-color {
    padding-bottom: 48px;
}

.contact-box .box-yellow .icon-white {
    color: #ffa613;
}

.contact-box li {
    font-family: 'BariolBold', sans-serif;
    margin-bottom: 24px;
    font-size: 18px;
}

.contact-box li .icon-small {
    margin-right: 12px;
}

footer .footer-img-bg {
    background: url('../img/slider-bg-01.jpg');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

footer .wrapper-grey {
    background-color: #f5f5f5;
    width: 100%;
    padding: 64px 0px 48px 0px;
}

footer .wrapper-blue {
    padding: 48px 0px 24px 0px;
    margin-bottom: 0px;
}

footer .wrapper-blue .col-md-2 {
    max-width: 160px;
}

footer .wrapper-blue ul li {
    display: inline-block;
}

.menu-footer .child {
    width: auto;
}

.menu-footer .child {
    display: inline-block !important;
    vertical-align: top !important;
    margin-right: 48px;
}

.menu-footer,
footer .wrapper-blue ul {
    margin-top: 36px;
}

.menu-footer li:first-of-type {
    margin-left: 24px;
}

.menu-footer > li > a:active,
.menu-footer > li > a:focus,
.menu-footer > li > a:hover,
.menu-footer > .current a {
    color: #fff;
    text-decoration: underline;
}

footer .wrapper-blue li a {
    text-decoration: none;
}

footer .wrapper-blue li:hover {
    text-decoration: underline;
}

footer .wrapper-dark-blue {
    padding: 24px 0px 0px 0px;
    margin-bottom: 0px;
}

footer .wrapper-dark-blue p {
    font-size: 13px;
}
footer .alignleft {
	float: left;
	margin: 0.375em 1.75em 1.75em 0;
}

footer .alignright {
	float: right;
	margin: 0.375em 0 1.75em 1.75em;
}

footer .aligncenter {
	clear: both;
	display: block;
	margin: 0 auto 1.75em;
}
.wpcf7-form label.error{color: #f00;
    font-size: 1em;
    display: block;
    font-weight: normal;
}
#wpcf7-f1886-p1459-o1 #captcha{
margin-left: 0 !important;
}