@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Play:wght@400;700&display=swap');

html,
body,
img,
fieldset,
abbr,
acronym {
  border: 0;
  max-width: 100%;
  width: auto;
}

body {
  padding: 0 !important;
  font-family: "Cabin", sans-serif;
}

.p-50 {
  padding: 50px 0px;
}

body a,
body button {
  color: #000;
  outline: none !important;
  text-decoration: none !important;
  transition: all ease 0.5s;
}

* {
  padding: 0;
  margin: 0;
}

h2 {
  font-size: 40px;
  margin: 10px 0px;
  font-weight: 800;
  text-transform: capitalize;
}

.m-100 {
  margin-bottom: 80px;
}

.what {
  position: fixed;
  bottom: 30px;
  left: 20px;
  z-index: 99999;
}

.what a {
  color: #fff;
  font-size: 30px;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 5px 10px 0px #2a3d4d52;
  background: #08e255;
}

.what a:last-child {
  font-size: 20px;
  background-color: #ff8100;
}

.sec-btn {
  display: inline-block;
  padding: 10px 30px;
  background-color: #ff8100;
  color: #fff;
  position: relative;
  transition: .5s;
  text-align: center;
  border-radius: 4px;
  margin-top: 20px;
  text-transform: capitalize;
  font-size: 20px;
}

.sec-btn:hover{
  background-color: #2d3c4f;
}
.sec-btn span{
  position: relative;
  z-index: 4;
}

.p-100 {
  padding: 80px 0px;
}

.under {
  color: #ff8100;
  font-family: "Play", sans-serif;
  font-weight: 600;
}

/* ----Globle-Style---- */

/* ===Header-Section=== */

header {
  position: sticky;
  z-index: 999;
  background-color: #fff;
  left: 0;
  width: 100%;
}

.top-bar {
  padding: 8px 0px;
  position: relative;
  background-color: #ff8100;
}
.top-bar::after{
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ff8100;
  content: "";
  height: 100%;
  width: 78.5%;
  clip-path: polygon(0 0,100% 0,100% 100%,1% 100%);
}
.top-left ul {
  padding: 0;
  position: relative;
  z-index: 3;
  margin: 0;
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: flex-end;
}

.top-left ul li {
  margin: 0px 5px;
}

.top-left ul li a {
  height: 40px;
  width: 40px;
  display: flex;
  transition: .5s;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  align-items: center;
  justify-content: center;
}

.top-left ul li a {
  background-color: #000000;
}

.top-left ul li a:hover {
  color: #000000;
  background-color: #fff;
  border-radius: 20%;
}

.top-right {
  display: flex;
  color: #fff;
  margin-left: 35px;
  position: relative;
  z-index: 3;
  align-items: center;
}

.top-right .phone {
  margin-right: 20px;
}

.top-right a {
  color: #fff;
}

header .book {
  position: absolute;
  top: 0;
  left: 0;
  width: 24%;
  clip-path: polygon(82% 0, 98% 46%, 82% 100%, 0% 100%, 0 50%, 0% 0%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  height: 100%;
}
header .book img{
    width:200px;
}

/* ------menu-------- */
.menu {
  position: relative;
  overflow-x: clip;
  background-color: #000000;
}
.menu .navbar-brand{
  display: none;
}
.dropdown:hover .dropdown-menu {
  display: block;
  width: 250px;
}

.dropdown-menu {
  padding: 0;
  background-color: #ff8100;
}

.dropdown-menu a {
  color: #fff;
}

.menu img {
  width:220px;
}

.menu .navbar-nav {
  display: flex;
  align-items: center;
  width: 100%;
  margin-left: 30px;
}

.menu .navbar {
  padding: 5px 0px;
}

.menu .navbar-expand-lg .navbar-nav .nav-link {
    position: relative;
    padding: 15px 20px;
    text-transform: capitalize;
    transition: .5s;
    font-weight: 500;
    color: #fff;
}

.menu .navbar-expand-lg .navbar-nav .nav-link:hover,
.menu .navbar-expand-lg .navbar-nav .nav-link.active {
  color: #ff8100;
}

.menu .navbar-expand-lg .navbar-nav .nav-link::before {
  left: 10px;
  top: 44%;
  content: "";
  transition: .5s;
  height: 7px;
  width: 7px;
  display: none;
  position: absolute;
  transform: translate(-50%,-50%);
  background-color: #000000;
}
.menu .navbar-nav{
  flex: 1;
}
.menu .navbar-expand-lg .navbar-nav .nav-link:hover:before {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: round 1.4s linear infinite alternate;
}

.menu .navbar-expand-lg .navbar-nav .nav-link.active::before {
  animation: round 1.4s linear infinite alternate;
  display: flex;
  align-items: center;
  justify-content: center;
}


@keyframes round {
  0% {
    transform: rotate(0deg) scale(0) ;
    border-radius: 100%;
  }

  100% {
    transform: rotate(360deg) scale(1);
    border-radius: 0;
  }
}
.menu .container-fluid{
  padding: 0px;
}
.menu .navbar .iso{
  display: flex;
  align-items: center;
  font-size: 18px;
  padding: 7px 20px;
  border-radius: 5px;
  background-color: #ff8100;
  color: #fff;
  font-weight: 500;
}
.menu .navbar .iso i{
  padding-right: 10px;
}
.menu .navbar .iso a{
  color: #fff;
}
.menu .sec-btn{
  margin-top: 0;
  border: none;
}
/* ===Header-Section=== */

/* ---Hero-Section--- */

.hero-section .hero-slide{
  padding: 130px 0px;
  background-image: linear-gradient(#2a3d4daf,#2a3d4daf),url(../images/hero1.jpg);
  background-size: cover;
  color: #fff;
  background-position: center;
}
.hero-section .hero-slide2{
  background-image: linear-gradient(#2a3d4dbb,#2a3d4dbb),url(../images/hero2.jpg);
}

.hero-section .hero-slide h2{
  font-size: 45px;
  font-weight: 700;
  line-height: 65px;
}
.hero-section .hero-slide .hero-text img{
  margin: auto;
  margin-bottom: -25px;
}
.hero-section .hero-slide ul{
  padding: 0;
  list-style: none;
  margin: 0;
}
.hero-section .hero-slide ul li{
  margin: 10px 0px;
  display: flex;
}
.hero-section .hero-slide ul li i{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 25px;
  background-color: #ff8100;
  border-radius: 100%;
  margin-right: 10px;
}
/* ---Hero-Section--- */

/* ---About-Section--- */

.about-section .as-text h1{
  font-weight: 700;
  font-size: 38px;
  text-transform: capitalize;
}
.about-section .as-text p{
  margin-bottom: 0;
}
.about-section .as-img1 img{
  border-radius: 5px;
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.about-section .sec-btn:hover:before{
  background-color: #fff;
}
.about-section .sec-btn:hover span{
  color: #ff8100;
}
/* ---About-Section--- */

/* ---Other-Section--- */

.other-section .os-img img{
  border-radius: 10px;
  height: 500px;
  width: 100%;
  object-fit: cover;
}
.other-section .os-head{
  text-align: center;
  margin-bottom: 30px;
}
.other-section .os-text p{
  font-size: 17px;
}
/* ---Other-Section--- */

/* ---Service-Section--- */

.service-section .ser-head{
  text-align: center;
}
.service-section .ser-head .under{
  font-family: "Cabin", sans-serif;
  color: #000;
}
.service-section .ser-box{
  padding: 15px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0px 10px 20px #b5b04723;
  margin-top: 20px;
  border: 1px solid #b5b0472f;
}
.service-section .ser-box .ser-img{
  margin-bottom: 10px;
}
.service-section .ser-box .ser-img img{
  border-radius: 5px;
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.service-section .ser-box p{
  margin-bottom: 0;
}
.service-section .ser-box h4{
  font-weight: 900;
  font-size: 22px;
}
.service-section .ser-box .sec-btn{
  padding: 10px 20px;
  font-size: 18px;
}
 .ser-right h6{
  font-size: 22px;
  margin-top: 20px;
  font-weight: 500;
}
/* ---Service-Section--- */

/* ===hotel-section=== */

.hotel-section .hs-head{
  text-align: center;
}
.hotel-section .hs-head h3{
  font-weight: 700;
}
.hotel-section .hs-box{
  padding: 15px;
  border-radius: 4px;
  border: 1px solid #b5b0473b;
  margin-top: 15px;
  transition: .5s;
  background-color: #fff;
  box-shadow: 0px 15px 30px 0px #b5b04721;
}
.hotel-section .hs-box:hover{
  background-color: #ff8100;
  color: #fff;
}
.hotel-section .hs-box .hs-img{
  border-radius: 5px;
  overflow: hidden;
}
.hotel-section .hs-box .hs-img img{
  border-radius: 5px;
  transition: .4s;
  height: 220px;
  width: 100%;
  object-fit: cover;
}
.hotel-section .hs-box:hover .hs-img img{
  transform: scale(1.1);
}
.hotel-section .hs-box h4{
  font-size: 20px;
  font-weight: 700;
  margin-top: 15px;
  text-align: center;
}
/* ===hotel-section=== */

/* ---Part-Section--- */
.parts-section .part-head {
  text-align: center;
}

.parts-section h4 {
  font-weight: 700;
  color: #e30012;
}

.parts-section .part-box {
  text-align: center;
  padding: 20px;
  margin: 10px;
  border-radius: 5px;
  background-color: #eee;
}

.parts-section .part-box .icon img {
  margin: auto;
}

.parts-section .part-box h5 {
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 10px;
}

/* ---Part-Section--- */

/* ===destionation-section=== */

.destionation-section .ds-head{
  text-align: center;
}
.destionation-section .ds-box{
  padding: 15px;
  border-radius: 5px;
  transition: .4s;
  border: 1px solid #eee;
  background-color: #eee;
}
.destionation-section .ds-box:hover{
  background-color: #fff;
  border-color: #ff8100;
}
.destionation-section .ds-box .ds-img{
  overflow: hidden;
  border-radius: 5px;
}
.destionation-section .ds-box .ds-img img{
  border-radius: 5px;
  height: 220px;
  width: 100%;
  object-fit: cover;
  transition: .4s;
}
.destionation-section .ds-box:hover .ds-img img {
  transform: scale(1.1);
}
.destionation-section .ds-box h6{
  font-size: 20px;
  color: #ff8100;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 15px;
}
.destionation-section .ds-box:hover p{
  color: #000;
}
/* ===destionation-section=== */


/* ----Plans-section-start---- */
.plan-head{
  text-align: center;
}
.plan-box{
  border-radius: 4px;
  border: 1px solid #2d3c4f;
  transition: .5s;
  position: relative;
}
.plan-box::after{
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(../images/plan.png);
  height: 200px;
  width: 200px;
  transform: rotate(180deg);
  content: "";
}
.plan-box:hover{
  background-color: #fff;
  box-shadow: 0px 10px 20px 0px #050f2d2c;
  border-color: #fff;
}
.plan-box h4{
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  background-color: #2d3c4f;
  color: #fff;
  padding:20px;
  border-radius: 4px 4px 0px 0px;
}
.plan-box h3{
  text-align: center;
  margin-bottom: 0px;
}
.plan-box h3{
  margin: 16px 0px;
  font-size: 25px;
}
.plan-box .plan-list{
  padding: 20px;
  text-align: center;
  padding-top: 10px;
}
.plan-box .plan-list ul{
  max-height: 235px;
  min-height:160px;
  overflow: auto;
}
.plan-box .plan-list ul::-webkit-scrollbar{
  width: 0px;
}
.plan-box:hover .plan-list ul::-webkit-scrollbar{
  width: 5px;
  background-color: #cfcccc;
  border-radius: 40px;
}
.plan-list ul::-webkit-scrollbar-thumb{
  background-color: #000;
  border-radius: 30px;
}
.plan-box .plan-list ul li{
  border-bottom: 1px solid #2d3c4f;
  padding: 7px 0px;
  text-align: left;
  margin: 0px;
}
.plan-box .plan-list ul li:last-child{
  border-bottom: none;
}
.plan-box .plan-list > span{
  display: block;
  margin-top: 10px;
}
.plan-list ul {
  padding: 0;
  list-style: none;
  text-align: left;
}
.plan-list ul li {
  display: flex;
  align-items: center;
}
.plan-list ul li i {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  font-size: 14px;
  width: 25px;
  background-color: #2d3c4f;
  color: #fff;
  border-radius: 100%;
}
.plan-list ul li span {
  flex: 1;
}
.plan-box .sec-btn{
  margin-top: 0px;
  border: none;
  margin-left: 20px;
}
.plan-item{
  position: relative;
  padding:12px 20px;
  width: 90%;
  border-radius: 5px;
  border: 1px solid rgb(143, 139, 139);
  margin: 25px auto;
  margin-bottom: 10px;
}
.plan-item::after{
  position: absolute;
  top: -13px;
  left: 15px;
  background-color: #fff;
  content: "GST Included";
}
.plan-item span b {
  color: #ff8100;
}
.plan-item > b{
    font-size:12px;
}
.plan-item > span{
  font-size: 18px;
  line-height: 20px;
}
.plan-item b span{
  color: #ff8100;
  font-weight: 400;
}

#dent_paint,#car_detalint,#windshield{
  display: none;
}

#dent_paint.new-list,#car_detalint.new-list,#windshield.new-list,#car_service1.new-list{
  display: flex;
}

.plans-list ul{
  display: flex;
  align-items: center;
  justify-content: center;
}
.plans-list ul li{
  padding: 10px 20px;
  background-color: #ff8100;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  transition: .5s;
  margin: 10px ;
}
.plans-list ul li:hover,.plans-list ul li.active{
  background-color: #2d3c4f;
  border-radius: 5px;
}

/* ----plans-section-end---- */

/* ===Review-Section=== */

.review-section{
  position: relative;
}
.review-section .rs-head{
  text-align: center;
}
.review-section .review-box{
  padding:30px 25px;
  position: relative;
  border-radius: 10px;
  margin: 15px;
  border-top: none;
  background-color: #fdfdfd;
  box-shadow: 0px 5px 10px 0px #41404011;
}
.review-section .review-box::after{
  position: absolute;
  top: 30px;
  right: 30px;
  width: 200px;
  height: 200px;
  opacity: .2;
  background-position:top;
  background-repeat: no-repeat;
  z-index: 2;
  background-color: #fff;
  background-size: 100% 100%;
  content: "";
  background-image: url(../images/wheel-1-min.png);
}
.review-section .review-box::before{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #ebedef;
  border-radius: 0px 0px 10px 10px;
  content: "";
}
.review-box .user-info{
  display: flex;
  margin-bottom: 20px;
  align-items: center;
}
.review-box .user-info img{
  width: 80px;
}
.review-box .user-info .text{
  margin-left: 20px;
}
.review-box .user-info .text h5{
  font-weight: 600;
  color: #ff8100;
  font-size: 20px;
  margin-bottom: 0;
}
.review-box q{
  line-height: 28px;
}
.review-box .ratting{
  margin-top: 10px;
  text-align: right;
  color: #ff8100;
  letter-spacing: 2px;
}

/* ===Review-Section=== */

/* ---Counter-Section--- */
.counter-section{
    position:relative;
}
.counter-section .container {
  margin-top:-60px;
  box-shadow:0px 10px 20px 0px #2a3d4d10;
  background-color:#fff;
}
.service-box .ser-item .add-cart a b.old{
  display: none;
}
.service-box .ser-item .add-cart a b{
  cursor: pointer;
}
.cont-box {
  padding: 30px 20px;
  text-align: center;
  margin-top: 20px;
}

.cont-box img {
  width: 60px;
}

.cont-box h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 10px;
  color: #ff8100;
  position: relative;
  line-height: 30px;
}

.cont-box p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}

.cont-box h2::after {
  content: "K";
  color: #3e3e40;
  font-size: 20px;
}

.count-box2 h2::after {
  content: "+";
  color: #3e3e40;
  font-size: 40px;
  padding-left: 5px;
}

/* ---Counter-Section--- */

/* ---Form-Section-Start--- */

.form-section{
  position: relative;
  z-index: 9999;
  padding: 70px 0px;
  background-color: #ff8100;
}

.form-section .faq-head {
  text-align: center;
  margin-bottom: 30px;
}

/*.form-section .form-box {*/
/*  padding: 30px 20px;*/
/*  background-color: #eee;*/
/*  border-radius: 20px;*/
/*}*/

.faq-section .parts .part-img{
  margin:5px 0px;
}
.faq-section .parts .part-img img{
  width: 120px;
}
.contact-section .contact{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  color: #fff;
  border-radius: 10px;
  height: 100%;
  background-position: center;
  flex-direction: column;
  background-image: linear-gradient(#2a3d4db7,#2a3d4db7),url(../images/popup.jpg);
  background-size: cover;
}
.contact-section .contact-box{
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.contact-section .contact-box .text{
  flex: 1;
}
.contact-section .contact-box .text a{
  color: #fff;
}
.contact-section .contact-box .text h5{
  color: #ff8100;
  font-weight: 600;
}
.contact-section .contact-box .icon{
  height: 80px;
  width: 80px;
  background-color: #ff8100;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-right: 20px;
}
.contact-section .container-fluid{
  width: 92%;
}
.contact-section .map{
  height: 100%;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 10px 20px 0px #2d3c4f1e;
}
.contact-section .map iframe{
  border-radius: 10px;
}

/* ----FAQ-Section-End---- */

/* ------footer-section-start------- */

.footer-section {
  padding-top: 30px;
  background-color: #000000;
  position: relative;
  background-size: cover;
  z-index: 9999;
  background-position: center;
  color: #fff;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-box {
  position: relative;
  margin-top: 20px;
  z-index: 4;
}
.footer-box .map{
  height: 250px;
  border-radius: 5px;
}
.footer-box .map iframe{
  border-radius: 5px;
}
.footer-logo img {
  width: 200px;
}

.footer-box .social {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  list-style: none;
}

.footer-box .social li {
  margin: 0px 5px;
}

.footer-box .social li a {
  height: 40px;
  width: 40px;
  display: flex;
  transition: .5s;
  color: #fff;
  border-radius: 5px;
  font-size: 18px;
  align-items: center;
  justify-content: center;
}

.footer-box .social li a {
  background-color: #ff8100;
}


.footer-box .social li a:hover {
  color: #ff8100;
  background-color: #fff;
  border-radius: 100%;
}

.footer-box .footer-title h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ff8100;
  font-weight: 700;
  position: relative;
}

.footer-box .footer-title h4::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  width: 50px;
  border-radius: 10px;
  height: 3px;
  content: '';
}

.footer-link ul li a:hover {
  color: #ff8100;
}

.footer-box ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-box ul li {
  margin: 10px 0px;
}

.footer-box ul li a {
  color: #fff;
}

.footer-link2 ul li {
  display: flex;
  margin: 15px 0px;
  align-items: center;
}

.footer-link2 ul li a:hover {
  color: #ff8100;
}

.footer-link2 ul li i {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  transition: .5s;
  margin-right: 10px;
  border-radius: 4px;
  background-color: #ff8100;
  font-size: 20px;
}
.footer-link2 ul li:hover i{
  background-color: #fff;
  border-radius: 100%;
  color: #ff8100;
}
.footer-link2 ul li span{
  flex: 1;
}

.footer-section .copy-right {
  text-align: center;
  padding: 10px;
  z-index: 7;
  background-color: #ff8100;
  margin-top: 30px;
  position: relative;
}
.footer-box .f-img{
  margin: 15px 0px;
}
.footer-section .copy-right p {
  margin-bottom: 0;
}

.footer-section .copy-right p a {
  color: #000;
  font-weight: 600;
}

/* ------footer-section-end-------- */

/*---Choose-Section===*/

.choose-section{
    position:relative;
}
.choose-section .choose{
    margin-bottom:30px;
}
.choose-section::after{
    position:absolute;
    top:0;
    left:0;
    height:100%;
    background-size:cover;
    width:45%;
    content:"";
    background-image:url(../images/choose.png);
}
.choose-section .ch-box{
    display:flex;
    align-items:center;
}
.choose-section .ch-box .text{
    flex:1;
    margin-left:20px;
}
.choose-section .ch-box h4{
    color:#ff8100;
    font-weight:600;
    font-size:23px;
}
/*---Choose-Section===*/
/* ===Banner-Section=== */

.banner-section{
  padding: 40px 0px;
  background-image:linear-gradient(#2a3d4db2,#2a3d4db2),url(../images/banner.jpg);
  /*background-attachment: fixed;*/
  /*background-repeat: no-repeat;*/
  background-position: bottom;
  background-size: contain;
  text-align: center;
  color: #fff;
}
.banner-section .banner-title h2{
  margin: 0;
}
.banner-section .banner-title ul{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  list-style: none;
  margin: 0;
  font-size: 18px;
}
.banner-section .banner-title ul li{
  margin: 0px 10px;
}
.banner-section .banner-title ul li a{
  color: #ff8100;
  transition: .5s;
}
.banner-section .banner-title ul li:hover a{
  color: #fff;
}

/* ===Banner-Section=== */

/* -----Gallery-Page-start----- */

.gallery-section .gs-head h2 {
  margin: 0;
  text-align: center;
}

.gallery-section .gallery-box {
  position: relative;
  margin-top: 20px;
}

.gallery-box a {
  position: relative;
  border-radius: 5px;
    height: 328px;
    display:block;
    border:1px solid #000;
}

.gallery-box a img {
  width: 100%;
  transition: .5s;
  height:100%;
  object-fit: cover;
}

.gallery-box a:hover img {
  transform: scale(.9);
}

/* ------gallery-Page-end------- */

/* ===Mission-Section=== */

.mission-section .ms-box{
  background-color: #eee;
  border-radius: 5px;
  padding: 20px;
}
.mission-section .ms-box .icon{
  height: 100px;
  width: 100px;
  background-color: #ff8100;
  display: flex;
  align-items: center;
  border-radius: 5px;
  margin-bottom: 15px;
  justify-content: center;
}
/* ===Mission-Section=== */


.values-section .vs-box{
  padding: 20px;
  border: 1px solid #ff8100;
  height: 170px;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 0px 10px 20px #2a3d4d10;
}
.values-section .vs-box h5{
  color: #ff8100;
}
/* ===contact-section=== */



.quote-form {
  background-color: #2d3c4f;
  padding:30px 20px;
  border-bottom: 1px solid #ff8100;
  color: #fff;
  border-radius: 10px;
}

.quote-form h2 {
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
}

.quote-form .f-group input,
.quote-form .f-group textarea,
.quote-form .f-group select {
  width: 100%;
  padding: 15px 20px;
  margin: 4px 0px;
  border: none;
  outline: none;
  border-radius: 4px;
}
.quote-form .f-group label{
  color: #ff8100;
  margin-top: 8px;
}
.quote-form .f-group select{
  padding: 16px 20px;
}
.quote-form button {
  border: none;
  outline: none;
}
.quote-form .f-group .sec-btn:hover::before{
  background-color: #fff;
}
.quote-form .f-group .sec-btn:hover span{
  color: #ff8100;
}
.form-section .parts .part-img{
  padding: 10px;
  border-radius: 5px;
  margin: 6px 0px;
  height: 65px;
  text-align: center;
  width: 100%;
  background-color: #fff;
}
.form-section .parts .part-img img{
  height: 100%;
  
}
/* ===contact-section=== */

/* ===Map-Section=== */

.map-section .map{
  height: 400px;
  margin-bottom: 0;
}

/* ===Map-Section=== */

/* ===Work-Section=== */

.work-section .ws-head{
  text-align: center;
}
.work-section .ws-box{
  position: relative;
  border-radius: 7px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
}
.work-section .ws-box img{
  height: 400px;
  width: 100%;
  object-fit: cover;
  border-radius: 7px;
}
.work-section .ws-box::after{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  content: "";
  background-color: #2a3d4dbb;
}
.work-section .ws-box .text{
  position: absolute;
  top: 40%;
  z-index: 3;
  transform: rotateX(-50%,-50%);
  left: 28%;
}
.work-section .ws-box .text h5{
  font-size: 22px;
}
/* ===Work-Section=== */

/* ===Gallery-Section=== */
 .gs-head{
  text-align: center;
}
.gs-box{
  margin-top: 20px;
}
 .gs-box a {
  height: 250px;
  width: 100%;
  display: block;
  border-radius: 5px;
}
.gs-box a img{
  height: 100%;
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
}
/* ===Gallery-Section=== */

/* ===Cocktail-Section=== */

.cs-box a img{
  height: 500px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.cs-box2 a img{
  height: 240px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}
/* ===Cocktail-Section=== */

/* ===Wedding-Section=== */

.wedding-section .ws-box a img{
  height: 300px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.wedding-section .ws-box{
  margin-bottom: 20px;
}
/* ===Wedding-Section=== */

/* ===Corporate-Section=== */

.corporate-section .cr-img img{
  border-radius: 10px;
  width: 100%;
}

/* ===Corporate-Section=== */

/*===PopUp-Section-Start===*/

.popup-section .t-modle {
  height: 100%;
  width: 100%;
  background-color: #262424a3;
  align-items: center;
  display: none;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  animation: toper 1.5s ease-in;
  left: 0;
  z-index: 99999;
}

.t-modle .m-box {
  animation: top 1s ease-in;
  width: 60%;
}


.t-modle .m-box .quote {
  padding: 30px;
}
.t-modle .m-box img{
  border-radius: 5px;
}
.login-form .login-content {
    padding: 30px;
    text-align: center;
    background-color: #eee;
    position: relative;
}

.login-form .login-content h3 {
  font-weight: 700;
  margin-bottom: 15px;
  text-align: left;
  display: flex;
  font-size: 22px;
  justify-content: space-between;
  align-items: center;
}

.login-form .login-content h3 i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background: #2a3d4ded;
    border-radius: 100%;
    color: #fff;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
}
.login-form .q-form p{
    text-align:left;
}
.login-content input {
  width: 100%;
  outline: none;
  margin:0;
  border: none;
}

.login-content .input-text {
  display: flex;
  border-radius: 5px;
  padding: 13px 10px;
  margin-bottom: 15px;
  background-color: #fff;
  align-items: center;
  border: 1px solid #2a3d4ded;
}

.login-content .input-text i {
  padding-right: 8px;
  font-size: 18px;
  color: #2a3d4ded;
}

.login-form .login-content label {
  font-weight: 600;
  padding-bottom: 5px;
  display: inline-block;
}

.login-form .login-content form {
  text-align: left;
}

.login-form .login-content button {
  border: none;
}

@keyframes top {
  0% {
    margin-top: -100%;
  }

  100% {
    margin-top: 0%;
  }
}

@keyframes toper {
  0% {
    margin-right: -100%;
    opacity: 0;
  }

  100% {
    margin-right: 0%;
    opacity: 1;
  }
}


/* ---PopUp-Section-End--- */

/*===Price-Section-Start===*/

.price-section .p-modle {
  height: 100%;
  width: 100%;
  background-color: #262424a3;
  align-items: center;
  display: none;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  animation: toper 1.5s ease-in;
  left: 0;
  z-index: 99999;
}
.price-section .p-modle.pop-new, .popup-section .t-modle.pop-new{
  display: flex;
}
.p-modle .m-box {
  animation: top 1s ease-in;
  width: 60%;
}


.p-modle .m-box .quote {
  padding: 30px;
}
.p-modle .m-box img{
  border-radius: 5px;
}

.p-modle .login-content input{
    padding:13px 20px;
    border:1px solid #ff8100;
    border-radius:3px;
    background-color:transparent;
}
.p-modle .login-content label{
    margin-top:8px;
}

/* ---Price-Section-End--- */

/* ===Details-Section=== */
.details-section{
  margin-top: 40px;
}
.details-section .container-fluid{
  width: 95%;
}

.details-section .ser-left{
  position: sticky;
  top: 0;
}
.details-section .quote-form {
  border-radius: 5px;
  padding: 20px;
}
.details-section .quote-form .sec-btn:hover{
    border:1px solid #eee;
}
.details-section .quote-form .f-group input,.details-section .quote-form .f-group select,.details-section .quote-form .f-group textarea{
  margin-top: 10px;
}
.details-section .quote-form h2{
  font-size: 30px;
}
.details-section .dsl-list {
  margin-bottom: 30px;
  border: 1px solid #ff8100;
  padding: 15px;
  border-radius: 4px;
}
.details-section .dsl-list h4{
  text-transform: uppercase;
  position: relative;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}
.details-section .dsl-list h4::after{
  position:absolute ;
  bottom: -3px;
  left: 0;
  height: 3px;
  width: 50px;
  background-color: #ff8100;
  content: "";
}
.details-section .dsl-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.details-section .dsl-list ul li {
  border-radius: 5px;
  background-color: #eee;
  margin: 10px 0px;
}

.details-section .dsl-list ul li a {
  display: flex;
  border-radius: 5px;
  font-size: 18px;
  align-items: center;
  position: relative;
  padding: 8px 10px;
  justify-content: space-between;
}
.details-section .dsl-list ul li a::after{
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  width: 0px;
  height: 100%;
  background-color: #ff8100;
  content: "";
  transition: .4s;
}
.dsl-list ul li a:hover:after,.dsl-list ul li.active a::after{
  width: 100%;
}
.dsl-list ul li a.active::after{
  width: 100%;
}
.dsl-list ul li a span{
  position: relative;
  z-index: 3;
}
.dsl-list ul li a i{
  height: 40px;
  width: 50px;
  background-color: #ff8100;
  border-radius: 5px;
  display: flex;
  align-items: center;
  transition: .5s;
  position: relative;
  z-index: 3;
  font-size: 20px;
  justify-content: center;
  color: #000;
}
.dsl-list ul li a:hover i{
  background-color: #000;
  color: #fff;
}

.dsl-list ul li a:hover,
.dsl-list ul li.active a{
  color: #fff;
}
.dsl-list ul li.active i{
  background-color: #000;
  color: #fff;
}
.ser-right h1{
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 20px;
}
.ser-right p{
  margin-top: 20px;
}
.ser-right .ser-img img{
  border-radius: 10px;
  height: 400px;
  object-fit: cover;
  width: 100%;
}
.ser-right .ser-box {
  padding: 20px;
  border: 3px double #ff8100;
  border-radius: 5px;
  height: 100%;
}
.ser-right .ser-box ul{
  padding: 0;
  margin: 0;
  list-style: none;
}
.ser-right .ser-box ul li{
  margin: 10px 0px;
  display: flex;
  align-items: center;
}
.ser-right .ser-box ul li i{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 25px;
  border-radius: 100%;
  margin-right: 20px;
  color: #fff;
  background-color: #2d3c4f;
}
.ser-right .ser-box ul li span{
  flex: 1;
}
.ser-right .ser-box h5{
  font-weight: 700;
  font-size: 20px;
  color: #ff8100;
}
 .details-section .slider-nav{
  margin-bottom: 30px;
 }
 .details-section .slick-arrow{
  display: flex;
  position: absolute;
  height: 50px;
  transition: .3s;
  width: 50px;
  background-color: #000;
  color: #fff;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  top: -60px;
  right: 0;
 }
 .details-section .slick-arrow:hover{
  background-color: #ff8100;
 }
 .details-section .slick-arrow.slick-prev{
  right: 70px;
 }
 .details-section .slick-arrow::after{
  font-size: 20px;
  font-family: "FontAwesome";
  content: "\f054";
 }
 .details-section .slick-arrow.slick-prev::after{
  content: "\f053";
 }
.details-section .ser-list{
  padding: 20px;
  background-color: #eee;
  border-radius: 4px;
  text-align: center;
  transition: .5s;
  cursor: pointer;
  margin: 10px;
}
.details-section .ser-list:hover,.details-section .ser-list.slick-current{
  background-color: #000;
  color: #fff;
}
.details-section .ser-list img{
  margin: auto;
  margin-bottom: 10px;
}
.service-box .ser-item{
  background-color: #fff;
  border: 3px double #3e3e40;
  margin-bottom: 20px;
  padding: 20px;
  max-height:350px;
  overflow:auto;
  box-shadow: 0px 10px 20px 0px #ff81001a;
}
.service-box .ser-item::-webkit-scrollbar{
    width:4px;
}
.service-box .ser-item::-webkit-scrollbar-thumb{
    background-color:#000;
    width:3px;
}
.service-box .ser-item .service-img img{
  height: 220px;
  width: 100%;
  object-fit: cover;
}
.service-box .ser-item .service-img p{
margin-top: 20px;
font-size: 20px;
}
.service-box .ser-item .service-img p del{
color: #87878a;
font-weight: 300;
}
.service-box .ser-item p,.service-box .ser-item h4{
margin-bottom: 0;
}
.service-box .ser-item .ser-text p{
color: #000000;
}
.service-box .ser-item ul{
padding: 0;
list-style: none;
margin: 0;
height: 145px;
margin-top: 10px;
overflow-y: hidden;
}
.service-box .ser-item ul.show-list{
overflow: visible;
height: auto;
}
.service-box .ser-item ul li{
display: flex;
align-items: center;
}
.service-box .ser-item ul li i{
color: #ff8100;
font-size: 20px;
padding-right: 10px;
}

.service-box .ser-item .add-cart{
  display: flex;
  justify-content: space-between;
}
.service-box .ser-item .add-cart .sec-btn{
  border: none;
}
.service-box .ser-item .add-cart a b{
  color: #ff8100;
  border-bottom: 1px solid #000000;
}
.service-box.tyres .ser-item .service-img img{
  height: auto;
}

@media screen and (max-width:1024px) {
  .about-section .as-text h1 {
    font-size: 30px;
}
.choose-section::after {
    width: 68%;
    opacity:.5;
}
.choose-section .choose{
    position:relative;
    z-index:3;
}
h2{
  font-size: 30px;
}
.form-section .parts .part-img {
  height: 55px;
}
.details-section .ser-list{
  height: 160px;
}
.review-section .review-box{
  margin: 8px;
}
.review-box .user-info img {
  width: 60px;
}
.destionation-section .ds-box .ds-img img {
  height: 200px;
}

.hero-section .hero-slide h2 {
  font-size: 45px;
}
.category-section .slick-arrow, .review-section .slick-arrow {
  left: 42%;
}
.form-box .parts{
  margin-top: 30px;
}
.top-right .phone{
  margin-right: 10px;
}
.values-section .vs-box {
  height: 220px;
}
}

@media screen and (max-width:992px) {
  .top-left,.testimonial-section::after{
    display: none;
  }
  .counter-section .container{
      background-color:#eee;
      margin-top:0px;
  }
  .choose-section h2{
      font-size:25px;
  }
  .counter-section .cont-box{
      background-color:#fff;
  }
  .top-right {
    margin-left: 180px;
}
.choose-section::after {
    width: 100%;
    opacity:.2;
}
header .book {
  width: 27%;
}
header .book img {
  width: 140px;
}
.m-100 {
  margin-bottom: 40px;
}
.banner-section {
  padding: 70px 0px;
}
.mission-section .ms-box{
  margin-top: 20px;
}
.p-100 {
  padding: 50px 0px;
}
.quote-form{
  margin-top: 30px;
}
.map-section .map {
  height: 300px;
}
.review-section,.category-section{
    margin-bottom:100px;
}
.form-section .parts .part-img {
  height: 75px;
}
}

@media screen and (max-width:580px) {
  .top-right .email,header .book{
    display: none;
  }
 .hero-section .hero-slide{
    height: 580px;
    padding: 100px 0px;
  }
  .service-box .ser-item {
    max-height: 620px;
}
  .plans-list ul{
    flex-wrap: wrap;
  }
  .hero-section .hero-slide h2 {
    font-size: 30px;
    line-height: 45px;
}
  .top-right {
    margin-left: 0px;
  }
  .menu{
    background-color: #000000;
  }
  .menu .navbar-nav {
    display: block;
    margin-left: 0px;
}
.menu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 5px 20px;
}
  .menu .navbar-brand {
    display: block;
}
.menu img {
  width: 130px;
}
.menu .navbar .iso{
  margin-top: 20px;
}
.menu .navbar-toggler{
  border: 3px double #ff8100;
}

.menu .navbar-toggler span{
  display: flex;
  align-items: center;
  color: #ff8100;
  justify-content: center;
}
.menu .navbar-toggler:focus{
  box-shadow: none;
}
.about-section .container-fluid {
  border-radius: 10px;
  padding: 20px;
}
.form-section .parts .part-img {
    height: 55px;
}
.about-section .as-text h1 {
  font-size: 24px;
}
.p-100 {
  padding: 50px 0px;
}
.category-section .slick-arrow, .review-section .slick-arrow {
  left: 37%;
}
.t-modle .m-box, .p-modle .m-box{
  width: 80%;
}
.destionation-section .ds-box {
  min-height: auto;
}
.banner-section {
  padding: 50px 0px;
}
.banner-section h2{
  font-size: 24px;
}
.values-section .vs-box {
  height: auto;
}
.contact-section .contact {
  padding: 20px;
}
.contact-section .contact-box .icon {
  height: 60px;
  width: 60px;
}
.contact-section .contact-box .icon img{
  width: 40px;
}
.banner-section h2 {
  font-size: 20px;
  margin-bottom: 0;
}
.banner-section .banner-title ul {
  font-size: 15px;
}
.banner-section .banner-title ul li{
  margin: 3px;
}
.ser-right h1 {
  font-size: 26px;
  margin-top: 20px;
}
.ser-right .ser-img img {
  height: auto;
}
.review-section{
    margin-bottom:100px;
}
}


/*---thank-Section-Start----*/

.thank {
  text-align: center;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.thank p {
  margin-bottom: 0;
}

.thank .icon img {
  width: 55%;
}

.thank ul {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.thank ul li a {
  height: 40px;
  width: 40px;
  background: #179bd7;
  color: #fff;
  display: flex;
  align-items: center;
  margin: 5px;
  font-size: 20px;
  border-radius: 5px;
  justify-content: center;
}

/*===Error-SEction====*/

.error-section{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    height:100vh;
    background-color:#f1f5f9;
    text-align:center;
}
.error-section .error-img{
    width:70%;
    position:relative;
    margin:auto;
}
.error-section .error-img::after{
    position:absolute;
    bottom:0;
    right:0;
    height:22%;
    width:60%;
    background-color:#f1f5f9;
    content:"";
}
.error-section .error{
    margin-top:-70px;
    position:relative;
    z-index:44;
}
.error-section .error h2{
    margin-bottom:0px;
}
/*===Error-SEction====*/


@media screen and (max-width:1024px) {
  .thank {
    margin-top: 50px;
  }
}

@media screen and (max-width:768px) {
  .thank {
    margin: 50px 0px;
    height: auto;
  }
  .error-section .error-img {
    width: 100%;
}

  .thank .icon img {
    width: 60%;
  }
}

@media screen and (max-width:580px) {
  .thank {
    margin: 20px 0px;
  }
    .error-section .error {
    margin-top: -40px;
}
}

/*---thank-Section-end----*/