@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
    background: #f7f4ef;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

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

p {
    font-weight: 500;
    line-height: 25px;
    font-family: 'urbanist-text';
}


/***** Font Files *****/



@font-face {
    font-family: 'bormorantGaramond-bold';
    src: url(../font/CormorantGaramond-Bold.ttf);
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'cormorantGaramond-semibold';
    src: url(../font/CormorantGaramond-SemiBold.ttf);
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'lato-regular';
    src: url(../font/Lato-Regular.ttf);
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'urbanist-text';
    src: url(../font/Urbanist.ttf);
    font-weight: 400;
    font-style: normal;
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 13px 25px;
    border: unset;
    border-radius: 50px;
    color: #ffffff;
    z-index: 1;
    background: #000000;
    position: relative;
    font-size: 14px;
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 50px;
    background-color: #e8e8e8;
    z-index: -1;
    /* -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27); */
    /* box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27); */
    transition: all 250ms;
    /* border: 1px solid #e8e8e8; */
}

.theme_btn:hover {
    color: #000000;
}

.theme_btn:hover::before {
    width: 100%;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}



h1 {
    font-family: 'bormorantGaramond-bold';
    font-size: 60px;
    line-height: 1.2;
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
}

h2 {
    font-family: 'bormorantGaramond-bold';
    font-size: 60px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 8px;
}

h3 {
    font-family: 'cormorantGaramond-semibold';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 6px;
}

h4 {
    font-family: 'cormorantGaramond-semibold';
    font-size: 24px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 3px;
}

h5 {
    font-family: 'lato-regular';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 10px;
}

h6 {
    font-family: 'urbanist-text';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 0px 0;
    background: #fff;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000000;
    padding: 5px 0px;
    font-size: 18px;
    font-family: 'lato-regular';
    font-weight: 500;
    margin: 0px 18px;
}


.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #707070;
    border-bottom: 2px solid #e31225;
    display: inline-block;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgb(0 0 0 / 31%);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}


/*banner css end*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}


/* Tabs  */
.header-logo img {
    width: 60%;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: end;
}
.banner-img img {
    height: 65vh;
    width: 100%;
    object-fit: cover;
}

.banner_text {
    text-align: center;
}

.banner_text h3 {
    color: #fff;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 0px;
}

.banner_text h4 {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: 'urbanist-text';
    margin-bottom: 20px;
}
.banner-btm-box {
    height: 100%;
    width: 100%;
    background-image: url(../images/banner-btm-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid red;
    padding: 30px;
    border-radius: 20px;
}

section.banner-btn-sec {
    margin-top: -100px;
    position: relative;
    z-index: 1;
    margin-bottom: 100px;
}
.banner-btm-box h4 {
    color: #fff;
}

.banner-btm-box p {
    color: #fff;
    margin-bottom: 0px;
}
.dis-block{
    display: block;
}
.about-btm-heading h2 {
    font-size: 51px;
    line-height: 58px;
}

.about-btm-text h4 {
    color: #242424;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'urbanist-text';
}

section.about-sec {
    margin-bottom: 100px;
}
section.our-services-sec {
    margin-bottom: 100px;
    padding: 50px 0px;
    background-image: url(../images/services-bg-img.jpg);
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.our-services-box {
    position: relative;
    background-image: url(../images/services-img1.webp);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
}
.our-services-box.ser-ch-img{
    background-image: url(../images/services-img2.jpeg);
}
.our-services-top-heading h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.our-services-box-text {
    background: #ffffffa3;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #e31225;
    position: absolute;
    bottom: 20px;
    left: 0px;
    right: 0px;
    width: 89%;
    margin: 0 auto;
}

.our-services-box-text p {
    margin-bottom: 2px;
}

.our-services-box-text a {
    color: #000;
    font-weight: 600;
    border-bottom: 2px solid #000;
}
.testimonials-slider .slick-active {
    opacity: 1;
}
.testimonials-slider-box {
    text-align: center;
    padding: 28px;
    background: #fff;
    /* border: 1px solid #000; */
    box-shadow: 0px 0px 6px 0px #0000001a;
    margin: 20px 0px;
}
.testimonials-slider .slick-slide {
    margin: 0px 10px;
}
.testimonials-slider .slick-prev:before {
    content: '\f104';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 28px;
    left: 0px;
}
.testimonials-slider .slick-next:before {
    content: '\f105';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 28px;
    right: 0px;
}
section.testimonials-sec {
    margin-bottom: 100px;
}
section.contact-info-sec {
    background-image: url(../images/contact-info-bg.jpeg);
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 90px 0px;
    position: relative;
    z-index: 1;
}

.contact-info-box h2 {
    color: #fff;
    margin-bottom: 30px;
}
section.contact-info-sec:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000000a6;
    z-index: -1;
}
.contact-info-input label {
    color: #fff;
    margin-bottom: 8px;
}

.contact-info-input label span {
    color: red;
    font-style: italic;
}

.contact-info-input input {
    margin-bottom: 20px;
    width: 100%;
    border-radius: 50px;
    padding: 12px 20px;
    background: #e31225;
    border: unset;
}

.contact-info-input input::placeholder {
    color: #fff;
}

.contact-info-input textarea {
    margin-bottom: 20px;
    width: 100%;
    border-radius: 20px;
    padding: 30px 20px;
    background: #e31225;
    border: unset;
    height: 200px;
}

.contact-info-input textarea::placeholder {
    color: #fff;
}

.contact-info-input button {
    border: unset;
    background: #e31225;
    padding: 12px 32px;
    color: #fff;
    border-radius: 50px;
}
.contatc-number h2 {
    margin-bottom: 30px;
    color: #fff;
}

.contatc-number ul li a {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contatc-number ul li {
    margin-bottom: 20px;
}

.contatc-number ul li a i {
    height: 60px;
    width: 60px;
    color: #fff;
    background: #e31225;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 23px;
}

.contatc-number ul li a p {
    margin-bottom: 0px;
    color: #fff;
}

.side-map iframe {
    height: 266px;
    width: 100%;
}



/* FOOTER ** FOOTER ** FOOTER ** FOOTER ** FOOTER ** FOOTER ** FOOTER * */
/* Footer styling start here  */

footer {
  padding: 30px 0px 0px 0px;
  height: 100%;
  width: 100%;
  background: #333333;
}

footer .padds {
  padding: 40px 0px 110px 0px;
  height: 100%;
}

footer.footerSec .row {
  overflow: hidden;
}

footer .ft-logo {
  margin-bottom: 18px;
}

footer p {
  color: #fff;
  opacity: 90%;
  font-weight: 300;
  line-height: 24px;
  width: 90%;
}

footer h3 {
  font-size: 28px;
  line-height: 37px;
  color: #fff;
  margin: 0;
}

footer ul {
  margin: 0px;
  position: relative;
}

footer ul li {
  /* margin: 24px 0px; */
  margin-bottom: 20px;
}

footer ul li a {
  text-transform: capitalize;
  color: #fff;
  transition: 0.5s;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 1;
  color: #fff;
}

footer ul li a:hover {
  opacity: 1;
  text-decoration: underline;
  font-weight: 600;
  opacity: 1;
  color: #e31225;
}

footer .foot-links ul {
  position: relative;
  width: 70%;
  column-count: 2;
}

footer .follow ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

footer .follow ul li a i {
  width: 50px;
  height: 50px;
  border-radius: 45px;
  color: #fff;
  /* border: 1px solid #fff; */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  font-size: 17px;
  opacity: 1;
  background: #e31225;
}

footer .follow ul li a i:hover {
  background: #000000;
  border: 1px solid #000000;
  color: #fff;
  opacity: 1;
}

footer .follow ul li a:hover {
  text-decoration: unset !important;
}

.footer-btm {
  padding: 20px 0;
  position: relative;
  background: #333333;
  border-top: 1px solid #fff;
}

.footer-btm p {
  /* margin: 0px; */
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  opacity: 1;
  text-align: start;
  margin-bottom: 0px;
}

footer .foot-links {
  position: relative;
  padding: 40px 0px 40px 80px;
}

footer .foot-links:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #363537;
  left: 0px;
  bottom: -20px;
}

footer .foot-links:after {
  position: absolute;
  content: "";
  width: 1px;
  right: 54px;
  height: 100%;
  background: #363537;
  bottom: -19px;
}


footer .ft-logo h2 {
  font-weight: 500;
}
.ft-logo a h4 {
    font-size: 40px;
    color: #fff;
}
.foot-links.padds h5 {
    color: #fff;
    font-size: 30px;
    font-family: 'cormorantGaramond-semibold';
}
/* Footer Mail section css st  */

/* Footer Mail section css st  */


section.main_slider {
    background: #000;
    padding: 70px 0px;
}

.inner-banner-text {
    text-align: center;
}

.inner-banner-text ul {display: flex;align-items: center;justify-content: center;gap: 10px;color: #fff;}

.inner-banner-text ul li a {
    color: #fff;
}
section.about-sec.inner-about {
    margin: 100px 0px;
}
.pricing-top-heading {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-box {
    padding: 46px 0px 40px;
    text-align: center;
    box-shadow: 0px 0px 6px 0px #0000007a;
    margin-bottom: 28px;
    border-radius: 10px;
    transition: 0.5s;
}

.pricing-box h3 {
    margin-bottom: 24px;
    color: #242424;
    font-family: 'lato-regular';
}

.pricing-box h4 {
    margin-bottom: 30px;
    font-family: 'urbanist-text';
    font-weight: 600;
    font-size: 18px;
}

.pricing-box:hover {
    box-shadow: 0px 0px 6px 0px;
    transition: 0.5s;
}
section.pricing-sec {
    margin: 100px 0px;
}

.pricing-top-heading h5 {
    font-size: 28px;
    font-weight: 600;
}

.pricing-top-heading h2 {
    margin-bottom: 35px;
}
.pricing-btm-text h5 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}
.header-cart.shop-box-text-boxtwo-link {
    display: inline-block;
    background: #e31225;
    padding: 12px 10px;
    color: #fff;
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 12px;
    height: 46px;
}
.header-cart.shop-box-text-boxtwo-link .shop-box-text-boxtwo-link p {
    margin-bottom: 0px;
    color: #fff;
    font-weight: 600;
}
.header-cart.shop-box-text-boxtwo-link .shop-box-text-boxtwo-link i {
    display: none;
}
.header-cart.shop-box-text-boxtwo-link:hover .shop-box-text-boxtwo-link i {
    display: block;
    font-size: 12px;
}
.header-cart.shop-box-text-boxtwo-link:hover .shop-box-text-boxtwo-link p {
    display: none;
}
.vehicles-equipment-box-text {
    text-align: center;
}

.vehicles-equipment-box-img img {
    width: 100%;
    margin-bottom: 18px;
    height: 270px;
    object-fit: cover;
}

.vehicles-equipment-box-text h5 {
    color: #000;
    font-size: 18px;
    margin-bottom: 10px;
}

.vehicles-equipment-box-text p {
    color: #676767;
    margin-bottom: 8px;
}

.vehicles-equipment-box-text h6 {
    color: #e31225;
    font-weight: 600;
    font-size: 19px;
    margin-bottom: 10px;
}
.vehicles-equipment-box {
    margin-bottom: 30px;
}
section.vehicles-equipment-sec {
    margin: 100px 0px;
}
































/* Side Bar Cart */

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease-in-out;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}

.cart-item img {
    width: 100px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
    margin-left: 15px;
}

.qty-box {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
    border: 1px solid #42424233;
}

.qty-box button {
    width: 40px;
    height: 40px;
    background: none;
    cursor: pointer;
    border: 0;
}

.qty-count {
    min-width: 24px;
    text-align: center;
    color: #000000 !important;
    font-weight: 600;
}

.remove-item {
    background: none;
    border: none;
    color: #888;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.cart-note {
    font-size: 13px;
    color: #666;
    margin-top: 40px;
    padding: 20px 20px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: #cc7353;
    color: #fff;
    font-weight: bold;
    display: block;
    border: none;
    cursor: pointer;
    text-align: center;
}

button.close-cart {
    border: 0;
    background: transparent;
    width: 30px;
    height: 30px;
    display: grid;
    place-content: center;
}

.cart-item-details h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

button.remove-item {
    color: #000;
}


/* Side Bar Cart */

.banner_text.inner-cart {
    background: unset;
    display: flex;
}

.carousel-item.active.inner-shop img {
    height: 201px;
}

.banner_text.inner-cart a {
    font-size: 26px;
    font-weight: 400;
}

.banner_text.inner-cart span i {
    color: #000;
}

.banner_text.inner-cart.wow.fadeInLeft span {
    padding-left: 16px;
    color: #3c3b3b;
    font-weight: 300;
}

th.Total {
    text-align: end;
}

.cart_sec {
    padding: 60px 0 101px;
}

.cart_table table tbody tr td img {
    height: 94px;
    width: 100px;
    margin: 0;
}

.Manna {
    display: flex;
    /* align-items: center; */
    gap: 21px;
    padding: 21px 0;
}

td.Total {
    text-align: end;
}

.accordion-button:not(.collapsed) {
    background: unset;
    color: #000000;
    box-shadow: unset;
    padding: 17px 0px 0 178px;
    font-size: 19px;
    font-family: 'Montserrat';
    font-weight: 500;
}

.accordion-item {
    border: unset;
}

.accordion-body input {
    width: 75%;
    height: 50px;
    padding: 10px;
}

.accordion-body button {
    height: 51px;
    width: 24%;
    border: unset;
}

.accordion-body {
    padding: 0;
    margin-top: 25px;
}

.cart-total h5 {
    padding: 11px 0;
    border-bottom: 1px solid #cbcbcb;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.subtotal {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    border-bottom: 1px solid #00000047;
    border-top: 1px solid #02020245;
    padding: 18px 0;
}

.subtotal h5 {
    font-size: 17px;
    border: unset;
    padding: 0;
}

.Total\$ {
    display: flex;
    justify-content: space-between;
    margin-top: 11px;
}

.Total\$ h4 {
    font-weight: 600;
}

.Crunch p {
    font-size: 13px;
}

.Crunch span {
    color: #073f25;
}

.Crunch a {
    text-decoration: underline;
    font-size: 11px;
}

.Crunch a:hover {
    text-decoration: none;
}

.cart_table table th {
    font-size: 21px;
    font-weight: 400;
}

.checkout {
    padding: 100px 0;
    position: relative;
}

.contact_info h3 {
    font-size: 23px;
}

.contact_info p {
    padding-bottom: 14px;
    padding-top: 6px;
}

.contact_info input {
    width: 100%;
    height: 51px;
    padding: 10px;
    border: 1px solid #7c7c7c;
}

.Billing_address h3 {
    font-size: 25px;
}

.Billing_address p {
    padding-bottom: 14px;
    padding-top: 5px;
}

.Billing_address input {
    width: 100%;
    height: 50px;
    padding: 11px;
    margin: 11px 0;
    border: 1px solid #7c7c7c;
}

.Billing_address select {
    width: 100%;
    height: 51px;
    appearance: inherit;
}

.Billing_address select {
    margin: 11px 0;
    padding: 9px;
}

.contact_info {
    padding-bottom: 40px;
}

.Billing_address {
    padding-bottom: 50px;
}

button.opt-field-btn {
    width: 100%;
    height: 42px;
    background: #fff;
    border: unset;
    font-size: 19px;
    font-weight: 600;
}

button.opt-field-btn:hover {
    background: #c5c5c5;
    text-decoration: underline;
}

.info {
    display: flex;
    /* align-items: center; */
    gap: 10px;
    border: 1px solid red;
    padding: 12px;
    background: #ffdfdf;
    margin-top: 30px;
}

.info i {
    color: #ffffff;
    font-size: 18px;
    background: red;
    height: 25px;
    width: 39px;
    border-radius: 66px;
    text-align: center;
    padding-top: 4px;
}

.add-optianal-field span {
    margin-left: 11px;
}

.add-optianal-field {
    padding-top: 30px;
    padding-bottom: 30px;
}

.add-optianal-field textarea {
    width: 100%;
    padding: 8px;
    height: 213px;
}

input.check-box {
    margin-bottom: 3px;
    height: 28px;
    width: 22px;
}

.place-order {
    border-top: 1px solid #7c7c7c;
}

.place-order p {
    padding-top: 25px;
    padding-bottom: 21px;
}

.place-order button {
    width: 100%;
    height: 44px;
    border: unset;
}

.place-order button:hover {
    background: #b5b5b5;
}

.Manna.check img {
    height: 65px;
    width: 65px;
}

.cart-total.check {
    border: 1px solid #7c7c7c;
    padding: 12px;
    position: sticky;
    top: 0;
}

.Crunch.check p {
    font-size: 11px;
    line-height: 16px;
    font-weight: 800;
}

.Crunch.check h5 {
    border: unset;
}

.dollar {
    color: #063a06;
    font-weight: 600;
}

.product_detail {
    padding: 70px 0;
}

.rating_div {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prduct-detail-img img {
    width: 100%;
    height: 590px;
}

.detatil-content span {
    font-weight: 600;
}

.detatil-content h3 {
    font-weight: 400;
    padding: 20px 0;
    font-size: 28px;
}

.detatil-content h6 {
    font-size: 26px;
    padding: 0px 0 20px;
    color: #0b3a16;
    font-weight: 700;
}

.detatil-content p {
    padding-bottom: 17px;
    font-size: 14px;
    font-weight: 500;
}

a.header-cart1 {
    background: #e31225;
    height: 44px;
    display: flex;
    width: 141px;
    text-align: center;
    justify-content: center;
    padding-top: 9px;
    margin-top: 11px;
    color: #fff !important;
    text-transform: uppercase;
}

.box {
    display: flex;
    gap: 33px;
    align-items: center;
}

.zoomable {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}

.zoomable__img {
    transform-origin: var(--zoom-pos-x, 0%) var(--zoom-pos-y, 0%);
    transition: transform 0.15s linear;
}

.zoomable--zoomed .zoomable__img {
    cursor: zoom-in;
    transform: scale(var(--zoom, 2));
}

.share {
    display: flex;
    gap: 7px;
    padding-top: 12px;
}

.share span {
    font-size: 17px;
}

.share a {
    padding: 0 4px;
    color: #7c7c7c;
}

.share a:hover {
    color: #000;
}

.Rev {
    border-top: 1px solid #000;
    padding: 31px 0 101px;
}

button.qty-plus.detail {
    border-left: 1px solid;
    width: 25px;
}

button.qty-minus.detail {
    border-right: 1px solid;
    width: 25px;
}

button.qty-minus.detail:hover {
    background: #e31225;
}

button.qty-plus.detail:hover {
    background: #e31225;
}


/*  product Detail Review Section Start */

/*  product Detail Review Section Start */


/* Rating Stars */

.prod-detail-description .rating:not(:checked)>input {
    position: absolute;
    -webkit-appearance: none;
}

.prod-detail-description .rating:not(:checked)>label {
    float: right;
    cursor: pointer;
    font-size: 30px;
    color: #666;
}

.prod-detail-description .rating:not(:checked)>label:before {
    content: "\f005";
    font-family: "Font Awesome 6 Free";
    font-size: 11px;
}

.prod-detail-description .rating>input:checked+label:hover,
.prod-detail-description .rating>input:checked+label:hover~label,
.prod-detail-description .rating>input:checked~label:hover,
.prod-detail-description .rating>input:checked~label:hover~label,
.prod-detail-description .rating>label:hover~input:checked~label {
    color: #e58e09;
}

.prod-detail-description .rating:not(:checked)>label:hover,
.prod-detail-description .rating:not(:checked)>label:hover~label {
    color: #ff9e0b;
}

.prod-detail-description .rating>input:checked~label {
    color: #ffa723;
}


/* Rating Stars */

.prod-detail-description {
    position: relative;
    padding: 0 0 80px;
}

.prod-detail-description .nav-tabs .nav-link {
    color: #0e0e0f;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 500;
    width: fit-content;
    padding: 15px;
    background: transparent;
    margin-right: 10px;
    border-radius: 0 !important;
}

.prod-detail-description .nav-tabs .nav-link.active,
.prod-detail-description .nav-tabs .nav-item.show .nav-link {
    border-bottom: 3px solid #f9ac01 !important;
    border: 0;
}

.prod-detail-description .nav-tabs .nav-link:hover,
.prod-detail-description .nav-tabs .nav-link:focus {
    border-bottom: 3px solid #000 !important;
    border: 0;
}

.prod-detail-description .nav-tabs {
    margin-bottom: 15px;
    border: 0;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: center;
}

.prod-detail-description .prd-review-input label {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    text-transform: capitalize;
}

.prod-detail-description .prd-review-input input {
    width: 100%;
    height: 50px;
    padding: 0 10px;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    border: 1px solid #0000002b;
    margin: 5px 0 20px;
}

.prod-detail-description .prd-review-input input::placeholder,
.prod-detail-description .prd-review-input textarea::placeholder {
    color: #000;
    font-weight: 400;
    font-size: 16px;
}

.prod-detail-description .prd-review-input textarea {
    width: 100%;
    height: 200px;
    padding: 13px;
    border: 1px solid #00000029;
    margin: 5px 0 0;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    resize: none;
}

.prod-detail-description .rating-stars input {
    width: auto !important;
    height: auto;
    border: 0;
}

.prod-detail-description .rating-stars {
    display: inline-grid;
    justify-items: baseline;
}

.prod-detail-description .rating {
    display: block;
    /* align-items: center; */
    /* justify-content: flex-start; */
    /* gap: 5px; */
    margin: 5px 0;
    float: left;
}

.prod-detail-description .prd-review-input.give-review h4 {
    font-size: 30px;
    color: #000;
    text-transform: uppercase;
}

.prod-detail-description .prd-review-input.give-review button {
    padding: 10px 26px;
    border-radius: 0;
    border: 1px solid #e31225;
    font-size: 16px;
    text-transform: uppercase;
    background: #e31225;
    color: #fff;
}

.prod-detail-description .client-review-box {
    box-shadow: 0 0 5px 1px #989898;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.prod-detail-description ul.client-list-review {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
}

.prod-detail-description ul.client-list-review li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.prod-detail-description ul.client-list-review img {
    width: 80px;
    height: 80px;
    border-radius: 100px;
    object-fit: cover;
    box-shadow: 0 0 5px 1px #989898;
}

.prod-detail-description ul.client-list-review h5 {
    font-size: 24px;
    color: #000;
    text-transform: capitalize;
    font-weight: 500;
}

.prod-detail-description ul.client-list-review h6 {
    font-size: 16px;
    color: #666;
    font-family: "Montserrat";
}

.prod-detail-description ul.client-list-review li i {
    font-size: 20px;
    color: #c78b1b;
}

.prod-detail-description .client-info {
    margin-left: 15px;
}

.prod-detail-description .client-review-box p {
    font-size: 16px;
    color: #000;
    font-family: "Roboto";
}


.prod-detail-description .prd-det-discription-content p {
    text-align: justify;
    font-size: 14px;
    color: #0b0c0c;
    font-family: "Montserrat";
    font-weight: 500;
    line-height: 26px;
    padding-bottom: 10px;
}

.prod-detail-description .prd-det-additional-content p {
    text-align: justify;
    font-size: 16px;
    font-weight: 500;
    margin: 30px 0 30px 0;
}

section.prod-detail-description .client-box {
    margin: 30px 0;
}

section.prod-detail-description .client-ineer-box::before {
    display: none;
}


/*  product Detail Review Section End */
.detatil-content a {
    color: #000;
}





.rent-now-sec{
background:#e9e5e1;
padding:60px 0;
}

.rent-now-sec label{
font-weight:600;
margin-bottom:6px;
display:block;
}

.rent-now-sec label span{color: #e31225;font-size:14px;}

.rent-now-sec .form-control{
border:1px solid #d5d5d5;
border-radius:3px;
height:45px;
}

.rent-now-sec textarea.form-control{
height:auto;
}

.rent-now-sec small{
color:#777;
font-size:13px;
}

.submit-btn{
background:#000;
color:#fff;
border:none;
padding:12px 28px;
border-radius:30px;
font-weight:600;
transition:0.3s;
}

.submit-btn:hover{
background:#333;
}


.contact-form-sec{
    background:#f3f3f3;
}

.contact-info h2,
.contact-form h2{
    font-weight:700;
}

.info-box{
    align-items:center;
}

.info-box .icon{
    width:40px;
    height:40px;
    background:#ff2a2a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin-right:15px;
    font-size:18px;
}

.info-box h6{
    font-weight:600;
    margin-bottom:3px;
}

.info-box p{
    margin:0;
    color:#333;
}

.contact-form p{
    color:#666;
}

.contact-form label{
    font-weight:600;
    margin-bottom:5px;
}

.contact-form label span{
    color: #e31225;
    font-size:12px;
}

.contact-form .form-control{
    border:1px solid #dcdcdc;
    border-radius:0;
    padding:10px;
}

.contact-form textarea{
    resize:none;
}

.submit-btn{
    background:#eaeaea;
    border:none;
    padding:10px 25px;
    font-weight:600;
}

.map-box iframe{
    border-radius:3px;
}