/* Imports */
/* Icons */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css");
@import url("https://unpkg.com/boxicons@2.1.1/css/boxicons.min.css");
@import url("https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp");
/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* General Styling */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style-type: none;
  font-family: "Poppins", sans-serif;
}
body{
  background-color: #000;
  overflow-x: hidden;
}
:root {
  --color-primary: #;
  --color-secondary: #;
}

::selection {
  background-color: var(--color-primary);
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

a {
  display: inline-block;
  color: inherit;
  transition: all 300ms ease-in-out;
}

ul,
ol,
dl,
address,
label {
  margin-bottom: 0;
  text-decoration: none;
}

.imgFluid {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

i[class^="bx"] {
  vertical-align: middle;
}

.pt-10{
  padding-top:100px ;
}
.mt-10{
  margin-top: 100px;
}
.mt-15{
  margin-top: 180px;
}
.mb-10{
  margin-bottom: 100px;
}
.pb-10{
  padding-bottom:100px ;
}
.btn-style:hover > a{
  color: #000;
}
.btn-style{
  background-color: #EE090B;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
}
.btn-style:hover{
  background-color: #fff;
  color: #000;
}

.btn-style-services{
  background-color: #EE090B;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
}
.btn-style-services:hover{
  background-color: #000;
}
.btn-style-services:hover > a{
  color: #fff;
}
.mainbg1{
  background-color: #1C1C1C;
}
input , input:focus {
  outline: none;
}
/* ThemeBtn */
.themeBtn {
  width: fit-content;
  display: block;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
  padding: 0.75rem 2.25rem;
}
h1, h2, h3, h4, h5, h6 , p{
  color: #fff;
}

h2 > b , h3 > b , h1 > b , h4 > b {
  color: #EE090B;
}
.themeBtn--center {
  margin: 0.5rem auto;
}

.themeBtn--full {
  width: 100%;
}

.themeBtn:hover {
  transform: translateY(-10px);
}

/* Section Heading */


/* Header */

/* Banner */
.banner{
  position: relative;
}
.banner::before {
  content: '';
  width: 100%;
  min-height: 100vh;
  height: 100%;
  color: #fff;
  background: url('../images/banner/banner.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: -161px;
  z-index: -1000;
}

/* nav */
header{
  background-color: #000;
  border-bottom: 4px solid #EE090B;
  border-top:4px solid #EE090B;
} 
.navBar {
  padding: 1rem 0 .5rem;
}


.logo {
  width: 100%;
}

.logo a {
  width: 100%;
}

.logo a img {
  width: 100%;
}

.icons a > i {
  font-size: 1.6rem;
  color: #d81616;
}

.icons a:hover > i {
  color: #0062d0;
}

.icons a:first-child {
  margin-right: 3rem;
}

.icons a:last-child {
  margin-left: 3rem;
}
.bg{
  position: fixed;
  width: 100%;
  top: 0;
}
.bg.scrolled {
  z-index: 10000;
  box-shadow: 0px 1px 26px rgba(0, 0, 0, 0.2);
  background: #252426;
  transition: all 0.3s;
}

.bg.scrolled .logo a > h1,
.bg.scrolled .icons a > i {
  color: #000;
  transition: all 0.3s;
}

.bg.scrolled .icons a:hover > i,
.bg.scrolled .nav-menu .menu-item:hover > a {
  color: #d81616;
}

.bg.scrolled .header .menu > .menu-item:hover > a .plus::before,
.bg.scrolled .header .menu > .menu-item:hover > a .plus::after {
  background: #d81616;
}

.bg.scrolled .nav-menu .menu-item > a {
  color: #ffffff;
}

.bg.scrolled .header .menu > .menu-item > a .plus::before,
.bg.scrolled .header .menu > .menu-item > a .plus::after {
  background: #000;
}

/* .header .nav-menu {
  padding: 0 30px;
} */

.header .menu > .menu-item {
  display: inline-block;
  position: relative;
  list-style: none;
}
.header .menu{
    margin-right: 0.5rem;
}
.header .menu > .menu-item > a {
  display: block;
  padding: 0.4rem;
    color: #ffffff;
    font-size: 0.8rem;
  text-transform: capitalize;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 400;
}

.header .menu > .menu-item > a .plus {
  display: inline-block;
  height: 10px;
  width: 10px;
  position: relative;
  pointer-events: none;
}

.header .menu > .menu-item > a .plus::before,
.header .menu > .menu-item > a .plus::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 2px;
  width: 100%;
  background: #ffffff;
  transition: all 0.3s ease;
}

.header .menu > .menu-item:hover > a .plus::before,
.header .menu > .menu-item:hover > a .plus::after {
  background: #ffffff;
}

.header .menu > .menu-item-has-children.active > a .plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.header .menu > .menu-item > a .plus::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.header .menu > .menu-item:hover > a {
  color: #EE090B;
}

.header .menu > .menu-item > .sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 220px;
  position: absolute;
  left: 0;
  top: 125%;
  background: #fff;
  padding: 0;
  border-top: 5px solid #0062d0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  max-height: 400px;
  overflow-y: auto;
}

.header .menu > .menu-item > .sub-menu > .menu-item {
  display: block;
  border-bottom: 1px solid #cccccc85;
}

.header .menu > .menu-item > .sub-menu > .menu-item > a {
  display: block;
  padding: 10px;
  color: #000;
  font-size: 1rem;
  text-decoration: none;
  line-height: 1.25;
}

.header .menu > .menu-item > .sub-menu > .menu-item:hover > a {
  color: #0062d0;
}

.header .open-nav {
  height: 30px;
  width: 36px;
  background: red;
  margin-right: 15px;
  padding: 5px;
  display: none;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
}

.header .open-nav span {
  display: block;
  height: 3px;
  width: 24px;
  background: #ffffff;
  position: relative;
}

.header .open-nav span::before,
.header .open-nav span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
}

.header .open-nav span::before {
  top: -7px;
}

.header .open-nav span::after {
  top: 7px;
}

.header .close-nav {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background-color: #EE090B;
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
}

.header .close-nav img {
  width: 16px;
}

.header .menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.header .menu-overlay.active {
  visibility: visible;
  opacity: 1;
}



/* serach */


.search {
  width: 100%;
  position: relative;
  display: flex;
}

.searchTerm {
  width: 100%;
  border: 3px solid #FFF;
  border-right: none;
  padding: 15px;
  height: 20px;
  border-radius: 5px 0 0 5px;
  outline: none;
  color: #000;
}

.searchTerm:focus{
  color: #000;
}

.searchButton {
  width: 92px;
  height: 36px;
  outline: none;
  border-radius: 5px;
  border: 1px solid #fff;
  background: #000;
  text-align: center;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}
.searchButton:hover{
  background: #EE090B;
}

.header-icons > i{
  color: #FFF;

}

/* BannerImg / content */
/* .main-banner::before{
  position: relative;
} */
.main-banner::before{
  content: '';
  background-image: url('../images/banner/banner.jpg');
  width: 100%;
  min-height: 100vh;
  height: 100%;
  left: 0;
  top: 0px;
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  z-index: -10;
}

/* Inner Banner */
/* .inner-banner1::before{
  position: relative;
} */
.inner-banner1::before{
  content: '';
  background-image: url('../images/banner/inner1.jpg');
  width: 100%;
  min-height: 70vh;
  height: 70%;
  left: 0;
  top: 0px;
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  z-index: -1000;
}

/* .inner-banner2::before{
  position: relative;
} */
.inner-banner2::before{
  content: '';
  background-image: url('../images/banner/inner2.jpg');
  width: 100%;
  min-height: 70vh;
  height: 70%;
  left: 0;
  top: 0px;
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  z-index: -1000;
}


/* .inner-banner3::before{
  position: relative;
} */
.inner-banner3::before{
  content: '';
  background-image: url('../images/banner/inner3.jpg');
  width: 100%;
  min-height: 70vh;
  height: 70%;
  left: 0;
  top: 0px;
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  z-index: -1000;
}


/* .inner-banner4::before{
  position: relative;
} */
.inner-banner4::before{
  content: '';
  background-image: url('../images/banner/inner4.jpg');
  width: 100%;
  min-height: 70vh;
  height: 70%;
  left: 0;
  top: 0px;
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  z-index: -1000;
}



/* End Inner Banner */

.bannerh1{
  color: #fff;
  font-size: 60px;
  text-shadow: 2px 2px 8px #000;
}

.bannerh1 > b {
  color: #EE090B;
}


/* About Us */
.imgSize{
  height: 260px !important;
}
.about-main-h1{
  position: relative;
}

.about-main-h1 > .content{
  position: absolute;
  left: -230px;
}

.about-content {
  position: relative;
  left: 335px;
  bottom: -178px;
}
.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #ffffff;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #EE1618;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #EE1618;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #EE1618;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}
.myposition{
  left: 599px;
  top: -280px;
}

/* About Us End */

/* Services */
.heading-content{
  width: 50%;
}
.service-box{
  padding: 8px;
  background-color: #ffffff;
  cursor: pointer;
}
.service-img{
  width: 100%;
  height: 218px;
  overflow: hidden;
}
.inner-img{
  transition: 0.3s;
}
.service-box:hover > .service-img > .inner-img{
  transform: scale(1.1);
  
}
.box-content > h5 , .box-content > p {
  color: #000;
}


.services-slider{
  position: relative;
}
.for_slick_slider .item{
  margin-left: 20px;
}
.services-slider .priv_arrow{
  display: inline-block;
  position: absolute;
  top: 155px;
  left: -23px;
  z-index: 1;
}

.services-slider .priv_arrow , .services-slider .next_arrow{
  color: #000;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: #fff;
}

.services-slider .priv_arrow{
padding: 20px 0 0 23px;
}
.services-slider .next_arrow{
  padding: 20px 0 0 23px;
  }

.services-slider .next_arrow{
  display: inline-block;
  position: absolute;
  top: 155px;
  right: -23px;
  z-index: 1;
}
.services-slider .priv_arrow:hover , .next_arrow:hover{
 background-color: #d81616;
 color: #fff;
}

/* Services End */

/* Videro Section */
.mybg{
  position: relative;
}
.mybg::before{
  content: '';
  background-image: url('../images/videos/1.png');
  width: 100%;
  min-height: 100%;
  height: auto;
  left: 0;
  top: 0px;
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  z-index: -1000;
}
.mybg2{
  background-image: url('../images/videos/1.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  /* min-height: 100%;
  height: auto; */
}

.div1{
  width: 260px;
}
/* Videro Section End */


/* Pricing List */


/* Style the tab */
.tab {
  overflow: auto;
  white-space: nowrap;
  display: flex;
  padding: 0;
}

/* Style the buttons inside the tab */
.tab li {
  float: left;
  cursor: pointer;
  padding: 14px 0;
  color: #FFF;
  margin: 0 60px 0 0;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Change background color of buttons on hover */
.tab li:hover ,  .tab li.active{
  color: #EE1618;
  border-bottom: 3px solid #EE1618;
}

.packages{
  background-color: #FFF;
  max-width: 100%;
  height: 360px;
  border-radius: 3px;
  cursor: pointer;
}

.packages:hover > .myhead {
  background-color: #EE1618;
}
.btn-area > .btn-style:hover{
color: #FFF;
}
.packages:hover{
  background-color: #1C1C1C;
  color: #FFF;
}
.myhead{
  background-color: #1C1C1C;
  border-radius: 3px;
}
.scrollbar{
  height: 160px;
  overflow: auto;
}

.force-overflow
{
	min-height: 250px;
}

#style-1::-webkit-scrollbar-track
{
	/* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
	border-radius: 10px;
	/* background-color: #da0c0c; */
}

#style-1::-webkit-scrollbar
{
	width: 12px;
  border-radius: 10px;
	background-color: #797979;
}

#style-1::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	/* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); */
	background-color: #f00b0b;
}



table, td, th {
  border: 1px solid black;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th {
  height: 70px;
}




/* Pricing List end */


/* Event End */

.event{
  width: 100% !important;
}
.event-size{
  width: 100% !important;
  height: 250px !important;
}
.imgbox{
width: 240px;
/* height: 160px;
background-color: #0062d0; */
}
.myvent{
  padding: 10px;
  cursor: pointer;
}
.myvent:hover{
background-color: #EE1618;
}
/* Our Partners Start */



/* Form */
.mygroup-form input , .mygroup-form textarea , .mygroup-form select , .new-w{
  padding: 5px;
  outline: none;
  border: none;
}
.myform{
  width: 100%;
}
textarea.form-controls {
  width: 100%;
}

.mygroup-form.mb-2 > input {
width: 100%;
}

select#cars {
width: 100%;
}
.new-w{
width: 267px;
}
.my-color{
  background-color: #fff;
  padding: 2px;
}
#year , #formmake , #formmodel{
  background-color: #ebebeb;
}

/* Form End */

/* IG */

.myIG{
  width: 260px;
}

/* IG End */


/* Footer */

.footer-logo{
  width: 260px;
}
.search-f {
  width: 300px;
}
.footer-Links{
  color: #FFF;
}
.footer-Links > li{
  line-height: 30px;
}

.footer-Links > li:hover a{
  color: #d81616;
}

.footy-icon{
  color: #e5e5e5;
  padding: 10px;
  border-radius: 3px;
  background-color: #d81616;
}
.footer-color{
  color: #FFF;
  background-color: #d81616;
}
/* Footer End */





/* Inner Pages */
.map{
  width: 100%;
  z-index: -100;
}

/* .partner-logo{
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.2);
  border-radius: 0px 26px;
  }
  
  .single-logo >  img{
    width: 160px;
  } */
  /* Our Partners End */


/* Auto Animated Form */
/* .login-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 10994;
  background-color: rgb(0 0 0 / 78%);
  visibility: hidden;
  opacity: 0;
  transition: all .5s ease-out;
}

.login-popup.show {
  visibility: visible;
  opacity: 1;
}

.login-popup.show .box {
  opacity: 1;
  margin-left: 0;
}

.login-popup .box {
  background-color: #fff;
  width: 475px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-wrap: wrap;
  opacity: 0;
  margin-left: 100px;
  transition: all .5s ease-out;
  padding: 3rem 3rem;
  border-radius: 1.75rem 0px 1.75rem 0;
  justify-content: center;
}

.login-popup > .box > .img-area {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  overflow: hidden;
}

.login-popup > .box > .img-area .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg.jpg);
  background-size: cover;
  background-position: center;
  animation: zoomInOut 0.5s linear infinite;
} */

/* @keyframes zoomInOut {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.login-popup > .box > .login-form h1 {
  color: #0063d0;
  font-size: 3rem;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.login-form .group-form {
  user-select: none;
}

.login-popup > .box > .login-form .form-controls {
  height: 45px;
  margin-bottom: 30px;
  width: 100%;
  border: none;
  font-size: 1.25rem;
  border-bottom: 1px solid #cccccc;
  color: var(--bs-link-hover-color);
  font-weight: 500;
  resize: none;
}

.login-popup > .box > .login-form .form-controls:focus {
  outline: none;
}

.login-popup > .box > .login-form label {
  font-size: 16px;
  color: #555555;
}

.login-popup > .box > .login-form .close {
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 30px;
  font-weight: 800;
  cursor: pointer;
} */


/* Media Query Styling */

@media (min-width: 1024px) {
  .header .menu > .menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    z-index: 100;
    transform: translateY(0px);
  }

  .header .menu > .menu-item-has-children:hover > a .plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@media (max-width: 1024px) {

  .bg.scrolled .nav-menu .menu-item > a {
    color: #fff;
  }

  .bg.scrolled .header .open-nav span,
  .bg.scrolled .header .open-nav span::before,
  .bg.scrolled .header .open-nav span::after {
    background: #fff;
  }

  .header .nav-menu {
    position: fixed;
    right: -280px;
    top: 0;
    visibility: hidden;
    width: 280px;
    height: 100%;
    overflow-y: auto;
    background-color: #000;
    z-index: 2000;
    padding: 15px 0;
    transition: all 0.3s ease;
  }

  .header .nav-menu.open {
    visibility: visible;
    right: 0;
  }

  .header .menu > .menu-item {
    display: block;
    margin: 0px;
  }

  .header .menu > .menu-item > a {
    color: #fff;
    padding: 12px 15px;
    border-bottom: 1px solid #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header .menu > .menu-item:first-child > a {
    border-top: 1px solid #333333;
  }

  .bg.scrolled .header .menu > .menu-item > a .plus::before,
  .bg.scrolled .header .menu > .menu-item > a .plus::after,
  .header .menu > .menu-item > a .plus::before,
  .header .menu > .menu-item > a .plus::after {
    background: #fff;
  }

  .header .close-nav,
  .header .open-nav {
    display: flex;
  }

  .header .menu > .menu-item > .sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    transform: translateY(0px);
    left: auto;
    top: auto;
    max-height: 0;
    overflow: hidden;
  }

  .header .menu > .menu-item > .sub-menu > .menu-item > a {
    color: #fff;
    padding: 12px 45px;
    border-bottom: 1px solid #333333;
  }
   
}
/* all */
.r-servives{
  margin-top: 150px;
}
/* all end */
/* Responsive */

@media screen and (max-width: 560px){
   .about-content{
    position: relative !important;
    bottom: 0 !important;
    left: 0 !important;
   }
   h2{
    font-size: 24px;
   }
   .bannerh1{
    font-size: 48px;
    text-align: center;
   }
  .btn-style , .btn-style-services{
    width: 100%;
    text-align: center;
  }
  .heading-content{
    width: 100%;
  }
  .logo{
    width: 160px;
  }
  textarea.form-controls {
    width: 100%;
}

.mygroup-form.mb-2 > input {
  width: 100%;
}
.mobile-none{
  display: none;
}
select#cars {
  width: 100%;
}

}


@media only screen and (max-width: 435px) {
  .about-content{
    position: relative !important;
    bottom: 0 !important;
    left: 0 !important;
   }
   h2{
    font-size: 24px;
   }
   .bannerh1{
    font-size: 48px;
    text-align: center;
   }
  .btn-style , .btn-style-services{
    width: 100%;
    text-align: center;
  }
  .about-content{
    margin-top: 265px;
  }
  
  textarea.form-controls {
    width: 100%;
}

.mygroup-form.mb-2 > input {
  width: 100%;
}
.r-servives{
  margin-top: 250px;
}
select#cars {
  width: 100%;
}
}
@media only screen and (max-width: 415px){
  .service-box{
    width: 368px !important;
  }
  .r-servives{
    margin-top: 250px;
  }
}
@media only screen and (max-width: 390px){
  .service-box{
    width: 344px !important;
  }
  .r-servives{
    margin-top: 200px;
  }
}
@media only screen and (max-width: 375px) {
 
  .about-content{
    position: relative !important;
    bottom: 0 !important;
    left: 0 !important;
   }
   h2{
    font-size: 24px;
   }
   .mt-15{
    margin-top: 220px;
   }
   .bannerh1{
    font-size: 48px;
    text-align: center;
   }
  .btn-style , .btn-style-services{
    width: 100%;
    text-align: center;
  }
  .about-content{
    margin-top: 50px;
  }
  .r-servives{
    margin-top: 100px;
  }
  .service-box{
    width: 329px !important;
  }
  textarea.form-controls {
    width: 100%;
}

.mygroup-form.mb-2 > input {
  width: 100%;
}

select#cars {
  width: 100%;
}


}
@media only screen and (max-width: 344px){
  .about-content{
    margin-top: 220px;
  }
}













/* inner-pages start */

/* Product Details */
.product-bg , .cart-bg , .checkout-bg{
  background-color: #ffffff;
  border-radius: 6px;
}
.flied {
  display: inline-block;
}
.product-details h3 , .product-details h6 , .product-details p{
  color: #000;
}
.flied > input , select{
  width: 160px;
}
.product-details > h5{
  color: #535353;
}
.product-details > span > b {
  color: #d81616;
}
.Cart-submit{
  width: 100%;
}
/* Product Details */

/* Cart */

.btn-link:hover{
  color: #d81616;
}
.btn-link , .lead{
  color: #000;
}
.cart-btn-style{
  color: #ffffff;
  background-color: #ee090b;
  border-color: #d81616;
}
.cart-btn-style:hover {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #111111 !important;
  border: 0 none;
  outline: 0 none;
}
.checkout-color{
  color: #000;
}
.custom-radio .custom-control-input:checked~.custom-control-label::before {
  background-color: #ee1618;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
  background-color: #ee1618;
}
.custom-control-input:checked~.custom-control-label::before {
  color: #fff;
  background-color: #ee090b;
}
.mycolorbg{
  background-color: #ee090b;
  color: #e5e5e5;
}
.mycolor{
  color: #ee090b;
}
.contact-form{
  background-color: #1C1C1C;
  border: 4px solid #d81616 ;
}
/* Cart */
/* inner-pages end */

i.fa-solid.fa-heart.mr-2.my-icon {
    color: #fff;
}

i.fa-solid.fa-cart-shopping.my-icon {
    color: #fff;
}














