/*
Theme Name: Big Splash Web Design
Author: Big Splash Web Design
*/


/* Global */
body {
  background-color: #fff;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  color: #1a2768;
  font-size: 15px;
}
.text-blue {
  color: #1a2768 !important;
}
.text-white {
  color: #fff !important;
}
.font-khand {
  font-family: 'Khand', sans-serif;
}
.font-semi-bold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.font-extra-bold {
  font-weight: 800;
}
img.alignright, img.alignleft {
	display: block;
	margin: 0 auto 20px;
	max-width: 100%;
	height: auto;
}
@media (min-width: 768px){
	img.alignright {
	  display: inline;
	  float: right;
	  margin: 0 0 20px 20px;
	}
	img.alignleft {
	  display: inline;
	  float: left;
	  margin: 0 20px 20px 0;
	}
}
/* Header */
.site-header {
  position: relative;
  z-index: 1000;
}
#logo {
  height: 80px;
  width: 286px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 auto;
}
#logo a {
  display: block;
  height: 80px;
  width: 286px;
  background: url('assets/images/global/fidelis-cabling-logo.png') center top no-repeat;
}
/* Navigation */
#mobile-menu {
	cursor: pointer;
	padding: 15px 0;
	background: #1b3069;
	color: #fff;
}
.main-navigation {
	display: none;
}
.main-navigation.active {
	display: block;
}
@media (min-width: 576px) {
	.main-navigation {
		display: block;
	}
}
.main-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 576px) {
	.main-navigation ul li {
	  display: inline-block;
	  margin: 0 15px;
	  position: relative;
	}
}
.main-navigation ul li a {
  color: #1a2768;
  height: 40px;
  line-height: 40px;
  white-space: nowrap;
  
}
.main-navigation ul li a:hover {
  text-decoration: none;
}
.main-navigation ul li.menu-item-has-children span.fa-chevron-down {
  margin-left: 5px;
  font-size: 12px;
  display: none;
}
@media (min-width: 576px) {
	.main-navigation ul li.menu-item-has-children span.fa-chevron-down {
		display: inline;
	}
}
.main-navigation ul.sub-menu {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background: #ff9102;
  background: -moz-linear-gradient(left, #ff9102 0%, #ff6902 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #ff9102), color-stop(100%, #ff6902));
  background: -webkit-linear-gradient(left, #ff9102 0%, #ff6902 100%);
  background: -o-linear-gradient(left, #ff9102 0%, #ff6902 100%);
  background: -ms-linear-gradient(left, #ff9102 0%, #ff6902 100%);
  background: linear-gradient(to right, #ff9102 0%, #ff6902 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9102', endColorstr='#ff6902', GradientType=1 );
  text-align: left;
}
.main-navigation ul.sub-menu li {
  margin: 0;
}
.main-navigation ul.sub-menu li a {
  color: #fff;
  display: inline-block;
  width: 230px;
  padding-left: 20px;
}
.main-navigation ul.sub-menu li a:hover {
  background-color: #1a2768;
}
@media (min-width: 576px) {
	.main-navigation ul li.menu-item-has-children:hover > ul.sub-menu {
	  display: block;
	}
}
/* Home */
.top-section {
  background-color: #1b3069;
  padding: 3em;
}
@media (min-width: 576px) {
	.top-section {
	  background-image: url('assets/images/home/top-banner-bg.jpg');
	  background-repeat: no-repeat;
	  background-position: center center;
	  height: 624px;
	  font-size: 18px;
	  padding-top: 180px;
	}

}
.top-section a {
  font-size: 15px;
}
.top-section p {
  margin-bottom: 47px;
}
.callouts .callout > div {
  height: 253px;
  position: relative;
  padding: 65px 20px 0 127px;
  background-size: cover;
}
.callouts .callout > div .icon {
  position: absolute;
  z-index: 100;
  left: 19px;
  top: calc(50% - 30px);
}
.callouts .callout > div .title {
  position: absolute;
  z-index: 100;
  left: 130px;
  top: 200px;
  transition: .5s top ease;
  -moz-transition: .5s top ease;
  -webkit-transition: .5s top ease;
}
.callouts .callout > div:hover .title {
  top: 20px;
}
.callouts .callout > div .text {
  position: relative;
  z-index: 100;
  opacity: 0;
  transition: 0.5s opacity ease;
  -moz-transition: 0.5s opacity ease;
  -webkit-transition: 0.5s opacity ease;
}
.callouts .callout > div:hover .text {
  opacity: 1;
  transition-delay: .5s;
  -moz-transition-delay: .5s;
  -webkit-transition-delay: .5s;
}
.callouts .callout > div .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
  background-color: rgba(26, 39, 104, 0.8);
  transition: 0.5s width ease;
  -moz-transition: 0.5s width ease;
  -webkit-transition: 0.5s width ease;
}
.callouts .callout > div:hover .overlay {
  width: 100%;
}
.slick-prev:before, .slick-next:before {
  color: #1a2768;
  opacity: 1;
  font-family: 'FontAwesome';
}
.slick-prev:before {
  content: '\f053';
}
.slick-next:before {
  content: '\f054';
}
.middle-section {
	background-color: #1b3069;
}
@media (min-width: 992px) {
	.middle-section {
	  background-image: url('assets/images/home/middle-banner-bg.jpg');
	  background-repeat: no-repeat;
	  background-position: center center;
	}
}
.border-box {
  border: 2px solid #fff;
}
.middle-section a {
  position: absolute;
  bottom: -29px;
}
.home-contact {
  background-image: url('assets/images/home/contact-bg.jpg');
  background-repeat: no-repeat;
  background-position: center center;
}
.home-contact .gform_wrapper .top_label .gfield_label {
  display: none;
}
.home-contact .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .home-contact .gform_wrapper textarea {
  background-color: transparent;
  padding: 10px 20px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #fff;
  color: #fff;
}
.home-contact ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
.home-contact ::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
.home-contact :-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
.home-contact :-moz-placeholder { /* Firefox 18- */
  color: #fff;
}
.home-contact .gform_wrapper .gform_footer {
  text-align: center;
}
/* Content */
.page-header-wrapper {
  height: 144px;
  background-color: #1a2768;
}
.page-header-wrapper .page-header {
  background-repeat: no-repeat;
  background-position: right center;
}
.page-header-wrapper .page-header .entry-header h1 {
  line-height: 144px;
  margin-bottom: 0;
  font-family: 'Khand', sans-serif;
  color: #fff;
  font-size: 36px;
  text-transform: uppercase;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.73);
}
.page-cta {
  background-image: url('assets/images/global/cta-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.page-cta .cta {
  border: 2px solid #fff;
}
.page-cta .cta p {
  font-size: 30px;
}
.page-cta .cta .cta-btn {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  bottom: -29px;
}
ul.checkmark {
  list-style: none;
}
ul.checkmark li {
  position: relative;
  margin-bottom: .5em;
}
ul.checkmark li:before {
  content: '\f00c';
  font-family: 'FontAwesome';
  position: absolute;
  left: -25px;
}
.service {
  background-color: #f5f5f5;
}
.service a {
  width: 100%;
  height: 100%;
  display: inline-block;
}
/* Sidebar */
#secondary aside a {
  display: inline-block;
  width: 100%;
}
#secondary aside a:hover {
  text-decoration: none;
}
#secondary aside a .col-9 {
  line-height: 69px;
  color: #1a2768;
  font-family: Khand;
  font-size: 24px;
}
#secondary aside.odd a {
  background-color: #ebebeb;
}
#secondary aside.even a {
  background-color: #f5f5f5;
}
/* Footer */
.site-footer a {
  color: inherit;
}
.site-footer .footer-nav .pipe {
  position: relative;
  margin-right: 30px;
}
.site-footer .footer-nav .pipe:after {
  display: none;
  content: "|";
  position: absolute;
  right: -15px;
  top: -1px;
}
.responsive-inline li {
  display: block !important;

}
@media (min-width:768px){
  .responsive-inline li {
    display:inline-block !important;
  }
  .site-footer .footer-nav .pipe:after {
    display: block;
  }
}

/* Buttons */
a.orange-btn, input[type=submit] {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  background: #ff9102;
  background: -moz-linear-gradient(left, #ff9102 0%, #ff6902 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #ff9102), color-stop(100%, #ff6902));
  background: -webkit-linear-gradient(left, #ff9102 0%, #ff6902 100%);
  background: -o-linear-gradient(left, #ff9102 0%, #ff6902 100%);
  background: -ms-linear-gradient(left, #ff9102 0%, #ff6902 100%);
  background: linear-gradient(to right, #ff9102 0%, #ff6902 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9102', endColorstr='#ff6902', GradientType=1 );
  padding: 18px 25px !important;
  text-shadow: none;
  box-shadow: none;
  border: none;
}
a.orange-btn:hover {
  text-decoration: none;
}
a.blue-btn {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  padding: 18px 25px;
  background-color: #1a2768;
  border: 2px solid #fff;
  padding: 14px 21px;
}
a.blue-btn:hover {
  text-decoration: none;
}
/* Cloud Access Landing page */
.cloud-access-content h2 {
  font-family: 'Khand';
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 2rem;
}
section.benefits {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #1a2768;
  
}
section.benefits h3 {
  color: #fff;
  font-family: 'Khand';
  font-weight: 800;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 34px;
  margin-bottom: 40px;
  letter-spacing: 2px;
}
section.benefits .block {
  padding-left: 70px;
}
section.benefits .block .title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  font-family: 'Khand';
  letter-spacing: 2px;
}
section.benefits .block .number {
  display: block;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background: #fff;
  color: #1a2768 !important;
  font-size: 30px;
  font-weight: bold;
  font-family: 'Khand';
  text-align: center;
  line-height: 48px;
  position: absolute;
  left: 0;
  top: -10px;
}
.cloud-access {
  padding-top: 90px;
  padding-bottom: 90px;
}
.cloud-access h2 {
  font-family: 'Khand';
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 2rem;
}
