@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
:root{
  --main_color:rgb(226, 210, 247);
  --sub_main_color:rgb(0, 15, 73);
  --sub_main_color20:rgba(0, 10, 51,.2);
  
  --main_padding:0px 50px;
  
  --max_width:1024px;
  
  --header_height:80px;
  --header_logo_width:200px;
  --header_padding:0px 50px;
  
  --banner_margin:0px auto ;
  --banner_font:'Poppins';

  --heading_font:'Poppins';
  --text_font:'Poppins';
  
  --radius:5px;
}
*{
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  color: var(--sub_main_color);
}
html{
  width: 100%;
  height: 100vh;
  font-size: .75rem;
}
body{
  width: 100%;
  background: var(--main_color) url(https://cheapdummyticket.com/images/square1.svg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 40%;
  font-family:var(--text_font) , sans-serif , Arial ;
  scroll-behavior: smooth;
}

.flex{
  display: flex;
}
.flex_justify_center{
  justify-content: center;
}
.flex_align_center{
  align-items: center;
}
.flex_justify_between{
  justify-content: space-between;
}
.flex_column{
  flex-direction: column;
}
.grid{
  display: grid;
}
.col2{
  grid-template-columns: auto auto;
}
.btn {
  display: block;
  color: var(--main_color);
  background: var(--sub_main_color);
  padding: 10px 15px;
  width: fit-content;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
}

.h_scroll{
  overflow-x: scroll;
}
.hidden_scrollbar::-webkit-scrollbar{
  display: none;
}
.width_full{
  width: 100%;
}
.width_50{
  width: 50%;
}
.max_width{
  max-width: var(--max_width);
}
.main_padding{
  padding: var(--main_padding);
}
.margin{
  margin: 10px;
}
.margin_center{
  margin: 0px auto;
}
.margin_top{
  margin-top: 50px;
}

a{
  text-decoration: none;
}

.pointer{
  cursor: pointer;
}

.card_bg{
  backdrop-filter: blur(5px);
  background: var(--sub_main_color20);
  border-radius: var(--radius);
  padding: 20px;
}

.card{
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 20px;
  cursor: default;
}
.card .icon{
  width: 60px;
  height: 60px;
  background: var(--sub_main_color);
  border-radius: var(--radius);
  color: var(--main_color);
  grid-area: 1/1/-1/2;
  align-self: start;
}
.card .icon img{
  width: 70%;
  height: 70%;
}
.heading {
  width: 100%;
  font-size: 1.5em;
  text-align: center;
}
.padding_bottom{
  padding-bottom: 10px;
}
.text_left {
  text-align: left;
}
.heading small{
  display: inline-block;
  margin-bottom: 15px;
}
.link{
  text-decoration: underline;
  transition: .3s;
}
.link:hover{
  background: var(--sub_main_color20);
  padding: 0px 5px;
  border-radius: var(--radius);
}
input,textarea,button, select{
  outline: none;
  border: none;
  border-radius: var(--radius);
  background: var(--sub_main_color20);
  width: 100%;
  padding: 10px;
  font-family: poppins,Arial, Helvetica, sans-serif;
}
select{
  padding-left:unset;
}
input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{
  color: var(--sub_main_color);
}
button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.alert{
  padding: 10px;
  border-radius: var(--radius);
  line-height: 18px;
  max-width: 530px;
  margin: 0px auto;
}
.alert_success{
  background: rgba(0, 128, 0, 0.2);
  --sub_main_color:rgb(0, 68, 0);
}
.alert_fail{
  background: rgba(128, 0, 0, 0.2);
  --sub_main_color:rgb(68, 0, 0);
}
.border{
  border: 1px solid
}

.header {
  height: var(--header_height);
  padding: var(--header_padding);
  z-index: 1;
  background: var(--main_color);
  position: sticky;
  top: 0px;
}

.header .header_logo {
  width: var(--header_logo_width);
}

.header .header_logo img {
  width: 100%;
  height: auto;
}

.header .header_nav .whatsapp {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(images/whatsapp.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.header .header_nav .number {
  padding: 7px;
  font-size: 12px;
  font-weight: 500;
}

.menu {
  position: fixed;
  top: 0px;
  left: 100%;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: var(--main_color);
  transition: all .3s;
  z-index: 5;
}

.close {
  width: 40px;
  height: 40px;
  background: var(--sub_main_color20);
  border-radius: 50%;
  line-height: 18px;
  font-size: 18px;
  position: absolute;
  top: 50px;
  left: 95%;
  transform: translateX(-50%);
}

.menu_list {
  list-style-type: none;
  margin-top: var(--header_height);
}

.menu_list li a {
  padding: 15px;
  display: block;
  font-weight: bold;
  font-size: 20px;
}

.menu_bar span {
  width: 25px;
  height: 2px;
  background: var(--sub_main_color);
  display: block;
  margin-bottom: 6px;
}

.menu_bar span:last-child {
  margin-bottom: 0px;
}

section {
  z-index: 0;
  position: relative;
}

.banner {
  width: 100%;
  height: calc(100vh - var(--header_height));
  gap: 20px;
  justify-content: space-evenly;
}

.banner_box h1 {
  font-size: 77px;
  line-height: 90px;
  font-family: var(--banner_font);
}

.banner_box small {
  font-weight: 300;
  font-size: 14px;
}

.banner_btn {
  margin-top: 40px;
  font-size: 18px;
  padding: 10px 25px;
}

.banner_card {
  width: clamp(270px, 80%, 340px);
  height: clamp(400px, 90%, 500px);
  background: var(--sub_main_color20);
  backdrop-filter: blur(5px);
  border-radius: var(--radius);
  padding: 5px;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.card_body {
  overflow: hidden;
  display: flex;
}

.rvbody,
.srvbody,
.srvbody{
  scrollbar-width: 0px;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  border-radius: var(--radius);
  height: 100%;
  flex-shrink: 0;
}

.rvbody::-webkit-scrollbar,
.srvbody::-webkit-scrollbar{
  display: none;
}

.card_header {
  padding-top: 5px;
}

.card_header span {
  background: var(--sub_main_color);
  color: var(--main_color);
  padding: 5px;
  border-radius: var(--radius);
  cursor: pointer;
  opacity: .5;
  transition: opacity .3s;
}

.activecard {
  opacity: 1 !important;
}

.rvcard,.srvcard ,.srvheading{
  background: white;
  width: clamp(200px, 100%, 400px);
  display: flex;
  flex-direction: column;
  padding: 10px 15px;
  border-radius: 5px;
}
.srvheading{
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items:center ;
}
.srvcard .btn{
  align-self: flex-end;
  padding:2px 10px;
  font-size: .9em;
}
.srvcard p{
  font-size:.9em ;
}
.rvcard *{
  color: black;
}

.rvheader {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.rvname {
  font-size: 15px;
  font-weight: bold;
}

.rvdate {
  text-align: right;
  font-size: .8em;
}

.rvstar img {
  display: flex;
  width: fit-content;
  margin-bottom: 5px;
  height: 27px;

}

.rvtitle {
  font-size: 16px;
  font-weight: bold;
}

.rvcontent,
.rvtitle {
  font-size: .9em;
}

.rvloc {
  padding-right: 15px;
  opacity: .5;
  text-align: right;
}

.special_box {
  gap: 20px;
}

.price_box,
.faq_box {
  gap: 20px;
}

.price {
  background: var(--sub_main_color20);
  border-radius: var(--radius);
  backdrop-filter: blur(5px);
  overflow-x: hidden;
  max-width: 300px;
  flex-shrink: 0;
}

.price_head {
  background: var(--sub_main_color);
}

.price_head * {
  color: var(--main_color);
}

.price_head,
.price_body,
.price_footer {
  padding: 20px;
}

.price_head h3 {
  font-weight: 500;
}

.price_head small {
  font-weight: 300;
}

.price_body p {
  margin: 10px 0px;
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.price_body p::before {
  content: '\22C5';
  position: absolute;
  top: 0px;
  left: -0px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}

.price_footer {
  margin-top: 20px;
}


footer {
  background: var(--sub_main_color);
  margin-top: 60px;
  font-weight: 300;
}

footer h2 {
  font-weight: 400;
}

footer * {
  color: var(--main_color);
}

.footer_nav {
  border-bottom: 2px solid rgba(226, 210, 247, .4);
}

.footer_nav img {
  width: 50%;
}

.footer_heading {
  padding-top: 40px;
}

.channels {
  justify-content: space-evenly;
  flex-wrap: wrap;
  max-width: 500px;
}

.channel {
  width: 50px;
  aspect-ratio: 1/1;
  margin: 10px;
  background: var(--main_color);
  border-radius: 50%;
}

.footer_bottom {
  font-size: 14px;
  padding-top: 40px;
  justify-content: space-between;
}

.direct_links {
  align-items: flex-end;
  gap: 15px;
}

.site_pages {
  align-items: flex-start;
  gap: 15px;
}

.fade_text {
  color: rgba(226, 210, 247, .4);
}

.footer_bottom a {
  position: relative;
}

.footer_icon {
  height: 80%;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--main_color);
  border-radius: 50%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: 100%;
  -webkit-mask-size: 100%;
}

.book {
  left: calc(100% + 5px);
  mask: url(images/page.svg);
  -webkit-mask: url(images/page.svg);
}

.footer_whatsapp {
  right: calc(100% + 5px);
  mask: url(images/whatsapp.svg);
  -webkit-mask: url(images/whatsapp.svg);
  mask-size: 90%;
  -webkit-mask-size: 90%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.footer_mail {
  right: calc(100% + 5px);
  mask: url(images/mail.svg);
  -webkit-mask: url(images/mail.svg);
}

.copyright {
  font-size: 12px;
  text-align: center;
  padding: 40px 0px;
}




@media screen and (max-width: 1060px) {
  :root {
    --max_width: 900px;
  }
  
  .banner{
    width: 100%;
    gap: 20px;
    justify-content: space-evenly;
    flex-direction: column;
    height: unset;
  }
  .banner_card{
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
  }
  
  .rvbody,.srvbody{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    justify-items: auto;
  }
  .banner_box{
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-bottom: 40px;
  }
  .rvcard,.srvbody,.srvcard{
    width: -webkit-fill-available;
  }
  .rvcard:last-child ,.srvheading {
    grid-column: 1/-1;
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  :root {
    --max_width: 730px;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --max_width: 550px;
    --main_padding: 0px 30px;
    --header_padding: 0px 20px;
  }

  .banner_box h1 {
    font-size: 55px;
    line-height: 70px;
  }
  .section{
    flex-direction: column;
    justify-content: unset;
  }


  .receipt {
    max-height: 51px;
    position: fixed;
    bottom: 20px;
    z-index: 1;
    background: var(--sub_main_color);
  }
 .receipt *{
    color: var(--main_color);
}
  .receipt.fullReceipt{
    max-height: unset;
    width: 100vw;
    bottom: 0px;
    height: 100vh;
    max-width: unset;
    border-radius: unset;
    background:var(--sub_main_color);
  }
  
  .curency-btn{
    background: var(--main_color);
    color: var(--sub_main_color);
  }
  .mobileview{
      display:inherit !important;
  }
}
@media screen and (max-width: 590px) {
  :root {
    --max_width: 450px;
  }
}

@media screen and (max-width: 479px) {
  :root {
    --max_width: 350px;
    --header_padding: 0px 20px;
    --header_logo_width: 140px;
  }

  body {
    background-size: 80%;
  }

  .banner_box h1 {
    font-size: 38px;
    line-height: 55px;
  }

  .card {
    display: flex;
    flex-direction: column;
    column-gap: 20px;
    text-align: center;
  }

  .card .icon {
    align-self: center;
  }

  .rvbody,.srvbody{
    grid-template-columns: 1fr;
  }

  .channel{
    width: 40px;
  }
  .footer_bottom{
    flex-direction: column;
    gap: 20px;
  }
  .direct_links{
    align-items: flex-start;
  }
  .footer_whatsapp{
    right: calc(-20px);
  }
  .footer_mail{
    right: calc(-20px);
  }
  .section{
    padding: 5px;
  }
  .receipt{
    max-width: var(--max_width);
}
  .receipt.fullReceipt{
    max-width: unset;
  }
}