/* 15-9-22
Car spare site style by Ajay */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    /* font-family: 'Poppins', sans-serif; */
}

.custom-nav {
    padding: 20px 0;
}

.custom-nav .logo {
    width: 132px;
}

.custom-nav.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, .55);
    font-size: 16px;
    width: 160px;
    text-align: center;
    font-weight: 500;
    color: #474747;
}

.custom-nav.navbar-light .navbar-nav .nav-link.active,
.custom-nav.navbar-light .navbar-nav .show>.nav-link {
    font-weight: 600;
}

/* ********************************************************************* nav style ends  */
.banner {
    height: calc(100vh - 107px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #e53e2b;
    padding: 0 120px;
    padding-right: 0;
    /* background-image: linear-gradient(to right, #e53e2b, #38383c); */
}

.banner-left {
    width: 40%;
    position: relative;
    height: 100%;
}

.banner-left-inner {
    position: absolute;
    right: -27%;
    width: 95%;
    z-index: 99;
    top: 25%;
}


.banner-left h1 {
    font-size: 80px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.banner-right {
    width: 60%;
    background: rgb(74 69 69 / 82%);
    background-image: url(../img/bg-img.jpg);
    height: 100%;
    background-position: right;
    background-size: 168%;
    background-repeat: no-repeat;
    position: relative;
}

.banner-left p {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    width: 70%;
    margin-bottom: 15px;
}

.quote-btn {
    padding: 18px 35px;
    border-radius: 0;
    font-size: 13px;
    line-height: 1em;
    letter-spacing: 0;
    border: 2px solid #fff;
    margin: 15px 0;
    display: inline-block;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease-in, background-color .2s ease-in, border-color .2s ease-in, box-shadow .2s ease-in, -webkit-box-shadow .2s ease-in;
}

.quote-btn:hover {
    background-color: #fff;
    color: #000;
    font-weight: 600;
}

.overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgb(5 5 5 / 74%);
}

.contact-box {
    z-index: 99;
    position: absolute;
    bottom: 50px;
    right: 100px;
    border: 2px solid #fff;
    padding: 25px 20px;
    background: rgba(0, 0, 0, 0.42);
}

.contact-item {
    display: flex;
    align-items: self-start;
    margin-bottom: 10px;
}

.contact-item img {
    width: 25px;
    margin-right: 20px;
}

.contact-item h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-item a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}