:root {
    --color-primary: #BF1E2D;
    --color-secondary: #333;
    --font-primary: "Source Sans Pro", sans-serif;
    --font-secondary: Jost, sans-serif;
}

body {
    font-size: 16px;
    line-height: normal;
    color: var(--color-secondary);
}
p {
    font-size: 20px;
    line-height: normal;
    color: var(--color-secondary);
}

img {
    max-width: 100%;
}

.header {
    height: 160px;
}

@media (max-width: 767px) {
    .header {
        height: 122px;
    }

    .logo img {
        width: 245px;
    }

    .navbar-toggle {
        margin-right: 0;
    }
    .container > .navbar-header {
        margin-right: 0;
    }
    .container > .navbar-collapse {
        margin-top: 10px;
        margin-bottom: -10px;
    }
}

.navbar-nav > li > a {
    font-size: 16px;
    line-height: 140px;
}

.hero {
    border-top: 5px solid var(--color-primary);
    border-bottom: 5px solid var(--color-primary);
}
@media (min-width: 768px) {
    .hero {
        height: 800px;
    }
}

.bg-overlay-dark:before {
    background-color: rgba(51, 51, 51, .5);
}
.hero .hero--headline {
    font-size: 90px;
    font-weight: 600;
    line-height: 1;
}
.hero .hero--bio {
    font-family: var(--font-secondary);
    font-size: 26px;
    line-height: 1.25;
}
@media (max-width: 767px) {
    .hero .hero--content {
        padding-top: 50px;
    }
    .hero .hero--headline {
        font-size: 50px;
    }
    .hero .hero--bio {
        font-size: 22px;
    }
}

.btn-call {
    font-size: 32px;
    font-weight: 600;
    line-height: 2;
    text-transform: none;
    width: auto;
    height: auto;
    padding: 5px 20px;
}
.btn-call span {
    font-weight: 300;
}
.cta .btn-call {
    background-color: var(--color-secondary);
    color: #fff;
}
.cta .btn-call:hover {
    background-color: #fff;
    color: var(--color-primary);
}
@media (max-width: 767px) {
    .btn-call {
        font-size: 22px;
    }
}

section {
    padding-top: 60px;
    padding-bottom: 60px;
}
@media (max-width: 767px) {
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.cta h3 {
    margin-top: 5px;
}

.btn--primary:active,
.btn--primary:focus,
.btn--primary:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn--bordered.btn--white:active,
.btn--bordered.btn--white:focus,
.btn--bordered.btn--white:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

.heading .heading--title {
    position: relative;
    padding-bottom: 10px;
    color: var(--color-secondary);
    font-weight: 600;
}
.heading .heading--title:before {
    content: "";
    position: absolute;
    left: calc(50% - 50px);
    bottom: 0;
    width: 100px;
    height: 5px;
    background-color: var(--color-primary);
}

.service-panel .service--content h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--color-secondary);
    margin-top: 20px;
    margin-bottom: 10px;
}
@media (max-width: 767px) {
    .service-panel .service--content h2 {
        font-size: 24px;
    }
}

.widget--copyright {
    font-size: 16px;
    color: #333;
    text-align: center;
}

.testimonials-5 .testimonial--content p {
    color: #333;
}

.callnow {
    display: none;
    position: fixed;
    z-index: 2;
    width: 100%;
    bottom: 0;
}
.callnow a {
    display: block;
    background-color: var(--color-primary);
    color: #fff;
    font-family: var(--font-secondary);
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    padding: 10px 0;
}
.callnow a span {
    font-weight: 300;
}
@media (max-width: 767px) {
    .callnow {
        display: block;
    }
    .footer {
        padding-bottom: 56px;
    }
}

.feature-panel .feature--content h3 {
    font-weight: 600;
    color: var(--color-secondary);
}
.feature-panel .feature--content p {
    font-size: 16px;
    color: #333;
}

.portfolio--img {
    margin-top: 30px;
}
.portfolio--img:hover img {
    transform: none;
}

.header .navbar {
    padding: 10px 0;
    background-color: #fff;
}
.header-fixed:not(.header-light) .navbar .logo-dark {
    display: inline-block;
}
.header-fixed:not(.header-light) .navbar .logo-light {
    display: none;
}
@media (min-width: 768px) {
    .header-fixed .navbar .navbar-nav > li > a {
        color: var(--color-secondary);
    }
    .header-fixed .navbar .navbar-nav > li > a:hover,
    .header-fixed .navbar .navbar-nav > li.active > a {
        color: var(--color-primary);
    }
}

.brands-title {
    font-family: var(--font-secondary);
    font-size: 30px;
    font-weight: 300;
}
.logo-carousel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}
@media (max-width: 767px) {
	.logo-carousel {
		flex-wrap: wrap;
		justify-content: center;
	}
	.company-logo {
		max-width: calc(50% - 30px);
		padding: 0 10px;
	}
}

#cta2 {
    padding: 60px 0;
}

.feature-list {
    display: grid;
    grid-template-columns: 60% 40%;
    grid-column-gap: 30px;
    font-size: 20px;
    text-align: left;
}
@media (max-width: 767px) {
    .feature-list {
        grid-template-columns: 100%;
    }
}

#skills {
    padding-bottom: 30px;
}