/* Google Font Import - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

button,
input,
select,
textarea,
label {
  font-family: "Poppins", sans-serif !important;
}

:root {
  /* ===== Colors ===== */
  --body-color: #e4e9f7;
  --sidebar-color: #fff;
  --primary-color: #ff173d;
  --primary-color-light: #f6f5ff;
  --toggle-color: #ddd;
  --text-color: #707070;

  /* ====== Transition ====== */
  --tran-03: all 0.2s ease;
  --tran-03: all 0.3s ease;
  --tran-04: all 0.3s ease;
  --tran-05: all 0.3s ease;
}

body {
  background-color: #fff;
  transition: var(--tran-05);
}

::selection {
  background-color: #ffbfc9;
  color: #222;
}

.container {
  max-width: 1320px;
  width: 100%;
  padding: 0 15px;
}

.containerinner {
  max-width: 1180px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

/* Header-CSS-START */

.Header_row {
  background: #ffffffb8;
  padding: 15px 30px;
  box-shadow: 0 0 40px 0px #00000012;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
  margin: 50px 0 0;
  position: relative;
  z-index: 9;
}

.header .container {
  position: relative;
}

.Header_row.sticky {
  position: fixed;
  left: 0;
  width: 100%;
  border-radius: 0;
  background: #fff;
  transition: all 0.5s ease;
  top: -50px;
  z-index: 999;
}

.Header_row .menu ul.site_menu {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  align-items: center;
}

.Header_row .menu ul.site_menu li.nav_link {
  list-style: none;
  margin: 0 20px 0 0px;
}

.Header_row .menu ul.site_menu li.nav_link a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: 0.3s;
}

.Header_row .menu ul.site_menu li.nav_link a:hover {
  color: #f40d38;
}

.Header_row .menu ul.site_menu li.button {
  list-style: none;
}

.Header_row .menu ul.site_menu li.button button {
  border: 0;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 300;
  color: #fff;
  background: #222;
  transition: 0.3s;
}

.Header_row .menu ul.site_menu li.button button:hover {
  transform: scale(1.05);
}

.Header_row .menu ul.site_menu li.button button#Login {
  background: #ff173d;
}

.Header_row .menu ul.site_menu li.nav_link.ticket_passes a {
  font-weight: 600;
}

.Header_row .menu ul.site_menu li.nav_link.ticket_passes a {
  position: relative;
}

.Header_row .menu ul.site_menu li.nav_link.ticket_passes a::after {
  content: "";
  background: #ff173d;
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  right: -12px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/* login_popup_START */

.Modal_custom .modal-dialog {
  max-width: 850px;
  border-radius: 15px;
  overflow: hidden;
}

.Modal_custom .modal-dialog .modal-header {
  padding: 0;
  border: 0;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 9;
}

.Modal_custom .modal-dialog .modal-header button.close {
  border: 0;
  padding: 0;
  background: transparent;
  font-size: 40px;
  line-height: 20px;
  color: #fff;
}

.Modal_custom .modal-dialog .modal-body {
  padding: 0;
  border: 1px solid #fff;
  border-radius: 15px;
  overflow: hidden;
}

.Modal_custom .modal-dialog .modal-body .login_form {
  display: flex;
}

.Modal_custom .modal-dialog .modal-content {
  border-radius: 15px;
}

.Modal_custom .modal-dialog .modal-body .login_form .form {
  width: 50%;
  padding: 50px 25px;
}

.Modal_custom .modal-dialog .modal-body .login_form .img {
  width: 50%;
}

.Modal_custom .modal-dialog .modal-body .login_form .form .logo {
  text-align: center;
  margin: 0 0 10px;
}

.Modal_custom .modal-dialog .modal-body .login_form .form .heading {
  text-align: center;
}

.Modal_custom .modal-dialog .modal-body .login_form .form .heading h4 {
  margin: 0 0 0;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.Modal_custom .modal-dialog .modal-body .login_form .form .heading p {
  margin: 0 0 25px;
  font-size: 14px;
  font-weight: 400;
  color: #636363;
}

.Modal_custom .modal-dialog .modal-body .login_form .form form .form-group {
  width: 100%;
}

.Modal_custom
  .modal-dialog
  .modal-body
  .login_form
  .form
  form
  .form-group
  label {
  display: block;
  margin: 0 0 2px;
  font-weight: 500;
}

.Modal_custom
  .modal-dialog
  .modal-body
  .login_form
  .form
  form
  .form-group
  input {
  width: 100%;
  border: 1px solid #ccc;
  padding: 12px 15px;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
}

.Modal_custom .modal-dialog .modal-body .login_form .form form .button {
  width: 100%;
  text-align: center;
  margin: 100px 0 0;
}

.Modal_custom .modal-dialog .modal-body .login_form .form form .button button {
  width: 100%;
  padding: 10px;
  border: 0;
  border-radius: 50px;
  background: #ff173d;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.Modal_custom
  .modal-dialog
  .modal-body
  .login_form
  .form
  form
  .button
  button:hover {
  transform: scale(1.05);
  background: #222;
}

.Modal_custom .modal-dialog .modal-body .login_form .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* login_popup-END */

/* Header-CSS-END */

/* Hero-CSS-START */

section.hero {
  margin: -136px 0 0;
  padding: 300px 0 0px;
  background-image: url(../hero_banner.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bottom_snow_img img {
  width: 100%;
}

.hero_social_media .icons {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.hero_social_media .icons a {
  transition: 0.3s;
  width: 35px;
  height: 35px;
  background: #ffffff42;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
}

.hero_social_media .icons a:hover {
  background: #f40d38;
}

.hero_social_media {
  position: absolute;
  left: 45px;
}

section.hero {
  position: relative;
  z-index: 0;
}

.hero_social_media::before {
  content: "";
  width: 1px;
  height: 100%;
  background: #ff173d7d;
  position: absolute;
  bottom: 173px;
  left: 17px;
}

.hero_social_media::after {
  content: "";
  width: 1px;
  height: 100%;
  background: #ff173d7d;
  position: absolute;
  bottom: -173px;
  left: 17px;
}

section.hero .booking .Booking_form ul#pills-tab {
  justify-content: center;
  margin: 0 0 -25px !important;
  position: relative;
  z-index: 9;
}

section.hero .booking .Booking_form .form .fields {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 40px 20px 30px;
  border-radius: 10px;
}

section.hero .booking .Booking_form ul#pills-tab li.nav-item button {
  width: 250px;
  background: #a9a9a9;
  padding: 10px;
  border: 3px solid #fff;
  color: #fff;
}

section.hero .booking .Booking_form ul#pills-tab li.nav-item button.active {
  background: #ff173d;
  color: #fff;
}

section.hero
  .booking
  .Booking_form
  ul#pills-tab
  li.nav-item
  button#pills-Atstolodge-tab {
  border-radius: 50px 0px 0 50px;
  border-right: 0;
  font-weight: 600;
}

section.hero
  .booking
  .Booking_form
  ul#pills-tab
  li.nav-item
  button#pills-LodgetoSkitube-tab {
  border-radius: 0px 50px 50px 0px;
}

section.hero .booking .Booking_form .form .fields .form-group {
  width: calc(33.33% - 15px);
  position: relative;
}

section.hero .booking .Booking_form .form .fields .form-group label {
  display: block;
  margin: 0 0 3px;
}

section.hero .booking .Booking_form .form .fields .form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  border: 0;
  padding: 13px 15px;
  border-radius: 8px;
  color: #636363;
  outline: none;
  appearance: none;
}

.form-group.select::after {
  content: "\f107";
  position: absolute;
  right: 15px;
  top: 68%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
  color: #333;
  font-family: "FontAwesome";
}

section.hero .booking .location_heading {
  text-align: center;
  margin: 0 0 20px;
}

section.hero .booking .location_heading h2 span#location {
  font-weight: 700;
  color: #fff;
  text-shadow: -1px -1px 3px #f40d38;
}

section.hero .booking .Booking_form .form .fields .form-group input {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  border: 0;
  padding: 13px 15px;
  border-radius: 8px;
  color: #636363;
  outline: none;
}

section.hero .booking .Booking_form .form .button {
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.hero .booking .Booking_form .button button {
  padding: 10px 35px;
  border: 0;
  background-color: #ff173d;
  color: #fff;
  border-radius: 55px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.5s;
}

section.hero .booking .Booking_form .button button:hover {
  background: #222;
  transform: scale(1.05);
}

/* Hero-CSS-END */

/* Howitwork-CSS-START */

section.How_It_Works {
  margin: -50px 0 0;
  position: relative;
}

.title h2 {
  margin: 0 0 40px;
  font-weight: 600;
}

span.clr {
  color: #ff173d;
}

.how_it_work_info .boxes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.how_it_work_info .boxes .box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.how_it_work_info .boxes .box span {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  text-align: center;
}

.bottom_img img {
  width: 100%;
}

/* Howitwork-CSS-END */

/* HomeAbout-CSS-START */

section.about {
  margin: 100px 0 0;
}

section.about .img {
  position: relative;
}

section.about .img .one {
  width: 70%;
}

section.about .img .video {
  position: absolute;
  top: 90px;
  right: 0;
}

section.about .img .three {
  right: -150px;
  margin: 20px 0 0;
  width: 40%;
  position: relative;
}

section.about .img img {
  width: 100%;
}

section.about .row {
  align-items: center;
}

section.about .aboutcontant {
  position: relative;
  top: -30px;
  margin-left: 30px;
}

section.about .aboutcontant h4 {
  font-size: 20px;
  font-weight: 300;
}

section.about .aboutcontant h2 {
  font-size: 42px;
  font-weight: 600;
  margin: 10px 0 40px;
}

section.about .aboutcontant ul {
  margin: 0;
  padding: 0;
}

section.about .aboutcontant ul li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 30px;
}

section.about .aboutcontant ul li span.icon {
  width: 72px;
  height: 72px;
  background: #fff;
  box-shadow: 0 4px 4px 0px #ccc;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #ee3124;
  border-bottom: 0;
  border-right: 0;
}

section.about .aboutcontant ul li span {
  width: 85%;
}

section.about .aboutcontant ul li span strong {
  font-size: 18px;
  font-weight: 600;
}

section.about .aboutcontant ul li span p {
  margin: 0;
  font-weight: 400;
  color: #636363;
}

div#VideoModal .modal-body {
  padding: 0;
}

div#VideoModal .modal-dialog {
  max-width: 900px;
  border-radius: 15px;
  overflow: hidden;
}

section.about .img::before {
  content: "";
  width: 133px;
  height: 177px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../About/shape.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
}

/* HomeAbout-CSS-END */

/* FAQ-CSS-SATRT */

section.Frequently_Asked_Question {
  background-color: #f1f1f1;
  padding: 50px 0;
}

section.Frequently_Asked_Question .faq .accordion-item {
  margin: 0 0 15px;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
}

section.Frequently_Asked_Question .faq .accordion-item button.accordion-button {
  box-shadow: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  padding: 18px 15px;
  background: #ff173d;
}

section.Frequently_Asked_Question .faq .accordion-item::after {
  background-color: red !important;
}

section.Frequently_Asked_Question
  .faq
  .accordion-item
  button.accordion-button::after {
  content: "\f107";
  background-color: #ffffff;
  border-radius: 50px;
  width: 24px;
  height: 24px;
  text-align: center;
  background-position: center;
  background-size: 75%;
  font-family: "FontAwesome";
  color: #636363;
  background-image: none !important;
}

section.Frequently_Asked_Question .faq .accordion-item .accordion-body {
  padding: 0px 15px 15px;
  font-weight: 400;
  font-size: 16px;
}

section.Frequently_Asked_Question
  .faq
  .accordion-item
  button.accordion-button.collapsed {
  background: #fff;
  color: #000;
  font-weight: 400;
}

section.Frequently_Asked_Question .faq .accordion-item div.accordion-collapse {
  background: #ff173d;
  color: #fff;
}

section.Frequently_Asked_Question
  .faq
  .accordion-item
  button.accordion-button.collapsed::after {
  background-color: #ff173d;
  color: #fff;
}

/* FAQ-CSS-END */

/* Home-Contact-CSS-START */

section.Contact {
  margin: 50px 0 50px;
}

section.Contact .contact_box {
  padding: 30px 30px 50px;
  background: #fff;
  box-shadow: 0 0 60px 30px #00000005;
  position: relative;
}

section.Contact .contact_box .contact_info {
  padding: 40px;
  background: #ff173d;
  border-radius: 25px;
}

section.Contact .contact_box .contact_info h2 {
  font-size: 28px;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

section.Contact .contact_box .contact_info p {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}

section.Contact .contact_box .contact_info ul {
  padding: 0;
  margin: 50px 0 0px;
}

section.Contact .contact_box .contact_info ul li {
  list-style: none;
  margin: 0 0 50px;
}

section.Contact .contact_box .contact_info ul li a {
  color: #fff;
  text-decoration: none;
  display: flex;
  gap: 20px;
  font-weight: 300;
}

section.Contact .contact_box .contact_info ul li a i {
  margin-top: 4px;
}

section.Contact .contact_box .contact_from form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

section.Contact .contact_box .contact_from form .form-group {
  width: calc(50% - 10px);
  margin: 0 0 45px;
}

section.Contact .contact_box .contact_from form .form-group label {
  display: block;
  font-weight: 500;
  color: #636363;
  font-size: 12px;
  margin: 0 0 5px;
}

section.Contact .contact_box .contact_from form .form-group input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #8d8d8d;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}

section.Contact .contact_box .contact_from form .form-group textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #8d8d8d;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}

section.Contact .contact_box .contact_from form .button {
  width: 100%;
  text-align: right;
}

section.Contact .contact_box .contact_from form .button button {
  padding: 15px 48px;
  border: 0;
  background: #ff173d;
  border-radius: 50px;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

section.Contact .contact_box .contact_from form .button button:hover {
  transform: scale(1.05);
  background: #222;
}

section.Contact .contact_box .contact_info {
  position: relative;
  overflow: hidden;
}

section.Contact .contact_box .contact_info::before {
  content: "";
  width: 130px;
  height: 130px;
  background: #222;
  opacity: 0.1;
  position: absolute;
  bottom: 60px;
  right: -60px;
  border-radius: 110px;
}

section.Contact .contact_box .contact_info::after {
  content: "";
  width: 70px;
  height: 70px;
  background: #222;
  opacity: 0.1;
  position: absolute;
  bottom: 130px;
  right: 20px;
  border-radius: 110px;
}

section.Contact .contact_box::before {
  content: "";
  width: 115px;
  height: 68px;
  position: absolute;
  bottom: 0;
  right: 130px;
  background-image: url(../contact_bottom_arrow.svg);
  background-size: 100%;
}

/* Home-Contact-CSS-END */

/* Footer-CSS-START */

.site_footer {
  background-color: #222;
  padding: 50px 50px 0;
  color: #fff;
}

.site_footer .logo p {
  margin: 15px 0 10px;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  opacity: 0.7;
}

.site_footer .menu h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px;
}

.site_footer .menu ul {
  margin: 0;
  padding: 0;
  line-height: 48px;
}

.site_footer .menu ul li {
  list-style: none;
}

.site_footer .menu ul li a {
  color: #fff;
  font-weight: 300;
  text-decoration: none;
  display: block;
}

.site_footer .menu ul li a:hover {
  font-weight: 500;
}

.site_footer .contact_info ul {
  padding: 0;
  margin: 0px 0 0px;
}

.site_footer .contact_info ul li {
  list-style: none;
  margin: 0 0 20px;
}

.site_footer .contact_info ul li a {
  display: flex;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}

.site_footer .contact_info ul li a i {
  margin: 4px 0 0;
}

.site_footer .contact_info .social {
  padding: 0 0 0 20px;
  display: flex;
  gap: 6px;
}

.site_footer .contact_info .social a {
  display: flex;
  width: 38px;
  height: 38px;
  background: #ffffff38;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  color: #ffffffc7;
  text-decoration: none;
  transition: 0.3s;
}

.site_footer .contact_info .social a:hover {
  color: #fff;
  background: #f30d38;
}

.site_footer .copyrights {
  margin: 20px 0 0;
  border-top: 1px solid #ffffff36;
  padding: 20px 0 20px;
  text-align: center;
}

.site_footer .copyrights p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
}

/* Footer-CSS-END */

/* Booking_page_css_start */

.mainData .boxes_inner .box_inner {
  width: 100%;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 30px 0px #00000010;
}

.mainData .boxes_inner .box_inner nav {
  margin: 0 0 12px;
}

.mainData .boxes_inner .box_inner nav button {
  padding: 12px 20px;
  border: 0;
  font-weight: 400;
  color: #fff;
  background-color: #b3b3b3;
  border-radius: 8px 0px 0px 8px;
  width: 200px;
}

.mainData .boxes_inner .box_inner nav div#nav-tab {
  border: 0;
}

.mainData .boxes_inner .box_inner nav button.active {
  background-color: #ff173d;
  font-weight: 600;
}

.mainData .boxes_inner .box_inner nav button#nav-SeasonPass-tab {
  border-radius: 0px 8px 8px 0px;
  margin-left: 1px;
}

.mainData .boxes_inner .box_inner form .form-group label {
  display: block;
  margin: 0 0 5px;
  font-weight: 500;
}

.mainData .boxes_inner .box_inner form .form-group label span {
  color: #f40d38;
}

.mainData .boxes_inner .box_inner form .form-group input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
}

.mainData .boxes_inner .box_inner form .form-group {
  position: relative;
}

.mainData .boxes_inner .box_inner form .form-group button {
  border: 0;
  padding: 8px 25px;
  background: #222;
  color: #fff;
  border-radius: 6px;
  position: absolute;
  right: 5px;
  bottom: 5px;
  transition: 0.3s;
}

.mainData .boxes_inner .box_inner form .form-group button:hover {
  background: #f40d38;
}

.mainData .boxes_inner .box_inner form .Button {
  text-align: right;
  margin: 20px 0 0;
}

.mainData .boxes_inner .box_inner form .Button button {
  background-color: #f40d38;
  border: 0;
  padding: 15px 45px;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.mainData .boxes_inner .box_inner form .Button button:hover {
  transform: scale(1.05);
}

.mainData .boxes_inner .box_inner form .Button button.disabled {
  background: #b3b3b3;
  cursor: not-allowed;
}

.info_form form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.info_form form .form-group {
  width: calc(33.33% - 10px);
}

.info_form form .form-group input.readonly {
  background-color: #f1f1f1;
}

.info_form form .price_button {
  width: 100%;
  margin: 50px 0 0;
  border-top: 1px solid #ccc;
  padding: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.info_form form .price_button .price span {
  font-size: 14px;
  font-weight: 300;
}

.info_form form .price_button .price h4 {
  margin: 0 0 0;
  font-size: 32px;
  font-weight: 700;
  color: #222;
}

.info_form form .price_button .price h4 small {
  font-size: 16px;
  font-weight: 500;
}

.info_form form .price_button .button button {
  border: 0;
  padding: 13px 48px;
  border-radius: 50px;
  background: #ff173d;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.info_form form .price_button .button button:hover {
  transform: scale(1.05);
  background: #222;
}

.boxes_inner {
  margin: 0 0 20px;
}

/* -------------- */

.stepper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.form-step {
  display: none;
}
.form-step.active {
  display: block;
}

.form-step button {
  padding: 10px 15px;
  margin-top: 20px;
  cursor: pointer;
}

.step.active {
  border-color: #aaa;
  color: #888;
}
.step.current {
  border-color: red;
  color: black;
  font-weight: bold;
}

label span {
  color: red;
}

.mainData .boxes_inner .box_inner .stepper .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  position: relative;
}

.mainData .boxes_inner .box_inner .stepper .step span.dot {
  width: 30px;
  height: 30px;
  background: #c7c7c7;
  display: flex;
  border-radius: 50px;
  border: 2px solid #fff;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.mainData .boxes_inner .box_inner .stepper .step span.dot span.inner_dot {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: #fff;
  border-radius: 50px;
}

.mainData .boxes_inner .box_inner .stepper .step span.step_text {
  color: #8b8b8b;
  font-weight: 500;
  margin: 10px 0 0;
}

.mainData .boxes_inner .box_inner .stepper .step.current span.dot {
  background: #ff173d;
}

.mainData .boxes_inner .box_inner .stepper .step.current span.step_text {
  color: #ff173d;
  font-weight: 600;
}

.heading_tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.heading_tab .ATS_LOUDGE_TAB div#nav-tab {
  border: 0;
}

.heading_tab .ATS_LOUDGE_TAB div#nav-tab button {
  width: 250px;
  border: 0;
  padding: 10px 0;
  background: #a9a9a9;
  color: #fff;
  border-radius: 50px 0 0 50px;
}

.heading_tab .ATS_LOUDGE_TAB div#nav-tab button.active {
  background: #ff173d;
  font-weight: 500;
}

.heading_tab .ATS_LOUDGE_TAB div#nav-tab button#nav-LodgetoSkitube-tab {
  border-radius: 0 50px 50px 0;
}

.ATS_LOUDGE_TAB_DATA .Ticket_type_tab div#nav-tab button {
  width: calc(50% - 8px);
  padding: 10px 0;
  border: 1px solid #cacaca;
  border-radius: 8px;
  background-color: #fff;
  color: #767676;
  font-size: 20px;
}

.ATS_LOUDGE_TAB_DATA .Ticket_type_tab div#nav-tab {
  border: 0;
  gap: 15px;
  margin: 20px 0 20px;
}

.ATS_LOUDGE_TAB_DATA .Ticket_type_tab div#nav-tab button span {
  display: block;
  font-size: 18px;
}

.ATS_LOUDGE_TAB_DATA .Ticket_type_tab div#nav-tab button.active {
  background: #ff173d;
  color: #fff;
  font-weight: 500;
  border-color: #ff173d;
}

.Ticket_type_tab div#nav-tabContent .top_form form {
  display: flex;
  gap: 15px;
}

.Ticket_type_tab div#nav-tabContent .top_form form .form-group {
  flex: 1;
}

.Ticket_type_tab div#nav-tabContent .top_form form .form-group label {
  display: block;
  margin: 0 0 5px;
}

.Ticket_type_tab div#nav-tabContent .top_form form .form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  color: #636363;
  font-weight: 500;
  outline: none;
}

.Ticket_type_tab div#nav-tabContent .top_form form .form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  color: #636363;
  font-weight: 500;
  outline: none;
}

.Ticket_type_tab div#nav-tabContent .top_form {
  margin: 0 0 20px;
}

.mainData .boxes_inner .box_inner .stepper .step::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: #c7c7c7;
  top: 13px;
  z-index: 0;
  left: 50%;
}

.mainData .boxes_inner .box_inner .stepper .step span.dot {
  position: relative;
}

.mainData .boxes_inner .box_inner .stepper .step:last-child::before {
  display: none;
}

.mainData .boxes_inner .box_inner .stepper .step.active span.dot {
  color: black;
  font-weight: bold;
  background: #ff173d;
}

.mainData .boxes_inner .box_inner .stepper .step.active span.step_text {
  color: #ff173d;
  font-weight: 600;
}

.mainData .boxes_inner .box_inner .stepper .step.active::before {
  background: #ff173d;
}

.mainData
  .boxes_inner
  .box_inner
  .stepper
  .step.active
  span.dot
  span.inner_dot {
  background: transparent;
  position: relative;
}

.mainData
  .boxes_inner
  .box_inner
  .stepper
  .step.active
  span.dot
  span.inner_dot::before {
  content: "\f00c";
  font-family: "FontAwesome";
  color: #fff;
  align-items: revert-layer;
  justify-content: center;
  position: absolute;
  left: 0;
  top: -4px;
  width: auto;
  height: auto;
}

.form-step .fare-box {
  background: #fff;
  overflow: hidden;
  margin: auto;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
}

.form-step .fare-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fef6f8;
  border-bottom: 1px solid #ccc;
}

.form-step .fare-info {
  width: 33.33%;
}

.form-step .fare-info h4 {
  margin: 0;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
}

.form-step .fare-info small {
  color: #777;
}

.form-step .price {
  font-weight: 400;
  color: #333;
  width: 100px;
}

.form-step .controls {
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-step .controls button {
  width: 50px;
  height: 40px;
  font-size: 25px;
  border: none;
  background: #fffafb;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 500;
  margin: 0;
  border: 1px solid #ccc;
  padding: 0;
  align-items: center;
  justify-content: center;
  display: flex;
}

.form-step .controls input {
  width: 50px;
  text-align: center;
  border: none;
  background: #ffd5dc;
  border-radius: 0;
  font-weight: 600;
  height: 40px;
  outline: none;
}

.form-step .total {
  width: 33.33%;
  text-align: right;
  font-weight: bold;
  color: #444;
}

.form-step .fare-item .price_Controls {
  display: flex;
  align-items: center;
  width: 33.33%;
  gap: 70px;
}

.form-step .controls button.minus {
  border-radius: 8px 0px 0px 8px;
}

.form-step .controls button.plus {
  border-radius: 0px 8px 8px 0px;
}

.form-step .fare-item:last-child {
  border-bottom: none;
}

.data_steper .payment_and_button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 20px;
}

.data_steper .payment_and_button .total_payble_amount h5#discountTotal {
  display: none;
}

.data_steper .payment_and_button .total_payble_amount {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 10px;
  align-items: baseline;
  width: 50%;
}

.data_steper .payment_and_button .total_payble_amount span {
  display: block;
  width: 100%;
  margin: 0 0 0px;
}

/* .data_steper .payment_and_button .total_payble_amount h2#grandTotal {
  font-size: 32px;
  font-weight: 600;
  max-width: 150px;
  width: 100%;
  margin: 0;
  display: flex;
  align-items: baseline;
} */

.data_steper .payment_and_button .total_payble_amount h2#grandTotal {
  font-size: 32px;
  font-weight: 600;
  width: auto;
  margin: 0;
  display: flex;
  align-items: baseline;
}

.data_steper .payment_and_button .total_payble_amount h5#totalAmount {
  font-size: 20px;
  color: #636363;
  text-decoration: line-through;
  display: flex;
  align-items: baseline;
  margin: 0 0 0;
}

.data_steper .payment_and_button .total_payble_amount h5#totalAmount small {
  font-size: 14px;
}

.data_steper .payment_and_button .total_payble_amount h2#grandTotal small {
  font-size: 16px;
}

.data_steper .payment_and_button .buttons button {
  margin: 0;
  padding: 12px 50px;
  border: 0;
  border-radius: 50px;
  font-weight: 500;
  color: #fff;
  background: #ff173d;
  transition: 0.3s;
}

.data_steper .payment_and_button .buttons button:hover {
  transform: scale(1.01);
}

.data_steper .payment_and_button .buttons button.black {
  background: #222;
}

.time-slots {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  grid-template-columns: repeat(8, 1fr);
}

.time-slot {
  padding: 10px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  /* width: calc(12.5% - 9px); */
}

.time-slot.selected {
  background: #e6f3e6;
  border-color: #008000;
  padding: 10px 0;
}

.selected-range {
  margin-top: 20px;
  font-family: sans-serif;
}

.range-item {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  padding: 6px 10px;
  background: #f0f0f0;
  border-radius: 20px;
}

.range-item span {
  margin-right: 8px;
}

.time-slot.selected i {
  color: red;
}

.heading.inner_pages {
  display: flex;
  align-items: center;
  width: 60%;
  justify-content: space-between;
  margin: 5px 0 15px;
}

.time_slot_form form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.time_slot_form form .form-group {
  width: calc(25% - 12px);
}

.time_slot_form form .form-group:last-child {
  width: 100%;
}

.time_slot_form form .form-group select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
}

.mainData .boxes_inner .box_inner form .form-group .readonly {
  background: #f7f7f7;
  border-color: #f9cbd2;
  cursor: not-allowed;
}

.mainData .boxes_inner .box_inner form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
}

section.inner_banner_main {
  margin: -136px 0 50px;
  background-image: url(../hero_banner.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 210px 0 60px;
}

section.inner_banner_main .inner_banner {
  text-align: center;
}

section.inner_banner_main .inner_banner ul.breadcrumb {
  justify-content: center;
  align-items: center;
  color: #fff;
  gap: 10px;
  font-weight: 500;
}

section.inner_banner_main .inner_banner ul.breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 300;
}

section.inner_banner_main .inner_banner h2.heading {
  margin: 0;
  color: #fff;
  font-size: 42px;
  font-weight: 600;
}

section.inner_banner_main .inner_banner ul.breadcrumb i {
  color: #ff173d;
}

.heading_tab .heading h2 {
  font-size: 26px;
  color: #ff173d;
  font-weight: 600;
}

.mainData .boxes_inner .box_inner form .form-group {
  width: calc(33.33% - 7px);
}

.form-step .fare-box {
  width: 100%;
}

.mainData .boxes_inner .box_inner form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.data_steper .payment_and_button {
  width: 100%;
  border-top: 1px solid #ccc;
  margin: 30px 0 0;
}

.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.otp-inputs input {
  width: 52px;
  height: 52px;
  text-align: center;
  font-size: 28px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  outline: none;
  transition: border 0.2s;
  font-weight: 800;
}

.otp-inputs input:focus {
  border-color: #f44336;
}

.resend {
  font-size: 14px;
  color: #555;
  margin: 0 0 10px;
}

.resend a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

.Modal_custom .modal-dialog .modal-body .login_form .form .heading p strong {
  font-weight: 600;
  color: #222;
}

.Confirm_Details .Selected_fares {
  padding: 15px;
  border: 1px solid #ffbac5;
  border-radius: 10px;
}

.Confirm_Details .Selected_fares h4 {
  font-size: 16px;
  color: #ff173d;
}

.Confirm_Details .Selected_fares .fairs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 10px;
  margin: 0 0 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 0 20px 0 #cccccc29;
}

.Confirm_Details .Selected_fares .fairs h3 {
  margin: 0;
  font-size: 14px;
  color: #222;
}

.Confirm_Details .Selected_fares .fairs h3 p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: #636363;
}

.Confirm_Details .Selected_fares .fairs span {
  color: #222;
  font-weight: 500;
}

.confirmations_forms form.form_details .form-group {
  width: calc(50% - 5px) !important;
}

.confirmations_forms .coupan_main {
  width: 100%;
  margin: 5px 0 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.confirmations_forms .coupan_main h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
}

.confirmations_forms .coupan_main .coupan {
  width: calc(50% - 5px);
  display: flex;
  align-items: center;
  gap: 0px;
  border: 1px solid #ff173d;
  border-radius: 10px;
  overflow: hidden;
}

.confirmations_forms .coupan_main .coupan .text {
  background: #ff173d;
  padding: 15px 15px;
  color: #fff;
  width: 75%;
}

.Confirm_Details .Selected_fares .fairs h3 {
  min-width: 170px;
}

.confirmations_forms .coupan_main .coupan .text h6 {
  font-weight: 600;
}

.confirmations_forms .coupan_main .coupan .img {
  padding: 10px;
  width: 25%;
  text-align: center;
}

.confirmations_forms .coupan_main .coupan .text p {
  font-size: 12px;
  margin: 0 0 0;
}

.confirmations_forms .coupan_main .coupan .text .button_use {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.confirmations_forms .coupan_main .coupan .text .button_use span {
  font-size: 12px;
  font-weight: 600;
}

.confirmations_forms .coupan_main .coupan .text .button_use button {
  margin: 0 0 0;
  padding: 3px 15px;
  border: 0;
  font-size: 12px;
  color: #f40d38;
  font-weight: 600;
  background: #fff;
  border-radius: 50px;
}

.data_steper .payment_and_button {
  border-top: 1px solid #ccc;
  margin: 30px 0 0;
}

.BookingConfirmed .top_part {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.BookingConfirmed .top_part .text {
  width: 75%;
}

.BookingConfirmed .top_part .qr_code {
  width: 25%;
  text-align: right;
}

.BookingConfirmed .top_part .text .booking_confirm h2 {
  margin: 0 0 0;
  color: #008000;
  font-weight: 600;
}

.BookingConfirmed .top_part .text .booking_confirm p {
  font-weight: 500;
}

.BookingConfirmed .top_part .text .family_name h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.BookingConfirmed .top_part .text .date_pickup span {
  display: block;
  margin: 0 0 5px;
  font-size: 18px;
}

.BookingConfirmed .top_part .qr_code {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.BookingConfirmed .top_part .qr_code img {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 15px 0px #00000030;
  padding: 15px;
  border-radius: 15px;
  position: relative;
  z-index: 0;
}

.BookingConfirmed .top_part .qr_code span {
  box-shadow: 0 8px 15px 0px #00000014;
  padding: 6px 30px;
  border-radius: 15px;
  display: inline-block;
  font-size: 12px;
  position: relative;
  top: -15px;
  z-index: 0;
  background: #fff;
}

.BookingConfirmed .bottom {
  background: #ff173d;
  padding: 0px 30px 30px;
  display: flex;
  justify-content: space-between;
}

.BookingConfirmed .bottom .left_text span {
  display: inline-block;
  background: #ff173d;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  padding: 8px 20px;
  border: 2px solid #fff;
  border-radius: 50px;
  position: relative;
  box-shadow: 0 -5px 10px 0 #00000033;
  font-weight: 500;
  margin: -24px 0 15px;
}

.BookingConfirmed .bottom .left_text {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: baseline;
}

.BookingConfirmed .bottom .left_text .my_booking {
  margin: 20px 0 0;
}

.BookingConfirmed .bottom .left_text .my_booking button {
  display: inline-block;
  background: #ff173d;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  padding: 8px 20px;
  border: 2px solid #fff;
  border-radius: 50px;
  position: relative;
  font-weight: 500;
  margin-right: 10px;
}

.BookingConfirmed .bottom .left_text .my_booking a {
  color: #fff;
  font-weight: 300;
}

.BookingConfirmed .bottom .right_details {
  margin: 20px 0 0;
}

.BookingConfirmed .bottom .right_details .date {
  background: #fff;
  border-radius: 6px;
  padding: 10px;
}

.BookingConfirmed .bottom .right_details .date .text_date {
  text-align: center;
}

.BookingConfirmed .bottom .right_details .date .text_date strong {
  font-size: 40px;
}

.BookingConfirmed .bottom .right_details .date .text_date span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 14px;
}

.BookingConfirmed .bottom .right_details .date .text_date span p {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.BookingConfirmed .bottom .right_details .date .price {
  border-top: 1px solid #ccc;
  margin: 10px 0 0;
  padding: 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.BookingConfirmed .bottom .right_details .date .price strong {
  font-size: 18px;
}

.BookingConfirmed .bottom .right_details .date .price strong small {
  font-size: 14px;
  font-weight: 500;
}

.BookingConfirmed .bottom .right_details .date .price p {
  font-size: 12px;
  font-weight: 500;
  margin: 0;
}

.BookingConfirmed .bottom .right_details .date .price span.img {
  margin-left: 30px;
  background: #00800036;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.BookingConfirmed .bottom .right_details .date .price span.img img {
  width: 22px;
  height: 22px;
  background: #0080008f;
  border-radius: 50px;
  padding: 3px;
}

/* Booking_page_css_end */

/* SKI Session Ticket css start  */

.Session_ticket .top_bar .heading h2 {
  font-size: 26px;
  font-weight: 600;
  color: #ff173d;
}

.Session_ticket .top_bar .heading {
  margin: 0 0 20px;
}

.Session_ticket .top_bar button {
  width: 100%;
  margin: 0 0 20px;
  font-size: 32px;
  color: #636363;
  font-weight: 600;
  border: 2px dashed #cccccc;
  border-radius: 8px;
}

.Session_ticket .top_bar .top_form form label {
  display: block;
  margin: 0 0 5px;
  font-weight: 500;
}

.Session_ticket .top_bar .top_form form select {
  width: 100%;
  margin: 0 0 20px;
  padding: 13px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
}

/* SKI Session Ticket css end  */

/* Session Passes css start  */

section.ticket-booking.mainData .sesion_passes .heading h2 {
  margin: 0 0 20px;
  font-size: 26px;
  font-weight: 600;
  color: #ff173d;
}

.sesion_passes .boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.sesion_passes .boxes .box {
  width: calc(33.33% - 10px);
  padding: 15px;
  border: 1px solid #cccc;
  border-radius: 15px;
}

.sesion_passes .boxes .box .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px dashed #ff173d;
  margin: 0 0 10px;
  padding: 0 0 10px;
}

.sesion_passes .boxes .box .top h4.pass_name {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
}

.sesion_passes .boxes .box .middle {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin: 15px 0 15px;
}

.sesion_passes .boxes .box .middle .data span {
  font-size: 14px;
}

.sesion_passes .boxes .box .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px dashed red;
  padding: 15px 0 0px;
}

.sesion_passes .boxes .box .bottom span.price {
  font-size: 26px;
  font-weight: 700;
}

.sesion_passes .boxes .box .bottom button {
  font-size: 14px;
  border: 0;
  background: #ff173d;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  transition: 0.3s;
}

.sesion_passes {
  margin: 0 0 40px;
}

.sesion_passes .boxes .box .bottom button:hover {
  transform: scale(1.05);
  background: #222;
}

.Session_Passes .modal-dialog {
  max-width: 900px;
}

.Session_Passes .modal-dialog .modal-content {
  border-radius: 15px;
}

.Session_Passes .modal-dialog .modal-content .modal-header {
  border: 0;
  padding: 20px 30px;
}

.Session_Passes .modal-dialog .modal-content .modal-header h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #222;
}

.Session_Passes .modal-dialog .modal-content .modal-header button.close {
  border: 0;
  padding: 0;
  line-height: 0;
  background: transparent;
  font-size: 32px;
  color: #636363;
}

.passes_form .form form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.passes_form .form form .form-group {
  width: calc(50% - 6px);
}

.passes_form .form form .form-group label {
  display: block;
  font-weight: 500;
  margin: 0 0 3px;
}

.passes_form .form form .form-group input {
  width: 100%;
  font-size: 14px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
}

.passes_form .form form .form-group textarea {
  width: 100%;
  font-size: 14px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
}

.passes_form .form form .button {
  text-align: right;
}

.passes_form .form form .button button {
  padding: 10px 70px;
  border: 0;
  background: #ff173d;
  border-radius: 50px;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.passes_form .form form .button button:hover {
  transform: scale(1.05);
  background: #222;
}

.passes_form {
  padding: 0 15px 5px;
}

div#SessionPassesSuccessModal {
  backdrop-filter: blur(10px);
  background-color: #00000033;
}

div#SessionPassesSuccessModal .modal-dialog.modal-dialog-centered {
  max-width: 640px;
}

div#SessionPassesSuccessModal
  .modal-dialog.modal-dialog-centered
  .modal-content {
  border: 0;
  border-radius: 15px;
}

div#SessionPassesSuccessModal
  .modal-dialog.modal-dialog-centered
  .modal-content
  .modal-header {
  border: 0;
  padding: 10px;
  justify-content: end;
}

div#SessionPassesSuccessModal
  .modal-dialog.modal-dialog-centered
  .modal-content
  .modal-header
  button.close {
  border: 0;
  background: transparent;
  padding: 0;
  line-height: 100%;
  font-size: 32px;
}

div#SessionPassesSuccessModal
  .modal-dialog.modal-dialog-centered
  .modal-content
  .modal-body {
  text-align: center;
  margin: 0 0 20px;
}

div#SessionPassesSuccessModal
  .modal-dialog.modal-dialog-centered
  .modal-content
  .modal-body
  .success_msg
  img {
  width: 90px;
  height: 90px;
  padding: 17px;
  background: #cce6cc;
  border-radius: 50px;
  margin: 0 0 30px;
}

div#SessionPassesSuccessModal
  .modal-dialog.modal-dialog-centered
  .modal-content
  .modal-body
  h2 {
  font-size: 26px;
  font-weight: 600;
  color: #222;
}

div#SessionPassesSuccessModal
  .modal-dialog.modal-dialog-centered
  .modal-content
  .modal-body
  p {
  margin: 0 0 30px;
}

div#SessionPassesSuccessModal
  .modal-dialog.modal-dialog-centered
  .modal-content
  .modal-body
  button.close {
  padding: 12px 50px;
  border: 0;
  background: #ff173d;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

div#SessionPassesSuccessModal
  .modal-dialog.modal-dialog-centered
  .modal-content
  .modal-body
  button.close:hover {
  background: #222;
  transform: scale(1.05);
}

/* Session Passes css end  */

/* About_us_css_start */

section.strip {
  margin: 50px 0;
  background: #ff173d;
  padding: 30px 0;
}

section.strip .counts {
  display: flex;
  justify-content: space-between;
}

section.strip .counts span.numebr {
  display: inline-block;
}

section.strip .counts .count {
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.strip .counts .count span.number {
  color: #fff;
  font-size: 70px;
  font-weight: 700;
}

section.strip .counts .count span.text {
  font-size: 24px;
  color: #fff;
  margin: -25px 0 0;
}

.img.why_choose_us_img::before {
  display: none;
}

section.why_choose_us .img.why_choose_us_img.img .one {
  width: 100%;
}

section.why_choose_us .img.why_choose_us_img.img .two {
  width: calc(53% - 5px);
  margin: 12px 12px 0 0px;
}

section.why_choose_us .img.why_choose_us_img.img .three {
  width: calc(45% - -4px);
  right: 0;
  top: -230px;
  left: auto;
}

section.why_choose_us .img.why_choose_us_img {
  display: flex;
  flex-wrap: wrap;
}

section.why_choose_us .aboutcontant {
  margin: 0;
  top: 0;
}

section.why_choose_us .aboutcontant h2 {
  margin: 0 0 10px;
}

section.why_choose_us .aboutcontant p {
  margin: 0 0 40px;
}

section.why_choose_us .row {
  align-items: flex-start;
}

section.Meet_With_Guide .heading {
  text-align: center;
}

section.Meet_With_Guide .heading h4 {
  font-size: 20px;
  font-weight: 400;
}

section.Meet_With_Guide .team_info .img_social {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
}

section.Meet_With_Guide .team_info .img_social img {
  width: 100%;
  border-radius: 10px;
  transition: 0.5s;
}

section.Meet_With_Guide .team_info:hover .img_social img {
  transform: scale(1.05);
}

section.Meet_With_Guide .team_info .img_social .social {
  width: 60%;
  text-align: center;
  transition: 0.5s;
  padding: 10px;
  margin: 0px auto;
  position: absolute;
  bottom: -60px;
  border-radius: 10px;
  background: #00000078;
  border: 1.5px solid #ffffff7a;
}

section.Meet_With_Guide .team_info .img_social .social a {
  text-align: center;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background: #fff;
  color: #222;
  align-content: center;
  font-size: 14px;
  border: 1px solid #ff173d;
  transition: 0.3s;
}

section.Meet_With_Guide .team_info .img_social .social a:hover {
  background: #ff173d;
  color: #fff;
}

section.Meet_With_Guide .team_info:hover .img_social .social {
  bottom: 10px;
}

section.Meet_With_Guide .team_info .name_position {
  text-align: center;
  margin: 10px 0 0;
}

section.Meet_With_Guide .team_info .name_position h4 {
  font-weight: 600;
  margin: 0 0 0;
}

section.Meet_With_Guide .team_info .name_position p {
  margin: 0 0 0;
  color: #636363;
}

section.Meet_With_Guide {
  background-color: #f1f1f1;
  padding: 40px 0;
  margin: -150px 0 40px;
}

/* About_us_css_end */

/* FAQs_css_start */

section.Frequently_Asked_Question.inner_page_faq {
  padding: 0;
  margin: 0 0 50px;
  background: transparent;
}

section.Frequently_Asked_Question.inner_page_faq
  .faq
  .accordion-item
  button.accordion-button.collapsed {
  background: #f7f7f7;
}

/* FAQs_css_end */

/* contact_us_css_start */

section.contact_info .info {
  background-color: #f7f7f7;
  padding: 25px;
  border-radius: 15px;
  min-height: 232px;
}

section.contact_info .info span.icon {
  display: inline-block;
  width: 70px;
  height: 70px;
  background: #ff173d;
  border-radius: 70px;
  text-align: center;
  align-content: center;
  color: #fff;
  font-size: 26px;
  margin: 0 0 30px;
}

section.contact_info .info .text h4 {
  font-weight: 600;
  color: #222;
  margin: 0 0 5px;
}

section.contact_info .info .text p {
  margin: 0 0 0;
  color: #636363;
}

section.contact_info {
  margin: 0 0 50px;
}

section.get_in_touch_form .title h2 {
  margin: 0 0 0;
}

section.get_in_touch_form .title p {
  color: #636363;
  margin: 0 0 50px;
}

section.get_in_touch_form .form form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

section.get_in_touch_form .form form .form-group {
  width: calc(50% - 10px);
  margin: 0 0 45px;
}

section.get_in_touch_form .form form .form-group label {
  display: block;
  font-weight: 500;
  color: #636363;
  font-size: 12px;
  margin: 0 0 5px;
}

section.get_in_touch_form .form form .form-group input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #8d8d8d;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}

section.get_in_touch_form .form form .form-group textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #8d8d8d;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}

section.get_in_touch_form .form form .button {
  width: 100%;
}

section.get_in_touch_form .form form .button button {
  padding: 15px 48px;
  border: 0;
  background: #ff173d;
  border-radius: 50px;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
  width: 100%;
}

section.get_in_touch_form .form form .button button:hover {
  background: #222;
  transform: scale(1.02);
}

section.get_in_touch_form .contact_info_main {
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 0 40px 0px #00000024;
  padding: 50px;
  margin: 0 0 50px;
}

section.get_in_touch_form {
  background-image: url(../contact_bg_img.svg);
  background-size: 100%;
  padding: 100px 0 0;
  background-position-y: -210px;
  background-repeat: no-repeat;
}

/* contact_us_css_end */

/* my bookings css start */

section.my_bookings_main .booking_tab {
  padding: 30px;
  margin: 0 0 25px;
  background-color: #fff;
  box-shadow: 0 0 30px 0px #0000001f;
  border-radius: 10px;
}

section.my_bookings_main .booking_tab ul#myTab {
  margin: 0 0 20px;
  border: 0;
}

section.my_bookings_main
  .booking_tab
  ul#myTab
  li.nav-item
  button#Completed-tab {
  border-radius: 0 50px 50px 0;
}

section.my_bookings_main .booking_tab ul#myTab li.nav-item {
  width: 50%;
}

section.my_bookings_main .booking_tab ul#myTab li.nav-item button {
  width: 100%;
  font-size: 18px;
  text-transform: uppercase;
  background: #ffd9d9;
  border-radius: 50px;
  color: #ff788b;
  font-weight: 500;
  border: 0;
  padding: 12px;
}

section.my_bookings_main .booking_tab ul#myTab li.nav-item button#Upcoming-tab {
  border-radius: 50px 0px 0 50px;
}

section.my_bookings_main .booking_tab ul#myTab li.nav-item button.active {
  background: #ff173d;
  font-weight: 600;
  color: #fff;
}

section.my_bookings_main .booking_tab .data .box {
  padding: 20px;
  border: 1px solid #ccc;
  margin: 0 0 20px;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
}

section.my_bookings_main .booking_tab .data .box .date {
  font-size: 20px;
}

section.my_bookings_main .booking_tab .data .box .booking_info span {
  font-size: 18px;
}

section.my_bookings_main
  .booking_tab
  .data
  .box
  .price_status_info
  .payment
  strong {
  font-size: 20px;
}

section.my_bookings_main .booking_tab .data .box .price_status_info {
  text-align: right;
}

section.my_bookings_main .booking_tab .data .box .price_status_info .payment p {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
}

section.my_bookings_main
  .booking_tab
  .data
  .box
  .price_status_info
  .status
  strong {
  color: #ffaaa4;
  font-weight: 600;
}

section.my_bookings_main
  .booking_tab
  .data
  .box
  .price_status_info
  .status.missed
  strong {
  color: red;
}

section.my_bookings_main
  .booking_tab
  .data
  .box
  .price_status_info
  .status.Completed
  strong {
  color: green;
}

section.my_bookings_main
  .booking_tab
  .data
  .box
  .price_status_info
  .button
  button {
  border: 0;
  background: #222222;
  padding: 5px 15px;
  border-radius: 50px;
  color: #fff;
  margin: 10px 0 0;
  font-size: 14px;
  transition: 0.3s;
}

section.my_bookings_main
  .booking_tab
  .data
  .box
  .price_status_info
  .button
  button:hover {
  transform: scale(1.05);
  background: #f40d38;
}

div#ShareFeedbackModal .modal-dialog {
  max-width: 850px;
  border-radius: 15px;
  overflow: hidden;
}

div#ShareFeedbackModal .modal-dialog .modal-content {
  border-radius: 15px;
}

div#ShareFeedbackModal .modal-header {
  border: 0;
}

div#ShareFeedbackModal .feedback .stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
}

div#ShareFeedbackModal .feedback textarea {
  width: 100%;
  margin: 0 0 20px;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 8px;
  outline: none;
}

div#ShareFeedbackModal .feedback .button {
  text-align: right;
  margin: 0 0 10px;
}

div#ShareFeedbackModal .feedback .button button {
  border: 0;
  background: #ff173d;
  padding: 12px 28px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

div#ShareFeedbackModal .feedback .button button:hover {
  transform: scale(1.05);
  background: #333;
}

div#ShareFeedbackModal .modal-header button.close {
  border: 0;
  padding: 0px;
  line-height: 100%;
  font-size: 42px;
  color: #333;
  background: transparent;
}

/* my bookings css end */

/* policy_css_start */

section.policy_contant {
  margin: 0 0 40px;
}

section.policy_contant h2 {
  font-size: 22px;
  font-weight: 600;
}

/* policy_css_end */
