/*!
 * Start Bootstrap - Creative Bootstrap Theme (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: Merriweather,'Helvetica Neue',Arial,sans-serif;
}

hr {
    max-width: 50px;
    border-color: #f68026;
    border-width: 3px;
}

a {
    color: #f68026;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}

a:hover,
a:focus {
    color: #f68026;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.bg-dark {
    color: #fff;
    background-color: #222;
}

.text-faded {
    color: rgba(255,255,255,.7);
}

aside {
    padding: 50px 0;
}

.no-padding {
    padding: 0;
}

.navbar-default {
    border-color: rgba(34,34,34,.05);
    font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
    background-color: #fff;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}

.navbar-default .navbar-header .navbar-brand {
    text-transform: uppercase;
    font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
    font-weight: 700;
    color: #f68026;
}

.navbar-default .navbar-header .navbar-brand:hover,
.navbar-default .navbar-header .navbar-brand:focus {
    color: #f68026;
}

.navbar-default .nav > li>a,
.navbar-default .nav>li>a:focus {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    color: #222;
}

.navbar-default .nav > li>a:hover,
.navbar-default .nav>li>a:focus:hover {
    color: #f68026;
}

.navbar-default .nav > li.active>a,
.navbar-default .nav>li.active>a:focus {
    color: #f68026!important;
    background-color: transparent;
}

.navbar-default .nav > li.active>a:hover,
.navbar-default .nav>li.active>a:focus:hover {
    background-color: transparent;
}

@media(min-width:768px) {
    .navbar-default {
        border-color: rgba(255,255,255,.3);
        background-color: transparent;
    }

    .navbar-default .navbar-header .navbar-brand {
        color: rgba(255,255,255,.7);
    }

    .navbar-default .navbar-header .navbar-brand:hover,
    .navbar-default .navbar-header .navbar-brand:focus {
        color: #fff;
    }

    .navbar-default .nav > li>a,
    .navbar-default .nav>li>a:focus {
        color: rgba(255,255,255,.7);
    }

    .navbar-default .nav > li>a:hover,
    .navbar-default .nav>li>a:focus:hover {
        color: #fff;
    }

    .navbar-default.affix {
        border-color: rgba(34,34,34,.05);
        background-color: #fff;
    }

    .navbar-default.affix .navbar-header .navbar-brand {
        font-size: 14px;
        color: #f68026;
    }

    .navbar-default.affix .navbar-header .navbar-brand:hover,
    .navbar-default.affix .navbar-header .navbar-brand:focus {
        color: #f68026;
    }

    .navbar-default.affix .nav > li>a,
    .navbar-default.affix .nav>li>a:focus {
        color: #222;
    }

    .navbar-default.affix .nav > li>a:hover,
    .navbar-default.affix .nav>li>a:focus:hover {
        color: #f68026;
    }
}

@media(min-width:768px) {

    header .header-content {
        position: absolute;
        top: 50%;
        padding: 0 50px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    header .header-content .header-content-inner {
        margin-right: auto;
        margin-left: auto;
        max-width: 1000px;
    }

    header .header-content .header-content-inner p {
        margin-right: auto;
        margin-left: auto;
        max-width: 80%;
        font-size: 18px;
    }
}

.section-heading {
    margin-top: 0;
}

.portfolio-box {
    display: block;
    position: relative;
    margin: 0 auto;
    max-width: 650px;
}

.portfolio-box .portfolio-box-caption {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    opacity: 0;
    background: rgba(240,95,64,.9);
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category,
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
    padding: 0 15px;
    font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
    font-size: 18px;
}

.portfolio-box:hover .portfolio-box-caption {
    opacity: 1;
}

@media(min-width:768px) {
    .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
        font-size: 16px;
    }

    .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
        font-size: 22px;
    }
}

.call-to-action h2 {
    margin: 0 auto 20px;
}

.text-primary {
    color: #f68026;
}

.no-gutter > [class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

.btn-default {
    border-color: #fff;
    color: #222;
    background-color: #fff;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}

.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    border-color: #ededed;
    color: #222;
    background-color: #f2f2f2;
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    background-image: none;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
    border-color: #fff;
    background-color: #fff;
}

.btn-default .badge {
    color: #fff;
    background-color: #222;
}

.btn-primary {
    border-color: #f68026;
    color: #fff;
    background-color: #f68026;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    border-color: #f68026;
    color: #fff;
    background-color: #f68026;
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    background-image: none;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
    border-color: #f68026;
    background-color: #f68026;
}

.btn-primary .badge {
    color: #f68026;
    background-color: #fff;
}

.btn {
    border: 0;
    border-radius: 300px;
    text-transform: uppercase;
    font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
    font-weight: 700;
}

.btn-xl {
    padding: 15px 30px;
}

::-moz-selection {
    text-shadow: none;
    color: #fff;
    background: #222;
}

::selection {
    text-shadow: none;
    color: #fff;
    background: #222;
}

img::selection {
    color: #fff;
    background: 0 0;
}

img::-moz-selection {
    color: #fff;
    background: 0 0;
}

body {
    webkit-tap-highlight-color: #222;
}

/**********************************************************************************/
/**********************************         ***************************************/
/******************************                  **********************************/
/***************************         CUSTOM         *******************************/
/******************************                  **********************************/
/**********************************         ****************************************/
/**********************************************************************************/

/* SITE WIDE */
p, a, h1, h2, h3, h4, h5, h6, input, textarea, li {
  font-family: 'Source Sans Pro', sans-serif;
  color: #24262d;
  font-weight: 200;
}

h1, h2, h3, h4, h5, h6 {
    color: #152533;
}

h2 {
  font-size: 24px;
  font-weight: 400;
}

.light-text {
  font-weight: 200;
}

hr.dark {
    border-color: #f68026;
}

.hr-full-width {
  max-width: 100%;
  border-width: 1px;
  border-color: #f68026;
}

.hr-full-width-dark {
  border-width: 1px;
  border-color: #24262d;
  max-width: 100%;
}

.bg-primary {
  background-color: #E8ECEF;
}

.nopadding {
  padding-left: 0;
  padding-right: 0;
}

.header-image {
  height: 500px;
}

.content-section {
  padding: 30px 0 100px 0;
}

.page-title {
  font-weight: 200;
}

.btn-primary {
  background-color: #525257;
  border-bottom: 3px solid #24262d;
  border-width: 0 0 3px;
  color: #fff;
  padding: 10px 0 10px 20px;
}

.btn-primary:hover {
  background-color: #24262d;
  border-bottom: 3px solid #24262d;
}

/* NAVIGATION */
.navbar-default {
  background-color: rgba(36, 38, 45, 0.8);
  border-bottom-width: 0;
  padding: 10px 0 20px;
}

.nav-logo {
  width: 200px;
}

.navbar-default .nav > li .active {
  color: #f68026;
}

.nav-social {
  color: #fff;
  padding: 0 3px;
  font-size: 27px;
  margin-top: 12px;
  opacity: 0.8;
  line-height: 49px;
}

.nav-social:hover {
  opacity: 1;
}

.navbar-default .nav > li>a, .navbar-default .nav>li>a:focus {
  font-size: 15px;
  letter-spacing: 0.5px;
}

.nav.navbar-nav {
    margin-top: 10px;
}

.navbar-toggle {
  border-radius: 0;
}

/* dropdown */
.dropdown-menu.bullet:after {
    width: 0;
    height: 0;
    content: '';
    display: inline-block;
    position: absolute;
    border-color: transparent;
    border-style: solid;
    -webkit-transform: rotate(360deg);
    border-width: 0 6px 6px;
    border-bottom-color: rgba(36, 38, 45, 0.7);
    top: -6px;
    left: 10px;
}

.dropdown-menu.bullet.pull-center:after {
    left: auto;
    right: 50%;
    margin-right: -6px;
}

.dropdown-menu.bullet:before {
    width: 0;
    height: 0;
    content: '';
    display: inline-block;
    position: absolute;
    border-color: transparent;
    border-style: solid;
    -webkit-transform: rotate(360deg);
    border-width: 0 7px 7px;
    border-bottom-color: #cccccc;
    border-bottom-color: rgba(0, 0, 0, 0.15);
    top: -7px;
    left: 9px;
}

.dropdown-menu.bullet.pull-center:before {
    left: auto;
    right: 50%;
    margin-right: -7px;
}

.dropdown-menu.pull-center {
    right: -50%;
    left: auto;
    margin-right: 20px;
}

.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
  background-color: transparent;
  color: #F68026;
}

.dropdown-menu.bullet.pull-center {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: rgba(36, 38, 45, 0.8);
  margin-top: 31px;
}

.dropdown-menu.bullet.pull-center li a {
  padding: 6px 16px;
  color: #fff;
  font-size: 15px;
}

.dropdown-menu.bullet.pull-center li a:hover {
  background-color: #24262d;
}

/* CAROUSEL */
.carousel {
  height: 70%;
}

.fill {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.carousel-control.left, .carousel-control.right {
  background-image: none;
}

.carousel-background {
  background-color: transparent;
  position: absolute;
  bottom: 0;
  text-align: left;
  width: 100%;
}

.carousel-caption {
    font-family: 'Cabin', sans-serif;
    font-size: 60px;
    text-align: left;
    padding-bottom: 30px;
    margin-top: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: left;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
    position: relative;
    padding-bottom: 0;
    margin-bottom: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
}

.carousel-caption-sub {
  font-size: 24px;
  font-weight: 100;
  z-index: 10;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #fff;
  text-align: left;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
  margin: 0 0 25px 0px;
}

.slider-text {
  bottom: 0;
}

/* ABOUT */
#about {
  padding: 50px 0;
}

.button-wrapper {
  margin-top: 40px;
}

#about .btn-primary {
  background-color: #525257;
  border-width: 0 0 3px 0;
  border-bottom: 3px solid #24262d;
  color: #fff;
  padding: 10px 60px;
}

.button-wrapper {
  margin-top: 40px;
}

#about .btn-primary {
  background-color: #525257;
  border-width: 0 0 3px 0;
  border-bottom: 3px solid #24262d;
  color: #fff;
  padding: 10px 60px;
}

#about .btn-primary:hover {
  background-color: #24262d;
  border-bottom: 3px solid #24262d;
  text-decoration: none;
}

/* SERVICES */
#services {
  padding-top: 0;
}

.services-flip {
  height: 300px;
}

.service-card {
  padding-left: 0;
  padding-right: 0;
}

.service-box.back {
  position: absolute;
  text-align: center;
  width: 100%;
  padding: 30px;
  background-color: #F68026;
  height: 100%;
}

.service-heading {
  color: #fff;
  font-size: 30px;
}

.service-text {
  color: #fff;
}

.service-heading-background {
  position: absolute;
  bottom: 0px;
  background-color: rgba(36, 38, 45, 0.8);
  width: 100%;
}

.service-heading-background h3 {
  text-align: center;
  padding: 20px 0;
  color: #fff;
  font-weight: 200;
}

.service-blocks {
  margin-top: 50px;
}

.service-image {
  height: 300px;
}

.service-text {
  border-left: 2px solid #e0dede;
  border-right: 2px solid #e0dede;
  border-bottom: 2px solid #e0dede;
  background-color: #f4f3f3;
  padding: 20px;
}

.service-blocks h3 {
  margin-top: 0;
  color: #F68026;
}

.service-blocks p {
  font-weight: 200;
}

.service-hover:hover {
  cursor: pointer;
}

.service-hover img, .blog-img img, .blog-post img, .service-card img {
  transform: scale(1);
  -ms-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 1;
}

.service-hover:hover img, .blog-img img:hover, .blog-post:hover img, .service-card:hover img {
  transform: scale(1.2);
  transition: all 0.3s ease-out 0s;
}

/* BLOG */
#blog {
  padding: 100px 0;
}

.blog-img {
  height: 250px;
  border-bottom: 5px solid #F68026;
}

.blog-title {
  font-size: 25px;
  font-weight: 600;
  line-height: 20px;
  padding-top: 10px;
}

.blog-image {
  height: 300px;
}

.blog-content {
  padding: 0 10px 0 0;
}

.blog-date {
  font-size: 13px;
  font-style: italic;
}

.blog-post .btn-primary {
  margin-bottom: 30px;
}

.blog-post {
  margin-bottom: 30px;
}

/* GALLERY */
#gallery {
  padding: 100px 0;
}

.owl-prev {
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%)
}

.owl-next {
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%)
}

.owl-next i, .owl-prev i {
  color: #24262d;
}

/* SPONSORS */
#sponsors {
  padding: 100px 0;
}

.owl-item .item a img {
  transform: scale(1);
  -ms-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 1;
}

.owl-item .item a img:hover {
  transform: scale(1.1);
  transition: all 0.3s ease-out 0s;
}

/* CONTACT */
#contact {
  padding: 50px 0 100px 0;
}

.map-section {
  height: 400px;
}

.contact-info-section div {
  margin-bottom: 17px;
}

.contact-info-section, .contact-form {
  margin-top: 30px;
}

.contact-marker {
  margin-right: 15px;
  color: #F68026;
  font-size: 35px;
  display: inline;
}

.contact-envelope {
  margin-right: 15px;
  color: #F68026;
  font-size: 20px;
  display: inline;
}

.contact-phone {
  margin-right: 15px;
  color: #F68026;
  font-size: 26px;
  display: inline;
}

.contact-mobile {
  margin-right: 15px;
  color: #F68026;
  font-size: 36px;
  display: inline;
  margin-left: 2px;
  vertical-align: middle;
}

.contact-address {
  display: inline;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  margin-bottom: 10px;
  border: 2px solid #e0dede;
  background-color: #f4f3f3;
  padding: 10px;
  color: #24262d;
  border-radius: 0;
}

.contact-form textarea {
  height: 140px;
}

.smallpadding {
  padding-left: 5px;
  padding-right: 5px;
}

.success {
  margin-top: 31px;
}

input.btn-primary {
  background-color: #525257;
  border-width: 0 0 3px 0;
  border-bottom: 3px solid #24262d;
  color: #fff;
}

input.btn-primary:hover {
  background-color: #24262d;
  border-bottom: 3px solid #24262d;
}

.contact-image {
  height: 500px;
}

.map-container {
  height: 450px;
  overflow: hidden;
}

/* FOOTER */
#footer {
  background-color: #152533;
  padding: 30px 0;
}

.footer-social, .footer-info-social li {
  color: #fff;
  display: inline;
  list-style: none;
  font-size: 35px;
}

.footer-info-social, .footer-info {
  text-align: center;
}

.footer-info li {
  color: rgba(255, 255, 255, 0.7);
  list-style: none;
  line-height: 32px;
  font-size: 15px;
}

.footer-info li a {
  color: rgba(255, 255, 255, 1);
}

.footer-info li a:hover {
  color: #f68026;
  text-decoration: none;
  opacity: 1;
}

.footer-info-social, .footer-info {
  padding-left: 0;
}

#map {
  height: 400px;
}

/* LOG IN */
#MemberLoginForm_LoginForm {
  margin-top: 50px;
}

#MemberLoginForm_LoginForm fieldset {
  border: 0;
}

#MemberLoginForm_LoginForm_Remember {
  width: 13px;
  margin-top: -15px;
}

/* EXTRA AFTER INPLEMENTATION */
.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.nav li a.current {
  color: #f68026;
}

.service-section {
  margin-bottom: 50px;
}

.content-row {
  margin-bottom: 40px;
}

.service-page .full-width-text {
  padding-left: 0;
}

.service-page .padding-left {
  padding-left: 15px;
}

h2.section-heading, h2.section-heading p  {
  font-size: 30px;
  font-weight: 600;
  color: #24262d;
}

.contact-form input, .contact-form textarea {
  margin-top: 0;
  text-transform: initial;
}

.blog-post:hover {
  cursor: pointer;
}

.nav .section {
  margin-top: 0;
  margin-bottom: 0;
}

.blog-container, .gallery-container {
  padding-left: 0;
  padding-right: 0;
}

.nav-social:hover {
  cursor: pointer;
}

.portfolio-item {
  margin-bottom: 30px;
}

#gallery {
  padding-bottom: 100px;
  padding-top: 100px;
}

.gallery-image {
  height: 220px;
}

.no-header-img {
  height: 80px;
}

#mainNav {
  webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.2);
}

.anchor {
  display: block;
  position: relative;
  top: -87px;
  visibility: hidden;
}

.row-anchor {
  display: block;
  position: relative;
  top: -87px;
  visibility: hidden;
}

ul {
  padding-left: 25px;
}

ul li {
  font-size: 15px;
}

.nav.navbar-nav li a.social-link {
  padding: 0;
}

.sliderimage {
  height: 100%;
}

#MemberLoginForm_LoginForm_Email, #MemberLoginForm_LoginForm_Password, #MemberLoginForm_LostPasswordForm_Email {
  width: 100%;
}

#MemberLoginForm_LoginForm label.left, #MemberLoginForm_LoginForm label.right, #MemberLoginForm_LostPasswordForm label.left {
  float: left;
}

#MemberLoginForm_LoginForm_Email_Holder, #MemberLoginForm_LoginForm_Password_Holder, #MemberLoginForm_LostPasswordForm_Email_Holder {
  margin-bottom: 20px;
}

#MemberLoginForm_LoginForm_Remember {
  margin-top: 0;
}

#MemberLoginForm_LoginForm_Remember {
  width: 13px;
}

#MemberLoginForm_LoginForm .Actions, #MemberLoginForm_LostPasswordForm .Actions {
  text-align: left;
}
/* Fade transition for carousel items */
.carousel .item {
    left: 0 !important;
      -webkit-transition: opacity .7s;
         -moz-transition: opacity .7s;
           -o-transition: opacity .7s;
              transition: opacity .7s;
}
.carousel-control {
    background-image: none !important;
}

.next.left,
.prev.right {
    opacity: 1;
    z-index: 1;
}
.active.left,
.active.right {
    opacity: 0;
    z-index: 2;
}
/******************************/

@media Screen and (max-width: 768px) {
  .carousel-caption, .carousel-caption-sub {
    display: none;
  }

  .navbar-header {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-bottom: 10px;
  }

  .navbar-toggle {
    margin-top: 28px;
  }

  .navbar-collapse.collapse.in {
    background-color: #24262d;
  }

  .navbar-collapse.collapse.in a {
    color: #fff;
  }

  #mainNav {
    padding-bottom: 0px;
  }

  .nav-social {
    display: none;
  }

  .dropdown-menu.bullet.pull-center {
    margin-top: 0;
  }

  .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus, .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover {
    color: #f68026;
  }
}

.navbar-brand {
  padding: 0 15px;
}

.navbar-brand img {
  width: 200px;
}

#services .flipper .service-text {
  background-color: transparent;
  border: 0;
}

.item.portfolio-item {
  overflow: hidden;
}

#services {
  overflow: hidden;
}

.archive a.btn-primary {
  padding: 10px 30px;
}

.archive {
  margin-top: 20px;
}

.blogholder {
  padding: 100px 0;
}

.galleryholder {
  padding: 100px 0;
}

.btn-primary, .button {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  box-shadow: inset 0 0 0 0 #24262D;
  -webkit-transition: all ease 0.7s;
  -moz-transition: all ease 0.7s;
  transition: all ease 0.7s;
  font-weight: 400;
}

.btn-primary:hover, .button:hover {
  box-shadow: inset 0 -100px 0 0 #24262D;
}

.social-footer {
    display: none;
}

@media (max-width: 991px) {
  #mainNav {
    text-align: center;
  }

  .navbar-brand {
    width: 100%;
  }

  .collapse.navbar-collapse.navbar-right.navbar-main-collapse {
    width: 100%;
  }

  .nav.navbar-nav {
    float: none;
    text-align: center;
  }

  .navbar-nav>li {
    float: none;
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .navbar-header {
    width: 10%;
    float: right;
  }

  .navbar-brand {
    width: 40%;
    margin-bottom: 20px;
  }

  .navbar-collapse {
    clear: both;
  }

  .navbar-nav>li {
    display: block;
  }

  .navbar-toggle {
    padding: 9px 10px;
  }

  .navbar-default .navbar-toggle .icon-bar {
    background-color: #888;
  }

  .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
  }

  .navbar-collapse.navbar-main-collapse.in {
    background-color: #24262d;
  }

  .navbar-collapse.navbar-main-collapse.in a {
    color: #fff;
  }

  .nav.navbar-nav {
    margin-top: 8px;
  }
}

.news-tile {
    display:none;
}

.news-image {
    height: 100px;
}

.news-item .img-circle {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.summary-content .hail-title {
    text-align: center;
}

.HailHolder .navbar-default {
    background-color: rgba(0,0,0,0.35);
}

.news-image {
    height: 285px;
}

#loadMore #read-more {
    display: block;
    margin: 0 auto;
}

#loadMore p {
    display: block;
    text-align: center;
    margin-bottom: 0;
}

#read-more {
    width: 100px;
}

#read-more path:hover {
    margin-top: 10px;
}

.load-wrapper {
    width: 60px;
    margin: 0 auto;
    margin-top: 40px;
}

.nav-contact {
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 40px;
    padding: 7px 20px;
    margin-top: 10px;
    margin-right: 7px;
}

.nav-contact a {
    color: #fff;
    font-weight: 200;
}

.intro-btn {
    background-color: #00b8d1;
    border-radius: 70px;
    padding: 10px 20px;
    color: #fff;
    padding-bottom: 13px;
}

.intro-btn:hover {
    color: #fff;
    background-color: rgba(99, 165, 48, 1);
    cursor: pointer;
}

.carousel .item {
    height: 100%;
}

.carousel .carousel-inner {
    height: 100%;
}

#carousel {
    width: relative;
}

.carousel-indicators {
    position: absolute;
    top: 100px;
    right: 0;
    z-index: 15;
    width: auto;
    padding-left: 0;
    margin-left: 0;
    text-align: right;
    list-style: none;
    left: 100%;
    margin-left: -30px;
}


.carousel-indicators li {
    display: block;
}

.carousel-indicators li, .carousel-indicators li.active {
    margin-bottom: 5px;
}

.carousel-indicators li.active {
    background-color: #fff;
    border: 1px soild #fff !important;
}

.carousel-indicators li {
    border: 2px solid #fff;
    width: 15px;
    height: 15px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0;
}

.carousel-indicators .active {
    width: 15px;
    height: 15px;
}

.grey-bg {
    background-color: #E8ECEF;
    padding: 50px 0;
}

.white-bg {
    padding: 50px 0;
}

.footer-info li {
    line-height: 26px;
}

.footer-info {
    text-align: right;
    margin-bottom: 0;
}

.img-circle {
    width: 100%;
    height: 100%;
    background-size: cover;
}

.NewsHailList .img-circle:hover, .EventsHailList .img-circle:hover {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    filter: gray;
    -webkit-filter: grayscale(100%);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-backface-visibility: hidden;
}

#Layer_1, #Layer_2, #Layer_3  {
    stroke: #00b8d1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#Layer_1:hover, #Layer_2:hover, #Layer_3:hover  {
    stroke: rgba(99, 165, 48, 1);
}

.NewsHailList .HailArticle {
    margin-bottom: 20px;
}

.navbar-default {
    background-color: rgba(0,0,0,0.15);
}

.nav-brand {
    z-index: 99;
    background-color: #FFF;
    padding: 20px 15px;
    position: absolute;
    -webkit-box-shadow: 0 20px 50px 8px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 20px 50px 8px rgba(0,0,0,0.15);
    box-shadow: 0 20px 50px 8px rgba(0,0,0,0.15);
    margin-top: -10px;
}

.nav-brand:before {
    content: "";
    position: absolute;
    bottom: -19px;
    left: 0;
    width: 0;
    height: 0;
    border-top: 20px solid #fff;
    border-right: 85px solid transparent;
}

.nav-brand:after {
    content: "";
    position: absolute;
    bottom: -19px;
    right: 0;
    width: 0;
    height: 0;
    border-top: 20px solid #fff;
    border-left: 85px solid transparent;
}

.nav-brand a {
    display: block;
    padding: 8px 0;
}

.home-icon {
    position: absolute;
    left: 200px;
    color: #fff;
    font-size: 30px;
    top: 13px;
}

#mainNav .container {
    position: relative;
}

#topsocial a {
    color: #152533;
}

#mainNav {
    position: absolute;
    top: 0;
}

.button {
  display: inline-block;
  margin: 0.3em;
  padding: 1.2em 5em;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  border: none;
  font-size: 15px;
  text-align: center;
  border-radius: 30px;
}

.button:hover {
  box-shadow: 1px 6px 15px rgba(0, 0, 0, 0.5);
}

.logo-image {
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 40%
}

#Layer_2 {
    width: 40px;
    stroke: #00b8d1;
    margin-right: 10px;
}

#Layer_3 {
    width: 40px;
    stroke: #00b8d1;
    margin-left: 10px;
}

.EventsHailList .blog-title-wrapper h1 {
    display: inline-block;
}

.hail-arrows {
    display: inline-block;
}

.blog-title-wrapper {
    text-align: center;
}

.blog-title-wrapper a {
    vertical-align: -2px;
}

h1 {
    margin-bottom: 30px;
}

.NewsHailList .HailArticle:nth-child(3n+1) {
    clear: both;
}

.visible-xs {
    display: inline-block!important;
}

#topsocial .nav-email {
    border-radius: 30px;
}

.hail-title {
    font-size: 20px;
    font-weight: 400;
}

.phone-holder, .email-holder {
    display: inline-block;
    font-weight: bold;
    vertical-align: -2px;
    color: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 15px;
}

.phone-holder:hover, .email-holder:hover {
    color: rgba(255,255,255,0.7);
}

.email-holder {
    margin-right: 10px;
}

.show-mobile {
    display: none;
}

.hidden-xs {
    display: inline-block !important;
}

#topsocial a .fa-circle {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#topsocial a:hover .fa-circle {
    color: rgba(255, 255, 255, 0.7);
}

.icon-arrowleft, .icon-arrowright {
    font-size: 28px;
    color: #00b8d1;
    padding: 0 5px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.icon-arrowleft:hover, .icon-arrowright:hover {
    color: rgba(99, 165, 48, 1);
}

.HailHolder .content-section a {
    color: #00b8d1;
    font-weight: 400;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.HailHolder .content-section a:hover {
    color: rgba(99, 165, 48, 1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.NewsHailList.hailsection {
    padding: 50px 0;
}

.home-icon {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.home-icon:hover {
    color: #152533;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.HailArticle .hail-title a {
    font-weight: 400;
}

h1.blog-header {
    font-weight: 400;
}

.HailArticle .hail-title a {
    font-weight: 600;
}

#about p {
    font-size: 19px;
}

@media (max-width: 1199px) {
    .news-image {
        height: 283px;
    }
}

@media (max-width: 991px) {
    .news-image {
        height: 210px;
    }

    .logo-image {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .news-image {
        height: 280px;
        width: 280px;
        margin: 0 auto;
    }

    .news-item {
        width: 100%;
    }

    #topsocial {
        text-align: right;
        padding-right: 15px;
    }

    #company-logo-large {
        width: 130px;
    }

    .nav-brand {
        padding: 20px 15px;
    }

    #mainNav {
        padding-bottom: 10px;
    }

    .EventsHailList .HailArticle {
        margin-bottom: 20px;
    }

    .phone-holder, .email-holder {
        display: none;
    }

    .show-mobile {
        display: inline-block;
    }

    .hidden-xs {
        display: none !important;
    }

    .footer-info {
        text-align: center;
        margin-top: 20px;
    }

    #footer div {
        text-align: center;
    }

    .logo-image {
        width: 100%;
        padding-left: 10%;
        padding-right: 10%;
    }

    .carousel-indicators {
        display: none;
    }

    .logo-image {
        bottom: 90px;
    }

    .social-footer {
        display: block;
    }

    .link-twitter, .link-facebook, .link-youtube {
        display: none;
    }

    .social-footer {
        margin-bottom: 20px;
    }

    .social-footer a .fa-twitter, .social-footer a .fa-facebook, .social-footer a .fa-youtube {
        color: #152533;
    }

    #carousel {
        height: 90%;
    }

    .carousel-caption {
        display: block;
        font-size: 30px;
        bottom: 20px;
    }

    .logo-image {
        width: 100%
    }
}
