/** HEADER **/
.page-heading.fixed, .page-heading .wp-custom-header {
  min-height:0px !important;
}

.logo-image a img {
  width:210px !important;
  margin-top:20px !important;
}

.navigation-bar-inner a img {
  width:180px !important;
}

/** NAV **/

.main-menu > .page_item > a:hover, .main-menu > .menu-item > a:hover, .main-menu .page_item.current-menu-item > a, .main-menu .menu-item.current-menu-item > a, .main-menu .page_item.current-menu-parent > a, .main-menu .menu-item.current-menu-parent > a, .main-menu .page_item.current_page_item > a, .main-menu .menu-item.current_page_item > a, .main-menu .page_item.current_page_parent > a, .main-menu .menu-item.current_page_parent > a, .footer-widget .widget.widget_nav_menu ul li.menu-item > a {
  color:#FF6D2D !important;
}


/*** THIS CHANGES THE LOOK OF THE FORM FIELDS ***/
.caldera-grid .form-control {
 padding: 16px;
 height: auto;
 box-shadow: none;
 background: transparent;
 color: #fff;
 border-top:0px !important;
 border-right:0px !important;
 border-left:0px !important;
 border-bottom: 2px solid #fff;
}
 
/*** THIS CHANGES THE BUTTON STYLE ***/
.caldera-grid input[type=submit] {
 margin-top:35px !important;
 padding: 10px 16px;
 border-radius: 2px;
 background: transparent;
 color: #fff;
 font-size: 20px;
 border: 2px solid #fff;
 float: right;
 transition: all 0.3s ease-in-out;
}
 
/*** THIS CHANGES THE BUTTON HOVER STYLE ***/
.caldera-grid input[type=submit]:hover {
 background: rgba(255,255,255, 0.2);
 border-color: transparent;
 color: #fff;
}
 
.caldera-grid .form-control:focus {
 border-color: #fff;
 box-shadow: inset 0 1px 1px rgba(255, 255, 255, .075), 0 0 8px rgba(255, 255, 255, .6);
}
 
/*** THIS CHANGES THE PLACEHOLDER TEXT COLOR WHICH IS IMPORTANT FOR THIS PARTICULAR STYLE ***/
input::-webkit-input-placeholder {
 color: #fff !important;
}
input:-moz-placeholder {
 /* Firefox 18- */
 color: #fff !important;
}
input::-moz-placeholder {
 /* Firefox 19+ */
 color: #fff !important;
}
input:-ms-input-placeholder {
 color: #fff !important;
}
textarea::-webkit-input-placeholder {
 color: #fff !important;
}
textarea:-moz-placeholder {
 /* Firefox 18- */
 color: #fff !important;
}
textarea::-moz-placeholder {
 /* Firefox 19+ */
 color: #fff !important;
}
textarea:-ms-input-placeholder {
 color: #fff !important;
}