@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");
:root {
  --themesbg:#264350;
  --blueBg:#680091;
  --gBg:linear-gradient(-90deg, #fee6c2, #e2e1f2);
  --tbg:#FFC000;
  --dbg:#171717;
  --wbg:#fff;
  --hFonts:"Poppins", sans-serif;
  --bc:#060548;
  --greenBg:#007075;
  --bg1:#750000;
  --text:#050038;
  --lightBlueBgColor:#e9ecff;
}

body {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--hFonts);
  font-weight: 600;
}

.headerStyles .headTop {
  background: var(--dbg);
  color: var(--wbg);
  padding: 0.2em 0;
}
.headerStyles .headTop a {
  color: var(--wbg);
}
.headerStyles .navbar {
  padding: 0em 0;
}
.headerStyles .navbar .navbar-nav .nav-link {
  position: relative;
}
.headerStyles .navbar .navbar-nav .nav-link::before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.3s;
  top: 100%;
  position: absolute;
  left: 0;
  right: 0;
}
.headerStyles .navbar .navbar-nav .nav-link:hover::before {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    height: 0px;
    overflow: hidden;
    padding: 0px;
    top: 90px;
    transition: all 0.3s;
    min-width: 210px;
  }
  .dropdown:hover .dropdown-menu {
    display: block;
    top: 100%;
    height: inherit;
    opacity: 1;
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.bannerStyles .carousel-item img {
  height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.titleStyle {
  position: relative;
}
.titleStyle span {
  color: var(--themesbg);
  text-transform: uppercase;
  position: relative;
  padding-left: 60px;
  font-size: 1.2em;
  font-weight: 500;
}
.titleStyle span::before {
  width: 50px;
  top: auto;
  bottom: 7px;
  position: absolute;
  content: "";
  background-color: var(--themesbg);
  left: 0;
  height: 2px;
}
.titleStyle span::after {
  margin-top: 3px;
  width: 30px;
  left: 20px;
  position: absolute;
  content: "";
  background-color: var(--themesbg);
  top: 7px;
  height: 2px;
}
.titleStyle h1 {
  font-family: var(--hFonts);
  font-weight: 700;
  color: var(--tbg);
  margin-top: 0.2em;
  margin-bottom: 0.2em;
  font-size: 3em;
}
.titleStyle h2 {
  font-family: var(--hFonts);
  font-weight: bold;
  color: var(--tbg);
  font-size: 3em;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
}
.titleStyle h3 {
  font-family: var(--hFonts);
  font-weight: 700;
}

.darkTitle {
  max-width: 50%;
  margin: auto;
  text-align: center;
}
.darkTitle span {
  color: var(--themesbg);
}
.darkTitle h3 {
  font-family: var(--hFonts);
  font-weight: 700;
  color: #fff;
}
.darkTitle p {
  color: #fff;
}

.homeAbout {
  padding: 3em 0;
  position: relative;
}
.homeAbout p {
  text-align: justify;
}
.homeAbout img {
  border-radius: 0.4em;
  z-index: 3;
  max-height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.homeAbout .col-md-6 {
  position: relative;
}
.homeAbout .pageImgbox {
  max-width: 550px;
  height: auto;
  float: left;
  margin-right: 1em;
  margin-bottom: 1em;
}

.single-taxi-one {
  position: relative;
  text-align: center;
  border-style: solid;
  border-width: 2px;
  border-color: #f3f3f3;
  border-radius: 10px;
  padding-top: 50px;
  padding-bottom: 50px;
  z-index: 1;
}
.single-taxi-one .inner-content {
  position: relative;
  z-index: 10;
}
.single-taxi-one .inner-content img {
  width: 100%;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-taxi-one::before {
  transform-origin: bottom center;
  border-top: 2px solid #FFC000;
  border-bottom: 2px solid #FFC000;
  transform: scale(0, 1);
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  transition: all 0.4s ease;
  border-radius: 10px;
}
.single-taxi-one::after {
  transform-origin: left center;
  border-left: 2px solid #FFC000;
  border-right: 2px solid #FFC000;
  transform: scale(1, 0);
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  transition: all 0.4s ease;
  border-radius: 10px;
}
.single-taxi-one:hover::before {
  transform: scale(1, 1);
}
.single-taxi-one:hover::after {
  transform: scale(1, 1);
}
.single-taxi-one ul {
  margin: 15px 0;
  list-style: none;
  padding: 0 70px;
}
.single-taxi-one ul li {
  display: flex;
  justify-content: space-between;
  color: #717171;
  font-size: 16px;
}
.single-taxi-one h3 {
  margin-top: 1em;
  font-weight: bold;
}

.btnBorder {
  border-color: var(--themesbg) !important;
  color: var(--themesbg) !important;
  padding: 0.7em 3em;
  border-radius: 4px;
  text-transform: uppercase;
}
.btnBorder::after {
  content: "\f105";
  font-family: "Line Awesome Free";
  font-weight: 900;
  opacity: 0;
  display: inline-block;
  transition: transform 250ms;
  position: absolute;
}
.btnBorder:hover {
  background-color: var(--themesbg) !important;
  color: #fff !important;
}
.btnBorder:hover::after {
  opacity: 1;
  transform: translateX(8px);
}

.btnDark {
  border-color: var(--themesbg) !important;
  color: var(--themesbg) !important;
  background-color: var(--themesbg) !important;
  padding: 0.7em 3em;
  border-radius: 4px;
  text-transform: uppercase;
  color: #fff !important;
}
.btnDark::after {
  content: "\f105";
  font-family: "Line Awesome Free";
  font-weight: 900;
  opacity: 0;
  display: inline-block;
  transition: transform 250ms;
  position: absolute;
}
.btnDark:hover {
  background: var(--wbg) !important;
  color: var(--themesbg) !important;
}
.btnDark:hover::after {
  opacity: 1;
  transform: translateX(8px);
}

.btnLight {
  border-color: var(--lightBlueBgColor) !important;
  color: var(--themesbg) !important;
  background-color: #fff !important;
  padding: 0.7em 3em;
  border-radius: 4px;
  text-transform: uppercase;
}
.btnLight::after {
  content: "\f105";
  font-family: "Line Awesome Free";
  font-weight: 900;
  opacity: 0;
  display: inline-block;
  transition: transform 250ms;
  position: absolute;
}
.btnLight:hover {
  background: var(--dbg) !important;
  color: var(--wbg) !important;
  border-color: var(--dbg) !important;
}
.btnLight:hover::after {
  opacity: 1;
  transform: translateX(8px);
}

.form-control {
  padding: 0.7rem 0.75rem;
}

.circleBx {
  animation-name: myanimation;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  position: absolute;
  left: 10px;
  bottom: 60px;
}

@keyframes myanimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}
.footerBx {
  background: var(--dbg) url(../images/bg3.png) right no-repeat;
  padding: 3em 0 1.5em 0;
  color: var(--wbg);
  position: relative;
}
.footerBx::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 20px;
  background-color: #111111;
  background-repeat: repeat-x;
  animation: bgSlide 20s linear infinite;
  bottom: 0;
  background-image: url(../images/bg2.png);
}
.footerBx h4 {
  font-family: var(--hFonts);
  font-weight: 700;
  color: var(--wbg);
}
.footerBx p {
  font-weight: 300;
}
.footerBx ul {
  margin: 0;
  padding: 0;
}
.footerBx ul li {
  display: block;
  color: var(--wbg);
  font-weight: 300;
  padding: 0.2em 0;
}
.footerBx ul li:hover a {
  color: rgba(255, 255, 255, 0.699);
  display: block;
}
.footerBx ul li a {
  color: var(--wbg);
  text-decoration: none;
  display: inline-block;
}

.borderBott::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.294);
  transition: width 0.3s;
}
.borderBott:hover::after {
  width: 100%;
}

.footerB {
  padding: 0.8em 0;
  text-align: center;
  border-top: rgba(255, 255, 255, 0.1) 1px solid;
  margin-top: 1.8em;
}
.footerB a {
  color: var(--dbg);
  text-decoration: none;
  font-weight: 600;
}
.footerB a:hover {
  color: var(--themesbg);
}

.go-top {
  right: 1em;
  bottom: 2em;
  color: #fff;
  text-decoration: none;
  background: var(--themesbg);
  border-radius: 5px;
  border-radius: 50px;
  position: fixed;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
}

@media (min-width: 768px) {
  .breaking-caret:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-left: 10px solid #dc3545;
    border-bottom: 16px solid transparent;
    position: absolute;
    right: -10px;
    top: 0;
  }
}
.newsBx {
  background: var(--gBg);
  padding: 0.5em 0;
  color: var(--text);
}
.newsBx a {
  color: var(--text);
}

.news {
  width: 85px;
  position: relative;
}

.news-scroll a {
  text-decoration: none;
}

.dot {
  height: 8px;
  width: 8px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 2px !important;
  background-color: rgb(207, 23, 23);
  border-radius: 50%;
  display: inline-block;
}

.countBox {
  padding: 3em 0;
}
.countBox .boxCount {
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  text-align: center;
  height: 100%;
  background-position: center;
  padding: 6em 0;
}
.countBox .boxCount p {
  margin: 5px 0 0;
  padding: 0;
  color: #fff;
}
.countBox .boxCount i {
  font-size: 3em;
  color: #fff;
}
.countBox .boxCount .counter {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 28px;
  font-family: var(--hFonts);
}

.pageBanner {
  position: relative;
  padding: 3em 0;
  background-size: cover;
  background-position: center center;
  z-index: 0;
}
.pageBanner::before {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.9);
  content: "";
  left: 0;
  top: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
}
.pageBanner h1 {
  color: #fff;
  font-family: var(--hFonts);
  font-weight: 700;
  position: relative;
  padding-left: 25px;
  line-height: 1.3em;
}
.pageBanner h1::before {
  content: "";
  width: 3px;
  line-height: 1.3em;
  bottom: 0;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  margin-right: 22px;
  background: #ffb606;
}

.contactInn {
  text-align: center !important;
  border: var(--lightBlueBgColor) 1px solid;
  padding: 1.5em;
  border-radius: 0.5em;
}
.contactInn h4 {
  font-family: var(--hFonts);
  font-weight: 700;
  font-size: 2em;
}
.contactInn i {
  font-size: 4em;
}
.contactInn p {
  text-align: center !important;
}
.contactInn .cnd {
  display: none !important;
}
.contactInn a {
  color: var(--dbg);
}

.gallerImg {
  cursor: pointer;
}
.gallerImg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/10;
}

.required {
  font-size: 12px;
  color: #dc3545;
}

.homegallery img {
  width: 100%;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
  background: #e2e2e2;
  border-radius: 4px;
}

.rating {
  float: left;
}

.rating > input {
  display: none;
}

.rating > label:before {
  margin: 5px;
  display: inline-block;
}

.rating > label {
  color: #ddd;
  margin: 0 1px;
}

/***** CSS Magic to Highlight Stars on Hover *****/
.rating > input:checked ~ label,
.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
  color: #ff9b00;
} /* hover previous stars in list */
.rating > input:checked + label:hover,
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label,
.rating > input:checked ~ label:hover ~ label {
  color: #FFED85;
}

.textm_rating i {
  color: #ff9b00;
}

label.cabinet {
  display: block;
  cursor: pointer;
  max-width: 150px;
}

label.cabinet input.file {
  position: relative;
  height: 100%;
  width: auto;
  opacity: 0;
  -moz-opacity: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  margin-top: -30px;
}

#upload-demo {
  width: 90px;
  height: 90px;
}

.gambar {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer-share {
  display: flex;
  gap: 2px;
}
.footer-share a {
  font-size: 16px;
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  line-height: 44px;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease 0s;
  margin-right: 10px;
  /* padding: 4px; */
  background: rgba(255, 255, 255, 0.15);
}
.footer-share a:hover {
  background-color: #fff;
  color: #000;
}

.make_call {
  background: var(--dbg) url(../images/bg3.png) right no-repeat;
  padding: 5em 0;
  position: relative;
  font-style: italic;
}
.make_call a {
  color: var(--wbg);
  font-size: 1.2em;
  font-family: var(--hFonts);
  font-weight: bold;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 150px;
  padding: 0.8em 1.5em;
  letter-spacing: 2px;
}
.make_call a:hover {
  background: var(--wbg);
  color: var(--dbg);
}
.make_call span {
  color: var(--wbg);
}
.make_call span::after {
  background-color: var(--wbg);
}
.make_call span::before {
  background-color: var(--wbg);
}
.make_call::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 20px;
  background-color: #111111;
  background-repeat: repeat-x;
  animation: bgSlide 20s linear infinite;
  bottom: 0;
  background-image: url(../images/bg2.png);
}
@keyframes bgSlide {
  0% {
    background-position: 0 0;
  }
  20% {
    background-position: -100px 0;
  }
  40% {
    background-position: -200px 0;
  }
  60% {
    background-position: -150px 0;
  }
  80% {
    background-position: -100px 0;
  }
  100% {
    background-position: 0px 0;
  }
}
@keyframes bgSlideReverse {
  0% {
    background-position: 0 0;
  }
  20% {
    background-position: 100px 0;
  }
  40% {
    background-position: 200px 0;
  }
  60% {
    background-position: 150px 0;
  }
  80% {
    background-position: 100px 0;
  }
  100% {
    background-position: 0px 0;
  }
}
.choose_why {
  padding: 6em 0;
}
.choose_why .wcu_bx h4 {
  margin: 0.5em 0;
}
.choose_why .wcu_bx img {
  max-width: 100%;
  height: 90px;
}/*# sourceMappingURL=styles.css.map */