/*--------------------------------
   GENERAL STYLES
--------------------------------*/

html,
body {
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #303030;
}

h1,
h2,
h3,
h4,
h5,
h6,
blockquote {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.wrapper {
    height: 100%;
}

a,
a:link,
a:visited,
a:hover,
a:active {
    color: #737373;
    text-decoration: none;
    outline: 0;
}

p:last-child {
    margin-bottom: 0;
}

.fa.fm {
    margin-right: 10px;
}


/* SECTION TITLE */

.section--title {
    margin-bottom: 30px;
}

.section--title p {
    position: relative;
    color: #303030;
}

.section--title h2 {
    position: relative;
    margin: -9px 0 5px;
    color: #303030;
    font-size: 50px;
    line-height: 58px;
    font-weight: 700;
    text-transform: uppercase;
}


/* SECTION TITLE OPTIONS */

.section--title.hide--border h2 {
    margin-bottom: -7px;
    padding-bottom: 0;
}

.section--title.hide--border h2:before {
    display: none;
}


/* BACKGROUND IMAGE */

.bg--img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* BACKGROUND OVERLAY */

.bg--overlay {
    position: relative;
    z-index: 0;
}

.bg--overlay:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.5);
}


/* BACKGROUND COLORS */

.bg--lightgrey {
    background-color: #f0f0f0;
}

.bg--lightergrey {
    background-color: #f8f8f8;
}

.bg--dark {
    background-color: #303030;
}


/* CUSTOM BUTTONS */

.btn--default,
a.btn--default {
    display: inline-block;
    padding: 10px 25px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 100px;
    font-family: 'Roboto', sans-serif;
    -webkit-transition: color .25s ease, border-color .25s ease;
    transition: color .25s ease, border-color .25s ease;
    outline: 0;
}

.btn--default.hover:hover,
a.btn--default.hover:hover {
    color: #ec1d25;
    border-color: #ec1d25;
    background-color: rgba(255, 255, 255, 0.5);
}

.btn--primary,
a.btn--primary {
    background-color: #ec1d25;
    border-color: #ec1d25;
}


/* PRELOADER */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ec1d25;
    z-index: 9999999999;
}

.preloader--spinners {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    -webkit-animation: preloaderRotate 2s infinite linear;
    animation: preloaderRotate 2s infinite linear
}

.preloader--spinner {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: preloaderBounce 2s infinite ease-in-out;
    animation: preloaderBounce 2s infinite ease-in-out
}

.preloader--spinner-2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1s;
    animation-delay: -1s
}

@-webkit-keyframes preloaderRotate {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes preloaderRotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes preloaderBounce {
    0%,
    100% {
        -webkit-transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
    }
}

@keyframes preloaderBounce {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


/* BACK TO TOP BUTTON */

#backToTop {
    position: fixed;
    right: 30px;
    bottom: 45px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: opacity .25s ease-in-out;
    transition: opacity .25s ease-in-out;
    z-index: 999;
}

body.scrolled #backToTop {
    opacity: 1;
}

#backToTop a {
    display: block;
    min-width: 50px;
    padding: 8px 0 10px;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    background: rgba(236, 29, 37, 0.7);
    background: -moz-linear-gradient(left, rgba(236, 29, 37, 0.9) 0%, rgba(255, 203, 5, 0.9) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(236, 29, 37, 0.9)), color-stop(100%, rgba(255, 203, 5, 0.9)));
    background: -webkit-linear-gradient(left, rgba(236, 29, 37, 0.9) 0%, rgba(255, 203, 5, 0.9) 100%);
    background: -o-linear-gradient(left, rgba(236, 29, 37, 0.9) 0%, rgba(255, 203, 5, 0.9) 100%);
    background: -ms-linear-gradient(left, rgba(236, 29, 37, 0.9) 0%, rgba(255, 203, 5, 0.9) 100%);
    background: linear-gradient(to right, rgba(236, 29, 37, 0.9) 0%, rgba(255, 203, 5, 0.9) 100%);
}


/*  HEADER NAVBAR */

#header .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 0;
    padding-top: 10px;
    margin-bottom: 0px;
    border: none;
    border-radius: 0;
    font-family: 'Roboto', sans-serif;
    -webkit-transition-property: padding, background-color, box-shadow;
    transition-property: padding, background-color, box-shadow;
    -webkit-transition-duration: .25s;
    transition-duration: .25s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    z-index: 999;
}

body.scrolled #header .navbar {
    padding-top: 0;
    background-color: #303030;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.14), 0 2px 4px rgba(0, 0, 0, 0.28);
}


/* HEADER NAVBAR TOGGLE BUTTON */

#header .navbar-toggle {
    margin-bottom: 0;
    border-color: #ec1d25;
    border-radius: 50px;
    -webkit-transition: border-color .25s ease;
    transition: border-color .25s ease;
}

#header .navbar-toggle.collapsed {
    border-color: #fff;
}

#header .navbar-toggle .icon-bar {
    background-color: #ec1d25;
    -webkit-transition: background-color .25s ease;
    transition: background-color .25s ease;
}

#header .navbar-toggle.collapsed .icon-bar {
    background-color: #fff;
}


/* HEADER NAVBAR BRAND */

#header a.navbar-brand {
    height: auto;
    padding-top: 12px;
    padding-bottom: 11px;
    color: #fff;
    font-size: 26px;
    line-height: 34px;
}

#header a.navbar-brand h1 {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    font-weight: 700;
}

#header a.navbar-brand h1 span {
    color: #ec1d25;
}


/* HEADER NAV */

#headerNav .nav {
    font-family: 'Roboto', sans-serif;
}

#headerNav .nav>li>a {
    margin-left: 5px;
    padding: 25px 10px;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    -webkit-transition: border-color .25s ease, padding .25s ease-in-out;
    transition: border-color .25s ease, padding .25s ease-in-out;
}

#headerNav .nav>li>a:hover,
#headerNav .nav>li.open>a,
#headerNav .nav>li.active>a {
    border-bottom-color: #fff;
}

#headerNav .nav>li>a:hover,
#headerNav .nav>li>a:focus,
#headerNav .nav>li.open>a,
#headerNav .nav>li.open>a:hover,
#headerNav .nav>li.open>a:focus {
    background-color: transparent;
}

#headerNav .nav>li>a>.caret {
    margin-left: 8px;
}

#headerNav .nav>.dropdown>.dropdown-menu {
    margin: 0;
    border: none;
    border-radius: 0;
}

#headerNav .nav>.dropdown>.dropdown-menu>li>a {
    padding: 8px 15px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    -webkit-transition: color .25s ease-in-out, background-color .25s ease-in-out;
    transition: color .25s ease-in-out, background-color .25s ease-in-out;
}

#headerNav .nav>.dropdown>.dropdown-menu>li>a:hover,
#headerNav .nav>.dropdown>.dropdown-menu>li>a:focus,
#headerNav .nav>.dropdown>.dropdown-menu>li.active>a {
    color: #fff;
    background-color: #ec1d25;
}


/*HEADER CUSTOM BUTTON */

.header--custom-btn {
    float: right;
    margin-top: 15px;
    margin-left: 35px;
}

.header--custom-btn.btn--default {
    padding-top: 8px;
    padding-bottom: 8px;
}

.header--custom-btn.btn--default.hover:hover,
.header--custom-btn a.btn--default.hover:hover {
    color: #ec1d25;
    border-color: #ec1d25;
    background-color: rgba(255, 255, 255, 0.0);
}

#header .navbar-header .header--custom-btn {
    display: none;
}


/*--------------------------------
   PAGE HEADER AREA
--------------------------------*/

#pageHeader {
    padding: 154px 0 113px;
    text-align: center;
}


/* PAGE HEADER TITLE */

.page-header--title h2 {
    position: relative;
    margin: 0;
    padding-bottom: 25px;
    color: #fff;
    font-size: 60px;
    line-height: 68px;
}

.page-header--title h2:before {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    margin: 0 auto;
    background-color: #ec1d25;
}


/* PAGE HEADER BREADCRUMB */

.page-header--breadcrumb ul {
    margin-top: 25px;
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
}

.page-header--breadcrumb ul>li,
.page-header--breadcrumb ul>li:before {
    color: #fff;
}

.page-header--breadcrumb ul>li>a {
    color: #fff;
    -webkit-transition: color .25s ease;
    transition: color .25s ease;
}

.page-header--breadcrumb ul>li.active,
.page-header--breadcrumb ul>li>a:hover {
    color: #ec1d25;
}


/*--------------------------------
   BANNER AREA
--------------------------------*/

#banner {
    position: relative;
    height: 100%;
}


/* BANNER SLIDER */

.banner--slider {
    height: 100%;
}

.banner--slider .owl-wrapper-outer,
.banner--slider .owl-wrapper,
.banner--slider .owl-item {
    height: 100%;
}


/* BANNER ITEM */

.banner--item {
    height: 100%;
}


/* BANNER CONTENT */

.banner--content {
    color: #fff;
    text-align: center;
}

.banner--content h2 {
    margin: 15px 0;
    font-size: 60px;
    line-height: 68px;
    font-weight: 700;
}

.banner--content h3 {
    font-family: 'Roboto', sans-serif;
    margin: 15px 0;
    font-size: 30px;
    line-height: 38px;
    font-weight: 300;
}

.banner--content .btn--default {
    margin-top: 12px;
}


/* BANNER SLIDER NAV */

.banner--slider-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    font-family: 'Roboto', sans-serif;
    z-index: 0;
}

.banner--slider-nav ul>li {
    float: left;
    width: 33.33333333%;
    padding: 24px 0 26px;
    color: #303030;
    background-color: #fff;
    border-right: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    font-size: 30px;
    line-height: 38px;
    font-weight: 500;
    text-align: center;
    -webkit-transition: color .25s ease, border-color .25s ease, background-color .25s ease-in-out;
    transition: color .25s ease, border-color .25s ease, background-color .25s ease-in-out;
    cursor: pointer;
}

.banner--slider-nav ul>li:hover,
.banner--slider-nav ul>li.active {
    color: #fff;
    background-color: #ec1d25;
    border-color: #ec1d25;
}

.banner--slider-nav ul>li:before,
.banner--slider-nav ul>li:after {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    margin: 0 auto;
    display: none;
    border-style: solid;
    z-index: -1;
}

.banner--slider-nav.has--bs ul>li:before,
.banner--slider-nav.has--ps ul>li:after {
    display: block;
}

.banner--slider-nav ul>li:before {
    top: 0;
    border-width: 0 15px 15px 15px;
    border-color: transparent transparent #ec1d25 transparent;
    -webkit-transition: top .25s ease-in-out;
    transition: top .25s ease-in-out;
}

.banner--slider-nav ul>li:after {
    bottom: 0;
    border-width: 15px 15px 0 15px;
    border-color: #ec1d25 transparent transparent transparent;
    -webkit-transition: bottom .25s ease-in-out;
    transition: bottom .25s ease-in-out;
}

.banner--slider-nav ul>li:hover:before,
.banner--slider-nav ul>li.active:before {
    top: -15px;
}

body.scrolled .banner--slider-nav.has--bs.has--ps ul>li:hover:before,
body.scrolled .banner--slider-nav.has--bs.has--ps ul>li.active:before {
    top: 0;
}

body.scrolled .banner--slider-nav.has--bs.has--ps ul>li:hover:after,
body.scrolled .banner--slider-nav.has--bs.has--ps ul>li.active:after {
    bottom: -15px;
}


/*--------------------------------
  SERVICES AREA
--------------------------------*/

#services {
    position: relative;
    background-size: cover;
    color: #e9e9e9;
}

#services.bg--overlay::before {
    background-color: rgba(0, 0, 0, 0.8);
}

#services .section--title h2 {
    color: #f0f0f0;
}

#services .section--title p {
    color: #f0f0f0;
}

.service--item {
    margin-bottom: 10px;
    text-align: center;
    color: #f0f0f0;
}

.service--icon {
    display: inline-block;
    min-width: 86px;
    min-height: 86px;
    margin-bottom: 15px;
    padding: 23px 10px;
    color: #f0f0f0;
    border: 1px solid #f0f0f0;
    border-radius: 50%;
    font-size: 38px;
    line-height: 0;
    -webkit-transition: color .25s ease, border-color .25s ease;
    transition: color .25s ease, border-color .25s ease;
}

.service--item:hover .service--icon {
    color: #ec1d25;
    border-color: #ec1d25;
}

.service--content {
    padding: 0 20px;
}

.service--content h4 {
    margin: 0 0 9px;
    color: #f0f0f0;
    font-size: 28px;
    line-height: 36px;
    -webkit-transition: color .25s ease;
    transition: color .25s ease;
}

.service--item:hover .service--content h3 {
    color: #ec1d25;
}


/*--------------------------------
  TESTIMONIAL AREA
--------------------------------*/

.testimonial--slider img {
    display: block;
    max-width: 100%;
    /* border-radius: 50%; */
    width: 160px;
    height: 160px;
}

.testimonial--content {
    color: #303030;
    text-align: left;
    margin-top: 20px;
}

.testimonial--citation {
    margin-top: 20px;
    font-weight: bold;
}


/*--------------------------------
 ABOUT DESCRIPTION AREA
--------------------------------*/

#aboutDesc {
    padding: 80px 0;
}

#aboutDesc .row-vc>div {
    float: none;
    display: table-cell;
    vertical-align: middle;
}

.about-quality {
    padding: 15px 30px;
    background-color: #ffead4;
    margin-top: 40px;
    border: 1px solid #e7d5c1;
}

.about-desc--img img {
    width: 100%;
    box-shadow: 1px 1px 15px 1px rgba(0, 0, 0, 0.18);
    padding: 5px;
}


/*--------------------------------
  CONTACT AREA
--------------------------------*/

#contact {
    padding: 80px 0;
}

.contact--form {
    text-align: center;
}

.contact--form-status .alert {
    padding: 15px 30px;
    border-radius: 50px;
}

.contact--form label {
    font-weight: 400;
}

.contact--form .form-group {
    position: relative;
}

.contact--form .form-control {
    margin-bottom: 30px;
    border: none;
    box-shadow: none;
    border-radius: 0;
    background-color: transparent;
    border-bottom: 1px solid #e9e9e9;
    height: auto;
    padding: 8px 0;
}

.contact--form textarea.form-control {
    min-height: 172px;
    resize: none;
}

.contact--form .highlight {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #ec1d25;
    -webkit-transition: width 0.55s ease-in-out, background-color 0.25s ease-in-out;
    transition: width 0.55s ease-in-out, background-color 0.25s ease-in-out;
}

.contact--form input:focus+.highlight,
.contact--form textarea:focus+.highlight,
.contact--form input.error+.highlight,
.contact--form textarea.error+.highlight {
    width: 100%;
}

.contact--form input.valid+.highlight,
.contact--form textarea.valid+.highlight {
    background-color: #5cb85c;
}

.contact--form .btn--default {
    min-width: 100px;
    color: #303030;
    background-color: transparent;
    border-color: #303030;
}


/*--------------------------------
    20. Map Area
--------------------------------*/

#map {
    position: relative;
    min-height: 400px;
    z-index: 0;
}

#map:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    z-index: 1;
}


/*--------------------------------
    FOOTER AREA
--------------------------------*/

#footer {
    color: #fff;
}


/* FOOTER WIDGETS */

.footer--widgets {
    padding-top: 50px;
}

.footer--widget {
    padding-bottom: 50px;
}

.footer--widget h4 {
    position: relative;
    margin: -5px 0 25px;
    padding-bottom: 12px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

.footer--widget h4:before {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #ec1d25;
}

.footer--widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer--widget ul ul {
    padding-left: 0px;
}

.footer--widget ul li a {
    display: block;
    padding-bottom: 5px;
    color: #fff;
    -webkit-transition: color .25s ease;
    transition: color .25s ease;
}

.footer--widget ul li a:hover {
    color: #ec1d25;
}

.fw--about a.more {
    color: #ec1d25;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.fw--about-social {
    margin-top: 15px;
}

.fw--about-social ul {
    position: relative;
    margin: 0 -15px;
}

.fw--about-social ul:before,
.fw--about-social ul:after {
    content: " ";
    display: table;
}

.fw--about-social ul:after {
    clear: both;
}

.fw--about-social ul li {
    float: left;
}

.fw--about-social ul li a {
    display: block;
    padding: 0 15px;
}

.fw--links ul {
    margin-top: -10px;
}

.fw--links li a {
    padding-top: 5px;
    border-bottom: 1px dotted #fff;
}

.fw--links li a:hover {
    border-color: #ec1d25;
}

.footer--widget.fw--links li a {
    -webkit-transition: color .25s ease, border-color .25s ease;
    transition: color .25s ease, border-color .25s ease;
}


/* FOOTER COPYRIGHT */

.footer--copyright {
    padding: 25px 0;
    background-color: #222;
    text-align: center;
}

.footer--copyright a {
    color: #ec1d25;
    font-family: 'Roboto', sans-serif;
}


/*--------------------------------
   HELPER CLASSES
--------------------------------*/


/* RESET-MARGIN */

.reset-margin {
    margin-right: 0;
    margin-left: 0;
}


/* RESET-PADDING */

.reset-padding {
    padding-right: 0;
    padding-left: 0;
}


/* VERTICAL-CENTERING */

.vc-parent {
    width: 100%;
    height: 100%;
    display: table;
}

.vc-child {
    display: table-cell;
    vertical-align: middle;
}

.vc-child-bottom {
    display: table-cell;
    vertical-align: bottom;
}


/* COLUMN CENTERING */

.col--center>div {
    float: none;
    display: table-cell;
    vertical-align: middle;
}