@import url('https://unpkg.com/photoswipe@5.2.2/dist/photoswipe.css');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');


/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;
  
    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --black-color: hsl(220, 24%, 12%);
    --black-color-light: hsl(220, 16%, 18%);
    --black-color-lighten: hsl(220, 20%, 18%);
    --white-color: #fff;
    --body-color: hsl(220, 100%, 97%);
  
    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Montserrat", sans-serif;
    --normal-font-size: .938rem;
  
    /*========== Font weight ==========*/
    --font-regular: 300;
    --font-semi-bold: 400;
  
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
  }
  
  /*========== Responsive typography ==========*/
  @media screen and (min-width: 1024px) {
    :root {
      --normal-font-size: 1rem;
    }
  }
  


* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}


ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

select, input, textarea, button .form-control {
    box-shadow: none !important;
    outline: 0 !important;
}

.phone-short, .email-short {
    /* border: 2px solid yellow; */
    /* display: flex;
    justify-content: center;
    align-items: baseline; */
    font-family: 'Courier New', Courier, monospace;
    font-size: small;
    color: rgb(239, 239, 239);
    font-weight: bold;
    padding: 1px 0px 1px 10px;
  
    
}

.email-short a {
    text-decoration: none;
    color: rgb(239, 239, 239);
    padding: 1px 10px 1px 0px;
}
  

button {
    background: transparent;
    border: 0;
    font-size: 16px;
    text-transform: capitalize;
}

.section-header {
    position: relative;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    color: rgb(235, 14, 14);
}
  
  .section-header p {
    font-size: 18px;
    margin-bottom: 5px;
    color: rgb(235, 14, 14);
  }
  
  .section-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
  }

  .section-header span {
    color: rgb(235, 14, 14);
    /* Highlights the span text in a vibrant color */
    font-weight: 500;
    /* Makes the span text stand out */
  }
  
  .section-header h2:before {
    position: absolute;
    content: "";
    width: 80px;
    height: 2px;
    bottom: 0;
    left: 50%;
    margin-left: -42px;
    background: rgb(235, 14, 14);
  }

.top-area {
    width: 100%;
}

.header-area {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    
    /* background-color: rgb(204, 195, 226);
    box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
    z-index: var(--z-fixed); */
}

.list_icon {
    font-size: 1.8rem;
}

.nav__list {
    /* display: flex; */
    background-color: transparent;
    column-gap: 0.5rem;
    /* justify-content: space-between; */
    position: relative;
    
}

@media screen and (min-width: 1018px) {
    .nav__list {
        left: 70px;
    }
}
  
.nav__list li {
    margin-left: 
    1rem;
}

.nav-link {
    width: 110px !important;
    text-align: center !important;
    position: relative;
}


.navbar-nav .nav-link.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 2px;
    background-color: red;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: red;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
    width: 120px;
}



.navbar-nav .nav-link:hover::before {
    width: 100%;
}


/* .navbar-nav .nav-link:hover {
    color: rgb(235, 14, 14);
    border-bottom: 4px solid rgb(235, 14, 14);
} */

@media screen and (max-width: 991px) {
    .nav-link {
        width: none !important;
        text-align: start !important;
    }
    
}

.welcome-hero {
    position: relative;
    background: url(/assets/bg-fb.png) no-repeat center;
    background-size: contain;
    z-index: 1;
    height: 380px;
   
  }

  
@media (max-width: 612px) {
    .welcome-hero {
      background-size: 700px auto; /* Forces a minimum width */
    }

    .model-search-content {
        margin-top: 150px;
    }
}
  

.welcome-hero::before {
    /* content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/assets/banner-truck-2.jpg) no-repeat center / cover; */
    /* opacity: 0.5;
    Adjust opacity here 
    z-index: -1;
    filter: brightness(0.4);*/
    /* Optional: Use this to further darken/lighten the image */
}

a.welcome-btn {
    padding: 20px;
    background-color: white;
    color: black;
    font-weight: bold;
  }
  
  a.welcome-btn:hover {
    background-color: rgb(126, 123, 123);
    color: rgb(26, 25, 25)
  }

.welcome-btn {
    display: inline-block;
    width: 230px;
    height: 60px;
    background: #1e1e20;
    color: #fcf8f8;
    border-radius: 3px;
    margin-top: 55px;
    -webkit-transition: .3s linear;
    -moz-transition: .3s linear;
    -ms-transition: .3s linear;
    -o-transition: .3s linear;
    transition: .3s linear;
    font-weight: bold;
}

.welcome-btn:hover {
    background: #e7e7ed;
    color: black;
    font-weight: bolder;
}
  

.model-search-content .col-sm-12 {padding: 0;}
.model-search-content .col-md-2 {margin-right: 10px;}

.model-search-content {
  /* border: 2px solid rgb(17, 55, 224); */
  background-color: #fff;
  box-shadow: 0 10px 40px 0px rgba(38, 40, 64, .2);
  position: relative;
  padding: 0px;
  bottom: -200px;
  width: 100%;
  border-radius: 3px;
  padding: 40px ;
    
    
}

.single-model-search{margin-bottom: 30px;}
.single-model-search:last-child {margin-bottom: 0;}

.col-md-2.col-sm-12 {
    border: 2px solid red;
}

.single-model-search h2 {
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.model-select-icon {
    position: relative;
}

.model-select-icon .form-control {
    outline: 0 !important;
    box-shadow: none;
    border: 1px solid #f8f8f8;
    background: #f8f8f8;
    height: 50px;
}

.model-select-icon select {
    font-size: 16px;
    color: #888f9d;
    text-transform: capitalize;
}

.model-select-icon:after {
    position: absolute;
    content: "\f103";
    right: 0px;
    top: 0;
    font-size: 10px;
    color: #888f9d;
    background: #f8f8f8;
    height: 50px;
    line-height: 50px;
    width: 50px;
    text-align: center;
    font-family: "Flaticon";
    pointer-events: none;
    border: transparent;
}

@media (max-width: 712px) {
    .model-search-content {
        margin-top: 150px;
    }

    .service {
        margin-top: 120px;
    }
}

.welcome-btn.model-search-btn {
    width: 160px;
    margin-top: 0px;
    margin-left: 0px;
}

.welcome-btn.model-search-btn:hover {
    background-color: rgb(156, 154, 154);
}

.service {
    padding: 260px 0 87px;
}

.single-service-item {
    width: 360px;
    height: 360px;
    text-align: center;
    padding: 55px 30px 60px;
    border-radius: 3px;
    margin-bottom: 30px;
    background-color: rgb(41, 39, 39);
    /* border: 1px solid red; */
    -webkit-transition: .3s linear;
    -moz-transition: .3s linear;
    -ms-transition: .3s linear;
    -o-transition: .3s linear;
    transition: .3s linear
}

.single-service-icon {
    display: inline-block;
    color: #f4f6f8;
}
  
.single-service-item h2 a {
    font-size: 20px;
    margin: 35px 0 20px;
    color: #f4f6f8;
}

.single-service-item h2 a span {
    text-transform: lowercase;
}

.single-service-item p {
    padding-bottom: 35px;
    text-transform: initial;
    position: relative;
    color: #f4f6f8;
}
  
  .single-service-item p:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 3px;
    background: red;
    bottom: 0;
    left: 50%;
    margin-left: -10px;
  }

.single-service-icon [class^="flaticon-"]:before,
.single-service-icon[class*=" flaticon-"]:before,
.single-service-icon [class^="flaticon-"]:after,
.single-service-icon [class*=" flaticon-"]:after {
  font-size: 60px;
}

.single-service-item:hover .single-service-icon [class^="flaticon-"]:before,
.single-service-item:hover .single-service-icon [class*=" flaticon-"]:before,
.single-service-item:hover .single-service-icon [class^="flaticon-"]:after,
.single-service-item:hover .single-service-icon [class*=" flaticon-"]:after {
  color: #fff;
}

.single-service-item:hover h2 a,
.single-service-item:hover p {
  color: #fff;
}

.single-service-item:hover p:before {
    background: #fff;
}
  
.single-service-item:hover {
    box-shadow: 0 12px 30px 0px rgba(0, 1, 193, .2);
    background: #39393a;
    border: 1px solid #2f2f30;
}

.new-cars {
    /* background-color: rgb(41, 39, 39); */
    padding: 20px 0 20px;
    border-radius: 4px;
}

.new-cars .section-header p {
    /* background-color: #c51414;
    width: 25%;
    min-width: 300px; */
}

.new-cars-content {
    padding-top: 25px;
    /* border: 2px solid white; */
}

.new-cars-item {
    /* border: 2px solid red; */
}

.new-cars-item .row {
    /* background: blue; */
}

.new-cars-item .row .col-lg-7, .new-cars-item .row .col-lg-5 {
    border: 3px solid rgb(251, 250, 250);
    background-color: white;
    height: 400px;
    border-radius: 14px;
    padding: 10px;
}


@media screen and (min-width: 740px) {
    .new-cars-item .row .col-md-7 {
        height: 300px;
    }
}

.new-cars-item .row .col-md-7 {}

.new-cars-txt {
    padding: 10px;
    
}

.new-cars-txt h2 {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    height: 40px;
    min-width: 300px;
    overflow-y: hidden;

}

.new-cars-txt h2 a span {
    text-transform: uppercase;
}


.new-cars-txt .ql-container.ql-snow {
    border: none;
    height: 270px;
    overflow: hidden;
}

.new-cars-btn {
    margin-left: 30px;
}


.new-cars-para2 {
    
}
  
.new-cars-img {
    border: 1px solid rgb(219, 219, 215);
    background: rgb(255, 255, 255);
}
 
.welcome-btn.new-cars-btn {
    width: 176px;
    /* margin-top: 32px; */
}

/* .new-cars .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 0px 4px;
    background: transparent;
    border: 1px solid #6a7781;
    border-radius: 50%;
}

.new-cars .owl-theme .owl-dots .owl-dot.active span,
.new-cars .owl-theme .owl-dots .owl-dot:hover span {
  background: #6a7781;
}

.new-cars .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 62px;
} */

.featured-cars {
    border: 3px solid rgb(250, 239, 239);
    /* padding: 112px 0 120px; */
    color: rgb(243, 201, 201);
}

.featured-cars-content {
    padding-top: 96px;
    /* border: 2px solid white; */
}


.featured-cars .section-header h2 {
    letter-spacing: 1.5px;
}

.featured-cars .section-header span {
    color: rgb(235, 14, 14);
}
  
.featured-cars .section-header h2 {
    letter-spacing: 1.5px;
}

.single-featured-cars {
    border: 2px solid rgb(6, 6, 6);
    border-radius: 4px;
    /* min-width: 350px; */
    /* height: 350px; */
    padding: 5px;
    margin-bottom: 30px;
    background-color: rgb(29, 28, 28);
}

.featured-img-box {
    /* border: 1px solid #909295; */
    /* padding: 10px; */
  
}

.featured-img-box img {
    /* border: 2px solid rgb(242, 240, 240);
    padding: 10px; */
}

.featured-cars-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    height: 220px;
    border-bottom: 1px solid #8b8b8d;
    overflow: hidden; /* attachee */
}

.featured-model-info {
    padding-top: 10px;
}

.featured-model-info p {
    font-size: 12px;
    color: #f6dede;
    text-transform: capitalize;
    font-weight: bold;
}

.featured-mi-span {
    display: inline-block;
    margin: 0 10px;
}

.featured-hp-span {
    display: inline-block;
    margin-right: 10px;
}

.featured-cars-txt {
    margin: 21px 0 47px;
}
.featured-cars-txt h2 a {
    font-size: 16px;
    margin-bottom: 15px;
}
.featured-cars-txt h2 a span {
    text-transform: uppercase;
}

.featured-cars-txt h3 {
    margin-bottom: 10px;
}

.featured-cars-txt h3,
.featured-cars-txt p {
  font-size: 13px;
}

.top-divide {
    border-top: 1px solid rgb(96, 93, 93);
    position: relative;
    padding: 10px;
}

.top-divide .body-type {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
}
.top-divide .fuel-type {
    position: absolute;
    right: 10px;
    /* Adjust as needed for padding */
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
}

.top-divide .fuel-type {
    position: absolute;
    right: 10px;
    /* Adjust as needed for padding */
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
}

.clients-say {
    padding: 70px 0 25px;
    background: #f8f9fb;
}

.single-testimonial-box {
    padding: 10px 10px 17px;
    margin:10px;
    text-align: center;
    border: 1px solid #9fa1a5;
    overflow-x: hidden;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.clients-say .testimonial-carousel .col-sm-3,
.clients-say .testimonial-carousel .col-xs-12 {
  width: 100%;
  height: auto;
}

.testimonial-img {
    margin-right: 5px;
    border-radius: 50%;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.testimonial-person h2 a,
.testimonial-person h4 {
  font-size: 16px;
  color: #5e6778;
  font-weight: 600;
}

.testimonial-person h4 {
    margin-top: 10px;
}

.testimonial-comment {
    height: 120px;
    overflow: hidden;
    /* border: 2px solid black; */
}

.testimonial-comment p {
    font-size: 16px;
    color: #5e6778;
    margin-top: 10px;
    margin-bottom: 5px;
}

.single-testimonial-box:hover h2 a,
.single-testimonial-box:hover h4,
.single-testimonial-box:hover p {
  color: #fff;;
}

.single-testimonial-box:hover {
    background: #4e4ffa;
    border: 1px solid #4e4ffa;
    box-shadow: 0 12px 30px 0px rgba(0, 1, 193, .2);
}

.clients-say .owl-carousel .owl-stage {
    position: relative;
    padding: 100px 0 40px;
}
  
.clients-say .owl-carousel .owl-item img {
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto;
}

.brand {
    border: 2px solid rgb(56, 56, 56);
    padding: 40px 0;
}

.brand-area .item {
    /* padding: 0 40px 0; */
    /* border: 2px solid rgb(76, 76, 76); */
    width: 80px;
    height: 80px;
  
}

.brand .brand-area .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 100%;
    /* Ensures the image takes the full height of the container */
    object-fit: cover;
    /* Ensures the image covers the container without distortion */
    border-radius: 0;
    opacity: .7;
    border-radius: 4px;
}



.container-fluid.showroom {
    background-color: rgb(251, 251, 251);
    /* border: 2px solid rgb(240, 7, 7); */
    padding: 0;
    margin: 0;
     /*padding: 20px;
    z-index: 12000 !important; */
}

.banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/assets/BANNER-1.jpg) no-repeat center / cover;
    opacity: 0.5;
    /* Adjust opacity here */
    z-index: -1;
    filter: brightness(0.4);
    /* Optional: Use this to further darken/lighten the image */
} 

.banner-section {
    border: 2px solid black;
    background-color: rgb(233, 233, 237);
    min-width: 1200px;
    position: relative;
    background: url(/assets/BANNER-1.jpg) no-repeat center / cover;
    z-index: 1;
  
}

.banner-bg {
    margin-top: 80px;
    padding: 20px;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    /* border: 2px solid white; */
    color: white;
    
}

.banner-bg h2 {
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(209, 103, 10, 0.8),
      0 0 10px rgba(255, 255, 255, 0.6),
      0 0 10px rgba(255, 255, 255, 0.4);
    background-color: transparent;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    bottom: 50px;
    left: 10%;
}
  
.room-section {
    /* border: 2px solid red; */
    position: relative;
}

.search-c {
    /* border: 2px solid rgb(233, 200, 16); */
    padding: 10px;
    color: rgb(5, 5, 5);
    min-width: 300px;
    position: relative;
    top: -20px;
    z-index: 1000;
}

.refine-search {
    /* border: 3px solid rgb(232, 60, 8); */
    border-radius: 10px;
}

.refine-search-title {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(159, 13, 13);
    color: rgb(239, 238, 238);
    padding: 5px;  
}

.refine-search i {
    font-size: 1.8rem;
}

.refine-search-title h4 {
    font-size: 1.2rem;
    padding: 10px;
    position: relative;
    top: 2px;
}

form#search-form {
    background-color: white;
    padding: 10px;
    height: 600px;
    overflow: scroll;
    
}

form#search-form input, form#search-form select {
    /* background-color: grey; 
    color: white*/
}

@media screen and (min-width: 772px) {
    /* form#search-form input, form#search-form select {
        width: 100%;
    } */
}

form#search-form label {
    font-size: smaller;
    color: black;
}


.car-display {

}

.sort-pane {
  border: 1px solid rgb(110, 109, 109);
  position: relative;
  top: -10px;
  z-index: 100;
  background-color: rgb(247, 246, 246);
  max-width: 90%;
  left: 5%;
  min-width: 650px;
  
}

.sort-pane-row {
    /* border: 1px solid red; 
    position: relative;*/
    top: 8px;
}

.search-results {
  /* padding: 5px;
  color: rgb(103, 97, 97);
  font-weight: bold; */
  
}


.search-results, .list-display, .sort-title, .price-sort, .mile-sort, .date-sort {
    /* display: flex;
    min-width: 200px; */
    position: relative;
    top: 5px;
}

.list-sort {
    /* font-size: 2rem; */
}

.single-car-col {
    border: 1px solid rgb(71, 70, 70);
    padding: 10px;
    margin: 10px  auto;
    background-color: rgb(61, 60, 60);
    border-radius: 4px;
  
}

@media screen and (min-width: 1263) {
    .price-box h4 {
        margin-right: 150px !important;
        border: 2px solid red;
    }

    .carsRow .col-lg-2 {
        position: relative;
        left: 250px !important;
    }
}


.container-fluid.-breadcrumb {
    position: relative;
    background-color: rgb(35, 34, 34);
    z-index: 100;
    padding: 20px;
}

.breadcrumb {
    --bs-breadcrumb-divider-color: white !important;
    --bs-breadcrumb-item-active-color:rgb(229, 138, 138) !important;
}

.single_car_title {
    color: rgb(115, 112, 112);
}

#bg-single-car {
    /* background-color: rgb(34, 32, 32); */
    padding: 20px !important;
}

.container.single-car-sec {
    /* border: 1px solid rgb(71, 70, 70); */
    padding: 20px !important;
    border-radius: 4px;
}

#gallery .owl-prev span, #gallery .owl-next span {
    border: 2px solid rgb(126, 93, 50);
    /* font-size: 2rem !important; */
    padding: 5px 10px;
}

.enq-sec/* , .car-info-sec */ {
    border: 1px solid rgb(67, 66, 66);
}

.fin-sec {
    border: 1px solid rgb(67, 66, 66);
    color: rgb(168, 164, 164);
}

.active>.page-link,
.page-link.active {
  z-index: 3;
  color: white !important;
  background-color: rgb(164, 13, 13) !important;
  border-color: rgb(164, 13, 13) !important;
}


.sell-car {
    position: relative;
}

.sc-breadcrumb {
    border-top: 2px solid rgb(180, 178, 178);
    z-index: 10000 !important;
    background-color: rgb(19, 18, 18);
}

.sc-sec {
    padding: 60px 110px;
    /* background-color: rgb(233, 228, 228); */
    border-radius: 4px;
    border: 1px solid #d8d6d6;
    margin-top: 20px;
    box-shadow: 0 10px 10px 0px rgba(38, 40, 64, .2);
    
}

.sc-sec .col-12.col-lg-3.col-md-6 {
    padding: 10px;
}

.sell-car-header {
    position: relative;
}

.sell-car-header h1 {
    margin-bottom: 80px;
    font-weight: 600;
}


.sell-car-header h1:before {
    content: '';
    height: 7px;
    background-color: red;
    position: absolute;
    /* Position relative to the parent */
    width: 70px;
    /* Fixed the typo */
    bottom: -25px;
    /* Add positioning as needed */
    left: 0;
    /* Add positioning as needed */
    transform: skew(-15deg);
      /* Skewing by -15 degrees */
    border-radius: 5px;
    
}

.sell-car-header h1:after {
    content: '';
    height: 7px;
    background-color: rgb(29, 29, 29);
    width: 30px;
    position: absolute;
    bottom: -25px;
    right: 155px;
    transform: skew(-15deg);
    border-radius: 5px;
  
}  

.sell-car-txt {
    font-size: 1rem;
    color: rgb(64, 62, 62);
}

form#sell-car-form input, form#sell-car-form select {
    border: 0;
    padding: 10px;
    box-shadow: none;
    background-color: #9f3535 !important;
    color: white;
    
}

input::placeholder {
    color: #f0eaea !important;
    font-style: italic;
    font-size: 14px;
    opacity: 0.7;
}

.form-header h4 {
    font-weight: bold;
}

#dropzone_area.dropzone {
    border-radius: 0 !important;
}

footer {
    background-color: black;
    border: 2px solid rgb(101, 13, 13);
}

.contact .container {
    padding: 190px;
    /* border: 1px solid rgb(182, 180, 180);
    box-shadow: 0 10px 10px 0px rgba(38, 40, 64, .2); */
}

.contact .row.g-5.mb-5 {
    /* border: 1px solid rgb(182, 180, 180);
    box-shadow: 0 10px 10px 0px rgba(38, 40, 64, .2);
    padding: 20px; */
}

.footer-top {
    margin-top: 20px;
}
.single-footer-widget {
    margin-bottom: 40px;
}

.orbitron-logo-footer {
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1rem !important;
    color: rgb(235, 235, 236);
}
  
/* .orbitron-logo-footer p {
    border-top: 2px solid rgb(229, 14, 14);
    width: 80%;
} 

.orbitron-logo-footer p {
    border-top: 2px solid white;
    width: 80%;
}*/
  
.single-footer-widget h2 {
    font-size: 14px;
    color: #e90f0f;
    text-transform: uppercase;
    margin-bottom: 43px;
}

.single-footer-widget p {
    color: rgb(137, 131, 131);
    font-size: 13px;
}

.single-footer-widget ul li {
    display: inherit;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.single-footer-widget ul li:hover {
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px);
}

.single-footer-widget ul li a {
    font-size: 14px;
    color: rgb(137, 131, 131);
    font-weight: 300;
    padding-bottom: 13px;
}

.single-footer-widget ul li a span {
    text-transform: lowercase;
}

.single-footer-widget ul li a span {
    text-transform: lowercase;
}

.hm-foot-email {
    position: relative;
}
  
.foot-email-box .form-control {
    background: #acacc5;
    display: block;
    padding: 15px 20px;
    outline: 0 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
    border: 0;
}

.foot-email-subscribe {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: transparent;
    color: #666c81;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foot-email-box .form-control:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, .4);
}
  
  
  

