/* General CSS Start */
body {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    font-family: "Lato", sans-serif;
    font-weight: 400;
}
.uppercase {
    text-transform: uppercase;
}
.text-white {
    color: #fff;
}
#hero {
    position: relative;
    overflow-x: hidden;
    text-align: center;
    background-color: #4c300d;
}
#hero .row.logo {
    position: absolute;
    top: 5%;
    left: 12px;
    right: 0;
}
#hero .tag-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
}
.tag-line h1 {
    font-size: 75px;
    font-weight: 700;
}
h2 {
    font-size: 42px;
    line-height: 52px;
    font-weight: 700;
    position: relative;
    padding-top: 20px;
}
h2::before {
  content: ""; /* Required for pseudo-elements */
  position: absolute; /* Positions the line relative to the heading */
  top: 0; /* Places the line at the top of the heading */
  left: 50%; /* Starts the line at the horizontal center */
  transform: translateX(-50%); /* Shifts the line back by half its width to truly center it */
  width: 100px; /* Adjust the width of your line as needed */
  height: 2px; /* Adjust the thickness of your line */
  background-color: #4c300d; /* Set the color of your line */
}
#sec-3 h2::before, #sec-4 h2::before {
    left: 0;
    transform: none;
}
.green-cta a {
    background-color: #017c45;
    padding: 10px 50px;
    color: #fff;
    border: 1px solid #017c45;
    text-transform: uppercase;
    text-decoration: none;
    transition: 1s ease all;
    font-weight: 600;
}
.green-cta a:hover {
    background-color: transparent;
    color: #017c45;
}
#sleek-contact {
    background-color: #4c300d;
}
#sleek-contact h4 {
    font-weight: 700;
}
#sleek-contact a {
    text-decoration: none;
}
#footer, #footer-copy-right {
    background-color: #4c300d;
}
#footer a {
    text-decoration: none;
}
#footer a:hover, #sleek-contact a:hover {
    text-decoration: underline;
}
.icofont-location-pin {
    margin-right: 5px;
    display: block;
    float: left;
    line-height: 30px;
    color: #fff;
}
#footer .container.one {
    border-bottom: 1px solid rgba(255,255,255,.2);
}
#footer .footer-logos img {
    margin: 7.5px;
}
#footer .footer-logos img:first-child {
    margin-left: 0;
}
#footer .footer-logos img:last-child {
    margin-right: 0;
}
#footer-copy-right {
    border-top: 1px solid rgba(255,255,255,.2);
}
#footer-copy-right a {
    text-decoration: none;
}
#footer-copy-right a:hover {
    text-decoration: underline;
}
/* General CSS End */