@charset "UTF-8";
/* -----------------------------------------
   Home page slider
----------------------------------------- */
.home #home-slider .slick-slide {
  height: 760px;  
}
#home-slider .slick-slide {
  height: 330px;
  /*define the height of slide*/
  -moz-transition: height 0.3s ease;
  -o-transition: height 0.3s ease;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
body:not(.home) #home-slider .slider-caption {
  display: none;
}
#home-slider .slider-caption {
  position: absolute;
  display: inline-block;
  top: 35%;
  left: 50%;
  width: 100%;
  max-width: 500px;
  text-align: center;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#home-slider .slider-caption h3 {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  background-color: rgba(0,106,179,.7);
  margin: 0;
  padding: 16px 20px 14px;
  line-height: 1.2;
}
#home-slider .slider-caption .slide-content {
  position: relative;
  display: inline-block;  
  padding: 20px;
  background-color: rgba(255,255,255,.7);
}
#home-slider .slider-caption p {
  color: #006ab3;
  font-size: 18px;
  font-weight: normal;
  margin: 0;
}
.more {
  position: absolute;
  right: 15px;
  bottom: 10px;
  background-color: #006ab3;
  color: #fff;
  font-size: 14px;
  padding: 4px 10px;
  opacity: 1;
}
.slide-button {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background-color: #006ab3;
  color: #fff;
  font-size: 14px;
  padding: 4px 10px;
  opacity: 1;
}
.more:after,
.slide-button:after {
  font: normal normal normal 14px/1 FontAwesome;
  content: '\f105';
  padding-left: 7px;
  opacity: .5;
}
.more:hover,
.slide-button:hover {
  color: #fff;
  background-color: #014879;
}

@media only screen and (max-width: 1000px) {
  #home-slider .slick-slide {
    height: 400px;
    /*define the height of slide*/
  }
}
@media only screen and (max-width: 640px) {
  #home-slider .slick-slide {
    height: 300px;
    /*define the height of slide*/
  }
}
/* -----------------------------------------
   WordPress Core Classes
----------------------------------------- */
.alignnone {
  margin: 0 1em 1em 0;
}

.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}
.wp-caption.alignnone {
  margin: 0 1em 1em 0;
}
.wp-caption.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}
.wp-caption.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

/* -----------------------------------------
   General fixes
----------------------------------------- */
html, body {
  height: auto;
}

#wpadminbar {
  opacity: 0.3;
  transition: 0.2s opacity linear;
  -webkit-transform: translateZ(0);
}
#wpadminbar:hover, #wpadminbar:focus {
  opacity: 1;
}

body {
  -webkit-font-smoothing: antialiased;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Placeholder styling */
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #d1d1d1;
  font-style: italic;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #d1d1d1;
  font-style: italic;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #d1d1d1 !important;
  font-style: italic;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #d1d1d1;
  font-style: italic;
}

/* Input Styling */
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea {
  padding: 0 10px;
  margin-bottom: 5px;
  height: 26px;
  line-height: 24px;
  color: #333;
  border: 1px solid #ddbcd5;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  font-size: 14px;
  /* STYLES GO THERE */
}
textarea {
  width: 100% !important;
}

textarea[rows] {
  height: 150px;
  /*Styles for TextArea*/
}

/* Responsive video container (YouTube, Vimeo) */
embed, iframe, object {
  max-width: 100%;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Align Middle */
.align-middle {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* -----------------------------------------
   Typography
----------------------------------------- */
a:focus {
  outline: none;
}

address {
  font-style: normal;
}

p:empty {
  display: none;
}

body, h1, h2, h3, h4, h5, h6, p, a {
  font-family: "Lato", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  color: #006ab3;  
}

img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* -----------------------------------------
    Clearfix
----------------------------------------- */
.clearfix {
  zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
  height: 0;
  overflow: hidden;
}
.clearfix:after {
  clear: both;
}
/* ------------------------------------
    Basic Styles
------------------------------------- */
h1 {
  font-size: 36px;
  text-transform: uppercase;
  /*basic heading styles*/
}

h2 {
  font-size: 26px;
  /*basic heading styles*/
}

h3 {
  font-size: 20px;
  /*basic heading styles*/
}

h4 {
  font-size: 18px;
  /*basic heading styles*/
}

h5 {
  font-size: 16px;
  /*basic heading styles*/
}

h6 {
  font-size: 14px;
  /*basic heading styles*/
}

p {
  /*basic paragraph styles*/
  font-size: 14px;
  line-height: 24px;
  text-align: justify;
  color: #555;
}
p a:not([href*='tel:']) span {
  text-decoration: underline;
}

ul {
  /*basic list styles*/
}
ul li {
  /*basic list-item styles*/
}

a {
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #006ab3;
}
a:hover, a:focus {
  color: #006ab3;
  /*basic hover and focus effects*/
}

.button {
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.button:hover, .button:focus {
  /*basic hover and focus effects*/
}
.cover,
#home-slider .slick-slide, .gallery .columns .portfolio-item-cont .portfolio-link {
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

/*-------------------------------
        Paginator
-------------------------------*/
ul.pagination li a {
  padding: 0 7px;
  border-radius: 0;
}

.pagination.current {
  color: #fff;
  background: #006ab3;
  padding: 1px 7px 2px 7px;
}

/* ------------------------------------
    Header Styles
------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 200;
  -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);
  box-shadow: 0 0 5px rgba(0,0,0,.3);
}
.header .row {
  max-width: 1025px;
}

/* ------------------------------------
    Content Styles
------------------------------------- */
.content-wrap {
  background-color: rgba(255,255,255,.93);
  padding-top: 40px;
  padding-bottom: 60px;
}
.home .content-wrap {
  position: relative;
  z-index: 100;
  padding-bottom: 0;
  margin-top: -220px;
}
.content-caption {
  margin-bottom: 50px;
}
.content-caption p {
  color: #006ab3;
  margin-bottom: 0;
}
.content-caption h1 {
  margin: 0;
  line-height: 1;
}
.page-slider {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #f2f7fb;
}
.sidebar .portfolio-item-cont {
  margin-bottom: 15px !important;
}
.sidebar .portfolio-item-cont a {
  height: 160px !important;
}
.sidebar {
  padding-bottom: 30px;
}
.sidebar .sidebar-contact-link {
  position: relative;
  display: block;
  background-color: #006ab3;
  padding: 10px;
}
.sidebar .sidebar-contact-link:before {
  position: absolute;
  content: '';
  border-style: solid;
  border-color: #006ab3 transparent transparent;
  border-width: 8px;
  top: 100%;
  left: 10%;
  pointer-events: none;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.sidebar .sidebar-contact-link:hover:before {
  left: 64%;
}
.sidebar .sidebar-contact-link img {
  position: absolute;
  bottom: -58px;
  left: 6%;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  pointer-events: none;
}
.sidebar .sidebar-contact-link:hover img {
  left: 60%;
}
.sidebar .sidebar-contact-link h3 {
  color: #fff;
}
.sidebar .sidebar-contact-link h4 {
  display: inline-block;
  background-color: #fff;
  padding: 7px 12px;
  margin-bottom: 0;
  margin-right: -10px;
}
.item-slide-image {
  display: block;
  height: 200px;
}
#pages-slider {
  margin-top: 30px;
}
#pages-slider .matchHeight {
  padding-bottom: 50px;
}
#pages-slider h3 {
  text-transform: uppercase;
  margin: 12px 0;
  font-weight: 600;
}
#pages-slider .slick-next {
  right: -35px;
  -webkit-transform: scaleY(2);
  -ms-transform: scaleY(2);
  -o-transform: scaleY(2);
  transform: scaleY(2);
}
#pages-slider .slick-next:before {
  color: #83b6da;
  content: '\f105';
}
#pages-slider .slick-next:after {
  font-size: 30px;
  font-family: FontAwesome;
  color: #c8dfef;
  content: '\f105';
  margin-left: -3px;
}
#pages-slider .slick-prev {
  left: -35px;
  -webkit-transform: scaleY(2);
  -ms-transform: scaleY(2);
  -o-transform: scaleY(2);
  transform: scaleY(2);
}
#pages-slider .slick-prev:before {
  color: #c8dfef;
  content: '\f104';
  margin-right: -3px;
}
#pages-slider .slick-prev:after {
  color: #83b6da;
  font-size: 30px;
  font-family: FontAwesome;
  content: '\f104';
}
.subpage-image {
  display: block;
  height: 160px;
  max-width: 300px;  
  margin: 0 auto;  
}
.item-content-wrap {
  max-width: 300px;  
  margin: 0 auto;  
}
.subpages h3 {
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
.subpage-item {
  padding-bottom: 30px;
  margin-bottom: 40px;
}
.subpage-link {
  text-decoration: underline;
  font-size: 14px;
  font-weight: bold;
}
.subpage-link:hover {
  text-decoration: none;
}
.home .page-slider {
  margin-top: 60px;
}
/* ------------------------------------
    Video
------------------------------------- */
#videoHolder {
  margin-bottom: 30px;
  padding-bottom: 60%;
}

/* ------------------------------------
	TMPL: Contacts
------------------------------------- */
.contact-link {
  display: block;
  font-size: 16px;
  color: #000;
  font-weight: 700;
  margin-top: 20px;
}
.contact-link:hover {
  color: #006ab3;
}
.contact-link .fa {
  display: inline-block;
  width: 25px;
  padding: 0 10px 0 0;
  font-size: 20px;
  color: #006ab3;
  vertical-align: middle;
}
.contact-link + .contact-link {
  margin-top: 10px;
}
.contact-link.email {
  text-decoration: underline;
}

.map-col .acf-map {
  height: 350px;
}
.map-col address {
  font-style: normal;
  margin-top: 15px;
}
.map-col p {
  margin-bottom: 10px;
}

/*basic Gravity Form styles and fixes, if you dont need/use this comment or delete styles below*/
.gform_fields {
  margin: 0;
}

.gfield {
  list-style: none;
}

.gfield_label {
  display: none;
}

.gfield_error input, .gfield_error textarea {
  border-color: red;
}

.gform_confirmation_message {
  margin-bottom: 15px;
}

.gform_footer {
  text-align: right;
  /*alining of submit button*/
}

.validation_error {
  margin-bottom: 15px;
  padding: 5px;
  color: #cc0000;
  border: 1px solid red;
}

.validation_message {
  margin-bottom: 10px;
}

button, .button, input[type='submit'] {
  background-color: #006ab3;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Lato", sans-serif;
  padding: 10px 20px;
}
button:hover, .button:hover, input[type='submit']:hover {
  background-color: #024674;
}

/* ------------------------------------
    Gallery
------------------------------------- */
/*Gallery styles, if you dont need/use this comment or delete styles below*/
.gallery .columns {
  float: left !important;
}
.gallery .columns .portfolio-item-cont {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.gallery .columns .portfolio-item-cont .album-name {
  position: absolute;
  bottom: -33px;
  left: 0;
  width: 100%;
  line-height: 33px;
  font-size: 12px;
  color: #fff;
  background-color: #006ab3;
  padding-left: 10px;
  padding-right: 10px;
  -moz-transition: bottom 0.3s ease;
  -o-transition: bottom 0.3s ease;
  -webkit-transition: bottom 0.3s ease;
  transition: bottom 0.3s ease;
}
.gallery .columns .portfolio-item-cont .album-name:hover {
  color: #fff;
}
.gallery .columns .portfolio-item-cont:hover .portfolio-link:before {
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.gallery .columns .portfolio-item-cont:hover .album-name {
  bottom: 0;
}
.gallery .columns .portfolio-item-cont .portfolio-link {
  display: block;
  width: 100%;
  height: 210px;
  position: relative;
}
.gallery .columns .portfolio-item-cont .portfolio-link:before {
  content: '\f067';
  font-family: FontAwesome;
  font-size: 18px;
  width: 35px;
  height: 35px;
  display: inline-block;
  text-align: center;
  line-height: 33px;
  border: 2px solid #006ab3;
  background-color: #fff;
  color: #006ab3;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -moz-transition: -moz-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
}
.gallery .columns .portfolio-item-cont .portfolio-link img {
  display: block !important;
  width: 100%;
}

@media only screen and (max-width: 40.0625em) {
  .gallery .columns .portfolio-item-cont .album-name {
    bottom: 0;
  }
}
/* ------------------------------------
    Footer Styles
------------------------------------- */
.footer.sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
.footer .footer-logo {
  display: inline-block;
  padding: 35px 10px;
  background-color: #fff;
  max-height: 200px;
  max-width: 100%;
}
.footer .footer-logo img {
  max-width: 100%;
}
.footer-top {
  padding: 100px 0 145px;
}
.footer-top h3 {
  font-size: 26px;
  color: #006ab3;
  line-height: 30px;
  margin: 0;
}
.footer-socials {
  margin: 0;
  list-style: none;
  margin-top: 40px;
}
.footer-socials li {
  display: inline-block;
  margin: 0 30px;
}
.footer-socials li a {
  display: inline-block;  
  background-color: #006ab3;
  width: 90px;
  border-radius: 50%;
  text-align: center; 
  margin-bottom: 15px;
}
.footer-socials li a:hover {
  background-color: #014879;
}
.footer-socials li i {
  line-height: 90px;
  color: #fff;
  font-size: 45px;  
}
.footer p {
  margin: 0;
}
.footer .contact-links a {
  display: block;
}
.footer .contact-links a,
.footer address b,
.footer address a {
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
}
.footer .contact-links a:hover,
.footer address a:hover {
  color: rgba(255,255,255,.6);
}
.footer address b {
  text-transform: uppercase;
}
.footer .copy {
  /*style copyright here*/
  color: #006ab3;
  font-size: 14px;
  margin: 0;
}
.footer .copy .nomurphy:before {
  /*change delimeter if you need*/
  content: "\00a0\00a0-\00a0\00a0 ";
}
.footer .copy .nomurphy a {
  border-bottom: 1px solid #006ab3;
  text-decoration: none;
  color: #006ab3;
}
.footer .copy .nomurphy a:hover {
  border-bottom-color: transparent;
}
.footer-middle {
  background-color: #006ab3;
  padding: 30px 0;
}
.footer-bottom {
  padding: 12px 0;
}
