@import url('https://fonts.googleapis.com/css?family=Nunito:300,400,600,700,800&amp;display=swap');

/* styles.min.css */
/* styles.css */

/*================ Table of content style ===========*/

/*car card 4 style end*/
/* Common styles for all buttons */
.btn-book-now, .phone-col, .whatsapp-col {
    border: 5px solid #fff;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    height: 40px; /* Ensures uniform height */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Specific styles for each button */
.btn-book-now {
    background: linear-gradient(90deg, rgba(124,61,174,1) 14%, rgba(46,75,189,1) 58%, rgba(1,100,182,1) 100%);
}

.phone-col {
    background-color: #2874A6;
}

.whatsapp-col {
    background-color: #229954;
}

/* Anchor tags inside buttons */
.btn-book-now a,
.phone-col a,
.whatsapp-col a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
}

/* Icon styles */
.btn-book-now i, 
.phone-col i {
    font-size: 18px; /* Larger icon size */
}

.whatsapp-col a {
    font-size: 18px; /* Font size for WhatsApp text */
    font-weight: bold;
}

/* Padding adjustments for text alignment */
.whatsapp-col a {
    padding: 0 10px;
}

.img-contain {
  object-fit: contain;
  border-radius: 5px 5px 0 0;
  width: 100%;
  height: 100%;
}

.text-center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.price-text {
  color: #000;
  font-size: 16px;
  font-weight: bold;
}

.price-text span {
  font-size: 11px;
  color: #3D6DCB;
}

.icon-style {
  color: #3D6DCB;
  font-size: 20px;
}

.details-text {
  font-size: 14px;
  color: #3D6DCB;
  font-weight: bold;
}

.padding-10-18 {
  padding: 10px 18px;
}

.height-22 {
  height: 22px;
}


/* Basic TOC styling */
.toc {
  list-style-type: none;
  padding: 0;
}

.toc-item {
  margin: 5px 0;
}

.toc-item a {
  text-decoration: none;
  color: #007bff;
}

.toc-item a:hover {
  text-decoration: underline;
}

/* Indentation for different heading levels */
.toc-level-1 {
  font-weight: bold;
}

.toc-level-2 {
  margin-left: 20px;
}

.toc-level-3 {
  margin-left: 40px;
}

.toc-level-4 {
  margin-left: 60px;
}

.toc-level-5 {
  margin-left: 80px;
}

.toc-level-6 {
  margin-left: 100px;
}

/*================ Table of content style End ===========*/

/*rent a car page road design*/
.rent_car_banner {
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 400px;
}
.rent_car_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rent_car_banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* 40% black overlay */
  z-index: 1;
}
@media (max-width: 767px) {
  .rent_car_banner {
    height: 130px;
  }
  .rent_car_banner img {
    height: 130px;
  }
  .banner-text h1 {
    font-size: 0.8em;
  }
}
.banner-text {
  position: absolute;
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
  z-index: 2; /* Ensure text is above the overlay */
}

/* Road style starts */
.road {
  position: relative;
  width: 100%;
  height: 134px; /* Adjust height as needed */
  margin: 0;
  overflow: hidden;
  background-image: url('/images/road.jpg'); /* Replace with your road image */
}

.car-container {
  position: absolute;
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Center vertically */
  width: 200px; /* Adjust width as needed */
  height: 60px; /* Adjust height as needed */
  left: -200px; /* Initial position off the left */
}

.car {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .car {
    width: 150px;
    height: 45px;
  }

  .car-container {
    width: 150px;
    height: 45px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.popup-image {
  display: none;
  position: relative;
  z-index: 3;
  width: auto; /* Adjust width as necessary */
  background: linear-gradient(90deg, rgba(124, 61, 174, 1) 14%, rgba(46, 75, 189, 1) 58%, rgba(1, 100, 182, 1) 100%);
  padding: 10px;
  border-radius: 5px;
  text-align: left;
}

.car:hover + .popup-image,
.popup-image:hover {
  display: block;
}

.popup-image h3 {
  font-size: 1.2em;
  margin: 0 0 5px 0;
  text-align: center;
  color: #fff;
}
/* Rent a car page road design end */



.article {
  width: 100%;
  padding: 40px 0;
  max-width: 100%;
  margin: 0 auto;
}

.article h1,
.article h2,
.article h3 {
  display: flex;
  align-items: center;
  font-weight: bold; 
  font-size: 22px;
}

.article h1:before,
.article h1:after,
.article h2:before,
.article h2:after,
.article h3:before,
.article h3:after {
  content: "";
  width: 70%;
  height: 1px;
  background: #000;
}

.article h1:before,
.article h2:before,
.article h3:before {
  margin: 0 20px 0 0;
}

.article h1:after,
.article h2:after,
.article h3:after {
  margin: 0 0 0 20px;
}


/*---------------------------------------------------------*/
/*faq listing accordian*/
/* FAQ listing accordion */
section .box {
  text-align: left;
}

.accordionns {
  margin: 0 auto;
  width: 100%;
}

.accordionns input {
  display: none;
}

.box {
  position: relative;
  background: white;
  transition: all .15s ease-in-out;
  box-shadow: 0 -1px 0 #e5e5e5, 0 0 2px rgba(0,0,0,.12), 0 2px 4px rgba(0,0,0,.24);
  overflow: hidden;
}

.box-title {
  width: calc(100% - 40px);
  padding: 20px;
  display: inline-block;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: 'Nunito', sans-serif;
  color: #882BCD;
  font-size: 14pt;
  position: relative;
}

.box-content {
  width: calc(100% - 40px);
  padding: 30px 20px;
  font-size: 11pt;
  color: rgba(0,0,0,.54);
  display: none;
}

.box-close {
  position: absolute;
  height: 64px;
  width: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  display: none;
}

input:checked + .box {
  height: auto;
  margin: 16px 0;
}

input:checked + .box .box-title {
  border-bottom: 1px solid rgba(0,0,0,.18);
}

input:checked + .box .box-content,
input:checked + .box .box-close {
  display: inline-block;
}

.arrows section .box-title {
  padding-left: 44px;
  width: calc(100% - 64px);
}

.arrows section .box-title:before {
  position: absolute;
  display: block;
  content: '\203a';
  font-size: 18pt;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform .15s ease-in-out;
  color: #882BCD;
}

input:checked + .box .box-title:before {
  transform: translateY(-50%) rotate(90deg);
}

/* Mobile View */
@media screen and (max-width: 767px) {
  .box {
    height: auto;
    margin: 10px 0;
  }

  .box-title {
    width: 100%;
    padding: 10px;
    font-size: 12pt;
    line-height: normal;
  }

  .box-content {
    width: 100%;
    padding: 20px;
    font-size: 10pt;
  }

  .arrows section .box-title {
    padding-left: 20px;
    width: calc(100% - 20px);
  }

  .arrows section .box-title:before {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* Large screens */
@media screen and (min-width: 1200px) {
  .box {
    height: auto;
  }

  .box-title {
    line-height: normal;
    font-size: 14pt;
    padding: 20px;
  }

  .box-content {
    padding: 40px 30px;
    font-size: 12pt;
  }
}

.btnheader {
  background: linear-gradient(90deg, rgba(124,61,174,1) 14%, rgba(46,75,189,1) 58%, rgba(1,100,182,1) 100%);
  color: #fff;
  padding: 7px 20px;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 14px;
}

.btnheader:hover {
  background-color: #218838;
}
/*faq listing ends*/

.nav-tabs .nav-item .nav-link {
  color: #007bff;
}

.bbb_viewed_item:hover .bbb_viewed_name,
.bbb_viewed_item:hover .bbb_viewed_price,
.brand_hover:hover h2,
.brand_hover:hover h5,
.btnheader,
.cardd:hover p,
.cardd:hover span,
.nav-link,
.white-heading,
.white-heading span {
  color: #fff
}

.caps,
.heading,
.line1,
.testimonial4_header h4 {
  text-transform: uppercase
}

.for-cat,
.heading,
.single-car-price,
h1 {
  font-weight: 700
}

/*
.navbar-custom {
  color: #c33;
  background-color: #9132a8
}*/

.brand_hover:hover,
.for-cat,
.my-bg,
.my-btn {
  background: linear-gradient(90deg, #7c3dae 14%, #2e4bbd 58%, #0164b6 100%)
}

.btn-space {
  margin-right: -28px
}

/*.navbar-brand {
  padding: 0 30px;
  color: #42f5c8;
  font-size: 30px;
  font-family: candara;
  border: 2px solid red
}

.dropdown-item,
.text-whitee small {
  font-family: "open sans", Tahoma, Arial, helvetica, sans-serif !important
}
*/
/*.dropdown-item {
  width: 220px;
  color: #566573;
  font-size: 14px;
  margin-top: -5px;
  margin-bottom: -6px;
  line-height: 35px
}*/

.gbtn,
.my-btn {
/*  font-family: candara*/
}

/*.dropdown-item:hover {
  color: #7d3c98;
  border-radius: 10px
}

.dropdown-menu {
  border-radius: 10px;
  margin: 0 0 0 80px;
  left: 0;
  transform: translateX(-30%);
  position: absolute
}*/

.bdr {
  border-bottom: 1px solid #d5d8dc
}

.dsk,
.mblbtn {
  display: show
}

.ac-container input,
.deskbtn {
  display: none
}

.activebar i,
.activebar small {
  color: #7e51c0
}

.menu_img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border: 1px solid #d5d8dc;
  border-radius: 3px;
  padding: 2px;
}

.menu_cls {
  width: auto;
}

#myInput,
.banner_img {
  width: 100%
}

.single-car-feature {
  border: 1px solid #888;
  border-radius: 5px;
  padding: 3px;
  margin: 3px
}

.single-car-feature i {
  font-size: 12px;
  text-align: center;
  padding: 2px
}

.agent {
  border-radius: 20px
}

.for-cat {
  color: #fff;
  display: inline-block;
  padding: 0 8px;
  border-radius: 4px;
  font-size: 12px;
  top: 1px;
  left: 30px;
  line-height: 24px;
  position: absolute
}

.utf-agent-avatar {
  height: 180px
}

.single-car-price {
  color: #1d79ce;
  font-size: 1.5rem;
  line-height: 1;
  width: 100%;
  padding-left: 5px
}

.my-bg {
  color: #fff
}

.my-btn {
  padding: 5px 10px;
  color: #fff
}

.brand-box {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 5px;
  border: 2px solid #45208a;
  padding: 8px;
  box-shadow: 1px 1px 1px 1px
}

#myInput {
  background-image: url('../images/search_icon.png');
  background-position: 10px 12px;
  background-repeat: no-repeat;
  font-size: 16px;
  padding: 12px 20px 12px 40px;
  border: 1px solid #ddd;
  margin-bottom: 12px
}

.brand_hover {
  padding: 15px
}

.brand_hover:hover {
  color: #fff;
  border-radius: 5px
}

.heading {
  text-align: center;
  color: #454343;
  font-size: 30px;
  position: relative;
  margin-bottom: 70px;
  z-index: 999
}

.heading:after {
  content: ' ';
  position: absolute;
  top: 100%;
  left: 50%;
  height: 40px;
  width: 180px;
  border-radius: 4px;
  transform: translateX(-50%);
  background: url(img/heading-line.png) center no-repeat
}

.white-heading:after {
  background: url(https://i.ibb.co/d7tSD1R/heading-line-white.png) center no-repeat
}

.heading span {
  font-size: 18px;
  display: block;
  font-weight: 500
}

.testimonial:after {
  position: absolute;
  top: 0 !important;
  left: 0;
  content: " ";
  background: url(../images/popular-location-09.jpg) 0 0/100% 100px;
  width: 100%;
  height: 100px;
  float: left;
  z-index: 99
}

.testimonial {
  min-height: 375px;
  position: relative;
  background: url(../images/popular-location-09.jpg) center/cover;
  padding-top: 50px;
  padding-bottom: 50px
}

#testimonial4 .carousel-inner:hover {
  cursor: -moz-grab;
  cursor: -webkit-grab
}

#testimonial4 .carousel-inner:active {
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing
}

#testimonial4 .carousel-inner .item {
  overflow: hidden
}

.testimonial4_indicators .carousel-indicators {
  left: 0;
  margin: 0;
  width: 100%;
  font-size: 0;
  height: 20px;
  bottom: 15px;
  padding: 0 5px;
  cursor: e-resize;
  overflow-x: auto;
  overflow-y: hidden;
  position: absolute;
  text-align: center;
  white-space: nowrap
}

.testimonial4_indicators .carousel-indicators li {
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  text-indent: 0;
  margin: 2px 3px;
  cursor: pointer;
  display: inline-block;
  background: #fff;
  -webkit-border-radius: 100%;
  border-radius: 100%
}

.testimonial4_indicators .carousel-indicators .active {
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  margin: 2px 3px;
  background-color: #9dd3af;
  -webkit-border-radius: 100%;
  border-radius: 100%
}

.testimonial4_indicators .carousel-indicators::-webkit-scrollbar {
  height: 3px
}

.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb {
  background: #eee;
  -webkit-border-radius: 0;
  border-radius: 0
}

.testimonial4_control_button .carousel-control {
  top: 175px;
  opacity: 1;
  width: 40px;
  bottom: auto;
  height: 40px;
  font-size: 10px;
  cursor: pointer;
  font-weight: 700;
  overflow: hidden;
  line-height: 38px;
  text-shadow: none;
  text-align: center;
  position: absolute;
  background: 0 0;
  border: 2px solid #fff;
  text-transform: uppercase;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: .6s cubic-bezier(.3, 1, 0, 1);
  transition: .6s cubic-bezier(.3, 1, 0, 1)
}

.bbb_viewed_item:hover,
.cardd:hover {
  background: linear-gradient(90deg, #7c3dae 14%, #2e4bbd 58%, #0164b6 100%)
}

.carosul_card:hover {
  background: linear-gradient(90deg, #7c3dae 14%, #2e4bbd 58%, #0164b6 100%);
  color: #fff;
/*  transform: scale(1.1);*/
border-radius: 5px;
}

.carosul_card:hover h4,
.carosul_card:hover p {
  color: #fff;
}


.testimonial4_control_button .carousel-control.left {
  left: 7%;
  top: 50%;
  right: auto
}

.testimonial4_control_button .carousel-control.right {
  right: 7%;
  top: 50%;
  left: auto
}

.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover {
  color: #000;
  background: #fff;
  border: 2px solid #fff
}

.testimonial4_header {
  top: 0;
  left: 0;
  bottom: 0;
  width: 550px;
  display: block;
  margin: 30px auto;
  text-align: center;
  position: relative
}

.bbb_viewed_item.discount .item_discount,
.bbb_viewed_item.is_new .item_new,
.bbb_viewed_nav,
.cardd {
  display: inline-block
}

.testimonial4_slide,
.testimonial4_slide img {
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: relative;
  text-align: center
}

.testimonial4_header h4 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  letter-spacing: 1px
}

.testimonial4_slide {
  bottom: 0;
  width: 70%;
  padding: 20px
}

.testimonial4_slide img {
  width: 136px;
  height: 136px;
  display: block;
  color: #f2f2f2;
  font-size: 18px;
  line-height: 46px;
  border-radius: 50%;
  box-shadow: -6px 6px 6px rgba(0, 0, 0, .23);
  -moz-box-shadow: -6px 6px 6px rgba(0, 0, 0, .23);
  -o-box-shadow: -6px 6px 6px rgba(0, 0, 0, .23);
  -webkit-box-shadow: -6px 6px 6px rgba(0, 0, 0, .23)
}

.mycard,
.mycard2,
.mycard3 {
  box-shadow: 2px 2px 2px 2px #aaa
}

.testimonial4_slide p {
  color: #fff;
  font-size: 20px;
  line-height: 1.4;
  margin: 40px 0 20px
}

.testimonial4_slide h4 {
  color: #fff;
  font-size: 22px
}

.testimonial .carousel {
  padding-bottom: 50px
}

.testimonial .carousel-control-next-icon,
.testimonial .carousel-control-prev-icon {
  width: 35px;
  height: 35px
}

.line1 {
  color: #1483d4;
  font-size: 12px
}

.cardd {
  width: 19%;
  cursor: pointer
}

.cardd:hover {
  color: #fff;
  transform: scale(1.1);
  border-radius: 5px
}

.bbb_viewed {
  padding-top: 51px;
  padding-bottom: 60px;
  background: #eff6fa
}

.bbb_main_container {
  background-color: #fff;
  padding: 11px
}

.bbb_viewed_title_container {
  border-bottom: 1px dashed #000
}

.bbb_viewed_title {
  margin-bottom: 16px;
  margin-top: 8px
}

.bbb_viewed_nav_container {
  position: absolute;
  right: 560px;
  bottom: 14px;
  text-align: center;
  color: #5e2d84
}

.bbb_viewed_nav {
  cursor: pointer
}

.bbb_viewed_nav i {
  color: #dadada;
  font-size: 18px;
  padding: 5px;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  -ms-transition: .2s;
  -o-transition: .2s;
  transition: .2s
}

.bbb_viewed_nav:hover i {
  color: #606264
}

.bbb_viewed_prev {
  margin-right: 15px
}

.bbb_viewed_slider_container {
  padding-top: 13px
}

.bbb_viewed_item {
  width: 100%;
  background: #fff;
  border-radius: 2px;
  padding: 25px 30px
}

.bbb_viewed_item:hover {
  border-radius: 5px
}

.bbb_viewed_image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 5px
}

.bbb_viewed_image img {
  object-fit: contain;
  display: block
}

.bbb_viewed_content {
  width: 100%;
  margin-top: 25px
}

.bbb_viewed_price {
  font-size: 16px;
  color: #000;
  font-weight: 500
}

.bbb_viewed_item.discount .bbb_viewed_price {
  color: #df3b3b
}

.bbb_viewed_price span {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 0, 0, .6);
  margin-left: 8px
}

.bbb_viewed_price span::after {
  display: block;
  position: absolute;
  top: 6px;
  left: -2px;
  width: calc(100% + 4px);
  height: 1px;
  background: #8d8d8d;
  content: ''
}

.bbb_viewed_name {
  margin-top: 3px
}

.bbb_viewed_name a {
  font-size: 14px;
  color: #000;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  -ms-transition: .2s;
  -o-transition: .2s;
  transition: .2s
}

/*.text-whitee i,
.text-whitee small {
  color: #2c3e50;
  font-size: 14px
}
*/
.bbb_viewed_name a:hover {
  color: #0e8ce4
}

.item_marks {
  position: absolute;
  top: 18px;
  left: 18px
}

.item_mark {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  line-height: 36px;
  text-align: center
}

.item_discount {
  background: #df3b3b;
  margin-right: 5px
}

.item_new {
  background: #0e8ce4
}

.gbtn {
  background: linear-gradient(90deg, #7c3dae 14%, #2e4bbd 58%, #0164b6 100%);
  color: #fff
}

.ac-container article p,
.ac-container label {
  color: #777;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, .8)
}

.rows {
  padding: 0 25px
}

.postbtn {
  margin-left: 40px
}

.carddsign {
  margin-left: 130px;
  list-style-type: none;
  font-size: 12px
}

.browser .b1,
.browser .b2,
.logo1,
.logo2,
.rent .heading {
  font-size: xx-large
}

.ac-container label {
  height: 45px !important;
  line-height: 51px !important;
  font-size: 12px !important;
  font-family: 'Nunito', sans-serif;
/*  font-family: 'Open Sans', 'Arial Narrow', Arial, sans-serif !important;*/
  padding: 0 20px;
  position: relative;
  z-index: 20;
  display: block;
  cursor: pointer;
  background: #fff;
  background: -moz-linear-gradient(top, #fff 1%, #eaeaea 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #fff), color-stop(100%, #eaeaea));
  background: -webkit-linear-gradient(top, #fff 1%, #eaeaea 100%);
  background: -o-linear-gradient(top, #fff 1%, #eaeaea 100%);
  background: -ms-linear-gradient(top, #fff 1%, #eaeaea 100%);
  background: linear-gradient(top, #fff 1%, #eaeaea 100%);
  box-shadow: 0 0 0 1px rgba(155, 155, 155, .3), 1px 0 0 rgba(255, 255, 255, .9) inset, 0 2px 2px rgba(0, 0, 0, .1)
}

.ac-container {
  width: 100%;
  text-align: left
}

.global,
.global li {
  padding: 0;
  display: inline-block
}

.ac-container label:hover {
  background: #fff
}

.ac-container input:checked+label,
.ac-container input:checked+label:hover {
  background: #f1f2f3;
  color: #666;
  text-shadow: 0 1px 1px rgba(255, 255, 255, .6);
  box-shadow: 0 0 0 1px rgba(155, 155, 155, .3), 0 2px 2px rgba(0, 0, 0, .1);
  height: 30px;
  line-height: 21px;
  font-size: 13px
}

.ac-container input:checked~article.ac-large,
.ac-container input:checked~article.ac-medium,
.ac-container input:checked~article.ac-small,
.myaside {
  height: auto
}

.ac-container input:checked+label:hover:after,
.ac-container label:hover:after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  right: 13px;
  top: 7px;
  background: url(../images/arrow_down.png) center center no-repeat
}

.ac-container input:checked+label:hover:after {
  background-image: url(../images/arrow_up.png)
}

.ac-container article {
  background: rgba(255, 255, 255, .5);
  overflow: hidden;
  height: 0;
  position: relative;
  z-index: 10;
  -webkit-transition: height .3s ease-in-out, box-shadow .6s linear;
  -moz-transition: height .3s ease-in-out, box-shadow .6s linear;
  -o-transition: height .3s ease-in-out, box-shadow .6s linear;
  -ms-transition: height .3s ease-in-out, box-shadow .6s linear;
  transition: height .3s ease-in-out, box-shadow .6s linear
}

.ac-container article p {
  line-height: 23px;
  padding: 10px;
  font: 12px 'Open Sans'
}

.ac-container input:checked~article {
  -webkit-transition: height .5s ease-in-out, box-shadow .1s linear;
  -moz-transition: height .5s ease-in-out, box-shadow .1s linear;
  -o-transition: height .5s ease-in-out, box-shadow .1s linear;
  -ms-transition: height .5s ease-in-out, box-shadow .1s linear;
  transition: height .5s ease-in-out, box-shadow .1s linear;
  box-shadow: 0 0 0 1px rgba(155, 155, 155, .3)
}

.global {
  width: 100%;
  list-style: none;
  margin: 0
}

.global li {
  color: #212121;
  margin: 0 0 10px;
  font-weight: 600
}

.myactive,
.mynav {
  background: #730485;
  background: linear-gradient(90deg, #7c3dae 14%, #2e4bbd 58%, #0164b6 100%)
}

.myaside {
  background: #4758a7;
  background: linear-gradient(90deg, #7c3dae 14%, #2e4bbd 58%, #0164b6 100%)
}

.bar,
.li li:hover {
  background-color: #00f
}

.mycard {
  border: 5px solid #fff;
  border-radius: 10px
}

.mycard2,
.mycard3 {
  border: 5px solid #fff;
  border-radius: 20px
}

.choise .condection select,
.choise .model select,
.choise .price select,
.choise .search button,
.choise .year select,
.mycard4 {
  border: none
}

.li li:hover,
.main,
.main .main1,
.search button,
.search input,
.used-cars img {
  border-radius: 30px
}

.mycard4:hover {
  color: red
}

@media (max-width:767px) {

  .btnheader,
  .dsk,
  .mblbtn {
    display: none
  }

  .dropdown-menu {
    margin-left: 80px
  }

  .deskbtn {
    display: show;
    margin-left: 0
  }

  .cardd {
    width: 48%;
    display: inline-block;
    cursor: pointer
  }

  .mobile,
  .rows {
    padding: 0
  }

  .postbtn {
    margin-left: 0
  }

  .carddsign {
    margin-left: 100px;
    list-style-type: none;
    font-size: 12px
  }

  .ac-container label strong {
    font-size: 8px
  }

  .ac-container label {
    padding: 0 10px
  }

  .mbl {
    display: block
  }
}

.top {
  margin-top: 5px
}

.top button {
  padding: 10px 10px 10px 20px;
  text-align: center;
  color: #fff;
  font-size: 10px;
  font-weight: 500
}

.links h3,
.logo1,
.logo2 {
  font-weight: 900
}

.logo img {
  height: 100px;
  width: 100px
}

.logo1 {
  color: #00f
}

.logo2 {
  color: #af24b1
}

.main {
  background-image: url(../images/logo1.jpg);
  height: 500px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 90%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover
}

.main .main1 {
  margin-top: 170px;
  height: 150px;
  width: 100%;
  margin-right: 10px;
  background-color: #226690
}

.choise .condection,
.choise .model,
.choise .price,
.choise .year {
  background: #ffff;
  padding: 20px 10px;
  margin-top: 35px
}

.li li {
  display: inline-block;
  margin: 5px 20px 10px 10px;
  color: #ffff
}

.li li:hover {
  color: #ffff
}

.search button {
  padding: 10px 20px;
  font-size: x-large
}

h1 {
  color: #00f;
  margin-left: 10px
}

.links h3 {
  color: #00f
}

.links p {
  color: #000;
  font-weight: 200
}

.links p a {
  color: #00f
}

.residentail {
  margin-left: 7px;
  font-weight: 500;
  color: #000
}

.residentail h4 {
  color: #00f;
  font-weight: 700
}

.residentail p,
.used-cars {
  color: #000;
  font-weight: 500
}

.residentail img {
  height: 200px;
  width: 300px;
  border-radius: 10px 30px
}

.used-cars {
  margin-left: 10px;
  margin-bottom: 30px
}

.blog1,
.blog2,
.blog3,
.blog4,
.blog5 {
  background-repeat: no-repeat;
  margin: 10px;
  height: 400px;
  background-size: cover
}

.used-cars h4 {
  color: #00f;
  font-weight: 500
}

.view-more button {
  padding: 10px 40px 20px;
  color: #fff;
  border-radius: 30px;
  text-align: center
}

.footer2 span,
.news h1 {
  color: #000;
  text-align: center
}

.bar,
.bar button {
  border-radius: 10px
}

.view-more button a {
  color: #fff;
  font-size: 20px
}

.blog1 {
  background-image: url(../images/dubi/h1.webp)
}

.blog2 {
  background-image: url(../images/dubi/h2.webp)
}

.blog3 {
  background-image: url(../images/dubi/h3.webp)
}

.blog4 {
  background-image: url(../images/dubi/h4.webp)
}

.blog5 {
  background-image: url(../images/dubi/h5.webp)
}

.news h1 {
  margin-top: 100%;
  font-weight: 900
}

.bar button,
.bar p {
  margin-top: 5px;
  color: #ffff
}

.baner {
  margin-left: auto;
  margin-right: auto;
  display: block
}

.bar {
  height: 50px
}

.bar p {
  font-size: x-large;
  font-weight: 200
}

.bar button {
  border-color: #00f;
  color: #00f
}

.rent,
.rent .heading {
  border-bottom: 1px solid #00f
}

.bar1 img {
  width: 1600px
}

.footer {
  background-color: #f0f8ff;
  font-size: medium
}

.footer .endlogo img {
  margin-top: 10px;
  height: 200px;
  width: 300px;
  display: block
}

.footer .endlogo span.c1 {
  font-size: 50px;
  margin-top: 15px;
  font-weight: 800;
  color: #00f
}

.footer .endlogo span.c2 {
  font-size: 50px;
  margin-top: 15px;
  font-weight: 800;
  color: #672392
}

.footer2 span {
  margin-top: 10px;
  display: block;
  font-size: 30px;
  font-weight: 600px
}

#navbar li a,
span.footer {
  font-weight: 600;
  color: #000
}

.follow img {
  margin-top: 50px;
  height: 50px;
  width: 50px
}

span.footer {
  font-size: 20px;
  margin: 10px;
  text-align: center;
  display: inline
}

#navbar li a:hover,
.rent1 span {
  color: #ffff
}

.choise {
  background: #4758a7;
  background: linear-gradient(90deg, #4758a7 0, #4150a6 0, #344d9e 0, #1e4790 0, #6c6fc1 0, #30198c 0, #742e86 58%, #742e86 60%, #752d86 64%, #842287 100%, #66459f 100%, #6b4d98 100%, #6e5195 100%, #704492 100%, #703893 100%, #8c389d 100%, #794b93 100%, #884f98 100%, #935aa1 100%, #c71ac9 100%, #a4a0a0 100%);
  height: auto
}

.choise .condection {
  margin-bottom: 35px
}

.choise .search {
  margin-top: 35px;
  background: #3e1793;
  padding: 20px 50px;
  color: #ffff
}

#navbar li a:hover,
#navbar2 button,
.rent .heading,
.rent1 span,
span.c2 {
  background-color: #00f
}

.browser .b1 {
  font-weight: 800
}

.browser .b2 {
  color: #00f;
  font-weight: 800
}

.cars img {
  height: 80px;
  width: 100px
}

.rent .heading {
  font-weight: 500;
  color: #fff;
  display: inline-block;
  padding: 10px 40px;
  margin-left: 10px
}

.rent1 img,
.rent2 img,
.rent3 img {
  height: 200px;
  width: 310px
}

.rent1 h3 {
  margin-top: 10px;
  border-bottom: 1px solid #000
}

.rent1 span {
  margin-top: 20px;
  height: 10px
}

.nabar {
  background-color: #ffff
}

#navbar li a {
  margin-left: 30px;
  font-size: 25px
}

#navbar2 a {
  color: #000;
  font-size: larger;
  font-weight: 400
}

#navbar2 button {
  color: #ffff;
  padding: 10px
}

.realestate_bar {
  background-color: #1d791d
}

.realestate_bar select {
  margin: 10px;
  font-size: 20px;
  text-align: cente
}

.realestate_bar button {
  background-color: #00f;
  margin: 10px;
  color: #ffff;
  font-size: 20px;
  padding: 10px 30px;
  border: none
}

.home a {
  font-size: 40px;
  color: #000;
  text-decoration: none;
  margin: 20px
}

.min {
  border-bottom: 4px solid #c86464
}

.feature {
  margin-bottom: 2px;
  background-color: #c86464;
  color: #fff;
  display: inline-block;
  font-weight: 900;
  padding: 5px
}

.cards {
  position: relative;
  margin: 10px;
  border-bottom: 2px solid #b39e9e
}

span.c2 {
  margin-top: 20px;
  bottom: 40px;
  color: #fff;
  padding: 5px 10px;
  transform: rotate3d(0 6px 5);
  font-size: 20px;
  text-align: center
}

span.c1 {
  font-size: 20px;
  font-weight: 800;
  color: #000
}