@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");
/*font-family: "Poppins", sans-serif;*/
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
/*font-family: "Anton", sans-serif;*/
* {
  box-sizing: border-box;
}

body {
  margin: 0px;
}

button:focus {
  outline: none;
}

input:focus {
  outline: none;
}

a {
  color: #1b70bb;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: 0px;
}

/*###### Comon css start ####*/
.btn-info {
  background-color: #0776AD;
  border-color: #0776AD;
  color: #fff;
  padding: 15px 25px;
  border-radius: 30px;
}
.btn-info:hover {
  background-color: #0776AD;
  border-color: #0776AD;
  color: #fff;
}

.comon-title {
  position: relative;
  width: 100%;
}
.comon-title h3 {
  position: relative;
  width: 100%;
  color: #CF142B;
  font-family: "Anton", sans-serif;
  font-size: 70px;
  margin-bottom: 15px;
}
.comon-title p {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 16px;
  margin-bottom: 15px;
}

/*###### Comon css end ####*/
/*#### Header css start ###*/
.header-wrapper {
  position: relative;
  width: 100%;
  background-color: #0776AD;
  z-index: 9;
}

.logo-wrap {
  position: relative;
  width: 100%;
}

.header-contact-info-wrap {
  position: relative;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
.header-contact-info-wrap ul {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  margin-bottom: 0px;
}
.header-contact-info-wrap ul li {
  position: relative;
  padding: 0px 15px;
}
.header-contact-info-wrap ul li p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 15px;
  margin-bottom: 0px;
}
.header-contact-info-wrap ul li p i {
  font-size: 20px;
  margin-right: 5px;
}
.header-contact-info-wrap ul li p a {
  position: relative;
  color: #fff;
}

.header-menu-wrap {
  position: relative;
  width: 100%;
}
.header-menu-wrap .navbar {
  position: relative;
}
.header-menu-wrap .navbar .navbar-nav {
  position: relative;
}
.header-menu-wrap .navbar .navbar-nav li {
  position: relative;
  padding: 0px 15px;
}
.header-menu-wrap .navbar .navbar-nav li a {
  position: relative;
  color: #fff;
  font-size: 18px;
}

/*#### Header css end ###*/
/*##### Banner css start ####*/
/*#### Step form css start ###*/
/*#### Form css start ###*/
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  transform-origin: top;
  animation: animate 0.5s;
}

/*#### Form css end ###*/
/* Progress bar */
.progress-bar {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  counter-reset: step;
  margin-bottom: 60px;
  overflow: visible;
}

.progress-bar::before,
.progress {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 100%;
  background-color: #2B93C3;
  z-index: 1;
}

.progress-bar .progress {
  background-color: #fff;
  width: 0;
  transition: 0.5s;
}

.progress-bar .progress-step {
  width: 55px;
  height: 55px;
  background-color: #2B93C3;
  outline: 2px solid #fff;
  border: 3px solid #0776ad;
  outline-offset: 0px;
  color: #fff;
  font-size: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.progress-bar .progress-step::before {
  counter-increment: step;
  content: counter(step);
  font-weight: 600;
}

.progress-bar .progress-step::after {
  content: attr(data-title);
  position: absolute;
  top: calc(100% + 5px);
  font-size: 20px;
  color: #fff;
}

.progress-bar .progress-step.active {
  background-color: #fff;
  color: #000;
}

@keyframes animate {
  from {
    transform: scale(1, 0);
    opacity: 0;
  }
  to {
    transform: scale(1, 1);
    opacity: 1;
  }
}
/* End Progress bar */
.step-btn-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: end;
}

.btn.btn-next {
  background-color: #CF142B;
  border-color: #CF142B;
  color: #fff;
  font-size: 16px;
  padding: 15px 25px;
  border-radius: 30px;
}

.btn-check:checked + .btn.btn-next, .btn-next.btn.active, .btn-next.btn.show, .btn-next.btn:first-child:active, :not(.btn-check) + .btn-next.btn:active {
  background-color: #CF142B;
  border-color: #CF142B;
  color: #fff;
}

.btn.btn-prev {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
  font-size: 16px;
  padding: 15px 25px;
  border-radius: 30px;
}

.btn.btn-prev:hover {
  background-color: #fff;
  border-color: #fff;
  color: #CF142B;
}

.btn-check:checked + .btn.btn-next, .btn-next.btn.active, .btn-next.btn.show, .btn-next.btn:first-child:active, :not(.btn-check) + .btn-next.btn:active {
  background-color: #fff;
  border-color: #fff;
  color: #CF142B;
}

.btn.btn-complete {
  background-color: #CF142B;
  border-color: #CF142B;
  color: #fff;
  font-size: 16px;
  padding: 15px 25px;
  border-radius: 30px;
}

.btn-check:checked + .btn.btn-complete, .btn-complete.btn.active, .btn-complete.btn.show, .btn-complete.btn:first-child:active, :not(.btn-check) + .btn-complete.btn:active {
  background-color: #CF142B;
  border-color: #CF142B;
  color: #fff;
}

/*#### Step form css end ###*/
.banner-wrapper {
  position: relative;
  width: 100%;
  background-color: #0776AD;
  padding-top: 60px;
  padding-bottom: 60px;
}
.banner-wrapper .title {
  position: relative;
  width: 100%;
}
.banner-wrapper .title h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 50px;
  font-family: "Anton", sans-serif;
  margin-bottom: 10px;
}

.online-reservation-form .progress-bar {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.reservation-form-wrap {
  position: relative;
  width: 100%;
}
.reservation-form-wrap .form-group {
  position: relative;
  width: 100%;
}
.reservation-form-wrap .form-group label {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
  margin-bottom: 10px;
}
.reservation-form-wrap .form-group label .form-tooltip {
  margin-left: 5px;
}
.reservation-form-wrap .form-group .form-control, .reservation-form-wrap .form-group .form-select {
  position: relative;
  width: 100%;
  border: 1px solid #707070;
  border-radius: 0px;
  padding: 12px 10px;
  font-size: 16px;
}
.reservation-form-wrap .form-group .pik-location-label {
  justify-content: space-between;
}
.reservation-form-wrap .form-group .pik-location-label .use-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.reservation-form-wrap .form-group .pik-location-label .use-location a {
  color: #000000;
  text-decoration: underline;
}
.reservation-form-wrap .form-group .pik-location-label .use-location a.form-tooltip {
  color: #fff;
  text-decoration: none;
}
.reservation-form-wrap .form-group .waypoint-btn {
  position: relative;
}
.reservation-form-wrap .form-group .waypoint-btn a {
  color: #0776AD;
  font-size: 16px;
}
.reservation-form-wrap .form-group .waypoint-btn a i {
  color: #000000;
}
.reservation-form-wrap .form-group.location-form .form-control {
  padding-left: 30px;
  background-image: url(../images/location-icon.png);
  background-repeat: no-repeat;
  background-position: 2px center;
  background-size: 25px;
}

.form-tooltip {
  width: 18px;
  height: 18px;
  background-color: #0776AD;
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.step-form-wrap {
  position: relative;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: -50px;
  z-index: 1;
  box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.0901960784);
}

.contact-details-form {
  position: relative;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.0901960784);
}

.form-title {
  position: relative;
  width: 100%;
  padding: 15px 15px;
  background-color: #F3F3F3;
}
.form-title h3 {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 25px;
  margin-bottom: 0px;
}

.form-details-wrap {
  position: relative;
  width: 100%;
  padding: 15px 15px;
}

.ride-map {
  position: relative;
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
}
.ride-map iframe {
  position: relative;
  width: 100%;
  height: 400px;
  border: 0px;
  border-radius: 10px;
}

.distance-time-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 10px;
}
.distance-time-wrap .distance-wrap {
  position: relative;
  width: 50%;
  padding: 15px 15px;
  border-right: 1px solid #DBDBDB;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.distance-time-wrap .distance-wrap .icon {
  width: 80px;
}
.distance-time-wrap .distance-wrap .distance {
  width: calc(100% - 80px);
  padding-left: 10px;
}
.distance-time-wrap .distance-wrap .distance h4 {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 16px;
  margin-bottom: 10px;
}
.distance-time-wrap .distance-wrap .distance h3 {
  position: relative;
  width: 100%;
  color: #0776AD;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 0px;
}
.distance-time-wrap .time-wrap {
  position: relative;
  width: 50%;
  padding: 15px 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.distance-time-wrap .time-wrap .icon {
  width: 80px;
}
.distance-time-wrap .time-wrap .time {
  width: calc(100% - 80px);
  padding-left: 10px;
}
.distance-time-wrap .time-wrap .time h4 {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 16px;
  margin-bottom: 10px;
}
.distance-time-wrap .time-wrap .time h3 {
  position: relative;
  width: 100%;
  color: #0776AD;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 0px;
}

.booking-summary-wrap {
  position: relative;
  width: 100%;
  padding: 15px 15px;
}

.booking-summary-list {
  position: relative;
  width: 100%;
  padding: 10px 0px;
  border-bottom: 1px solid #f3f3f3;
}
.booking-summary-list h4 {
  position: relative;
  width: 100%;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}
.booking-summary-list p {
  position: relative;
  width: 100%;
  color: #636363;
  font-size: 16px;
  margin-bottom: 6px;
}

/*##### Banner css end ####*/
/*#### transportation keweenaw css start ####*/
.transportation-keweenaw-wrapper {
  position: relative;
  width: 100%;
  padding: 80px 0px 60px 0px;
  background-color: #fff;
}

.transportation-keweenaw-content {
  position: relative;
  width: 100%;
}
.transportation-keweenaw-content .title {
  position: relative;
  width: 100%;
}
.transportation-keweenaw-content .title h5 {
  position: relative;
  width: 100%;
  font-size: 16px;
  margin-bottom: 10px;
}
.transportation-keweenaw-content .title h5::before {
  content: "";
  width: 80px;
  display: inline-block;
  height: 2px;
  background-color: #000000;
  margin-right: 5px;
}
.transportation-keweenaw-content .title h3 {
  position: relative;
  width: 100%;
  color: #CF142B;
  font-size: 60px;
  font-family: "Anton", sans-serif;
  margin-bottom: 15px;
}
.transportation-keweenaw-content .title h4 {
  position: relative;
  width: 100%;
  color: #0776AD;
  font-size: 25px;
  margin-bottom: 15px;
}
.transportation-keweenaw-content p {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 16px;
  margin-bottom: 10px;
}
.transportation-keweenaw-content h6 {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 20px;
  margin-bottom: 15px;
}
.transportation-keweenaw-content h6 strong {
  color: #CF142B;
}

/*#### transportation keweenaw css end ####*/
/*#### how-it-work css start ####*/
.how-it-work-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.how-it-work-list {
  position: relative;
}
.how-it-work-list::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
  background-color: #707070;
}
.how-it-work-list:last-child::after {
  display: none;
}

.how-it-work-wrap {
  position: relative;
  width: 100%;
  text-align: center;
}
.how-it-work-wrap .icon {
  position: relative;
  width: 150px;
  height: 150px;
  background-color: #0776AD;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  outline: 1px dashed #707070;
  outline-offset: 5px;
  margin: 0 auto;
  margin-bottom: 25px;
  transition: all 0.5s;
}
.how-it-work-wrap h4 {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.how-it-work-wrap p {
  position: relative;
  width: 100%;
  font-size: 16px;
  color: #000000;
  margin-bottom: 10px;
}
.how-it-work-wrap:hover .icon {
  background-color: #CF142B;
  transition: all 0.5s;
}

/*#### how-it-work css end ####*/
/*#### current-fleet css start ###*/
.current-fleet-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
  background-color: #FCFCFC;
}

.car-list {
  position: relative;
  width: 100%;
}
.car-list .img-box {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 400px;
}
.car-list .img-box img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.car-list .car-content {
  position: relative;
  width: 100%;
}
.car-list .car-content h3 {
  position: relative;
  width: 100%;
  font-size: 40px;
  color: #0776AD;
  font-weight: 600;
  margin-bottom: 15px;
}
.car-list .car-content p {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 18px;
  margin-bottom: 15px;
}
.car-list .car-content .btn-info {
  position: relative;
  width: 100%;
  border-radius: 10px;
  text-align: center;
}

/*#### current-fleet css end ###*/
/*#### our-moments css start ####*/
.our-moments-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
  background-image: url(../images/our-moments-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.our-moments-wrapper .comon-title h3 {
  color: #fff;
}
.our-moments-wrapper .comon-title p {
  color: #fff;
}

.moments-wrap {
  position: relative;
  width: 100%;
}
.moments-wrap img {
  position: relative;
  width: 100%;
}
.moments-wrap .name {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px 15px;
  background-color: rgba(0, 0, 0, 0.6);
}
.moments-wrap .name h4 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 16px;
  margin-bottom: 0px;
}

#our-moments-slider .slick-arrow {
  z-index: 9;
  border: 1px solid #CF142B;
  background-color: #CF142B;
  color: #fff;
  font-size: 25px;
  transition: 0.5s;
  width: 45px;
  height: 45px;
}

#our-moments-slider .slick-arrow:hover {
  background-color: transparent;
  color: #CF142B;
  transition: 0.5s;
}

#our-moments-slider .slick-arrow.slick-prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

#our-moments-slider .slick-arrow.slick-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/*#### our-moments css end ####*/
/*#### testimonial css start ####*/
.testimonial-wrapper {
  position: relative;
  width: 100%;
  padding: 70px 0px;
  background-color: #056697;
}
.testimonial-wrapper .testimonial-title {
  position: relative;
  width: 100%;
}
.testimonial-wrapper .testimonial-title h4 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.testimonial-wrapper .testimonial-title h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 70px;
  font-family: "Anton", sans-serif;
  margin-bottom: 15px;
}
.testimonial-wrapper .testimonial-title .line {
  position: relative;
  width: 200px;
  height: 1px;
  background-color: #fff;
  margin: 0 auto;
}
.testimonial-wrapper .testimonial-title .line::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background-color: #CF142B;
}

#testimonials-slider .testimonials-sld-items {
  position: relative;
  padding: 0px 15px;
}

.testimonials-wrap {
  position: relative;
  width: 100%;
}
.testimonials-wrap h4 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
}
.testimonials-wrap p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
}
.testimonials-wrap .rating-img {
  position: relative;
  width: 100%;
}
.testimonials-wrap .name {
  position: relative;
  width: 100%;
}
.testimonials-wrap .name p {
  position: relative;
  width: 100%;
  font-size: 16px;
  margin-bottom: 10px;
}

#testimonials-slider .slick-arrow {
  z-index: 9;
  border: 1px solid transparent;
  background-color: transparent;
  color: #fff;
  font-size: 50px;
  transition: 0.5s;
}

#testimonials-slider .slick-arrow:hover {
  background-color: transparent;
  color: #CF142B;
  transition: 0.5s;
}

#testimonials-slider .slick-arrow.slick-prev {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}

#testimonials-slider .slick-arrow.slick-next {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}

/*#### testimonial css end ####*/
/*#### Footer css start ####*/
.footer-wrapper {
  position: relative;
  width: 100%;
  background-color: #0776AD;
  padding-top: 40px;
}

.footer-inner-wrap {
  position: relative;
  width: 100%;
}
.footer-inner-wrap h4 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}
.footer-inner-wrap p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 16px;
  margin-bottom: 0px;
}

/**/
.footer-inner-wrap .contact-det-list {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.footer-inner-wrap .contact-det-list .icon {
  position: relative;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer-inner-wrap .contact-det-list .content {
  position: relative;
  width: calc(100% - 30px);
  padding-left: 5px;
}

.footer-inner-wrap .contact-det-list .content h4 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.footer-inner-wrap .contact-det-list .content p {
  position: relative;
  font-size: 16px;
  word-break: break-all;
  margin-bottom: 0px;
  color: #fff;
}

.footer-inner-wrap .contact-det-list .content p a {
  color: #fff;
}

/**/
.footer-menu {
  position: relative;
  width: 100%;
}
.footer-menu ul {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-menu ul li {
  position: relative;
  padding: 0px 10px;
}
.footer-menu ul li a {
  color: #fff;
  font-size: 16px;
}

.footer-copyright {
  position: relative;
  width: 100%;
}
.footer-copyright p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 15px;
  margin-bottom: 0px;
}

.footer-menu.terms-menu ul {
  justify-content: end;
}

/*#### Footer css end ####*/
/*#### Inner banner css start ####*/
.inner-banner-wrapper {
  position: relative;
  width: 100%;
  background-color: #0776AD;
  padding: 60px 0px;
}
.inner-banner-wrapper .inner-banner-content {
  position: relative;
  width: 100%;
}
.inner-banner-wrapper .inner-banner-content h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 40px;
  font-family: "Anton", sans-serif;
  margin-bottom: 0px;
}

/*#### Inner banner css end ####*/
/*#### FAQ Page css start ###*/
.faq-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
  background-color: #FCFCFC;
}

.faq-wrap {
  position: relative;
  width: 100%;
}
.faq-wrap .accordion-item {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
  border: 1px solid #e6e6e6;
}

.faq-wrapper .accordion-button {
  position: relative;
  color: #000;
  font-size: 18px;
  box-shadow: none;
  padding-right: 42px;
}

.faq-wrapper .accordion-button::after {
  content: "+";
  font-family: "fontawesome";
  background-color: #CF142B;
  color: #fff;
  width: 40px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-image: none;
}

.faq-wrapper .accordion-button:not(.collapsed)::after {
  content: "\f068";
  transform: rotate(0);
  font-family: "fontawesome";
}

.faq-wrapper .accordion-button:not(.collapsed) {
  background-color: #0776AD;
  color: #ffffff;
}

/*#### FAQ Page css end ###*/
/*#### Contact us Css start ###*/
.contact-info-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.contact-info-list {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px 15px;
  border: 1px solid #0776AD;
  text-align: center;
}

.contact-info-list .icon {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 30px;
  color: #fff;
  justify-content: center;
  background-color: #0776AD;
  margin: 0 auto;
  margin-bottom: 15px;
}

.contact-info-list h4 {
  position: relative;
  width: 100%;
  color: #333333;
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-info-list p {
  position: relative;
  width: 100%;
  color: #757575;
  font-size: 15px;
  margin-bottom: 10px;
}

.contact-info-list p a {
  color: #757575;
}

/*######*/
.contact-us-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px 60px 0px;
  background-color: #FCFCFC;
}

.form-sec {
  position: relative;
  width: 100%;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.18);
  border-radius: 10px;
}

.form-sec .form-control {
  color: #000;
  border: 1px solid #b1b1b1;
  height: auto;
  padding: 12px 15px;
  border-radius: 0px;
  transition: 0.5s;
}

.form-sec .form-control:focus {
  border: 1px solid #0776AD;
  transition: 0.5s;
  box-shadow: none;
  outline: none;
}

.form-sec .comon-btn1 {
  width: 100%;
  border-radius: 0;
  padding: 12px 10px;
  font-size: 18px;
}

.map-wrap {
  position: relative;
  width: 100%;
}

.map-wrap iframe {
  position: relative;
  width: 100%;
  height: 530px;
  border: 2px solid #0776AD;
}

/*#### Contact us Css end ###*/
/*#### privacy page content ###*/
.main-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.privacy-content {
  position: relative;
  width: 100%;
}

.privacy-content h3 {
  position: relative;
  width: 100%;
  color: #000000;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}

.privacy-content h4 {
  position: relative;
  width: 100%;
  color: #0776AD;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.privacy-content h5 {
  position: relative;
  width: 100%;
  color: #636363;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.privacy-content p {
  position: relative;
  width: 100%;
  color: #636363;
  font-size: 15px;
  margin-bottom: 10px;
}

.privacy-content ul {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.privacy-content ul li {
  position: relative;
  width: 100%;
  padding-left: 20px;
  font-size: 15px;
  color: #636363;
  margin-bottom: 8px;
}

.privacy-content ul li:before {
  content: "\f111";
  font-family: fontawesome;
  font-size: 10px;
  position: absolute;
  left: 0px;
  top: 4px;
  color: #0776AD;
}

/*#### privacy page content css end ###*/
/*### nearby place css start ####*/
.nearby-place-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
  background-color: #FCFCFC;
}

.nearby-place-wrap {
  position: relative;
  width: 100%;
  padding: 15px 12px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.0705882353);
  background-color: #fff;
  border-radius: 5px;
}
.nearby-place-wrap h4 {
  position: relative;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0px;
}

/*### nearby place css end  ####*//*# sourceMappingURL=style.css.map */


.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
  background-color: #0776AD;
  border-color: #0776AD;
  color: #fff;
  padding: 15px 25px;
}