@font-face {
    font-family: 'Exo 2';
    src: url('../fonts/Exo2-Regular.woff2') format('woff2'),
        url('../fonts/Exo2-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/*------------------------------------------------------------------

[Table of contents]

1. Reset
2. Helper classes 
3. Buttons
4. Dropdown
5. Navbar Custom
6. Home
7. FEATURES
8. Pricing
9. Testimonials
10. SUBSCRIBE
11. Footer
12. Other pages CSS
    12.1 Contact
    12.2 Team
    12.3 FAQ
    12.4 JOB
    12.5 Intro Form
13. Responsive

-------------------------------------------------------------------*/

/*======= 1.Reset ======== */
body {
  font-family: 'Roboto', sans-serif;
  color: #212121;
  background: #f6f6f6;
  /* dpi background: #2f3e47;*/
  font-size: 14px;
  line-height: 22px;
  overflow-x:hidden;
}

::selection{
  background: rgba(249, 230, 5, 0.5);
  color: #496174;
}

::-moz-selection {
  background: rgba(249, 230, 5, 0.5);
  color: #496174;
}

a:hover,a:focus,.a:active {
  text-decoration: none;
  outline: none !important;
}

/* Back to top */
.back-to-top {
  width: 30px;
  height: 30px;
  position: fixed;
  bottom: 10px;
  right: 20px;
  display: none;
  text-align: center;
  z-index: 10000;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #496174;
}

.back-to-top i {
  color: #fff;
  font-size: 22px;
  display: block;
  line-height: 30px;
}


/*======= 2.Helper classes ======== */
.section {
  padding-top: 100px;
  padding-bottom: 80px;
}

.sub-title {
  margin-bottom: 40px;
  font-size: 15px;
}

.title {
  font-size: 22px;
  margin-top: 0;
}

.text-white {
  color: #ffffff !important;
}

.text-muted {
  color: rgba(57, 57, 57, 0.9);
}


.text-light {
  color: rgba(57, 57, 57, 0.7);
}

.font-light {
  font-weight: 300;
}

.bg-light {
  background-color: #f3f6fa;
  border-top: 1px solid #E6EDF3;
  border-bottom: 1px solid #E6EDF3;
}

.m-t-20 {
  margin-top: 20px;
}

.m-t-0 {
  margin-top: 0px !important;
}

.m-b-0 {
  margin-bottom: 0px;
}

.p-0 {
  padding: 0px !important;
}

.w-full {
  width: 100% !important;
}

/* Background Images */
.bg-img-1 {
  background: url("../images/bg3.jpg") no-repeat;
  background-size: cover;
}
.bg-img-2 {
  background: url("../images/bg1.jpg") center no-repeat;
  background-size: cover;
}

/*======= 3.Buttons ======= */
.btn {
  border-radius: 2px;
  padding: 8px 16px;
  outline: none !important;
  box-shadow: none !important;
}

.btn-sm {
  padding: 5px 10px !important;
}

.btn-white-fill {
  padding: 8px 24px !important;
  background-color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.75) !important;
  border-radius: 50px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-white-fill:hover {
  border: 2px solid rgba(255, 255, 255, 0.75) !important;
  background-color: transparent;
  color: #ffffff !important;
}

.btn-white-bordered {
  padding: 8px 24px !important;
  background-color: rgba(239, 51, 40, 1.00) !important;
  border: 2px solid rgba(239, 51, 40, 1.00) !important;
  color: #FFFFFF;
  border-radius: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display:block;
  width:240px;
  margin: 0 auto;
}

.btn-white-bordered:hover {
  background-color: #ffffff !important;
}

.btn-custom {
  padding: 8px 24px !important;
  color: #ffffff !important;
  border-radius: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-custom:hover {
  background-color: transparent !important;
}

.video-btn {
  color: #ffffff !important;
  letter-spacing: 1px;
  outline: none !important;
}

.video-btn i {
  margin-right: 7px;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  line-height: 17px;
  vertical-align: middle;
  text-align: center;
  font-size: 12px;
  padding-left: 3px;
  margin-left: -12px;
}

/*======= 4.Dropdown ======= */
.dropdown-menu {
  box-shadow: none;
  padding: 4px;
  border-radius: 4px !important;
  -webkit-animation: dropdownOpen 0.3s ease-out;
  -o-animation: dropdownOpen 0.3s ease-out;
  animation: dropdownOpen 0.3s ease-out;
  border: 2px solid #eee;
}

.dropdown-menu > li > a {
  padding: 6px 20px;
  font-size: 15px !important;
  color: #496174 !important;
}

.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
  color: #ffffff !important;
}

@-webkit-keyframes dropdownOpen {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes dropdownOpen {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

/* Modals */
.modal .modal-dialog .modal-content {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  border-color: #DDDDDD;
  border-radius: 2px;
  box-shadow: none;
  padding: 25px;
}

.modal .modal-dialog .modal-content .modal-header {
  border-bottom-width: 2px;
  margin: 0;
  padding: 0;
  padding-bottom: 15px;
}

.modal .modal-dialog .modal-content .modal-body {
  padding: 20px 0;
}

.modal .modal-dialog .modal-content .modal-footer {
  padding: 0;
  padding-top: 15px;
}

/*===== 5.Navbar Custom ======*/

.navbar-custom {
  width: 100%;
  border-radius: 0px;
  z-index: 999;
  padding: 20px 0px;
  margin-bottom: 0px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.navbar-custom .navbar-nav li a {
  color: rgba(57, 57, 57, 1.00);
  /* dpi color: rgba(255, 255, 255, 0.75);*/
  font-family: 'Exo 2'; font-weight: normal; font-style: normal;
  font-size: 15px;
  margin: 7px 0px;
  /* dpi margin: 5px 0px;*/
}

.navbar-custom .nav>li>a:focus,.navbar-custom .nav>li>a:hover,.navbar-custom .navbar-nav li.active a {
  background-color: transparent;
  color: #D6D6D6;
}

.navbar-toggle .icon-bar {
  background-color: rgba(57, 57, 57, 0.75);
}

.navbar-btn {
  padding: 5px 20px !important;
  text-transform: none !important;
  font-weight: 400;
  margin-top: 8px !important;
}

.logo {
  font-weight: 500;
  font-size: 22px;
  color: #ffffff !important;
  letter-spacing: 1px;
  display: block;
  max-width: 300px;
}

.logo img {
  display: block;
  max-width: 320px;
}

@media (max-width: 767px) {
.logo img {
  max-width: 220px;
}
}

.navbar-toggle {
  font-size: 30px;
}

.navbar-custom .btn-custom {
  margin-top: 8px;
  margin-left: 20px;
}

.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
  background-color: transparent;
  border-color: #337ab7;
}

.sticky-wrapper {
	position: absolute;
	width: 100%;
	transition: all 0.4s ease;
}

.sticky-wrapper.is-sticky .navbar-custom {
	padding: 10px 0px !important;
	/* dpi addition */
	-moz-box-shadow: 0 15px 62px 0 rgba(0,0,0,0.07);
	-webkit-box-shadow: 0 15px 62px 0 rgba(0,0,0,0.07);
	box-shadow: 0 15px 62px 0 rgba(0,0,0,0.07);
	animation: 0.3s ease-in-out 0s normal none 1 fadeInDown;
	-webkit-animation: 0.3s ease-in-out 0s normal none 1 fadeInDown;
	-moz-transition: 0.2s all ease;
	-o-transition: 0.2s all ease;
	-webkit-transition: 0.2s all ease;
	transition: 0.2s all ease;
}



/*======= 6.Home =======*/

.home-fullscreen {
  height: 100%;
  min-height: 400px;
}

.home-wrapper {
  padding: 200px 0px 150px 0px;
}

.home-sm {
  padding: 220px 0px 5px 0px !important;
}

.home-sm2 {
  padding: 200px 0px 5px 0px !important;
}

.home-sm .h1 {
  margin-top: 30px !important;
}
.home-wrapper-alt{
  display: table-cell;
  vertical-align: middle;
}

.home-wrapper h1{
  line-height: 46px;
  width: 70%;
  margin: 0 auto;
  font-family: 'Exo 2';
}

.home-wrapper h4 {
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  width: 80%;
  margin: 30px auto 50px auto;
}

.full-screen {
  display: table;
  height: 100%;
  width: 100%;
}

.or-space {
  margin: 0 20px;
}

iframe {
  max-width: 100%;
}

.frame-border {
  border: 9px solid rgba(0, 0, 0, 0.3);
  webkit-border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}

/* ==== 7.FEATURES ==== */

.feat-description p {
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 26px;
}

.feat-description h4 {
  font-weight: 300;
  line-height: 28px;
}

.title-box-icon i {
  font-size: 48px;
  margin-bottom: 20px;
}

.title-box-icon h3 {
  margin-bottom: 70px;
}

.features-box {
  margin-top: 30px;
  padding: 20px;
  text-align: center;
}

.features-box i {
  font-size: 48px;
}



/* ==== 8.Pricing === */

.pricing-column {
  position: relative;
  margin-bottom: 40px;
}

.pricing-column .inner-box {
  position: relative;
  margin: 20px auto 0px auto;
  max-width: 320px;
  padding: 0px 30px 50px;
  border: 2px solid #95A8B7;
}

.inner-box p {
  padding: 0px 20px;
  text-align: center;
  font-size: 15px;
  line-height: 26px;
  color: #7f7f7f;
  margin-bottom: 30px;
}

.inner-box.active {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.pricing-column .plan-header {
  position: relative;
  padding: 30px 20px 25px;
}

.pricing-column .plan-title {
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}

.pricing-column .plan-price {
  font-size: 38px;
  margin-bottom: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.pricing-column .plan-duration {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

.pricing-column .plan-stats {
  position: relative;
  padding: 30px 20px 15px;
}

.pricing-column .plan-stats li {
  margin-bottom: 15px;
  line-height: 24px;
  color: rgba(255,255,255,0.8);
}

.pricing-column .plan-stats li i {
  font-size: 18px;
  width: 26px;
  vertical-align: middle;
}



/* === 9.Testimonials === */

.testimonial-description {
  margin-top: 50px;
  border-radius: 5px;
  padding: 30px 30px 20px 30px;
  position: relative;
  background-color: #ffffff;
  box-shadow: 1px 1px 2px rgba(222, 222, 222, 0.32);
}

.testimonial-description:after {
  content: "";
  bottom: -15px;
  left: 50px;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 15px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.testimonial-description p {
  line-height: 24px;
  font-size: 14px;
  font-style: italic;
}

.testimonial-user-thumb img{
  border-radius:50%;
  width: 60px;
  height: 60px;
}

.testimonial-user-name {
  margin-bottom: 0px;
}

.user-thumb,
.user-text{
  display: inline-block;
  vertical-align:bottom;
}

.user-thumb{
  margin-right:15px;
}

.testimonial-user-info{
  padding-left:30px;
  margin-top: 35px;
}

.user-position{
  font-weight:400;
  display: block;
}


/* === 10.SUBSCRIBE === */

.input-subscribe {
  background-color: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  height: 50px;
  padding-left: 20px;
  box-shadow: none !important;
  margin-bottom: 10px;
}

.input-subscribe:focus {
  border: 2px solid rgba(255, 255, 255, 0.4);
}

input.input-subscribe::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: normal;
}

input.input-subscribe:-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

input.input-subscribe::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

input.input-subscribe:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

label.valid {
  color: #ffffff;
  font-weight: normal;
  margin: 10px 0;
}

/*======= 11.Footer =======*/

.footer {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f6f6f6;
  /* dpi background-color: #2f3e47;*/
}

.footer h5{
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer a{
  color: #777777;
}

.footer a:hover{
  color: rgba(119, 119, 119, 0.6);;
}

.footer ul li {
  margin: 5px 0px;
}

.footer-alt {
  margin-top: 30px;
  padding-top: 20px;
}

.footer address {
  color: rgba(255, 255, 255, 0.4);
  line-height: 24px;
  font-size: 13px;
}


/* == 12.PAGES CSS === */

.header-title-box {
  padding-top: 190px;
  padding-bottom: 155px
}

.header-title-box h3 {
  font-size: 30px;
  font-weight: 300;
}

.title-about h3 {
  margin-bottom: 30px;
}

.wide-img-showcase-row {
  position: relative;
}

.no-padding.img {
  background: url(../images/showcase-1.jpg) scroll center no-repeat;
  background-size: cover;
  position: absolute;
  height: 100%;
}

.no-padding.img-2 {
  background: url(../images/showcase-2.jpg) scroll center no-repeat;
  background-size: cover;
  position: absolute;
  height: 100%;
}

.about-detail-img-box {
  padding: 15% 0;
}


/* 12.1 Contact */
textarea {
  max-width: 100%;
}

.contact-form .form-control {
  height: 42px;
  box-shadow: none;
  border: 2px solid rgba(57, 57, 57, 0.2);
  background-color: transparent;
  color: #212121;
}

textarea.form-control {
  height: auto !important;
}

.error {
  margin: 8px 0px;
  display: none;
  color: red;
  font-weight: normal;
}

#ajaxsuccess {
  font-size: 16px;
  width: 100%;
  display: none;
  clear: both;
  margin: 8px 0px;
}

.contact-box {
  padding: 30px;
}

.contact-detail {
  margin-bottom: 40px;
}
.contact-detail i{
  float: left;
  width: 40px;
  font-size: 24px;
}

.contact-detail p,.contact-detail address{
  overflow: hidden;
}

.contact-detail a {
  color: #212121;
}

.parsley-errors-list {
  padding-left: 0px;
}
.parsley-errors-list li {
  list-style: none;
  color: red;
  margin-top: 3px;
  font-size: 13px;
}
/*== 12.2 Team ==*/

.team img {
  max-width: 240px;
  margin: 0px auto;
  background-color: #fafafa;
}

.team .team-member {
  margin: 30px 0px;
}

.team .team-member h4 {
  padding-top: 10px;
  margin-bottom: 5px;
}

.team .team-member p {
  margin-bottom: 0px;
}

/* == 12.3 FAQ ==*/
.question {
  margin-top: 40px;
  font-weight: 400;
  font-size: 16px;
  color: rgba(0,0,0,0.85);
}

/* == 12.4 JOB ==*/
.job-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* == CHANGED ALL COLOURED BOXES PADDING FROM 10 & 30 to 10 & 20 ==*/

.job-box {
  padding: 20px 30px;
  /*border: 2px solid rgba(230, 237, 243, 0.2);
  border-radius: 5px;*/
  margin-bottom: 30px;
  background-color: #fff;
  box-shadow: 6px 6px 18px -8px #000;
  display: block;
  border-radius: 13px;
  border: 1px solid #eee;
}

.job-box-back {
  background-image: url("../images/003.jpg");
  background-size: auto 100%;
  background-repeat: no-repeat;
}

.job-box-grey {
  padding: 10px 20px;
  border: 2px solid rgba(230, 237, 243, 0.2);
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: #A6A6A6;
    background: 
    /* top, transparent red */
    linear-gradient(
      rgba(166, 166, 166, 0.69), 
      rgba(166, 166, 166, 0.69)
    ),
    /* your image */
    url(https://patchsavesolutions.com/9329-large_default/grey-24-pack-of-15cm-6inch-cat6-high-grade-250mhz-24awg-lszh-patch-lead-for-1u-patching.jpg)
	;
	background-position: 0px -40px; 
}

.job-box-green {
  padding: 10px 20px;
  border: 2px solid rgba(230, 237, 243, 0.2);
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: #00B050;
    background: 
    /* top, transparent red */
    linear-gradient(
      rgba(0, 176, 80, 0.69), 
      rgba(0, 176, 80, 0.69)
    ),
    /* your image */
    url(https://patchsavesolutions.com/7023-large_default/green-24-pack-of-15cm-6inch-cat6-high-grade-250mhz-24awg-lszh-patch-lead-for-1u-patching.jpg)
	;
	background-position: 0px -30px; 
}

.job-box-blue {
  padding: 10px 20px;
  border: 2px solid rgba(230, 237, 243, 0.2);
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: #0070C0;
    background: 
    /* top, transparent red */
    linear-gradient(
      rgba(0, 112, 192, 0.69), 
      rgba(0, 112, 192, 0.69)
    ),
    /* your image */
    url(https://patchsavesolutions.com/7018-large_default/blue-24-pack-of-15cm-6inch-cat6-high-grade-250mhz-24awg-lszh-patch-lead-for-1u-patching.jpg)
	;
	background-position: 0px -30px; 
}

.job-box-red {
  padding: 10px 20px;
  border: 2px solid rgba(230, 237, 243, 0.2);
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: #FF3E3E;
    background: 
    /* top, transparent red */
    linear-gradient(
      rgba(255, 62, 62, 0.69), 
      rgba(255, 62, 62, 0.69)
    ),
    /* your image */
    url(https://patchsavesolutions.com/7013-large_default/red-24-pack-of-15cm-6inch-cat6-high-grade-250mhz-24awg-lszh-patch-lead-for-1u-patching.jpg)
	;
	background-position: 0px -20px; 
}

.job-box-yellow {
  padding: 10px 20px;
  border: 2px solid rgba(230, 237, 243, 0.2);
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: #FFFF46;
    background: 
    /* top, transparent red */
    linear-gradient(
      rgba(255, 255, 70, 0.69), 
      rgba(255, 255, 70, 0.69)
    ),
    /* your image */
    url(https://patchsavesolutions.com/7008-large_default/yellow-24-pack-of-15cm-6inch-cat6-high-grade-250mhz-24awg-lszh-patch-lead-for-1u-patching.jpg)
	;
	background-position: 0px -50px; 
}

.job-box-black {
  padding: 10px 20px;
  border: 2px solid rgba(230, 237, 243, 0.2);
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: #262626;
    background: 
    /* top, transparent red */
    linear-gradient(
      rgba(38, 38, 38, 0.69), 
      rgba(38, 38, 38, 0.69)
    ),
    /* your image */
    url(https://patchsavesolutions.com/7003-large_default/black-24-pack-of-15cm-6inch-cat6-high-grade-250mhz-24awg-lszh-patch-lead-for-1u-patching.jpg)
	;
	background-position: 0px -30px; 
}

.job-box-white {
  padding: 10px 20px;
  border: 2px solid rgba(230, 237, 243, 0.2);
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: #FFFFFF;
    background: 
    /* top, transparent red */
    linear-gradient(
      rgba(255, 255, 255, 0.10), 
      rgba(255, 255, 255, 0.10)
    ),
    /* your image */
    url(https://patchsavesolutions.com/6998-large_default/white-24-pack-of-15cm-6inch-cat6-high-grade-250mhz-24awg-lszh-patch-lead-for-1u-patching.jpg)
	;
	background-position: 0px -20px; 
}

.job-box-orange {
  padding: 10px 20px;
  border: 2px solid rgba(230, 237, 243, 0.2);
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: #F79646;
    background: 
    /* top, transparent red */
    linear-gradient(
      rgba(247, 150, 70, 0.69), 
      rgba(247, 150, 70, 0.69)
    ),
    /* your image */
    url(https://patchsavesolutions.com/6993-large_default/orange-24-pack-of-15cm-6inch-cat6-high-grade-250mhz-24awg-lszh-patch-lead-for-1u-patching.jpg)
	;
	background-position: 0px -30px; 
}

.job-box-purple {
  padding: 10px 20px;
  border: 2px solid rgba(230, 237, 243, 0.2);
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: #7030A0;
    background: 
    /* top, transparent red */
    linear-gradient(
      rgba(112, 48, 160, 0.69), 
      rgba(112, 48, 160, 0.69)
    ),
    /* your image */
    url(https://patchsavesolutions.com/6988-large_default/purple-24-pack-of-15cm-6inch-cat6-high-grade-250mhz-24awg-lszh-patch-lead-for-1u-patching.jpg)
	;
	background-position: 0px -30px; 
}

.job-box-pink {
  padding: 10px 20px;
  border: 2px solid rgba(230, 237, 243, 0.2);
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: #FF66CC;
    background: 
    /* top, transparent red */
    linear-gradient(
      rgba(255, 102, 204, 0.69), 
      rgba(255, 102, 204, 0.69)
    ),
    /* your image */
    url(https://patchsavesolutions.com/6983-large_default/pink-24-pack-of-15cm-6inch-cat6-high-grade-250mhz-24awg-lszh-patch-lead-for-1u-patching.jpg)
	;
	background-position: 20px -40px; 
}

.job-box h5 {
  font-weight: bold;
  font-size: 16px;
  font-family: 'Exo 2';
  font-weight: 400;
  margin-bottom: 0px;
  color: #3a3939;
}
.job-box .text-muted {
  color: rgba(57,57,57,0.9);
  margin: auto; /* Important */ 
  text-align: center; 
}

.push {
  padding-left:80px;	
}

@media (max-width: 1200px) {
  .push {
  padding-left:96px;
}
}

@media (max-width: 992px) {
  .push {
  padding-left:0px;
}
}

.job-box-grey h5 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #ffffff;
}
.job-box-grey .text-muted {
  color: rgba(255,255,255,0.4);
}

.job-box-green h5 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #ffffff;
}
.job-box-green .text-muted {
  color: rgba(255,255,255,0.4);
}

.job-box-blue h5 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #ffffff;
}
.job-box-blue .text-muted {
  color: rgba(255,255,255,0.4);
}

.job-box-red h5 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #ffffff;
}
.job-box-red .text-muted {
  color: rgba(255,255,255,0.4);
}

.job-box-yellow h5 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #262626;
}
.job-box-yellow .text-muted {
  color: rgba(0,0,0,0.4);
}

.job-box-black h5 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #ffffff;
}
.job-box-black .text-muted {
  color: rgba(255,255,255,0.4);
}

.job-box-white h5 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #262626;
}
.job-box-white .text-muted {
  color: rgba(0,0,0,0.4);
}

.job-box-orange h5 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #ffffff;
}
.job-box-orange .text-muted {
  color: rgba(255,255,255,0.4);
}

.job-box-purple h5 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #ffffff;
}
.job-box-purple .text-muted {
  color: rgba(255,255,255,0.4);
}

.job-box-pink h5 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #ffffff;
}
.job-box-pink .text-muted {
  color: rgba(255,255,255,0.4);
}

.btn-job {
  padding: 6px 20px !important;
  font-size: 12px;
  text-transform: none;
  margin-top: 10px;
}

/* == 12.5 Intro Form ==*/
.intro-form {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 22px 45px -15px rgba(0,0,0,0.5) !important;
  -moz-box-shadow: 0px 22px 45px -15px rgba(0,0,0,0.5) !important;
  box-shadow: 0px 22px 45px -15px rgba(0,0,0,0.5) !important;
}

.intro-form h3{
  color: #949799;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-top: 0px;
}

.intro-form input {
  border: 1px solid #eee;
  height: 38px;
  box-shadow: none !important;
}

.intro-form .form-group:last-of-type {
  margin-bottom: 0;
}




/*======= 13.Responsive ======*/
@media (min-width: 768px) {
  .nav-custom-left {
    margin-left: 5%;
  }
  .navbar-nav>li>a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .no-padding.img,.no-padding.img-2 {
    position: relative;
    height: 300px;
  }
  .video-wrapper {
    padding-top: 50px;
  }
  .intro-form {
    margin-top: 50px;
  }
  .feat-description {
    margin-bottom: 50px;
    text-align: center;
  }
}


/* Demo Only */
#style-switcher,
#style-switcher .bottom a.settings {
    background: #FFF;
    box-shadow: 2px 2px 0 0 rgba(0, 0, 0, .08);
}

#style-switcher div h3 {
    color: #1D1D1D;
    font-size: 16px;
    margin: 0px 3px 20px 0;
}

#style-switcher {
    left: -189px;
    position: fixed;
    top: 17%;
    width: 189px;
    z-index: 9999;
    padding: 10px 5px;
}

#style-switcher div {
    padding: 5px 10px;
}

#style-switcher .bottom {
    background: #FFF;
    color: #252525;
    padding: 0;
}

#style-switcher .bottom a.settings {
    display: block;
    height: 41px;
    position: absolute;
    right: -40px;
    top: 0;
    width: 40px;
    padding: 3px;
}

#style-switcher .bottom a {
    text-decoration: none;
}

#style-switcher .bottom a.settings i {
    margin-left: 8px;
    color: #000;
    font-size: 18px;
    position: absolute;
    margin-top: 9px;
}

ul.pattern {
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    border-radius: 0;
}

ul.pattern li {
    float: left;
    margin: 2px;
}

ul.pattern li a {
    cursor: pointer;
    display: block;
    height: 35px;
    width: 35px;
    border-radius: 50%;
}

ul.pattern .color1 {
    background-color: #01bf86;
}

ul.pattern .color2 {
    background-color: #4db5ed;
}

ul.pattern .color3 {
    background-color: #ff8acc;
}

ul.pattern .color4 {
    background-color: #f57c00;
}

ul.pattern .color5 {
    background-color: #8066e9;
}

ul.pattern .color6 {
    background-color: #ef3328;
}

ul.pattern .color7 {
    background-color: #ffbd00;
}

ul.pattern .color8 {
    background-color: #00b19d;
}


@media only screen and (max-width:479px) {
  #style-switcher {
      display: none
  }
}