/*==================================================
Default Values

Font Family     : Quicksand

Red             : #9d0011
Dark Blue       : #202b83   (Headings)
Teal            : #78c0e0   (Buttons, Icons, Links, Lines and Backgrounds)
Ocean Blue      : #449dd1   (Paragraphs)
White           : #fff      (Text on black background)
Dark Grey       : #51626d
==================================================*/

/* General CSS */
html,
body {
  height: 100%;
}

body {
  font-family: "Kulim Park", sans-serif;
}

p,
ul {
  color: #51626d;
  font-size: 20px;
  font-weight: 300;
}

h3 {
  text-transform: uppercase;
}

/*==================================================
                        Home
==================================================*/
#home {
  height: 100%;
}

.home-cover-1 {
  height: 100%;
  background-image: url("../img/new_hero.jpg");
}

.home-cover-2 {
  height: 100%;
  background-image: url("../img/hero1.jpg");
}

.home-cover-3 {
  height: 100%;
  background-image: url("../img/hero2.jpg");
}

.home-cover-4 {
  height: 100%;
  background-image: url("../img/hero3.jpg");
}

.home-cover-5 {
  height: 100%;
  background-image: url("../img/hero4.jpg");
}

#home-content-box {
  width: 100%;
  height: 100%;
  display: table;
}

#home-content-box-inner {
  display: table-cell;
  vertical-align: middle;
}

/*#slogan {
  background-color: rgba(255, 255, 255, 0.7);
  border-width: 2px;
  padding: 12px 26px 12px 26px;
}*/

#home h3 {
  color: #202b83;
  font-size: 25px;
  font-weight: 600;
}

#home hr {
  border: 1px solid #9d0011;
}

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

/*==================================================
                        Parralax Generic
==================================================*/

.bg-parallax {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/*==================================================
                        Buttons (Generic)
==================================================*/

.btn-general {
  border-width: 2px;
  border-radius: 0;
  padding: 12px 26px 12px 26px;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.btn-blue {
  border-color: #202b83;
  color: #202b83;
  background-color: #fff;
}

.btn-blue:hover,
.btn-blue:focus {
  background-color: #202b83;
  color: #fff;
}

/*==================================================
                        Animation
==================================================*/

#home-cover,
#home-btn {
  animation-duration: 0.5s;
}

#home-cover {
  animation-delay: 0.1s;
}

#home-btn {
  animation-delay: 1s;
}

/*==================================================
                        Content (Generic)
==================================================*/

.content-box {
  padding: 60px 0px 60px 0px;
}

.content-title h3 {
  font-size: 30px;
  font-weight: 700;
  color: #202b83;
  text-align: center;
  margin: 0 0 30px 0;
}

.content-title-underline {
  width: 30px;
  height: 3px;
  background-color: #9d0011;
  margin: 0 auto 30px auto;
}
.section-underline {
  width: 80%;
  height: 5px;
  background-color: #9d0011;
  margin: 0 auto 30px auto;
}

/*==================================================
                        About
==================================================*/

#about p {
  padding: 0 50px 0 50px;
  font-size: 20px;
}

#about ul {
  padding: 0 0 0 75px;
  font-size: 18px;
}

.service-item {
  padding: 20px 0 20px 0;
  margin-bottom: 20px;
  cursor: pointer;
}
.service-item-icon {
  color: #202b83;
}
i {
  background-size: 100px 100px;
}

/*==================================================
                        Pavement
==================================================*/
#pavement {
}
#pavement-bg-split {
  /*width: 60%;
  float: left;*/
  background-image: url(../img/pavement.jpg);
  min-height: 250px;
}
#pavement-content-box {
  /*float: right;
  height: auto;*/
}

#pavement-content-box-outer {
  /*width: 100%;
  height: 100%;
  display: table;*/
}

#pavement-content-box-inner {
  /*display: table-cell;
  vertical-align: middle;*/
}

#pavement .content-title h3 {
  text-align: left;
}

#pavement .content-title-underline {
  margin: 0 0 30px 0;
}

#pavement-desc p {
  margin-bottom: 30px;
}

/*==================================================
                        Software
==================================================*/
#software {
}
#software-bg-split {
  background-image: url(../img/software.jpg);
  min-height: 250px;
}
#software-content-box {
}

#software-content-box-outer {
}

#software-content-box-inner {
}

#software .content-title h3 {
  text-align: left;
}

#software .content-title-underline {
  margin: 0 0 30px 0;
}

#software-desc p {
  margin-bottom: 30px;
}


/*==================================================
                        Pavement
==================================================*/
#transport {
}
#transport-bg-split {
  /*width: 60%;
  float: left;*/
  background-image: url(../img/pavement.jpg);
  min-height: 250px;
}
#transport-content-box {
  /*float: right;
  height: auto;*/
}

#transport-content-box-outer {
  /*width: 100%;
  height: 100%;
  display: table;*/
}

#transport-content-box-inner {
  /*display: table-cell;
  vertical-align: middle;*/
}

#transport .content-title h3 {
  text-align: left;
}

#transport .content-title-underline {
  margin: 0 0 30px 0;
}

#transport-desc p {
  margin-bottom: 30px;
}

/*==================================================
                        Awards
==================================================*/
.award img {
  max-width: 100%;
  height: auto;
}

/*==================================================
                        Contact
==================================================*/

footer {
  background-color: #51626d;
  padding-top: 10px;
  border-top: 5px solid rgba(0, 0, 0, 0.1);
}

#contact {
  padding: 0 50px 0 50px;
}

#contact h3 {
  color: #fff;
  font-size: 27px;
  font-weight: 700;
}

#contact p {
  color: #fff;
}

/*==================================================
                        Footer
==================================================*/
#footer-bottom {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  margin-top: 60px;
}

#footer-copyrights p {
  margin: 0;
  color: #fff;
}

#footer-menu {
  float: right;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}

#footer-menu ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

#footer-menu ul li {
  display: inline-block;
}

#footer-menu a {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin: 0 10px;
  text-decoration: none;
}

#footer-menu a:hover {
  color: #449dd1;
}

#phone-email a {
  color: #fff;
}

#phone-email a:hover {
  text-decoration: none;
  color: #449dd1;
}

#attribution {
  text-align: right;
}
/*==================================================
                        Navigation
==================================================*/

#brand-image {
  height: 55px;
  width: auto;
  transition: all 0.25s ease-in-out;
}

.navbar {
  padding: 20px 0;
  transition: all 0.25s ease-in-out;
}

.horizon-top-nav {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 15px 0;
}

.navbar-toggler {
  border: 1px solid !important;
  border-color: #202b83 !important;
  border-radius: 0;
}

.horizon-nav-wrapper {
  padding: 0 85px;
  transition: all 0.25s ease-in-out;
}

.navbar-nav {
  float: right;
}

.navbar-nav > li > a {
  color: #202b83;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.horizon-top-nav ul.navbar-nav > li > a:hover,
.horizon-top-nav ul.navbar-nav > li > a:focus {
  background: none;
  color: #9d0011 !important;
}

.navbar-collapse {
  max-height: none !important;
}

.horizon-top-nav ul.navbar-nav > li > a.active {
  color: #9d0011 !important;
}

.navbar-light .navbar-nav .nav-link {
  color: #202b83 !important;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
