@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

.bg-primary {
  background-color: #1e4182 !important
}

.bg-secondary {
  background-color: #6c757d !important
}

.bg-success {
  background-color: #198754 !important
}

.bg-info {
  background-color: #0dcaf0 !important
}

.bg-warning {
  background-color: #ffc107 !important
}

.bg-danger {
  background-color: #d43132 !important
}

.about-section .section-heading h2 {
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 20px;
}

.about-img {
  position: relative;
  margin-top: 50px;
  z-index: 1
}

.about-img:before {
  background-color: #00488b;
  border-radius: 2px;
  transform: skew(347deg, 0deg);
  content: "";
  width: 250px;
  height: calc(100% + 70px);
  position: absolute;
  right: 50px;
  top: -40px;
  z-index: -1;
}

.about-img img {
  border-radius: 3px;
}

.about-img .about-img1 {
  max-width: 450px;
  transform: translate(20px, 40px)
}

.about-img .about-img2 {
  max-width: 200px;
  position: absolute;
  right: 40px;
  bottom: -50px;
}

.round-text {
  position: absolute;
  top: -71px;
}

/* .round-text img {
  animation-name: spin;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
} */

.round-text:before {
  background-image: url(../img/location-marker.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30%;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.about-info {
  display: flex;
  align-items: flex-start;
  column-gap: 40px;
}

.about-info li {
  display: flex;
  column-gap: 15px;
}

.owner-thumb {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.signature {
  width: 140px;
}

.about-info li h2 a {
  color: #00488b;
  font-weight: 700;
  margin: 0;
}

.owner h4,
.about-info li h2 span {
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  color: #666;
  display: block;
  margin-bottom: 5px;
}

.owner h4 {
  margin: 0;
}

.video-box-inner {
  position: relative;
  text-align: right;
}

.video-box-inner>img {
  width: 400px;
  border-radius: 5px;
}

.video-box {
  width: 250px;
  border-radius: 5px;
  position: absolute;
  left: 30px;
  bottom: -30px;
}

.video-box>img {
  width: 100%;
  border-radius: 5px;
}

.video-box .play-btn {
  background-color: #00488b;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 10px 33.25px 1.75px rgba(0, 27, 103, 0.35);
  box-shadow: 0 10px 33.25px 1.75px rgba(0, 27, 103, 0.35);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.video-box .play-btn svg {
  fill: #fff;
  width: 40px;
  margin-left: 5px;
}

.video-box .play-btn .ripple,
.video-box .play-btn .ripple:before,
.video-box .play-btn .ripple:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  transform: translateX(-50%) translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: rippleanim 3s infinite;
  -moz-animation: rippleanim 3s infinite;
  -ms-animation: rippleanim 3s infinite;
  -o-animation: rippleanim 3s infinite;
  animation: rippleanim 3s infinite;
}

.video-box .play-btn .ripple:before {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.video-box .play-btn .ripple:after {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

@-webkit-keyframes rippleanim {
  70% {
    box-shadow: 0 0 0 70px transparent;
  }

  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

@keyframes rippleanim {
  70% {
    box-shadow: 0 0 0 70px transparent;
  }

  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

@media (max-width: 992px) {
  .video-box {
    width: 100%;
    position: relative;
    left: 0;
    bottom: 0;
  }
}

@media (max-width: 767px) {
  .video-box {
    margin-top: 30px;
  }
  
}

.service-section {
  position: relative;
  z-index: 1;
}

.section-heading {
    z-index: 1;
    position: relative;
}

.service-carousel {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}

.bg-half {
  background-image: url(../img/banner/section_bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  width: 100%;
  height: 59.54%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.7;
  z-index: -1;
}

.bg-half:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.pricing-section .bg-half {
  z-index: 0;
}

.pricing-section .section-heading h2 {
  color: #000;
}

.service-section .section-heading p {
  color: #ddd;
}

.service-item {
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 1px 5px rgb(0 0 0/15%);
}

.service-thumb {
  position: relative;
}

.service-item .service-thumb .price {
  background-color: #ff0000;
  clip-path: polygon(5% 5%,
      100% 0%,
      100% 75%,
      75% 75%,
      75% 100%,
      50% 75%,
      0% 75%);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  padding: 8px 15px 15px 15px;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 0;
}

.service-shape-wrap {
  transform: skew(-20deg, 0deg);
  width: 200px;
  height: 200px;
  position: absolute;
  right: 20px;
  bottom: 0;
  overflow: hidden;
}

.service-shape {
  background-color: #cccccc6b;
  border-radius: 2px;
  position: absolute;
  width: 80px;
  height: 180px;
  left: 80px;
  bottom: 0;
  transition: all 300ms cubic-bezier(0.165, 0.85, 0.45, 1);
  transition-delay: 0.1s;
}

.service-shape:before {
  background-color: #ffffff2e;
  border-radius: 2px;
  content: "";
  width: 80px;
  height: 140px;
  position: absolute;
  right: 60px;
  bottom: 0;
  opacity: 0.95;
  transition: all 300ms cubic-bezier(0.165, 0.85, 0.45, 1);
  transition-delay: 0.2s;
}

.service-shape:after {
  background-color: #151a3c;
  border-radius: 2px;
  content: "";
  width: 40px;
  height: 120px;
  position: absolute;
  right: -20px;
  bottom: 0;
  opacity: 0.95;
  transition: all 300ms cubic-bezier(0.165, 0.85, 0.45, 1);
  transition-delay: 0.3s;
}

.service-item:hover .service-shape {
  height: 200px;
}

.service-item:hover .service-shape:before {
  height: 160px;
}

.service-item:hover .service-shape:after {
  height: 140px;
}

.service-car {
  position: absolute;
  right: 0px;
  bottom: -30px;
  max-width: 230px;
  transition: all 0.3s cubic-bezier(0.165, 0.85, 0.45, 1);
}

.service-item:hover .service-car {
  bottom: 40px;
  right: 50px;
}

.service-content {
  background-color: #fff;
  padding: 30px 25px 15px;
}

.service-content h3 {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
}

.service-content h3 a:hover {
  color: #00488b;
}

.service-content p {
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
  line-height: 21px;
}

.service-content .read-more {
  background-color: #00488b;
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  display: inline-block;
  height: 35px;
  padding: 0 20px 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.service-content .read-more.regis_btn {
  float: right;
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  padding: 0 23px 0 30px;
  background-color: #ff0000;
}

.service-content .read-more:before {
  background-color: #222;
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 300ms cubic-bezier(0.165, 0.85, 0.45, 1);
  z-index: -1;
}

.service-content .read-more:hover:before {
  width: 100%;
}

.service-location {
  padding: 15px;
  background: #d3dfeb;
  text-align: center;
}

.service-location h5 {
  margin-bottom: 0px;
  color: #0049b5;
  font-size: 0.76rem;
}

.service-categories {
  border: 1px dashed #ccc;
  border-left: none;
  border-right: none;
  padding: 10px 0px;
  margin-bottom: 15px;
}

@media (min-width: 1400px) {
  .bg-half {
    height: 59.2%;
  }
}

.swiper-outside {
  padding: 0;
  position: relative;
}

.swiper-container {
  overflow: hidden;
}

.swiper-outside .swiper-nav {
  color: #fff;
  font-size: 30px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: -45px;
  top: calc(50% - 30px);
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.swiper-outside .swiper-nav:before {
  background-color: #00488b;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.swiper-outside .swiper-nav.swiper-prev {
  justify-content: flex-end;
  clip-path: polygon(0 50%, 100% 100%, 100% 0);
}

.swiper-outside .swiper-nav.swiper-next {
  clip-path: polygon(100% 50%, 0 100%, 0 0);
  left: auto;
  right: -45px;
}

.swiper-outside:hover .swiper-nav {
  visibility: visible;
  opacity: 1;
  left: -50px;
}

.swiper-outside:hover .swiper-nav.swiper-next {
  left: auto;
  right: -50px;
}

.service-carousel .swiper-pagination {
  bottom: 0;
  line-height: 1;
}

.swiper-pagination span {
  background-color: #222;
  border-radius: 2px;
  width: 10px;
  height: 10px;
  border-radius: 0;
  opacity: 1;
}

.swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #00488b;
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.5);
}

.service-details-info img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  object-position: bottom;
  border-radius: 5px;
  margin-bottom: 30px;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin: 30px 0;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.service-features li i {
  font-size: 50px;
  color: #00488b;
}

.service-features li h3 {
  margin-bottom: 0;
}

.service-features li p {
  margin-bottom: 0;
}

.service-details-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  margin-top: 30px;
}

.service-details-list img {
  height: 220px;
  margin: 0;
}

.service-icon-list li i {
  font-size: 20px;
  color: #00488b;
}

.service-icon-list li {
  font-weight: 500;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.service-icon-list li:not(:last-of-type) {
  margin-bottom: 10px;
}

.service-sidebar ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f4f5f8;
  padding: 8px 15px;
  border: 1px solid #eee;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.service-sidebar ul li:hover {
  background-color: #00488b;
}

.service-sidebar ul li:not(:last-of-type) {
  margin-bottom: 10px;
}

.service-sidebar ul li a {
  font-size: 17px;
  font-weight: 500;
}

.service-sidebar ul li a:hover {
  color: #222;
}

.service-sidebar ul li i {
  font-size: 20px;
  color: #00488b;
}

.service-sidebar ul li:hover i {
  color: #fff;
}

.booking-section {
  background-image: url(../img/texture.png);
  background-repeat: repeat;
  background-size: cover;
  background-color: #222;
  position: relative;
  z-index: 1;
}

.booking-section:before {
  background-color: #00488b;
  content: "";
  width: 300px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}

.booking-section:after {
  background-color: #f4f5f8;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 25% 100%);
  content: "";
  width: 400px;
  height: 80px;
  position: absolute;
  right: 0;
  top: -1px;
}

.booking-car {
  background-image: url(../img/car-2.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 85%;
  width: 780px;
  height: 439px;
  position: absolute;
  left: -280px;
  top: 50px;
  z-index: -1;
}

.booking-wrap .section-heading h2 {
  font-size: 40px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  z-index: 1;
}

.booking-form .form-field {
  position: relative;
}

.booking-form .niceSelect .current,
.booking-form .form-field input {
  background-color: #333;
  color: #fff;
  border-radius: 2px;
  width: 100%;
  height: 50px;
  padding: 0 35px 0 20px;
  font-size: 17px;
  line-height: 50px;
  box-shadow: none;
  outline: none;
  border: 1px solid #333;
}

.booking-form .form-field input:focus {
  border: 1px solid #00488b;
}

.booking-form .form-field i {
  color: #00488b;
  font-size: 20px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.booking-form .form-field button {
  width: 100%;
  height: 50px;
}

.booking-form .niceSelect {
  padding: 0;
  border: none;
  width: 100%;
  height: auto;
  font-size: 17px;
  color: #fff;
}

.booking-form .niceSelect .current {
  height: 50px;
  line-height: 50px;
  display: block;
  padding: 0 20px;
}

.booking-form .niceSelect .list {
  background-color: #333;
  width: 100%;
  border-radius: 0;
  margin-top: -2px;
  border: none;
}

.booking-form .niceSelect .list li {
  font-size: 14px;
}

.booking-form .niceSelect .list li:not(:last-of-type) {
  border-bottom: 1px solid #444;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #00488b;
  font-weight: 400;
}

.nice-select:after {
  display: none;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current {
  background: #00488b;
  box-shadow: #00488b 0 1px 3px 0 inset;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:hover,
.xdsoft_datetimepicker .xdsoft_calendar td:hover {
  background: #222 !important;
  color: #fff;
}

.booking-form-2 {
  position: relative;
  margin-top: -100px;
  margin-bottom: 80px;
  z-index: 1;
}

.booking-form-2:before {
  background-color: #222;
  clip-path: polygon(0 0, 90% 0%, 100% 20%, 100% 100%, 0 99%);
  background-image: url(../img/texture.png);
  background-repeat: repeat;
  background-size: cover;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.booking-car-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: calc(100% - 2px);
  overflow: hidden;
}

.booking-car-wrap:before {
  background-color: #00488b;
  background-image: repeating-linear-gradient(45deg,
      #f7a20f 0,
      #f7a20f 2px,
      transparent 0,
      transparent 50%);
  background-size: 10px 10px;
  content: "";
  width: 330px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.booking-form-2 .booking-car {
  background-size: 70%;
  left: -130px;
  top: 10px;
  z-index: 0;
}

.booking-form-2 .col-lg-8 {
  padding: 60px;
}

@media (max-width: 767px) {
  .booking-form-2:before {
    clip-path: polygon(0 0, 90% 0%, 100% 8%, 100% 100%, 0 99%);
  }
}

.pricing-item {
    background-color: #fff;
    padding: 0;
        margin-bottom: 10px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 5px solid #b1c3d7;
    border-radius: 12px 12px 20px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.pricing-head-wrap {
  position: relative;
  z-index: 1;
}

.pricing-head-wrap:before {
  background-image: url(../img/pricing-bg.jpg);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 40%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  content: "";
  width: 100%;
  height: 280px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.pricing-head-wrap:after {
    background-color: rgb(0 72 139 / 25%);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 40%);
    content: "";
    width: 100%;
    height: 175px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.pricing-head {
    text-align: center;
    padding-bottom: 3vh;
}

.pricing-head h3 {
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1;
    display: block;
    margin: 0;
    font-family: 'Space Grotesk';
    text-transform: uppercase;
}

.pricing-head h3 a:hover {
  color: #222;
}

.pricing-head .location {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-car {
  text-align: center;
  padding: 32px 25px 20px;
  position: relative;
  z-index: 1;
}

.pricing-car .price {
  background-color: #00488b;
  clip-path: polygon(85% 0%, 100% 30%, 100% 100%, 0 100%, 0 0);
  font-size: 20px;
  font-weight: 700;
  color: #222;
  padding: 10px 15px 10px 25px;
  position: absolute;
  right: 40px;
  top: 55px;
  z-index: -1;
}

.pricing-list {
  padding: 20px 40px 30px;
}

.pricing-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-list li:not(:last-of-type) {
  margin-bottom: 10px;
}

.pricing-list li a.default-btn {
  width: 100%;
  margin-top: 20px;
}

.pricing-tab-menu {
  justify-content: center;
  margin-bottom: 30px;
}

.pricing-tab-menu li {
  position: relative;
}

.pricing-tab-menu li .nav-link {
  font-size: 17px;
  font-weight: 500;
  color: #f40c00;
  padding: 0;
}

.btn-primary {
    color: #fff;
    background-color: #00488b;
    border-color: #00488b;
}
.btn-primary:hover {
    color: #fff;
    background-color: #ff2200;
    border-color: #ff2200;
}
.pricing-tab-menu li .nav-link:hover,
.pricing-tab-menu li .nav-link.active {
  color: #1e4181;
}

.pricing-tab-menu li:not(:last-of-type) {
  padding-right: 80px;
}

.pricing-tab-menu li:not(:last-of-type):before {
  background-color: #000;
  width: 50px;
  height: 2px;
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.tab-pane.active.show .row>div {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fade-in-bottom;
  animation-name: fade-in-bottom;
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  animation-fill-mode: both;
  transition: all 0.2s ease-in-out;
  transition-duration: 800ms;
  animation-delay: 0.1s;
}

.tab-pane.active.show .row>div:nth-child(2) {
  animation-delay: 0.2s;
}

.tab-pane.active.show .row>div:nth-child(3) {
  animation-delay: 0.3s;
}

.taxi-details-img {
  position: relative;
}

.taxi-details-img:before {
  background-color: #00488b;
  background-image: repeating-linear-gradient(45deg,
      #f7a20f 0,
      #f7a20f 2px,
      transparent 0,
      transparent 50%);
  background-size: 10px 10px;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.taxi-details-img img {
  margin-left: -50px;
}

.taxi-details-img .price {
  background-color: #222;
  background-image: url(../img/texture.png);
  background-repeat: repeat;
  background-size: cover;
  clip-path: polygon(85% 0%, 100% 30%, 100% 100%, 0 100%, 0 0);
  width: auto;
  padding: 15px 25px;
  position: absolute;
  right: 120px;
  top: 110px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  z-index: -1;
}

.schedule {
    background-color: #00498b;
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    /* clip-path: polygon(85% 0%, 100% 30%, 100% 100%, 0 100%, 0 0); */
    width: auto;
    color: #fff;
    padding: 15px 25px;
    margin-top: 30px;
    font-size: 1.25rem;
    text-transform: capitalize;
    font-weight: 600;
    cursor: pointer;
    /*-webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);*/
    text-align: center;
    clip-path: polygon(75% 0%, 100% 52%, 75% 100%, 0% 100%, 18% 50%, 0% 0%);
    background: linear-gradient(0deg, #00328c 0%, rgb(7 96 174) 100%);
    box-shadow: #1d3d88 0px -50px 36px -28px inset;
}

/*.schedule {
    background: linear-gradient(0deg, rgba(0,73,139,1) 0%, rgba(0,73,139,1) 59%, rgba(209,220,222,1) 59%);
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    clip-path: polygon(85% 0%, 100% 30%, 100% 100%, 0 100%, 0 0);
    width: auto;
    color: #fff;
    padding: 15px 25px;
    margin-top: 30px;
    font-size: 1.25rem;
    text-transform: capitalize;
    font-weight: 600;
    cursor: pointer;
    border-top-right-radius: 60px;
    border-top-left-radius: 60px;
    text-align: center;
}
*/
 

.taxi-details-img .price i {
  font-size: 25px;
  color: #00488b;
  margin-right: 5px;
}

.taxi-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 40px;
  row-gap: 15px;
  margin-top: 30px;
}

.taxi-features li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
    color: #f40c00;

}

.taxi-features li span {
  font-weight: 500;
  color: #222;
  display: flex;
  align-items: center;
}

.taxi-features li span i {
  color: #00488b;
  font-size: 25px;
  margin-right: 5px;
}

.download-section {
  position: relative;
  overflow: hidden;
}

.app-feature {
  margin-top: 20px;
  margin-bottom: 30px;
}

.download-section .section-heading h6 {
  font-size: 1.6rem;
  font-family: cursive;
  color: #00488b;
}

.app-feature li {
  display: inline-block;
  align-items: center;
}

.app-feature li:not(:last-of-type) {
  margin-right: 20px;
}

.app-feature li .feature-icon {
  width: 40px;
  margin-bottom: 10px;
}

.app-feature li h3 {
  font-size: 17px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 0;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.download-btn a {
  width: 170px;
}

.download-btn a:hover {
  transform: translateY(-3px);
}

.taxi-holder {
  background-image: url(../img/taxi-background.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  width: 100%;
  min-height: 500px;
  position: relative;
  right: 0px;
  top: 20px;
  z-index: -1;
}

.taxi-holder .taxi {
  background-image: url(../img/taxi.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  width: 650px;
  height: 100%;
  position: absolute;
  right: 75px;
  top: 80px;
}

.taxi-holder .mockup {
  background-image: url(../img/mockup.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  width: 350px;
  height: 100%;
  position: absolute;
  right: 160px;
  top: -40px;
  z-index: -1;
}

.taxi-holder .charecter {
  background-image: url(../img/charecter.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  width: 180px;
  height: 100%;
  position: absolute;
  right: 130px;
  top: 80px;
}

.location-marker {
  position: absolute;
  right: 17%;
  top: 20px;
  animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  -moz-animation: bounce 2s infinite;
  -o-animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-20px);
  }

  60% {
    -webkit-transform: translateY(-10px);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-10px);
  }
}

@media (min-width: 993px) and (max-width: 1300px) {
  .taxi-holder .taxi {
    width: 390px;
    right: 75px;
    top: 80px;
  }

  .taxi-holder .mockup {
    width: 230px;
    right: 190px;
    top: -55px;
  }

  .taxi-holder .charecter {
    width: 125px;
    right: 130px;
    top: 45px;
  }

  .location-marker {
    right: 15%;
    top: 50px;
  }
}

.download-section-2 {
  background-image: url(../img/bg-1.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.download-section-2 .section-heading h2 {
  color: #fff;
}

.download-section-2 .section-heading p {
  color: #ddd;
}

.download-mockup {
  background-image: url(../img/mockup-2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 380px;
  height: 100%;
  position: absolute;
  right: 250px;
  bottom: -20px;
}

.app-screen {
  width: 220px;
  position: absolute;
  right: 150px;
  bottom: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 1px 5px rgb(0 0 0/15%);
  overflow: hidden;
}

@media (max-width: 1200px) {
  .download-mockup {
    right: 130px;
    bottom: -60px;
  }

  .app-screen {
    right: 60px;
  }
}

@media (min-width: 1600px) {
  .download-mockup {
    right: 320px;
  }

  .app-screen {
    right: 290px;
  }
}

.testimonial-section {
  position: relative;
}

.testimonial-section:before {

  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  width: 50%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
}

.pricing-section:before {
  background-image: url(../img/map.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  width: 50%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
}

.testimonial-carousel {
  overflow: hidden;
  padding: 5px 5px 5px;
}

.testimonial-carousel-2.swiper-container {
  padding: 25px 0;
}

div#pricing-tab-content {
  position: relative;
}

.testi-pagination {
  margin-left: -5px;
}

.testi-pagination .swiper-pagination {
  left: 5px;
  bottom: -50px;
  text-align: center;
}

.testi-item {
  background-color: #fff;
  border-radius: 2px;
  padding: 0px;
  box-shadow: 0 1px 5px rgb(0 0 0/20%);
  position: relative;
}

.testi-item p {
  font-size: 20px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

.quote-icon {
  background-color: #00488b;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  font-size: 30px;
  color: #222;
  width: 60px;
  height: 50px;
  position: absolute;
  right: 100px;
  top: -25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.testi-author .author-thumb img {
  border-radius: 50%;
}

.testi-author .author-info h3 {
  font-size: 22px;
  margin: 0;
  display: block;
  line-height: 1;
}

.testi-author .author-info h3 span {
  display: block;
  font-size: 16px;
  line-height: 1;
  margin-top: 10px;
}

.testimonial-carousel .swiper-pagination {
  text-align: left;
}

.feature-wrap {
  background-color: #00488b;
  padding: 100px 40px;
  background-image: repeating-linear-gradient(45deg,
      #14497a 0,
      #053868 2px,
      transparent 0,
      transparent 50%);
  background-size: 10px 10px;

}

.ridek-features li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.ridek-features li:not(:last-of-type) {
  margin-bottom: 30px;
}

.feature-icon {
  font-size: 60px;
  color: #fff;
}

.feature-content h3 {
  color: #fff;
  font-size: 22px;
  margin: 0;
}

.feature-content p {
  margin: 0;
  color: #fafafa;
}

.cta-section {
  background-image: url(../img/texture.png);
  clip-path: polygon(0 0, 100% 0, 100% 50%, 80% 100%, 0 100%);
  background-repeat: repeat;
  background-size: cover;
  background-color: #000000;
  position: relative;
  z-index: 1;
}

.cta-men {
  background-image: url(../img/cta-men.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 130px;
  bottom: -30px;
  z-index: -1;
}

.cta-content {
  max-width: 60%;
}

.cta-content .cta-call {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.cta-content .cta-call p span {
  display: block;
  margin-bottom: 10px;
}

.cta-content .cta-call p a {
  color: #ff0000;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.7px;
}

.cta-content .cta-call i {
  background-color: rgba(255, 153, 0, 0.1);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 40px;
  color: #ff0000;
  border-radius: 2px;
}

.cta-content h2 {
  font-size: 46px;
  line-height: 52px;
  color: #fff;
  margin-bottom: 20px;
}

.cta-content h2 span {
  color: #f30400;
}

.cta-content p {
  font-size: 18px;
  font-weight: 500;
  color: #ccc;
  margin: 0;
}

.cta-section-2 {
  position: relative;
  z-index: 1;
}

.cta-section-2:before {
  background-color: #00488b;
  background-image: url(../img/cta-map.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 90%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.cta-section-2 .cta-content h4 {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
}

.cta-section-2 .cta-content h2 {
  margin: 0;
  font-size: 36px;
  line-height: 42px;
}

.cta-section-2 .cta-content .default-btn {
  background-color: #222;
  margin-top: 20px;
}

.cta-section-2 .cta-content .default-btn:hover {
  color: #222;
}

.cta-section-2 .cta-content .default-btn:after,
.cta-section-2 .cta-content .default-btn:before {
  background-color: #fff;
}

.cta-section-2 .check-list i {
  background-color: #222;
  clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
  font-size: 12px;
  color: #00488b;
  width: 30px;
  height: 20px;
  line-height: 20px;
  text-align: center;
}

.cta-section-2 .check-list li {
  color: #fff;
}

.cta-section-2 .check-list li:not(:last-of-type) {
  margin-bottom: 10px;
}

.cta-section-2 .cta-men {
  background-size: 95%;
  right: 90px;
  bottom: 0;
  width: 500px;
  height: 420px;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .cta-men {
    width: 450px;
    right: 70px;
    bottom: -5px;
  }
}

.team-item {
  margin-bottom: 20px;
}

.team-thumb {
  /*clip-path: polygon(0 0, 90% 0%, 100% 10%, 100% 100%, 0 100%);*/
}

.team-thumb img {
    width: 100%;
    background: #ffffff;
    box-shadow: 0px 2px 15px #dbdbdb3b;
    border: 1px solid #d5d2d2;
    padding: 20px;
    border-radius: 0px 0px 0px 0px;
}

#teams .team-thumb img {
  box-shadow: unset;
  border: none;
  padding: 0px;
  border-radius: 0px;
}

.team-content {
  position: relative;
}

.team-content:before {
  background-image: url(../img/car%20steering.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 50%;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 50%;
  top: -65px;
  transform: translateX(-50%);
}

.team-content h3 a {
  background-color: #09549b;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
  background-image: repeating-linear-gradient(45deg,
      #065ad5 0,
      #0f51b1 2px,
      transparent 0,
      transparent 50%);
  background-size: 8px 8px;
  width: 90%;
  height: 70px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin: 0 auto;
  margin-top: -30px;
  padding-bottom: 10px;
  color: #ffffff;
}

.team-content h3 a:not([href]):not([class]) {
  color: #ffc107;
}

.team-content h3 a:hover,
.team-content h3 a:not([href]):not([class]):hover {
  color: #ffffff;
}

.team-content h4 {
    background-color: #222;
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    clip-path: polygon(100% 0, 100% 100%, 10% 100%, 0% 70%, 0 0);
    color: #fff;
    width: 80%;
    height: 40px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: -1.6rem;
    top: 50px;
    box-shadow: 0 1px 5px rgb(0 0 0/20%);
    text-align: center;
    padding: 0 5px;
}

.driver-details {
  position: relative;
}

.driver-details img {
  width: 100%;
  border-radius: 5px;
}

.experience-box {
  background-color: #00488b;
  background-image: repeating-linear-gradient(45deg, #14497a 0, #053868 2px, transparent 0, transparent 50%);
  background-size: 10px 10px;
  padding: 30px;
  position: absolute;
  left: 30px;
  bottom: -30px;
  border-radius: 2px;
}

.experience-box h3 span {
  font-size: 50px;
  line-height: 1;
  font-weight: 600;
  display: block;
  color: #fff;
}

.experience-box h3 {
  font-size: 16px;
  margin: 0;
  color: #ffffff;
  text-align: center;
}

.taxi-booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.taxi-booking-form .form-control {
  height: 50px;
  border-radius: 2px;
  border: 1px solid #ccc;
  font-size: 17px;
  outline: none;
  box-shadow: none;
}

.taxi-booking-form .form-control:focus {
  border: 1px solid #00488b;
}

.taxi-booking-form .niceSelect {
  width: 100%;
  border-radius: 2px;
  border: 1px solid #ccc;
  height: 50px;
  line-height: 50px;
  font-size: 17px;
}

.taxi-booking-form .nice-select .list {
  border-radius: 2px;
  margin-top: 0;
}

.taxi-booking-form .nice-select .option {
  font-size: 15px;
}

.taxi-booking-form .nice-select .option:hover {
  color: #222;
}

.taxi-booking-form .form-field {
  position: relative;
}

.taxi-booking-form .form-field i {
  color: #00488b;
  font-size: 20px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  outline: none;
  box-shadow: none;
}

.accordion-item {
  margin-bottom: 1vh;
}

.accordion-button {
  background-color: #fff;
  color: #222;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  font-weight: 500;
  text-transform: capitalize;
  border: 1px solid #eee;
  padding: 20px 15px;
}

.accordion-button:focus {
  border-color: #eee;
  outline: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #00488b;
}

.accordion-button:not(.collapsed):after {
  background-image: inherit;
  content: "\f068";
  color: #fff;
  transform: inherit;
}

.accordion-button:after {
  background-image: inherit;
  content: "\f067";
  font-family: "font awesome 5 free";
  font-size: 12px;
  position: absolute;
  right: 20px;
  top: 50%;
  color: #222;
  font-weight: 600;
  transform: translateY(-50%) !important;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-section {
  position: relative;
  z-index: 1;
}

.contact-section .map {
  background-image: url(../img/cta-map.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 80%;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -20%;
  top: 0;
  z-index: -1;
}

.contact-details-wrap {
  padding-right: 60px;
}

.contact-title {
  margin-bottom: 20px;
}

.contact-title h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  display: inline-block;
}

.contact-section .contact-details li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-section .contact-details li i {
  background-color: #222;
  background-image: url(../img/texture.png);
  background-repeat: repeat;
  background-size: cover;
  color: #ffffff;
  font-size: 15px;
  margin-right: 15px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 2px;
}

.contact-form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
}

.contact-form-group .form-field .form-control {
  background-color: #fff;
  border: 1px solid #ccc;
  height: 50px;
  border-radius: 0;
  box-shadow: none;
  outline: none;
}

.contact-form-group .form-field .form-control:focus {
  border: 1px solid #00488b;
}

.contact-form-group .form-field.message {
  grid-column-end: span 2;
}

.contact-form-group .form-field.message .form-control {
  height: auto;
}

.contact-form .form-group .form-control::-webkit-input-placeholder,
.contact-form .form-group .form-control::-webkit-input-placeholder {
  color: #999 !important;
}

.contact-form .form-group .form-control:-moz-placeholder,
.contact-form .form-group .form-control:-moz-placeholder {
  color: #999 !important;
}

.contact-form .form-group .form-control::-moz-placeholder,
.contact-form .form-group .form-control::-moz-placeholder {
  color: #999 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ddd !important;
}

.contact-form .form-group .form-control.message {
  height: 120px;
}

#b-form-messages,
#form-messages {
  display: none;
  margin-top: 15px;
  margin-bottom: 0;
}

#b-form-messages.alert-danger,
#form-messages.alert-danger,
#b-form-messages.alert-success,
#form-messages.alert-success {
  display: block;
}

.branches-section {
  position: relative;
}

.branches-list h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  background-color: #00488b;
  color: #fff;
  display: inline-block;
  padding: 3px 15px;
  margin-bottom: 20px;
}

.branches-list ul li {
  margin-bottom: 5px;
}

.branches-list ul li a {
  color: #777;
}

.branches-list ul li a:hover {
  text-decoration: underline;
  color: #00488b;
}

.footer-top-wrap {
  background-color: #fff;
  overflow: hidden;
}

.not-found-404 .footer-top-wrap {
  background-color: #222;
}

footer.footer-section {
  background-image: url(../img/footer_texture.png);
  background-size: cover;
}

.footer-top .footer-call {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-top .brand {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  grid-gap: 20px;
  position: relative;
  padding: 30px 70px 30px 0;
  z-index: 2;
}

.footer-top .brand p {
  position: relative;
  padding-left: 20px;
}

.footer-top .brand p:before {
  background-color: #444;
  width: 2px;
  height: 100%;
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
}

.footer-top .brand:before,
.footer-top .brand:after {
  background-color: #202020;
  /* background-image: url(../img/texture.png); */
  background-repeat: repeat;
  background-size: cover;
  content: "";
  width: 150%;
  height: 100%;
  position: absolute;
  right: 150px;
  bottom: -1px;
  z-index: -1;
}

.footer-top .brand:before {
  width: 200px;
  clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
  right: 0;
}

.footer-top .footer-call {
  padding: 32px 0;
  position: relative;
  z-index: 1;
}

.footer-top .footer-call:before {
  background-color: #00488b;
  background-image: repeating-linear-gradient(45deg,
      #0049b5 0,
      #03429f 2px,
      transparent 0,
      transparent 50%);
  background-size: 10px 10px;
  content: "";
  width: 5000px;
  height: 100%;
  position: absolute;
  left: -85px;
  bottom: 0;
  z-index: -1;
}

.footer-call i {
  font-size: 45px;
  color: #fff;
}

.footer-call p span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fafafa;
  margin-bottom: 5px;
}

.footer-call p a {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.footer-top .brand p,
.footer-top .footer-call p {
  color: #ccc;
  margin: 0;
}

.footer-mid-wrap {
  /* background-color: #222; */
  /* background-image: url(../img/footer_texture.png); */
  background-repeat: repeat;
  background-size: cover;
  padding: 50px 0 255px;
  position: relative;
  z-index: 1;
}

.social-icons a {
  background: #ffffff;
  width: 40px;
  height: 40px;
  display: inline-block;
  align-self: center;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  margin-right: 15px;
}

.social-icons {
  display: flex;
}

.footer-mid-wrap:before {
  background-image: url(../img/city-skiline.png);
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
}

.running-taxi {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.running-taxi .taxi {
  background-image: url(../img/runners.gif);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  position: absolute;
  width: 360px;
  height: 100px;
  right: 0;
  bottom: -25px;
  animation: running-anim-left 40s linear infinite;
}

.running-taxi .taxi-2 {
  background-image: url(../img/runner1.gif);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  position: absolute;
  width: 110px;
  height: 60px;
  right: 30%;
  bottom: 0;
  animation: running-anim-left 30s linear infinite;
}

.running-taxi .taxi-3 {
  background-image: url(../img/runner1.gif);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  position: absolute;
  width: 100px;
  height: 100px;
  right: 70%;
  bottom: 0;
  animation: running-anim-left 35s linear infinite;
}

.footer-item .widget-title h3 {
  color: #fff;
}

.footer-links li:not(:last-of-type) {
  margin-bottom: 10px;
}

.footer-contact li:not(:last-of-type) {
  margin-bottom: 15px;
}

.footer-links li a,
.footer-contact li {
  color: #ccc;
}

.footer-contact li span {
  display: block;
  color: #f40c00;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-links li a:hover {
  color: #f40c00;
}

@media (min-width: 992px) {
  .footer-list {
    margin-left: 15px;
  }
  .service-categories{
    min-height: 20vh;
  }
  /*.service-location{
    min-height: 10.75vh;
  }*/
}

.subscribe-form .form-control {
  background-color: #fff;
  clip-path: polygon(0% 0%, 90% 0, 100% 30%, 100% 100%, 0 100%);
  border-radius: 0;
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  box-shadow: none;
}

.subscribe-form .submit {
  background-color: #00488b;
  clip-path: polygon(0 0, 100% 0%, 85% 100%, 0 100%);
  padding: 0 35px 0 30px;
  height: 45px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #ffffff;
  line-height: 45px;
  text-align: center;
}

.subscribe-form .submit:hover {
  background-color: #ffab2e;
}

#subscribe-result {
  display: none;
}

#subscribe-result.subs-result {
  display: block;
  border: 1px solid #ddd;
  border-radius: 3px;
  color: #ccc;
  padding: 10px;
  margin-top: 15px;
}

.subscription-error {
  color: red;
}

@-moz-keyframes running-anim {
  0% {
    right: -30%;
  }

  100% {
    right: 100%;
  }
}

@-webkit-keyframes running-anim {
  0% {
    right: -30%;
  }

  100% {
    right: 100%;
  }
}

@keyframes running-anim {
  0% {
    right: -30%;
  }

  100% {
    right: 100%;
  }
}

@-moz-keyframes running-anim-left {
  0% {
    left: -30%;
  }

  100% {
    left: 100%;
  }
}

@-webkit-keyframes running-anim-left {
  0% {
    left: -30%;
  }

  100% {
    left: 100%;
  }
}

@keyframes running-anim-left {
  0% {
    left: -30%;
  }

  100% {
    left: 100%;
  }
}

.copyright-wrap {
  background-color: #222;
  background-image: url(../img/texture.png);
  background-repeat: repeat;
  background-size: cover;
  border-top: 1px solid #333;
  padding: 20px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.copyright-wrap p {
  color: #ccc;
  margin: 0;
}

.copyright-wrap p a {
  color: #f40c00;
}

@media (max-width: 992px) {
  .footer-top .footer-call:before {
    left: -200px;
  }
}

@media (max-width: 992px) {}

.eventlist {

  float: left;

}

.eventlist ul.post-meta {
  padding-right: 5px;
}

.eventlist .post-meta li {
  border: 1px solid #ffffff;
  background: #ffffff;
}

.eventlist h4 {
  width: 98%;
}

.eventbg h3,
.eventbg h4 a,
.eventbgfour h3,
.eventbgfour h4 a {
  color: white;
}


@media only screen and (min-width: 768px) {
  .aboutslogan {
    margin-bottom: -110px;
    z-index: 99999 !important;
    color: white;
  }

  .eventbg:nth-child(even) {
    background-color: #1e4182;
    margin-bottom: 5px;
    width: 32.7%;
    margin-right: 5px;
    padding: 10px 25px;
  }

  .eventbg:nth-child(odd) {
    background-color: #d43132;
    margin-bottom: 5px;
    width: 32.7%;
    margin-right: 5px;
    padding: 10px 25px;
  }

  .eventbgfour:nth-child(even) {
    background-color: #1e4182;
    margin-bottom: 5px;
    width: 65.9%;

    margin-right: 5px;
  }

  .eventbgfour:nth-child(odd) {
    background-color: #d43132;
    margin-bottom: 5px;
    width: 65.9%;

    margin-right: 5px;
  }
}
#map {
  height: 500px;
}

@media only screen and (max-width: 480px) {
  .aboutslogan {

    z-index: 99999 !important;
    color: white;
  }

  .eventbg:nth-child(even) {
    background-color: #1e4182;
    margin-bottom: 5px;


  }

  .eventbg:nth-child(odd) {
    background-color: #d43132;
    margin-bottom: 5px;

  }

  .eventbgfour:nth-child(even) {
    background-color: #1e4182;
    margin-bottom: 5px;

  }

  .eventbgfour:nth-child(odd) {
    background-color: #d43132;
    margin-bottom: 5px;

  }

  .page-header{
    height: 150px;
  }
}

/* Event Calender Section */

#gallery {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;

  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

@media (max-width:1200px) {
  #gallery {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;

    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

@media (max-width:800px) {
  #gallery {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;

    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

@media (max-width:600px) {
  #gallery {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}

#gallery .event-item {
  width: 100%;
  height: auto;
  margin: 0% auto 5%;
  box-shadow: 0px 1px 10px #999;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-radius: 12px;
  display: inline-block;
}

#gallery .event-item:nth-child(odd) {
  background-color: #1e4182 !important
}

#gallery .event-item:nth-child(even) {
  background-color: #d43132 !important
}

.event-item-section {
  padding: 18px 20px;
  text-align: center;
}

.event-item-section h4 {
  font-size: 18px;
  text-transform: uppercase;
  font-family: 'Space Grotesk';
  line-height: 1;
  letter-spacing: 0;
  padding-bottom: 2vh;
  border-bottom: 1px dotted #c2c2c2;
  color: #ffffff;
}

.event-item-section h5 {
  font-size: 17px;
  font-family: 'Inter';
  line-height: 1;
  letter-spacing: 0;
  font-weight: 600;
  color: #ffffff;
}

.event-item-section p {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 0px;
}

.event-item-details {
  padding: 15px;
  position: relative;
  background: #0000;
  border-radius: 10px;
  box-shadow: inset 0 0 20px #022a4f;
}

#gallery .event-item:nth-child(even) .event-item-details {
  box-shadow: inset 0 0 20px #9a0614
}

#gallery .event-item-details:nth-child(even) {
  margin-top: 10px;
  margin-bottom: 10px;
}



/* Schedule Section start */
#schedule .timeline {
    margin-top: 7.5vh;
    position: relative;
}

#schedule .timeline:before {
  position: absolute;
  content: '';
  width: 4px;
  height: calc(100% + 50px);
  background: rgb(138, 145, 150);
  background: -moz-linear-gradient(left, rgba(138, 145, 150, 1) 0%, rgba(122, 130, 136, 1) 60%, rgba(98, 105, 109, 1) 100%);
  background: -webkit-linear-gradient(left, rgba(138, 145, 150, 1) 0%, rgba(122, 130, 136, 1) 60%, rgba(98, 105, 109, 1) 100%);
  background: linear-gradient(to right, rgba(138, 145, 150, 1) 0%, rgba(122, 130, 136, 1) 60%, rgba(98, 105, 109, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8a9196', endColorstr='#62696d', GradientType=1);
  left: 14px;
  top: 10px;
  border-radius: 4px;
}

#schedule .timeline-month {
    position: relative;
    padding: 7px 15px 7px 40px;
    background-color: #b1e5ff42;
    color: #03397e;
    display: inline-block;
    width: auto;
    border-radius: 5px;
    border: 1px solid #5a8dde;
    border-right-color: #5b8fe0;
    margin-bottom: 30px;
    font-weight: 800;
}

#schedule .timeline-month span {
  position: absolute;
  top: -1px;
  left: calc(100% - 10px);
  z-index: -1;
  white-space: nowrap;
  display: inline-block;
  background-color: #111;
  padding: 4px 10px 4px 20px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  border: 1px solid black;
  box-sizing: border-box;
}

#schedule .timeline-month:before {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background: rgb(138, 145, 150);
    background: -moz-linear-gradient(top, rgba(138, 145, 150, 1) 0%, rgba(122, 130, 136, 1) 60%, rgba(112, 120, 125, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(138, 145, 150, 1) 0%, rgba(122, 130, 136, 1) 60%, rgba(112, 120, 125, 1) 100%);
    background: linear-gradient(to bottom, #00488b 0%, #6193e5 60%, #00488b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8a9196', endColorstr='#70787d', GradientType=0);
    border-radius: 100%;
    border: 1px solid #17191B;
    left: 5px;
    top: 10px;
}

#schedule .timeline-section {
  padding-left: 35px;
  display: block;
  position: relative;
  margin-bottom: 30px;
}

#schedule .timeline-date {
    margin-bottom: 15px;
    padding: 2px 15px;
    background: linear-gradient(#ef6565, #be2525 60%, #ef6565);
    position: relative;
    display: inline-block;
    border-radius: 20px;
    border: 1px solid #dc3545;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}



#schedule .timeline-section:before {
  content: '';
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #444950;
  top: 12px;
  left: 20px;
}

#schedule .timeline-section:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: linear-gradient(to bottom, rgba(138, 145, 150, 1) 0%, rgba(122, 130, 136, 1) 60%, rgba(112, 120, 125, 1) 100%);
  top: 7px;
  left: 11px;
  border: 1px solid #17191B;
  border-radius: 100%;
}

#schedule .timeline-section .col-sm-4 {
  margin-bottom: 15px;
}

#schedule .timeline-box {
  position: relative;
    color: white;
  background-color: #d63f40;
  border-radius: 15px;
  border-top-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 8px;
  border: 1px solid #17191B;
  transition: all 0.3s ease;
  overflow: hidden;
}

#schedule .box-icon {
  position: absolute;
  right: 5px;
  top: 0px;
}

#schedule .box-title {
    padding: 8px 16px;
    background-color: #1e4181;
    border-bottom: 1px solid #17191B;
    font-size: 1.12rem;
    font-family: 'Inter';
}
#schedule .box-title i {
  margin-right: 5px;
}

#schedule .box-content {
  padding: 5px 15px;
  background-color: #ffffff;
}

#schedule .box-content strong {
    color: #1e4181;
    font-style: normal;
    margin-right: 5px;
}

#schedule .box-item {
  margin-bottom: 5px;
  color:#000;
}

#schedule .box-footer {
    padding: 5px 15px;
    border-top: 1px solid #ddd;
    background-color: #e2e4e7;
    text-align: right;
    font-style: italic;
    line-height: 2rem;
    justify-content: space-between;
    display: flex;
}

#schedule .box-footer a
{
	color:white;
}