@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&display=swap');

:root {
    --black-color: #000000;
    --white-color: #ffffff;
    --red-color: #ec3237;
    --hover-red-color: #ef242a;
    --licorice-color: #2C3544;
    --force-blue: #60849e;
    --yellow-color: #ffc107;
    --gray-color: #ffe7e7;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

label {
    font-size: 14px;
    text-transform: capitalize;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Roboto', sans-serif;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

a:hover {
    text-decoration: none;
}

.w-87 {
    width: 87% !important;
}

/*-- Header and Banner --*/

.banner {
    background-image: url(../img/banner.jpg);
    background-size: cover;
    padding-bottom: 50px;
}

.header {
    background-color: var(--white-color);
    -webkit-box-shadow: 0 0 4px rgb(0 0 0 / 14%);
    box-shadow: 0 0 4px rgb(0 0 0 / 14%);
    position: sticky;
    top: 0;
    z-index: 999;

}

.sub-header {
    background-color: var(--red-color);
}

.sub-header .header-contact {
    padding: 10px 20px;
    width: fit-content;
}

.sub-header .header-border {
    border-right: 1px solid #cc2a2a;
}

.sub-header .header-border-left {
    border-left: 1px solid #cc2a2a;
}

.sub-header .header-content a {
    color: var(--white-color);
    font-size: 14px;
    letter-spacing: 0.1px;
    font-weight: normal;
}

.sub-header .header-content a:hover {
    color: var(--yellow-color);
}

.sub-header .header-content .instockproducts {
    background-color: var(--yellow-color);
    padding: 8px 10px;
    border-radius: 18px;
    position: relative;
    right: -11px;
    color: var(--black-color);
}

.sub-header .header-content .instockproducts:hover {
    background-color: var(--white-color);
    color: var(--black-color);
}

/*-- Nav --*/
.brand a,
.brand a:visited {
    color: #ffffff;
    text-decoration: none;
}

.nav-container {
    padding: 0px 20px;
}

.logo {
    height: 80px;
    padding-top: 10px;
}

nav {
  float: right;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  float: left;
  position: relative;
}

nav ul li a,
nav ul li a:visited {
    display: block;
    padding: 0 20px;
    line-height: 90px;
    color: var(--black-color);
    font-weight: 600;
    font-size: 16px;
}

nav ul li a:hover,
nav ul li a:visited:hover {
    color: var(--red-color);
}

nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
    padding-left: 4px;
    /*--content: " ▾";--*/
}

.menunav ul li a i {
    position: relative;
    top: -3px;
}

nav ul li ul li {
    min-width: 190px;
}
nav ul li ul li a {
    padding: 15px;
    line-height: 20px;
}

.nav-dropdown {
    position: absolute;
    display: none;
    z-index: 1;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

a:not([href]):not([class]):hover {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

/* Mobile navigation */
.nav-mobile {
    display: none;
    position: absolute;
    top: 6px;
    right: 27px;
    width: 70px;
}

#nav-toggle {
    position: absolute;
    left: 18px;
    top: 22px;
    cursor: pointer;
    padding: 10px 35px 16px 0px;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 5px;
    width: 35px;
    background: var(--red-color);
    position: absolute;
    display: block;
    content: "";
    transition: all 300ms ease-in-out;
}

#nav-toggle span:before {
    top: -10px;
}

#nav-toggle span:after {
    bottom: -10px;
}

#nav-toggle.active span {
    background-color: transparent;
}

#nav-toggle.active span:before, #nav-toggle.active span:after {
    top: 0;
}

#nav-toggle.active span:before {
    transform: rotate(45deg);
}

#nav-toggle.active span:after {
    transform: rotate(-45deg);
}

.nav-container .nav-list li ul {
    background-color: var(--white-color);
    visibility: hidden;
    opacity: 0;
    min-width: 5rem;
    position: absolute;
    transition: all 0.5s ease;
    margin-top: 1rem;
    left: 0;
    display: none;
}

.nav-container .nav-list li:hover > ul,
.nav-container .nav-list li ul:hover {
    visibility: visible;
    opacity: 1;
    display: block;
    position: absolute;
    z-index: 999;
    top: 73px;
}

.nav-list li ul {
    clear: both;
    width: 100%;
}

/*-- New --*/
.navigation {
    height: 90px;
    background: var(--white-color);
  }

  .brand {
    float: left;
  }

  nav {
    float: right;
  }
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav ul li {
    float: left;
    position: relative;
  }
  nav ul li a,
  nav ul li a:visited {
    display: block;
    padding: 0 10px;
    line-height: 91px;
    background: var(--white-color);
    color:var(--black-color);
    text-decoration: none;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
  }
  nav ul li a:hover,
  nav ul li a:visited:hover {
    background:var(--red-color);
    color:var(--white-color);
  }
  nav ul li a:not(:only-child):after,
  nav ul li a:visited:not(:only-child):after {
    padding-left: 4px;
    content: ' ▾';
  }
  nav ul li ul li {
    min-width: 241px;
    width: auto;
  }
  nav ul li ul li a {
    padding: 15px;
    line-height: 20px;
  }

  .nav-dropdown {
    position: absolute;
    display: none;
    z-index: 1;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  }

  /* Mobile navigation */
  .nav-mobile {
    display: none;
    position: absolute;
    top: 53px;
    right: 0;
    height: 70px;
    width: 70px;
  }

  #nav-toggle {
    position: absolute;
    left: 18px;
    top: 22px;
    cursor: pointer;
    padding: 10px 35px 16px 0px;
  }
  #nav-toggle span,
  #nav-toggle span:before,
  #nav-toggle span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 5px;
    width: 35px;
    background: var(--red-color);
    position: absolute;
    display: block;
    content: '';
    transition: all 300ms ease-in-out;
  }
  #nav-toggle span:before {
    top: -10px;
  }
  #nav-toggle span:after {
    bottom: -10px;
  }
  #nav-toggle.active span {
    background-color: transparent;
  }
  #nav-toggle.active span:before, #nav-toggle.active span:after {
    top: 0;
  }
  #nav-toggle.active span:before {
    transform: rotate(45deg);
  }
  #nav-toggle.active span:after {
    transform: rotate(-45deg);
  }
/*-- End New --*/
/*-- End Nav --*/

.slider-height {
    height: 550px;
}

.slider-height .carousel-item img  {
    height: 550px;
    width: 100%;
    background-size: cover;
}

.banner-text {
    color: var(--white-color);
}

.banner-text h1 {
    text-shadow: 3px 3px 20px #000;
    font-size: 55px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.banner-text h6 {
    text-shadow: 3px 3px 20px #000;
    font-size: 30px;
    padding: 80px 0px 40px 0px;
    text-align: center;
}

.banner-text h1 span     {
    color: var(--white-color);
    font-family: 'Roboto', sans-serif;
}

.banner-text p     {
    color: var(--white-color);
    text-shadow: 3px 3px 20px #000;
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 80px;
}

.banner-text p span     {
    color: var(--white-color);
}

.banner-search nav .form-control {
    padding: 27px 20px;
    font-size: 20px;
    border: none;
}

.banner-search nav .form-control:focus {
    box-shadow:none;
}

.banner-search nav .search-btn {
    background-color: var(--red-color);
    font-size: 21px;
    color: var(--white-color);
    border: none;
    padding: 12px 18px;
}

.banner-search nav .search-btn:focus {
    box-shadow:none;
}

.banner-search nav .search-btn:hover {
    background-color: var(--hover-red-color);
}

.banner-searchquote {
    display: flex;
    justify-content: center;
}

.banner-or {
    display: flex;
    align-items: center;
    height: 54px;
    justify-content: center;
}

.searchinput {
    width: 87.1% !important;
}
/*-- End Header and Banner --*/


/*-- Top Brands --*/
.top-brands {
    padding: 50px 0px;
}

.top-brands .title {
    margin-bottom: 50px;
}

.top-brands .title h2 {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--black-color);
    text-align: center;
    margin-bottom: 0;
}

.top-brands .title p {
    margin: 0;
    text-align: center;
}

.top-brands .flex-container {
    display: flex;
    justify-content: center;
    position: relative;
    width: 15%;
    margin-bottom: 15px;
    border: 8px solid #d9d9d9;
    margin: 5px;
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
}

.brand-center {
    display: flex;
    justify-content: center;
}

.top-brands .brandbox .brand-name {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}

.top-brands .brandbox .brand-name p {
    margin-bottom: 0;
    background-color: #000000c2;
    color: var(--white-color);
    text-align: center;
    padding: 5px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.top-brands .brandbox .brand-overlay-data {
    position: absolute;
    width: 101%;
    left: 0;
    top: 0px;
    text-align: center;
    background-color: #000000cc;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    visibility: hidden;
}

.brand-name-image img {
    width: 100%;
}

.top-brands .brand-name-image:hover .brand-overlay-data {
    visibility: visible;
}

.top-brands .brand-name-image:hover .brand-name {
    visibility: hidden;
}

.top-brands .brandbox .brand-overlay-data h3 {
    margin: 0px;
    color: var(--white-color);
    padding-bottom: 4px;
    font-size: 18px;
}

.top-brands .brandbox .brand-overlay-data p {
    margin: 0px;
    color: var(--white-color);
    padding-bottom: 10px;
    font-size: 12px;
}

.brand-overlay-data button {
    padding: 1px 10px;
}

.all-brands {
    padding-bottom: 30px;
}

.all-brands h2 {
    font-size: 28px;
    /* font-weight: bold; */
    /* letter-spacing: 1px; */
    color: var(--black-color);
    margin-bottom: 0px;
    margin-top: 0px;
    /* text-align: center; */
    /* text-transform: uppercase; */
}
/*-- End Top Brands --*/

/*-- Home About --*/
.homeabout {
    padding: 50px 0px;
    background-image: url(../img/advantage-bg.jpg);
    background-size: cover;
}

.homeabout .title {
    margin-bottom: 50px;
}

.homeabout .title h2 {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--white-color);
    text-align: center;
    margin-bottom: 0;
    text-transform: uppercase;
}

.homeabout .title h2::after {
    content: "";
    position: absolute;
    height: 5px;
    width: 100px;
    background-color: var(--red-color);
    top: 48px;
    left: 46%;
}

.homeabout p {
    color: var(--white-color);
    text-align: center;
    font-size: 20px;
    font-weight: 200;
    margin: 0px;
}
/*-- End Home About --*/

/*-- Industries We Work With --*/
.industries-work {
    padding: 50px 0px;
}

.industries-work .title {
    margin-bottom: 50px;
}

.industries-work .title h2 {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--black-color);
    text-align: center;
    margin-bottom: 0;
}

.industries-work .title p {
    margin: 0;
    text-align: center;
}

.industries-work .flex-container {
    display: flex;
    justify-content: center;
    position: relative;
    width: 24%;
    margin-bottom: 15px;
}

.industries-center {
    justify-content: center;
}

.industries-work .brandbox .brand-name p {
    margin-bottom: 0;
    color: var(--black-color);
    text-align: center;
    padding: 5px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #d1d1d1;
    width: fit-content;
    margin: 0 auto;
}

.industries-work .brandbox .brand-overlay-data {
    position: absolute;
    width: 100%;
    top: 0px;
    text-align: center;
    background-color: #000000cc;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    visibility: hidden;
}

.industries-work .brand-name-image img {
    width: 100%;
}

.industries-work .brand-name-image:hover .brand-overlay-data{
    visibility: visible;
}

.industries-work .brand-name-image:hover .brand-name {
    background-color: var(--yellow-color);
    position: relative;
    z-index: 1;
}

.industries-work .brandbox .brand-overlay-data h3 {
    margin: 0px;
    color: var(--white-color);
    padding-bottom: 10px;
}

.industries-work .brandbox .brand-overlay-data p {
    margin: 0px;
    color: var(--white-color);
    padding-bottom: 10px;
}
/*-- End Industries We Work With --*/

/*-- Testimonial --*/
.testimonial {
    padding: 50px 0px;
    background-image: url(../img/testimonials-bg.jpg);
    background-size: cover;
}

.testimonial .title {
    margin-bottom: 50px;
}

.testimonial .title h2 {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--white-color);
    text-align: center;
    margin-bottom: 0;
    text-transform: uppercase;
}

.testimonial .title h2::after {
    content: "";
    position: absolute;
    height: 5px;
    width: 100px;
    background-color: var(--red-color);
    top: 48px;
    left: 46%;
}

.testimonial p {
    color: var(--white-color);
    text-align: left;
    font-size: 20px;
    font-weight: 300;
}

.testimonial h6 {
    color: var(--yellow-color);
    text-align: left;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0px;
}

.testimonial span {
    color: var(--white-color);
    text-align: left;
    font-size: 16px;
    font-weight: 400;
}

.testimonial .carousel-content h3 span {
    font-size: 17px;
    font-weight: normal;
    color: #e8e8e8;
    text-transform: uppercase;
}

.testimonial #testimonial .carousel-control-prev,
.testimonial #testimonial .carousel-control-next {
    font-size: 36px;
}

.testimonial #testimonial h2 {
    font-size: 40px;
    font-style: italic;
    border-bottom: 1px solid #7fbdff;
    padding-bottom: 20px;
    display: inline-block;
}
/*-- End Testimonial --*/

/*-- Logo Slider --*/
.logo-slider {
    padding: 20px 0px;
}

.logo-slider .slick-slide {
    margin: 0px 20px;
}

.logo-slider .slick-slide img {
    width: 100%;
}

.logo-slider .slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.logo-slider .slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.logo-slider .slick-list:focus
{
    outline: none;
}
.logo-slider .slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.logo-slider .slick-slider .slick-track,
.logo-slider .slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.logo-slider .slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.logo-slider .slick-track:before,
.logo-slider .slick-track:after
{
    display: table;
    content: '';
}
.logo-slider .slick-track:after
{
    clear: both;
}
.logo-slider .slick-loading .slick-track
{
    visibility: hidden;
}

.logo-slider .slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .logo-slider .slick-slide
{
    float: right;
}
.logo-slider .slick-slide img
{
    display: block;
    height: 100px;
    object-fit: contain;

}
.logo-slider .slick-slide.slick-loading img
{
    display: none;
}
.logo-slider .slick-slide.dragging img
{
    pointer-events: none;
}
.logo-slider .slick-initialized .slick-slide
{
    display: block;
    height: 100px;
    overflow: hidden;
}
.logo-slider .slick-loading .slick-slide
{
    visibility: hidden;
}
.logo-slider .slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.logo-slider .slick-arrow.slick-hidden {
    display: none;
}
/*-- End Logo Slider --*/

/*-- Our Company --*/
.our-flex-container-box {
    display: flex;
    justify-content: center;
}

.our-flex-box {
    width: 50%;
    position: relative;
}

.flex-container-company {
    background-image: url(../img/truck1.jpg);
    padding: 50px;
    background-size: cover;
}

.company-overlay {
    position: absolute;
    z-index: 1;
    background-color: #000000c7;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.flex-container-data {
    position: relative;
    z-index: 2;
}

.flex-container-company h4 {
    margin: 0;
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 20px;
}

.flex-container-company p {
    color: var(--white-color);
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    margin: 0px;
}

.flex-container-quote {
    background-image: url(../img/truck2.jpg);
    padding: 50px;
    background-size: cover;
}

.quote-overlay {
    position: absolute;
    z-index: 1;
    background-color: #ec3237d4;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.flex-container-data {
    position: relative;
    z-index: 2;
}

.flex-container-quote h4 {
    margin: 0;
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 20px;
}

.flex-container-quote p {
    color: var(--white-color);
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    margin: 0px;
}
/*-- End Our Company --*/

/*-- Footer --*/
.footer {
    color: var(--white-color);
    background-image: url(../img/footer-bg.jpg);
    background-position: 0 0;
    -webkit-box-shadow: 0 -2px 4px 2px rgb(0 0 0 / 10%);
    box-shadow: 0 -2px 4px 2px rgb(0 0 0 / 10%);
    padding: 50px 20px;
}

.footer .footer-title h5 {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,.15);
    position: relative;
}

.footer .footer-title h5::after {
    position: absolute;
    bottom: 0px;
    left: 20px;
    width: 40px;
    height: 4px;
    margin-left: -20px;
    background-color: var(--red-color);
    content: "";
}

.footer-logo {
    height: 80px;
    margin-bottom: 10px;
}

.footer .footer-add {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.2px;
    word-spacing: 1px;
    margin-bottom: 10px;
}

.footer-mail {
    color: var(--yellow-color);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.2px;
    word-spacing: 1px;
}

.footer-mail:hover {
    text-decoration: none;
    color: var(--yellow-color);
    border-bottom-style: dotted;
    border-bottom-width: 1px;
}

.footer-phone-div {
    margin-top: 10px;
}

.footer-phone {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.2px;
    word-spacing: 1px;
}

.footer-phone:hover {
    text-decoration: none;
    color: var(--white-color);
    border-bottom-style: dotted;
    border-bottom-width: 1px;
}

.footer .footer-catalog {
    list-style-type: square;
    margin-left: 18px;
}

.footer .footer-catalog li a {
    color: var(--white-color);
    font-size: 14px;
    letter-spacing: 0.3px;
}

.footer .footer-catalog li a:hover {
    border-bottom-style: dotted;
    border-bottom-width: 1px;
}

.footer-industries-img {
    height: 50px;
    width: 65px;
    object-fit: cover;
}

.footer .industries-ul {
    list-style: none;
}

.footer .industries-ul li a {
    color: var(--white-color);
    font-size: 14px;
    letter-spacing: 0.3px;
}

.footer .industries-ul li a:hover {
    border-bottom: 1px dotted #ffffff;
}

.footer .industries-ul li p {
    padding: 0px;
    margin: 0px;
    font-size: 12px;
    font-weight: 100;
    color: #d5d5d5;
    font-style: italic;
}

.footer .industries-ul li i {
    position: absolute;
    right: 0;
    top: 10px;
    color: #d5d5d5;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.35);
    box-shadow: inset 0 0 6px rgba(0,0,0,.35);
    padding: 5px 10px;
}

.footer .industries-ul li i:hover {
    color: var(--white-color);
}

.footer-carousel ul {
    list-style: none;
}

.footer-carousel ul li a {
    height: 60px;
    width: 80px;
    overflow: hidden;
    display: flex;
    float: left;
    padding: 2px;
}

.footer-carousel ul li a img {
    width: 100% !important;
    height: 100% !important;
    border: 3px solid #ffffff1f;
    border-radius: 5px;
    float: left;
    opacity: 0.2;
    object-fit: cover;
}

.footer-carousel ul li a img:hover {
    opacity: 1;
}

.footer-carousel .owl-dots, .footer-carousel .owl-nav {
    display: none;
}

.copyright {
    background-color: var(--black-color);
    padding: 10px 0px;
}

.copyright ul {
    margin: 0px;
    display: flex;
    list-style: none;
}

.copyright ul a {
    color: #727272;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.2px;
    border-right: 1px solid #363636;
    padding: 0px 10px;
}

.copyright ul a:hover {
    color: var(--white-color);
    font-weight: 400;
}
/*-- End Footer --*/

/*-- WhatsApp --*/
.whatsappicon {
    position: fixed;
    z-index: 9;
    bottom: 25px;
    left: 25px;
    background-color: #3fc250;
    border-radius: 100%;
    padding: 8px;
}

.whatsappicon img {
    height: 30px;
}

.whatsappicon img:hover {
    transform: rotate(45deg);
}

.websitecallicon {
    position: fixed;
    z-index: 9;
    bottom: 80px;
    left: 25px;
    background-color: #3fc250;
    border-radius: 100%;
}

.websitecallicon img {
    height: 46px;
}

.websitecallicon img:hover {
    transform: rotate(45deg);
}
/*-- End WhatsApp --*/

/*-- Brand Page --*/
.bannername {
    background-size: cover;
    background-position: center;
    background-color: var(--gray-dark);
}

.bannername .bannerbrandname h1 {
    margin: 40px auto;
    background-color: var(--red-color);
    width: fit-content;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 30px;
    color: var(--white-color);
    border: 2px solid #ffffff;
}

.brand-caption {
    padding: 50px 0px;
}

.brandpage-logo {
    height: 80px;
}

.brand-product-box {
    border: 8px solid #d9d9d9;
    padding: 5px;
    text-align: center;
    position: relative;
}

.brand-product-box:hover {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
    border: 8px solid #cecece;
}

.brand-product-box img {
    width: 100%;
}

.brand-product-box p {
    margin: 0;
    position: absolute;
    background-color: var(--force-blue);
    width: 100%;
    left: 0;
    color: var(--white-color);
    bottom: 0;
    font-size: 14px;
    padding: 2px;
}

.brand-page-sidetitle {
    padding: 5px 10px;
    font-weight: 600;
    margin: 0;
    color: var(--black-color);
    background-color: var(--gray-color);

}

.brand-page-sidebar .nav-pills {
    border: 1px solid #eeeeee;
}

.brand-page-sidebar .nav-pills .nav-link.active,
.brand-page-sidebar .nav-pills .show>.nav-link {
    font-size: 14px;
    font-weight: bold;
    border-radius: 0;
    padding: 8px;
    border-top: 1px solid #dfdfdf;
    background-color: var(--red-color);
    color: var(--white-color);
}

.brand-page-sidebar .nav-pills .nav-link {
    color: var(--black-color);
    font-size: 14px;
    border-radius: 0;
    padding: 8px;
    border-top: 1px solid #dfdfdf;
}

.brand-page-sidebar .nav-pills .nav-link:hover {
    text-decoration: underline;
}

/* .brand-page-content .brand-page-content-box {
    border: 1px solid #b2aeae;
} */

.brand-page-content .brand-page-content-box h3 {
    margin: 0;
    font-size: 16px;
    letter-spacing: 0.2px;
    background-color: var(--red-color);
    color: var(--white-color);
    padding: 6px 10px;
}

.brand-page-main-content {
    padding: 10px;
}

.brand-page-main-content ul {
    font-size: 14px;
    margin: 20px 0px 5px 36px;
}
/*-- End Brand Page --*/


/*-- Product Page --*/
.product-detail-caption {
    padding: 50px 0px;
}

.product-detail-caption .pro-img-sologan {
    text-align: center;
    background-color: var(--gray-color);
    padding: 5px 0px;
    font-size: 12px;
    margin: 0;
}

.product-detail-image ul {
    list-style: none;
    text-align: center;
}

.product-detail-image ul li a {
    font-size: 12px;
    font-weight: 400;
}

.product-detail-image ul li a i {
    color: var(--black-color);
    font-size: 14px;
}

.pro-right-detail .product-detail-name h1 {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
}

.pro-right-detail .product-detail-name p {
    padding: 5px 0px;
    margin: 0;
}

.product-detail-caption .product-price-qnt p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    float: left;
    color: var(--gray-dark);
}

.product-detail-caption .product-price-qnt p span {
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
}

.product-price-qnt form .form-group .form-control {
    width: 50px;
    float: right;
    padding: 0 5px;
    height: 33px;
    display: none;
}

.product-price-qnt form .form-group label {
    position: absolute;
    right: 75px;
    font-weight: 600;
    padding-top: 4px;
    display: none;
}

.pro-right-detail table {
    margin-top: 45px;
    font-size: 14px;
    background-color: var(--gray-color);
}

.pro-right-detail table tbody tr td {
    padding: 5px 11px;
}

.pro-right-detail table tbody tr th {
    width: 34%;
    padding: 5px 11px;
    background-color: var(--force-blue);
    color: var(--white-color);
    border: 1px solid #9b9b9b;
}

.product-detail-caption .pdetailenquirybtn {
    font-size: 16px;
    font-weight: bold;
}

.product-tab-detail {
    list-style: none;
    margin-bottom: 0px;
    margin-top: 20px;
}

.product-tab-detail li {
    display: inline-block;
}

.product-tab-detail li a {
    font-size: 14px;
    background-color: #246696;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 5px;
    border: 1px solid #eeeeee;
}

.product-features {
    margin-top: 30px;
}

.product-features h6 {
    margin: 0;
    background: linear-gradient(to right, #ffffff 0%, #ec3237 23%, #c82d31 41%, #ec3237 60%, #c82d31 82%,#ffffff 100%);
    color: #fff;
    text-align: center;
    line-height: 36px;
    height: 36px;
    font-size: 16px;
    font-weight: bold;
    font-family: ariel, sans-serif;
    max-width: 100%;
}

.product-tab-detail-content {
    padding: 10px;
}

.product-tab-detail-content ul {
    margin-left: 20px;
    font-size: 14px;
    margin-bottom: 0px;
}

.product-tab-detail-content ul li {
    font-size: 14px;
}

#ItemProperties {
    display: table;
    padding: 0px 10px;
    box-sizing: border-box;
    font-size: 0px;
    width: 100%;
}

.TechSpecWrap {
    display: table-row;
}

.TechSpecName {
    display: table-cell;
    width: 50%;
    font-size: 14px;
    background-color: #eee;
    padding: 5px 5px 5px 10px;
    box-sizing: border-box;
    border-bottom: 1px dotted #CCC;
}

.TechSpecValue {
    display: table-cell;
    width: 50%;
    font-size: 14px;
    background-color: #E8E6E6;
    padding: 5px 5px 5px 10px;
    box-sizing: border-box;
    border-bottom: 1px dotted #CCC;
}

.product-links {
    margin: 0 !important;
    list-style: none;
    padding: 0;
}

.product-links li {
    display: inline;
}

.product-links li a {
    background-color: #eeeeee;
    padding: 5px 15px;
    border-radius: 25px;
    color: #000000;
}

.product-links li a:hover {
    background-color:var(--force-blue);
}

.product-links li a i {
    font-size: 8px;
    line-height: 8px;
    position: relative;
    top: -2px;
    color: #b0b0b0;
    left: -3px;
}

.product-accessory {
    background-color: #eeeeee;
    margin-bottom: 20px;
}

.product-accessory-header {
    background-color:var(--force-blue);
    padding: 5px 10px;
}

.product-accessory-header p {
    padding: 0;
    margin: 0;
    color: var(--white-color);
    font-size: 13px;
    display: inline;
}

.product-accessory-header p a {
    padding: 0;
    margin: 0;
    color: var(--white-color);
    font-size: 13px;
}

.product-accessory-header p a:hover {
    text-decoration: underline;
}

.product-accessory-header .header-p-right {
    float: right;
    color: var(--white-color);
    font-size: 13px;
    padding-top: 2px;
    width: 100px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: inline-block;
    text-align: right;
}

.product-accessory-header .header-p-right a {
    color: var(--white-color);
    font-size: 13px;
}

.product-accessory-header .header-p-right a:hover {
    text-decoration: underline;
}

.product-accessory-body {
    padding: 5px;
}

.product-accessory-img {
    margin: 0 auto;
    display: block;
    text-align: center;
    background-color: #ffffff;
    padding: 10px;
}

.product-accessory-img img {
    height: 80px;
    width: 80px;
    overflow: hidden;
    object-fit: cover;
}

.product-accessory-img a {
    font-size: 13px;
}

.product-accessory-img-main {
    width: 150px;
}

.product-accessory-content-main {
    /*--margin-left: 15px;
    width: 35%;--*/
}

.product-accessory-content-main h2 {
    font-size: 14px;
    font-weight: 600;
    word-break: break-all;
}

.product-accessory-content-main small {
    position: absolute;
    bottom: 6px;
}

.product-accessory-content-main p {
    font-size: 13px;
    margin-bottom: 0px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-right: 10px;
}

.product-accessory-price {
    position: absolute;
    right: 56px;
    margin-top: 18px;
}

.product-accessory-price p {
    font-size: 20px;
    font-weight: bold;
    color: var(--force-blue);
    text-align: right;
    margin-bottom: 5px;
}

.product-accessory-price p span {
    position: relative;
    font-size: 14px;
    color: #565959;
    text-decoration: line-through;
    font-weight: 400;
    top: -11px;
}

.product-accessory-price .pdetailenquirybtn {
    font-size: 14px;
    font-weight: bold;
}
/*-- End Product Page --*/

/*-- Contact Us Page --*/
.contact-us {
    padding: 50px 0px;
}

.contact-map {
    background-color: var(--white-color);
    padding: 10px;
    box-shadow: 0 0 20px rgb(0 0 0 / 11%)
}

.contact-us .inner-box .icon-box {
    margin-right: 14px;
    font-size: 30px;
    color: var(--force-blue);
}

.inner-box h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.inner-box a {
    font-size: 14px;
    color: #212529;
}

.inner-box a:hover {
    text-decoration: underline;
}

.contact-us .title h2 {
    font-size: 28px;
    /* font-weight: bold; */
    /* letter-spacing: 1px; */
    color: var(--black-color);
    margin-bottom: 15px;
    margin-top: 30px;
}

.about-us {
    padding: 50px 0px;
}

.about-us .title h2 {
    font-size: 28px;
    /* font-weight: bold; */
    /* letter-spacing: 1px; */
    color: var(--black-color);
    margin-bottom: 0px;
    margin-top: 0px;
    /* text-align: center; */
    /* text-transform: uppercase; */
}
/*-- End Contact Us Page --*/

/*-- Listing Page --*/
.list-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    float: none;
}

.list-pagination .page-item.active .page-link {
    background-color: var(--red-color);
}

.listing-filter-title h6 {
    background-color: var(--red-color);
    color: var(--white-color);
    padding: 8px 10px;
}

.listing-filter-title h6 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.6px;
}

.listing-filter-title h6 a {
    float: right;
    font-size: 12px;
    letter-spacing: normal;
    padding: 3px 0px;
    color: var(--white-color);
}

.listing-filter-title h6 a:hover {
    text-decoration: underline;
}

.listing-filter-group {
    border: 1px solid#bababa;
}

.listing-filter-subtitle {
    padding: 10px 10px 0px 10px;
}

.listing-filter-subtitle p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.listing-filter-list {
    border-bottom: 1px solid#bababa;
    padding: 10px;
}

.checkfiltername {
    font-size: 13px;
}

.listing-filter-list .form-check-input {
    margin-top: 0.4rem;
}

.manufacturer-scroll {
    height: 100%;
    max-height: 200px;
    overflow-y: auto;
}
/*-- End Listing Page --*/

/*-- Request a free quote --*/

.requestquote .modal-header {
    background-color: var(--red-color);
    color: var(--white-color);
    padding: 10px 15px;
}

.requestquote .modal-header h5 {
    font-size: 16px;
    font-weight: normal;
}

.requestquote .modal-header button {
    color: #ffffff;
    opacity: 1;
}

.requestquote .modal-header button:focus {
    outline: none;
}

.requestquote .modal-content {
    border:none;
}

/*-- End Request a free quote --*/

.outofstock-product {
    background-color: #f0f8ff;
    padding: 10px;
    border-radius: 6px;
    width: 50%;
    text-align: center;
    margin: 0 auto;
}

.outofstock-product p {
    margin: 0;
}

.outofstock-product a {
    font-size: 18px;
    color: #000000;
    font-weight: bold;
    line-height: 30px;
}

.outofstock-product a:hover {
    text-decoration: none;
    color: #000000;
}

.outofstock-product a i {
    color: #ec3237;
}

/*---- Sub Header Search Bar  ----*/
.search {
    width: 100%;
    position: relative;
    display: flex;
}

.searchTerm {
    width: 100%;
    border: none;
    border-right: none;
    padding: 5px;
    border-radius: 5px 0 0 5px;
    outline: none;
    font-size: 14px;
}

.searchButton {
    width: 40px;
    height: 35px;
    border: none;
    background: var(--force-blue);
    text-align: center;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 20px;
}

  /*Resize the wrap to see the search bar change!*/
.wrap{
    width: 285px;
    position: absolute;
    top: 50%;
    right: 135px;
    transform: translate(-50%, -50%);
}
/*---- End Sub Header Search Bar  ----*/


/*-- Sort By --*/
.sortby {
    float: right;
    margin-top: -27px;
    font-size: 13px;
    border: 1px solid #c4c4c4;
    border-radius: 4px;
    background-color: #eeeeee;
}

.sortby:focus {
    outline: none;
}
/*-- End Sort By --*/

/*-- Loader --*/
.preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #ffffff;
    z-index: 99999999;
    opacity: 0.9;
}

#preloader-logo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.loading-msg {
    width: 100%;
    font-size: 0.75em;
    color: #555;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 50%);
    text-align: center;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 2px solid #f3f3f3;
    border-top: 3px solid #2489CE;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    animation: spin 1s infinite ease;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#loading-msg {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 25px;
    text-align: center;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    font-size: 0.8em;
}
/*-- End Loader --*/

.about-img {
    border: 8px solid #eeeeee;
    padding: 3px;
    border-radius: 5px;
}

.about-img img {
    width: 100%;
}

/*--- Listing Page Search Box ---*/
.search-result .wrap1 {
    width: 285px;
    margin-bottom: 10px;
}

.search-result  .search1 {
    width: 100%;
    position: relative;
    display: flex;
}

.search-result  .searchTerm1 {
    width: 100%;
    border-right: none;
    padding: 5px;
    border-radius: 5px 0 0 5px;
    outline: none;
    font-size: 14px;
    border: 1px solid #60849e;
}

.search-result .searchButton1 {
    width: 40px;
    height: 35px;
    border: none;
    background: var(--force-blue);
    text-align: center;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 20px;
}

.m-filter-btn {
    display: none;
}
/*---- End Listing Page Search Box  ----*/

.preview {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media screen and (max-width: 996px) {
      .preview {
        margin-bottom: 20px; } }

  .preview-pic {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
            display: flex;
    justify-content: center;
    align-items: center;
    }

    .preview-pic .tab-pane {
        height: 100%;
        max-height: 250px;
    }

  .preview-thumbnail.nav-tabs {
    border: none;
    margin-top: 15px; }
    .preview-thumbnail.nav-tabs li {
      width: 18%;
      margin-right: 2.5%; }
      .preview-thumbnail.nav-tabs li img {
        max-width: 100%;
        display: block; }
      .preview-thumbnail.nav-tabs li a {
        padding: 0;
        margin: 0; }
      .preview-thumbnail.nav-tabs li:last-of-type {
        margin-right: 0; }

  .tab-content {
    overflow: hidden; }
    .tab-content img {
        width: 100%;
        max-width: 250px;
        height: 100%;
        max-height: 250px;
        -webkit-animation-name: opacity;
        animation-name: opacity;
        -webkit-animation-duration: .3s;
        animation-duration: .3s;
     }

  .card {
    margin-top: 50px;
    background: #eee;
    padding: 3em;
    line-height: 1.5em; }

  @media screen and (min-width: 997px) {
    .wrapper {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; } }

  .details {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }

  .colors {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }

  .product-title, .price, .sizes, .colors {
    text-transform: UPPERCASE;
    font-weight: bold; }

  .checked, .price span {
    color: #ff9f1a; }

  .product-title, .rating, .product-description, .price, .vote, .sizes {
    margin-bottom: 15px; }

  .product-title {
    margin-top: 0; }

  .size {
    margin-right: 10px; }
    .size:first-of-type {
      margin-left: 40px; }

  .color {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    height: 2em;
    width: 2em;
    border-radius: 2px; }
    .color:first-of-type {
      margin-left: 20px; }

  .add-to-cart, .like {
    background: #ff9f1a;
    padding: 1.2em 1.5em;
    border: none;
    text-transform: UPPERCASE;
    font-weight: bold;
    color: #fff;
    -webkit-transition: background .3s ease;
            transition: background .3s ease; }
    .add-to-cart:hover, .like:hover {
      background: #b36800;
      color: #fff; }

  .not-available {
    text-align: center;
    line-height: 2em; }
    .not-available:before {
      font-family: fontawesome;
      content: "\f00d";
      color: #fff; }

  .orange {
    background: #ff9f1a; }

  .green {
    background: #85ad00; }

  .blue {
    background: #0076ad; }

  .tooltip-inner {
    padding: 1.3em; }

  @-webkit-keyframes opacity {
    0% {
      opacity: 0;
      -webkit-transform: scale(3);
              transform: scale(3); }
    100% {
      opacity: 1;
      -webkit-transform: scale(1);
              transform: scale(1); } }

  @keyframes opacity {
    0% {
      opacity: 0;
      -webkit-transform: scale(3);
              transform: scale(3); }
    100% {
      opacity: 1;
      -webkit-transform: scale(1);
              transform: scale(1); } }

  /*# sourceMappingURL=style.css.map */
  
  
  .brand-page-main-content table.table-bordered, .brand-page-main-content table.table-bordered td, .brand-page-main-content table.table-bordered th {
      border: none;
  }
  }
