/* Common Variables Start */
:root {
  --white: #fff;
  --light-white: #fbfbff;
  --black: #000;
  --neutral-black: #040f16;
  --neutral-red: #b80c09;
  --neutral-blue: #0b4f6c;
  --neutral-orange: #f59e0c;
  --neutral-green: #095745;
  --neutral-gold: #aa9767;
  --neutral-blue: #002664;
  --ff-pr: "Flama";
}
/* Common Variables End */

/* Common Style Start */
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  padding: 0;
  margin: 0;
  font-family: var(--ff-pr);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-pr);
}

p {
  font-family: var(--ff-pr);
}

ul {
  padding: 0;
  margin: 0;
}

.container {
  width: min(1230px, 100%);
  padding-inline: 15px;
  margin-inline: auto;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-end {
  justify-content: end;
}

.align-items-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.light-white {
  background: var(--light-white);
}

.common-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--light-white) !important;
  line-height: 1.44;
  letter-spacing: 0.1px;
  padding: 9px 25px;
  background: var(--neutral-gold);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.common-btn:hover {
  background: var(--white);
  color: var(--neutral-black);
}

button.common-btn {
  border: none;
  cursor: pointer;
}

.yellow-btn {
  background: #f59e0c;
}

.grey-btn {
  background: #a0a0a4;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive::-webkit-scrollbar {
  height: 6px;
}
.table-responsive::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

input:focus,
select:focus {
  outline: none;
}
/* Common Style End */

/* Section: Header Start */
.hdr-top-bar {
  background: var(--neutral-green);
  padding: 9px 12px;
  gap: 21px;
}

.hdr__top-col {
  padding-left: 51px;
  position: relative;
}

.hdr__top-col:before {
  content: "";
  width: 17px;
  height: 17px;
  background: var(--star-icon-url) no-repeat;
  position: absolute;
  top: 3px;
  left: 0;
}

.hdr__top-col ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 68px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hdr__top-col ul li {
  font-size: 16px;
  font-weight: 600;
  color: var(--light-white);
  line-height: 1.5;
  letter-spacing: 0.15px;
  position: relative;
}

.hdr__top-col ul li:not(:first-child):before {
  content: "";
  width: 2px;
  height: 22px;
  background: var(--white);
  position: absolute;
  top: 0;
  left: -34px;
}

.hdr__nav-bar {
  background-color: var(--white);
  padding-block: 12px 12px;
  padding-inline: 25px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18);
  z-index: 1;
}

.header-logo {
  width: 83px;
}

.header-logo img {
  width: 100%;
  height: auto;
}

.header-menu ul {
  list-style: none;
  gap: 44px;
}

.test-header-social-links {
  justify-content: center;
}

.test-header-social-links li:hover {
  overflow: hidden;
  border-radius: 30px;
  background-color: var(--neutral-green);
}

.test-header-social-links li a:hover i {
  background: var(--white) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.test-header-social-links li a i:hover {
  color: white;
}

.test-header-desktop {
  gap: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-menu ul li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral-black);
  line-height: 1.4;
  letter-spacing: 0.1px;
  text-decoration: none;
}

.header-btn-list {
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 9px;
}

.test-header-social-links li a {
  width: 30px !important;
  height: 30px !important;
  border: 1px solid #0000004f !important;
}

.header-btn-list .login-btn a,
.header-btn-list .signup-btn a {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--neutral-black);
  line-height: 1;
  letter-spacing: 0.1px;
  padding: 9px 25px;
  border-radius: 50px;
  border: 1px solid rgba(11, 79, 108, 0.15);
  background: var(--white);
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.header-btn-list .signup-btn a,
.header-btn-list .login-btn a:hover {
  background: var(--neutral-gold);
  color: var(--light-white);
  border-color: var(--neutral-gold);
}

.header-btn-list .signup-btn a:hover {
  background: var(--white);
  color: var(--neutral-black);
  border-color: rgba(11, 79, 108, 0.15);
}

.header .dropdown-btn {
  display: none;
}

@media (max-width: 1280px) {
  .hdr-top-bar {
    gap: 10px;
  }

  .hdr__top-col {
    padding-left: 35px;
  }

  .hdr__top-col ul {
    column-gap: 26px;
  }

  .hdr__top-col ul li:not(:first-child):before {
    left: -13px;
  }
}

@media (max-width: 1199px) {
  .hdr__top-col ul li {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .header-menu ul {
    gap: 25px;
  }
}

@media (max-width: 991px) {
  .header .dropdown-btn {
    display: block;
  }

  .header .dropdown-btn button {
    padding: 0;
    background: transparent;
    padding: 0;
    border: none;
  }

  .close-menu,
  .header__menu-wrap,
  .hdr__nav-bar.open__dropdown-menu .open-menu {
    display: none;
  }

  .hdr__nav-bar.open__dropdown-menu .close-menu,
  .hdr__nav-bar.open__dropdown-menu .header__menu-wrap {
    display: block;
  }

  .hdr__nav-bar .header__menu-wrap {
    width: 100%;
    padding: 15px;
    border-top: 1px solid var(--neutral-green);
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
  }

  .header-menu ul {
    gap: 15px;
  }

  .header-btn {
    margin-top: 15px;
  }

  .test-header {
    margin: 0 auto;
  }

  .header-menu ul li,
  .header-btn-list li {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hdr-top-bar {
    display: none;
  }
}
/* Section: Header End */

/* Section: Banner Start */
.banner_slide-col {
  padding-block: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.banner_slide-col .container {
  width: min(1050px, 100%);
}

.banner_slide-col h2 {
  font-size: 57px;
  font-weight: 600;
  color: var(--neutral-green);
  line-height: 1.12;
  letter-spacing: -0.25px;
  margin: 0;
}

.banner_slide-col h4 {
  font-size: 57px;
  font-weight: 600;
  color: var(--white);
  line-height: 64px;
  letter-spacing: -0.25px;
  margin-block: 0 34px;
}

.banner_slide-col p {
  font-size: 27px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.25px;
  margin-block: 0 0;
}

.banner-section .slick-prev,
.banner-section .slick-next {
  width: 45px;
  height: 45px;
  left: calc(50% - 525px - 105px);
  z-index: 99;
}

.banner-section .slick-next {
  left: auto;
  right: calc(50% - 525px - 105px);
}

.banner-section .slick-prev:before,
.banner-section .slick-next:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--left-icon-url) no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}

.banner-section .slick-next:before {
  background: var(--right-icon-url) no-repeat;
  background-size: cover;
}

.banner-section .slick-prev.slick-disabled:before,
.banner-section .slick-next.slick-disabled:before {
  opacity: 0.75;
}

@media (max-width: 1280px) {
  .banner-section .slick-prev,
  .banner-section .slick-next {
    width: 30px;
    height: 30px;
    left: calc(50% - 455px - 105px);
  }

  .banner-section .slick-next {
    left: auto;
    right: calc(50% - 455px - 105px);
  }
}

@media (max-width: 1199px) {
  .banner_slide-col .container {
    padding-inline: 60px;
  }

  .banner-section .slick-prev {
    left: 10px;
  }
  .banner-section .slick-next {
    right: 10px;
  }
}

@media (max-width: 991px) {
  .banner_slide-col {
    padding-block: 40px 150px;
  }

  .banner_slide-col .container {
    padding-inline: 50px;
  }

  .banner_slide-col h2 {
    font-size: 28px;
    margin-bottom: 5px;
  }

  .banner_slide-col h4 {
    font-size: 36px;
    line-height: 1.15;
  }
}
/* Section: Banner End */

/* Section: Ticket Filter Start */
.ticket__fliter-section .container {
  width: min(1050px, 100%);
}

.ticket__fiter-wrap {
  padding: 19px 48px;
  border-radius: 10px;
  border: 1px solid rgba(11, 79, 108, 0.15);
  background: var(--white);
  box-shadow: 0 14px 100px 0 rgba(0, 0, 0, 0.06);
  gap: 24px;
  margin-top: -68px;
  position: relative;
  z-index: 999;
}

.ticket__fiter-wrap h3 {
  width: 100%;
  font-size: 24px;
  font-weight: 500;
  color: var(--neutral-black);
  line-height: 32px;
  text-align: center;
  margin: 0;
}

.filter__col-wrap {
  width: 100%;
  gap: 14px;
}

.ticket__filter {
  flex: 1;
  gap: 14px;
}

.ticket__filter > div {
  width: calc(100% / 3 - 10px);
  position: relative;
}

.ticket__filter .round-col:before,
.ticket__filter .team-col:before,
.ticket__filter .date-input:before {
  content: "";
  width: 24px;
  height: 24px;
  background: var(--medal-url) no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% + 1px);
  left: 25px;
  transform: translateY(-50%);
}

.ticket__filter .team-col:before {
  background: var(--tshirt_logo-url) no-repeat;
  background-size: contain;
}

.ticket__filter .date-input:before {
  background: var(--calender_logo-url) no-repeat;
  background-size: contain;
}

.filter--col select {
  width: 100%;
  height: 41px;
  padding: 9px 50px 9px 62px;
  border-radius: 10px;
  border: 1px solid rgba(11, 79, 108, 0.15);
  background: var(--light-white);
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral-black);
  line-height: 20px;
  letter-spacing: 0.1px;
  appearance: none;
  background: var(--down-icon-url) no-repeat;
  background-size: 13px;
  background-position: calc(100% - 25px) 50%;
}

.filter--col input[type="date"] {
  width: 100%;
  height: 41px;
  padding: 9px 50px 9px 62px;
  border-radius: 10px;
  border: 1px solid rgba(11, 79, 108, 0.15);
  background: var(--light-white);
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral-black);
  line-height: 20px;
  letter-spacing: 0.1px;
}

.filter__col-wrap .search--col {
  width: 131px;
}

.filter__col-wrap .search--col button {
  width: 100%;
  height: 38px;
  padding: 9px 25px 9px 50px;
  background-color: var(--neutral-gold);
  border-radius: 50px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--light-white);
  line-height: 20px;
  letter-spacing: 0.1px;
  text-align: right;
  background-image: var(--search-icon-url);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 25px 50%;
  cursor: pointer;
}

@media (max-width: 991px) {
  .ticket__fiter-wrap {
    padding: 19px;
  }
}

@media (max-width: 767px) {
  .filter__col-wrap {
    flex-direction: column;
  }
  .ticket__filter,
  .ticket__filter > div {
    width: 100%;
  }
}
/* Section: Ticket Filter End */

/* Section: Match List Start */
.match__list-section {
  padding-block: 75px 84px;
}

.match__list-wrap {
  /* border-radius: 10px;
  border: 1px solid rgba(11, 79, 108, 0.15);
  background: var(--white);
  padding: 23px 24px; */
}

.match__list-wrap > div:not(:last-child) {
  padding-bottom: 27px;
  margin-bottom: 27px;
  border-bottom: 1px solid rgba(11, 79, 108, 0.15);
}

.match__list-col {
  gap: 25px;
}

.country-flag {
  width: 55px;
  height: 41px;
  line-height: 0;
}

.country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.match-team {
  width: 28%;
  gap: 10px;
}

.match-details {
  width: calc(54% - 50px);
  padding-inline: 25px;
  position: relative;
}

.match-details:before,
.match-details:after {
  content: "";
  width: 1px;
  height: 85%;
  background: rgba(11, 79, 108, 0.15);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.match-details:after {
  left: auto;
  right: 0;
}

.match-details > div:not(:last-child) {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(11, 79, 108, 0.15);
}

.match-date {
  width: 18%;
}

.match-team > div:last-child {
  flex-direction: row-reverse;
}

.team-col {
  font-size: 22px;
  font-weight: 600;
  color: var(--neutral-black);
  line-height: 1.27;
  gap: 15px;
}

.vs-col {
  font-size: 16px;
  font-weight: 600;
  color: var(--neutral-black);
  line-height: 1.5;
  letter-spacing: 0.15px;
}

.match-date h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--neutral-red);
  line-height: 1.5;
  letter-spacing: 0.15px;
  margin: 0 0 3px 0;
}

.match-schedule {
  list-style: none;
}

.match-schedule li {
  font-size: 16px;
  font-weight: 600;
  color: var(--neutral-black);
  line-height: 1.5;
  letter-spacing: 0.15px;
  margin: 0 0 2px 0;
  position: relative;
}

.match-schedule li .icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  top: 2px;
}

.match-schedule li .icon img {
  width: 100%;
  height: auto;
}

.plan-list {
  gap: 30px;
}

.plan-list > div {
  width: calc(100% / 3 - 20px);
}

.plan__list-col .common-btn {
  display: inline-block;
  width: 100%;
  padding-inline: 5px;
  text-align: center;
  background: var(--neutral-green);
}

.plan__list-col .common-btn.yellow-btn {
  background: #f59e0c;
}

.plan__list-col .common-btn.grey-btn {
  background: #a0a0a4;
}

.plan__list-col .common-btn:hover {
  background-color: var(--neutral-gold);
  color: var(--white);
}

.plan__list-col ul {
  list-style: none;
  margin-top: 11px;
}

.plan__list-col ul li {
  font-size: 11px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.45;
  letter-spacing: 0.5px;
}

.match-location {
  font-size: 16px;
  font-weight: 600;
  color: var(--neutral-black);
  line-height: 1.45;
  letter-spacing: 0.15px;
  margin-bottom: 11px;
  padding-left: 24px;
  position: relative;
}

.match-location:before {
  content: "";
  width: 13px;
  height: 18px;
  background: var(--location-icon-url) no-repeat;
  background-size: contain;
  position: absolute;
  top: 3px;
  left: 0;
}

.match__list-btn {
  /* margin-bottom: 35px; */
}

.match__btn-list {
  gap: 20px;
}

.match__btn-list button {
  padding: 9px 25px;
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral-black);
  line-height: 20px;
  letter-spacing: 0.1px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--white);
  cursor: pointer;
}

.match__btn-list button.active {
  border: 1px solid rgba(11, 79, 108, 0.15);
}

.all__match-btn a {
  min-width: 213px;
  padding-right: 65px;
  background-image: var(--right-arrow-icon-url);
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: calc(100% - 25px) 50%;
}

.all__match-btn a:hover {
  background-color: var(--neutral-green);
  background-image: var(--right-arrow-icon-url);
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: calc(100% - 25px) 50%;
  color: var(--white);
}

@media (max-width: 1199px) {
  .country-flag {
    width: 40px;
    height: 26px;
  }

  .team-col {
    font-size: 18px;
  }

  .vs-col {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .team-col,
  .vs-col {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .match-team > div:last-child {
    flex-direction: unset;
  }

  .plan-list {
    gap: 15px;
  }

  .plan-list > div {
    width: calc(100% / 3 - 10px);
  }

  .match__btn-list,
  .match__list-btn {
    gap: 10px;
  }

  .match__btn-list button {
    padding: 7px 20px;
  }
}

@media (max-width: 767px) {
  .match__list-section {
    padding-block: 50px;
  }

  .match-team,
  .match-details,
  .match-date {
    width: 100%;
  }

  .match-date {
    text-align: center;
  }

  .match-details {
    padding: 25px 0;
    border-top: 1px solid rgba(11, 79, 108, 0.15);
    border-bottom: 1px solid rgba(11, 79, 108, 0.15);
  }

  .match-details:before,
  .match-details:after {
    display: none;
  }

  .match__list-wrap {
    padding: 20px;
  }

  .match__list-wrap > div:not(:last-child) {
    border-bottom: none;
    position: relative;
  }

  .match__list-wrap > div:not(:last-child):before {
    content: "";
    width: calc(100% + 40px);
    height: 2px;
    background: rgba(11, 79, 108, 0.15);
    position: absolute;
    bottom: 0;
    left: -20px;
  }

  .match__btn-list {
    width: 100%;
    justify-content: center;
  }

  .match__list-btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .plan-list > div {
    width: 100%;
  }
  .plan__list-col ul li {
    text-align: center;
  }
}
/* Section: Match List End */

/* Section: Map Start */
.map-section {
  padding-block: 72px 90px;
  background: var(--neutral-green);
  position: relative;
  overflow: hidden;
}

.map-section .container {
  position: relative;
}

.map-section .container:before {
  content: "";
  width: min(1064px, 100%);
  height: min(617px, 100%);
  background: var(--shape-v1-url) no-repeat;
  position: absolute;
  top: -72px;
  right: -150px;
}

.match__info-wrap > div {
  width: calc(100% / 2);
}

.match__info-wrap .right-col {
  padding-left: 68px;
}

.match__info-wrap h3 {
  font-size: 36px;
  font-weight: 600;
  color: var(--light-white);
  line-height: 44px;
  margin-block: 0 11px;
}

.match__info-wrap p {
  font-size: 14px;
  font-weight: 600;
  color: var(--light-white);
  line-height: 20px;
  letter-spacing: 0.1px;
  margin-block: 0;
}

.match__info-wrap ul {
  list-style: none;
}

.match__info-wrap ul li {
  font-size: 16px;
  font-weight: 600;
  color: var(--light-white);
  line-height: 24px;
  letter-spacing: 0.5px;
  padding-left: 20px;
  position: relative;
}

.match__info-wrap ul li + li {
  margin-top: 25px;
}

.match__info-wrap ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
  position: absolute;
  top: 10px;
  left: 0;
}

.map-wrap {
  margin-top: 78px;
  margin-bottom: 70px;
}

.map-wrap img {
  width: 100%;
}

.map-info {
  width: min(994px, 100%);
  text-align: center;
  margin-inline: auto;
}

.map-info p {
  font-size: 18px;
  font-weight: 600;
  color: var(--light-white);
  line-height: 1.55;
  letter-spacing: -0.48px;
  margin: 0;
}

.map-info p:not(:last-child) {
  margin-bottom: 25px;
}

@media (max-width: 991px) {
  .match__info-wrap .right-col {
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .map-section {
    padding-block: 50px;
  }

  .match__info-wrap {
    gap: 30px;
  }

  .match__info-wrap > div {
    width: 100%;
  }

  .match__info-wrap .right-col {
    padding-left: 0;
  }

  .match__info-wrap h3 {
    font-size: 26px;
    line-height: 1.35;
  }

  .map-wrap {
    margin-block: 50px;
  }

  .map-info p {
    font-size: 16px;
  }
}
/* Section: Map End */

/* Section: Who are we Start */
.two__col-section {
  padding-block: 55px 134px;
  overflow: hidden;
}

.two__col-section .container {
  position: relative;
  z-index: 1;
}

.two__col-section .container:before {
  content: "";
  width: min(1064px, 100%);
  height: min(617px, 100%);
  background: var(--shape-v1-url) no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
  z-index: -1;
}

.two__col-section h2 {
  color: var(--neutral-black);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.two__col-wrap {
  column-gap: 105px;
  margin-top: 57px;
}

.two__col-wrap > div {
  width: calc(100% / 2 - 53px);
}

.two__col-wrap h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  margin-block: 0 59px;
}

.two__col-wrap p {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  line-height: 24px;
  letter-spacing: 0.5px;
  margin: 0;
}

.two__col-wrap p:not(:last-child) {
  margin-bottom: 20px;
}

.social__links-wrap {
  margin-top: 33px;
  position: relative;
  z-index: 99;
}

.social__links-wrap h5 {
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-black);
  line-height: 1.45;
  letter-spacing: 0.1px;
  margin-block: 0 14px;
}

.social-links {
  list-style: none;
  gap: 9px;
}

.social-links li a {
  display: inline-block;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  padding: 5px;
  border: 1px solid var(--black);
  text-align: center;
  line-height: 29px;
}

.facebook-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  color: transparent;
}

.facebook-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 15px;
  color: white;
  background-color: #1877f2;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.linkedin-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  color: transparent;
}

.linkedin-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 15px;
  color: white;
  background-color: #0a66c2;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.instagram-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  color: transparent;
}

.instagram-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 15px;
  color: white;
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-links li a img {
  width: 13px;
  height: 13px;
}

@media (max-width: 991px) {
  .two__col-wrap {
    column-gap: 45px;
  }

  .two__col-wrap > div {
    width: calc(100% / 2 - 23px);
  }
}

@media (max-width: 767px) {
  .two__col-section {
    padding-block: 50px;
  }

  .two__col-wrap {
    margin-top: 30px;
  }

  .two__col-wrap > div {
    width: 100%;
  }

  .two__col-section h2 {
    font-size: 30px;
  }

  .two__col-wrap h3 {
    font-size: 20px;
    margin-block: 0 20px;
  }

  .social__links-wrap {
    margin-top: 30px;
  }
}
/* Section: Who are we End */

/* Section: FAQ Start */
.faq-section {
  padding-bottom: 55px;
}

.faq-wrap {
  padding: 50px 22px 26px;
  border-radius: 10px;
  border: 1px solid rgba(9, 87, 69, 0.15);
  background: linear-gradient(0deg, #fff 0%, #fff 100%), rgba(9, 87, 69, 0.15);
}

.faq-header {
  position: relative;
}

.faq-wrap h2 {
  font-size: 36px;
  font-weight: 500;
  color: var(--neutral-black);
  line-height: 1.4;
  text-align: center;
  margin: 0;
}

.faq-search {
  position: absolute;
  top: 6px;
  right: 0;
}

.faq-search input {
  width: 116px;
  height: 38px;
  background: var(--neutral-gold);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--light-white);
  line-height: 20px;
  letter-spacing: 0.1px;
  border: none;
  padding: 9px 10px 9px 40px;
  text-align: right;
}

.faq-search input::placeholder {
  font-size: 14px;
  font-weight: 500;
  color: var(--light-white);
  line-height: 20px;
  letter-spacing: 0.1px;
}

.faq-search button {
  position: absolute;
  top: 9px;
  left: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.accordion-wrap {
  border-radius: 10px;
  border: 1px solid rgba(9, 87, 69, 0.15);
  background: var(--white);
  margin-top: 48px;
}

.accordion-wrap > div:not(:last-child) {
  border-bottom: 2px solid rgba(9, 87, 69, 0.15);
}

.accordion-title {
  padding: 20px 60px 20px 22px;
  cursor: pointer;
  position: relative;
}

.accordion-title:before {
  content: "";
  width: 13px;
  height: 7px;
  background: var(--down-green-icon-url) no-repeat;
  background-size: cover;
  position: absolute;
  top: 33px;
  right: 25px;
  transition: all 0.3s ease 0s;
}

.accordion-title.active:before {
  transform: rotate(-180deg);
}

.btn-wrap {
  gap: 16px;
}

.btn-wrap span {
  font-size: 14px !important;
}

.accordion-title h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.32;
  margin: 0;
}

.accordion-tab {
  display: none;
  border-top: 1px solid rgba(9, 87, 69, 0.15);
  padding: 20px 22px;
}

.accordion-tab p {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 24px;
  letter-spacing: 0.5px;
  margin: 0;
}

@media (max-width: 991px) {
  .faq-wrap h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .faq-search {
    top: 0;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding-bottom: 50px;
  }

  .faq-wrap {
    padding: 26px 22px 26px;
  }

  .faq-wrap h2 {
    font-size: 24px;
    line-height: 1.25;
  }

  .accordion-title h3 {
    font-size: 18px;
  }

  .faq-search {
    width: 116px;
    margin-top: 20px;
    margin-inline: auto;
    position: relative;
  }
}

/* Section: FAQ Start */
.faq-section {
  padding-bottom: 55px;
}

.faq-wrap {
  padding: 50px 22px 26px;
  border-radius: 10px;
  border: 1px solid rgba(9, 87, 69, 0.15);
  background: linear-gradient(0deg, #fff 0%, #fff 100%), rgba(9, 87, 69, 0.15);
}

.faq-container h1{
  /* text-align: center; */
  line-height: 1.4;
  margin-block: 20px;
  width: 100%;
}

.faq-box input.promo-input{
      height: 38px;
      min-width: 341px;
      border-radius: 50px 0 0 50px;
      border: none;
      background: var(--white);
      padding: 12px 20px;
      font-size: 16px;
      font-weight: 500;
      color: #00000080;
      line-height: 1.5;
      letter-spacing: .15px;
}

.faq-box button.apply-btn{
  height: 38px;
  padding: 10px 18px;
  border-radius: 0 50px 50px 0;
  background: var(--neutral-gold);
  font-size: 0px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .15px;
  border: none;
  cursor: pointer;
}


.faq-header {
  position: relative;
}

.faq-wrap h2 {
  font-size: 36px;
  font-weight: 500;
  color: var(--neutral-black);
  line-height: 1.4;
  text-align: center;
  margin: 0;
}

.faq-search {
  position: absolute;
  top: 6px;
  right: 0;
}

.faq-search input {
  width: 116px;
  height: 38px;
  background: var(--neutral-gold);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--light-white);
  line-height: 20px;
  letter-spacing: 0.1px;
  border: none;
  padding: 9px 10px 9px 40px;
  text-align: right;
}

.faq-search input::placeholder {
  font-size: 14px;
  font-weight: 500;
  color: var(--light-white);
  line-height: 20px;
  letter-spacing: 0.1px;
}

.faq-search button {
  position: absolute;
  top: 9px;
  left: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.accordion-wrap {
  border-radius: 10px;
  border: 1px solid rgba(9, 87, 69, 0.15);
  background: var(--white);
  margin-top: 48px;
}

.accordion-wrap>div:not(:last-child) {
  border-bottom: 2px solid rgba(9, 87, 69, 0.15);
}

.accordion-title {
  padding: 20px 60px 20px 22px;
  cursor: pointer;
  position: relative;
}

.accordion-title:before {
  content: "";
  width: 13px;
  height: 7px;
  background: url("../images/down-green-icon.svg") no-repeat;
  background-size: cover;
  position: absolute;
  top: 33px;
  right: 25px;
  transition: all 0.3s ease 0s;
}

.accordion-title.active:before {
  transform: rotate(-180deg);
}

.btn-wrap {
  gap: 16px;
}

.btn-wrap span {
  font-size: 14px !important;
}

.accordion-title h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.32;
  margin: 0;
}

.accordion-tab {
  display: none;
  border-top: 1px solid rgba(9, 87, 69, 0.15);
  padding: 20px 22px;
}

.accordion-tab p {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 24px;
  letter-spacing: 0.5px;
  margin: 0;
}

@media (max-width: 991px) {
  .faq-wrap h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .faq-search {
    top: 0;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding-bottom: 50px;
  }

  .faq-wrap {
    padding: 26px 22px 26px;
  }

  .faq-wrap h2 {
    font-size: 24px;
    line-height: 1.25;
  }

  .accordion-title h3 {
    font-size: 18px;
  }

  .faq-search {
    width: 116px;
    margin-top: 20px;
    margin-inline: auto;
    position: relative;
  }
}

/* Section: FAQ End */

/* Section: Contact us Start */
.contact-section {
  padding-block: 69px;
  background: var(--neutral-green);
  overflow: hidden;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-section .container:before {
  content: "";
  width: 920px;
  height: 544px;
  background: var(--shape-v1-url) no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: -35%;
  z-index: -1;
}

.contact-wrap {
  gap: 40px;
}

.contact-wrap > div {
  width: calc(100% / 2 - 20px);
}

.contact__links-wrap {
  width: min(351px, 100%);
}

.contact__links-col h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--light-white);
  line-height: 1.22;
  margin-block: 0 27px;
}

.contact__links-col p {
  font-size: 18px;
  font-weight: 400;
  color: var(--light-white);
  line-height: 1.45;
  margin: 0;
}

.contact-links {
  width: min(260px, 100%);
  list-style: none;
  margin-top: 19px;
}

.contact-links li + li {
  margin-top: 19px;
}

.contact-links li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.5;
  letter-spacing: 0.5px;
  padding: 10px;
  background: var(--white);
  border-radius: 10px;
  text-decoration: none;
}

.contact-links li a .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.contact-links li a .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact__forms-col form {
  width: min(566px, 100%);
  margin-left: auto;
}

.contact__forms-col .form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact__forms-col form > div:not(:last-child) {
  margin-bottom: 20px;
}

.contact__forms-col .form-group > div {
  width: calc(100% / 2 - 5px);
}

.contact__forms-col .form-group label {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  color: var(--light-white);
  line-height: 20px;
  letter-spacing: 0.1px;
  margin-bottom: 8px;
}

.contact__forms-col .form-group input:not([type="submit"]),
.contact__forms-col .form-group textarea {
  width: 100%;
  height: 47px;
  background: var(--white);
  border-radius: 10px;
  border: none;
  padding: 5px 15px;
  font-size: 16px;
  color: var(--neutral-black);
}

.contact__forms-col .message-field {
  width: 100% !important;
}

.contact__forms-col .form-group textarea {
  height: auto;
  min-height: 131px;
  padding: 15px;
}

.contact__forms-col .form-group input:focus,
.contact__forms-col .form-group textarea:focus {
  outline: none;
}

.contact__forms-col input[type="submit"] {
  border-radius: 50px;
  background-color: var(--neutral-gold);
  height: 38px;
  font-size: 14px;
  font-weight: 500;
  color: var(--light-white);
  line-height: 1;
  letter-spacing: 0.1px;
  border: none;
  padding: 9px 83px 9px 25px;
  background-image: var(--right-arrow-icon-url);
  background-repeat: no-repeat;
  background-size: 32px;
  background-position: calc(100% - 25px) 50%;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

@media (max-width: 767px) {
  .contact-section {
    padding-block: 50px;
  }

  .contact-wrap > div,
  .contact__links-wrap {
    width: 100%;
  }

  .contact__forms-col form {
    width: 100%;
  }

  .contact__links-col h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .contact__forms-col .form-group > div {
    width: 100%;
  }
}
/* Section: Contact us End */

/* Section: Footer Start */

.btn-updt {
  font-size: 20px;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  background: var(--neutral-gold);
  padding: 8px 20px;
  display: inline-block;
  border-radius: 0;
  cursor: pointer;
  transition: 0.4s;
}

.footer-center-btn {
  gap: 8px;
  align-items: baseline;
  display: flex;
}

.inner_blk h3 {
  font-size: 28px;
}

.inner_blk h5 {
  font-size: 20px;
}

.btn-updt:hover {
  transition: 0.2s;
  background-color: var(--white);
  color: var(--black);
}

footer.footer_upd {
  background: var(--neutral-green);
  border-top: 1px solid #fff;
  padding: 60px 0 0;
}

footer.footer_upd .footer_top {
  text-align: center;
  color: #fff;
  margin: 0 0 70px;
}

footer.footer_upd .footer_top h3 {
  margin: 0 0 20px;
}

footer.footer_upd .flex-row .inner_blk:nth-child(3n) {
  margin-right: 0;
  text-align: center;
  display: flex;
  justify-content: end;
  align-items: end;
}

footer.footer_upd .flex-row .inner_blk {
  width: calc(33.33% - 7px);
  margin-right: 10px;
  color: #fff;
}

footer.footer_upd .flex-row .inner_blk:first-child h5 {
  max-width: 200px;
  font-size: 23x;
  border-left: 2px solid var(--neutral-gold);
  padding-left: 20px;
  margin: 0;
}

footer.footer_upd .flex-row .inner_blk:nth-child(2) p {
  text-align: center;
  font-size: 20px;
  margin: 0;
}

footer.footer_upd .flex-row .inner_blk:nth-child(2) {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}

footer.footer_upd .flex-row .inner_blk ul.social-link {
  width: max-content;
  margin: 30px auto 0 auto;
  list-style: none;
  gap: 15px;
}

footer.footer_upd .social-link a {
  width: 45px;
  height: 45px;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: 0.4s;
}

footer.footer_upd .social-link a i {
  font-size: 21px;
}

footer.footer_upd .social-link a:hover {
  transform: translateY(-3px);
  transition: 0.4s;
}

footer.footer_upd .footer_btm {
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: #fff;
  margin: 60px 0 0;
}

footer.footer_upd .footer_btm p a.footer-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

footer.footer_upd .footer_btm p a.footer-link:hover {
  text-decoration: underline;
}

footer.footer_upd .footer_btm p {
  margin: 0;
}

.payment_logo {
  position: absolute;
  right: 0;
  width: 40%;
  justify-content: end;
  display: flex;
  gap: 10px;
}

.payment_logo img {
  width: 60px;
  height: 30px;
  object-fit: contain;
}

.footer-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

footer.footer_upd .footer_top a.footer_btn.btn-updt {
  font-weight: 500;
  font-size: 18px;
  border: none !important;
}

@media (max-width: 1300px) {
  .payment_logo {
    position: relative;
    justify-content: center;
  }

  .btn-updt {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .footer-flex {
    flex-direction: column;
    row-gap: 20px;
  }

  footer.footer_upd .flex-row .inner_blk:nth-child(2) {
    width: 100%;
    order: 1;
    margin: 0 0 0px 0;
  }

  .inner_blk h3 {
    margin-top: 0px;
  }

  footer.footer_upd .flex-row .inner_blk:nth-child(3n) {
    order: 3;
  }

  footer.footer_upd .flex-row .inner_blk {
    order: 2;
    width: 50%;
    margin-right: 0;
  }

  footer.footer_upd .footer_top {
    margin: 0 0 40px;
  }

  .btn-updt {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  footer.footer_upd .flex-row .inner_blk {
    text-align: center;
    width: 100%;
  }

  footer.footer_upd .flex-row .inner_blk:nth-child(2) {
    width: 100%;
    order: 1;
    margin: 0 0 30px 0;
  }

  footer.footer_upd .flex-row .inner_blk:first-child h5 {
    width: 100%;
    max-width: 100%;
    border: 0;
  }

  footer.footer_upd .flex-row .inner_blk:nth-child(3n) {
    order: 3;
    margin: 0 0 30px 0 !important;
    justify-content: center;
  }

  footer.footer_upd .flex-row .inner_blk ul.social-link {
    margin: 15px auto 0 auto;
  }

  footer.footer_upd .footer_top h3 {
    margin: 0 0 15px;
  }
  .btn-updt {
    font-size: 15px;
  }
}

/* Section: Footer End */


/* Section: Sponsor Section Start */

.header-sponsor {
  padding-block: 15px;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.header-sponsor p {
  color: var(--neutral-black);
  font-size: 12px;
  font-weight: 600;
  font-weight: 600;
  padding-bottom: 0;
  line-height: 1.3;
  margin: 0;
}

.sponsor-container {
  margin-bottom: 70px;
}

.main-sponsor {
  border-bottom: 1px solid rgba(189, 189, 189, 0.512);
}

.header-sponsor .sponsor-img img {
  width: 100px;
  height: 20px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.sponsor-container h2 {
  color: var(--neutral-black);
  font-size: 30px;
  font-weight: 600;
  padding-block: 30px;
  line-height: 1.3;
  margin: 0;
}

.sponsor-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.sponsor-img img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.sponsor-img img:hover {
  transform: scale(1.2);
  filter: grayscale(0%);
}

@media (max-width: 767px) {
  .sponsor-img {
    row-gap: 20px;
    justify-content: center !important;
  }
}

/* Section: Sponsor Section End */

/* Ullevaal Start */

.full_img_hero img {
  display: block;
  max-width: none;
  width: 100%;
}
.before_booking {
  padding-block: 60px;
  background-color: var(--neutral-green);
}
.before_booking__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.before_booking * {
  margin-block: 0;
}
.before_booking__top {
    display: flex;
    flex-wrap: wrap;
    max-width: 1040px;
    width: 100%;
    margin-inline: auto;
    gap: 15px 60px;
}
.before_booking__top > * {
  flex: 1 1 340px;
  gap: 15px 40px;
}
.before_booking__top h2 {
  font-size: 30px;
  color: var(--white);
  text-transform: uppercase;
}
.before_booking__top :is(p,li) {
  font-size: 18px;
  color: var(--white);
}
.before_booking__top ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: 24px;
}
.before_booking__dropdown {
  max-width: 1040px;
  width: 100%;
  margin-inline: auto;
}
.before_booking__dropdown_header {
  display: flex;
  justify-content: center;
}
.before_booking__dropdown_header a {
  text-wrap: balance;
  text-align: center;
}
.before_booking__dropdown_header a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid white;
    vertical-align: middle;
    margin-inline: 8px;
    transition: transform 0.3s ease;
}
.before_booking__dropdown_header a:hover::after {
  border-top-color: black;
}
.before_booking__dropdown_header a.active::after {
  transform: rotate(-180deg);
}
.before_booking__dropdown_body {
  display: none;
}
.before_booking__dropdown_body_inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    background-color: rgba(255,255,255,0.1);
    padding: clamp(20px, 3vw, 30px);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
}
.before_booking__dropdown_body_inner :is(h3,h4):not(:first-child) {
    margin-top: 20px;
}
.before_booking__dropdown_body_inner h3 {
  font-size: 28px;
  color: var(--white)
}
.before_booking__dropdown_body_inner h4 {
  font-size: 24px;
  color: var(--white)
}
.before_booking__dropdown_body_inner :is(p,li) {
  font-size: 18px;
  color: var(--white)
}
.before_booking__dropdown_body_inner ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 10px;
}
.before_booking__map iframe {
  width: 100%;
  height: 363px;
}
.two_col_text {
  padding-block: 60px;
  background-color: var(--neutral-green);
}
.two_col_text * {
  margin-block: 0;
}
.two_col_text__inner {
  max-width: 900px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.two_col_text__header {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.two_col_text__header h2 {
    font-size: 30px;
    color: var(--white);
    text-transform: uppercase;
}
.two_col_text__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 60px;
}
.two_col_text__grid > * {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.two_col_text__grid h3 {
  font-size: 24px;
  color: var(--white)
}
.two_col_text__grid :is(p,li) {
  font-size: 18px;
  color: var(--white)
}

/* Ullevaal End */

/* Venue Address */
.venueAddress {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  padding-top: 60px;
  padding-inline: 15px;
}

.venueAddress + .booking__list-section {
  padding-top: 30px;
}

/* Section: Booking List Start */
.booking__list-section {
  padding-block: 65px;
}

.booking-list {
  list-style: none;
  background: var(--neutral-green);
  padding: 23px 26px;
  border-radius: 10px;
}

.booking-list li,
.booking-list li > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.booking-list li {
  gap: 10px;
  justify-content: space-between;
}

.booking-list li + li {
  margin-top: 10px;
}

.booking-list li > div {
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.32;
  gap: 5px;
}

.booking-list li .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 5px;
}

.booking-list li .right-col .icon {
  margin-inline: 5px 0;
}

.booking-list li .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 767px) {
  .venueAddress {
    padding-top: 30px;
  }

  .booking__list-section {
    padding-block: 30px;
  }

  .booking-list {
    padding: 15px;
  }

  .booking-list li > div {
    font-size: 18px;
  }

  .booking-list li .icon {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 640px) {
  .booking-list li > div {
    width: 100%;
    justify-content: center;
  }

  .booking-list li > div.right-col {
    flex-direction: row-reverse;
  }
}

@media (max-width: 480px) {
  .booking-list li > div {
    font-size: 16px;
  }
}
/* Section: Booking List End */

/* Section: Compare/Event Tiers Start */
.compare {
  --compComBor: 0.5px solid rgba(11, 79, 108, 0.15);
  padding-block: 61px;
  background-color: var(--light-white);
}

.compare__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.compare__item {
  border-radius: 10px;
  border: var(--compComBor);
  padding: 33px 24px 84px;
  display: flex;
  flex-direction: column;
  gap: 27px;
  background-color: var(--white);
}

.compare__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.compare__header * {
  margin: 0;
}

.compare__header h2 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 500;
  color: var(--neutral-blue);
}

.compare__body {
  border-radius: 5px;
  border: var(--compComBor);
  display: grid;
  grid-template-columns: 1fr 240px;
  background-color: var(--light-white);
}

.compare__table_item {
  --itemColPadTop: 10px;
  display: grid;
  grid-template-columns: 200px 1fr;
}

.compare__table_heading {
  padding: var(--itemColPadTop) 22px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--neutral-black);
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.compare__table_body {
  padding: var(--itemColPadTop) 20px;
  border-inline: var(--compComBor);
  background-color: var(--white);
}

.compare__table_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.compare__table_col {
  border: var(--compComBor);
  border-radius: 10px;
  padding: 13px 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.07);
}

.compare__table_col > * {
  margin: 0;
}

.compare__table_button {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 15px;
  background-color: var(--neutral-green);
  color: var(--white);
  border-radius: 20px;
  margin-bottom: 6px;
  text-align: center;
  transition: 200ms;
}

.compare__table_button:hover {
  background-color: var(--neutral-gold);
}

.compare__table_col p {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
}

.compare__detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
}

.compare__detail > * {
  margin: 0;
}

.compare__detail h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--neutral-red);
  line-height: 1.5;
}

.compare__detail ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.compare__detail li {
  font-size: 16px;
  font-weight: 600;
  color: var(--neutral-black);
  line-height: 1.5;
  letter-spacing: 0.15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

.compare__detail li img {
  width: 17px;
}

@media(max-width: 991px) {
  .compare__item {
    padding: 33px 20px 20px;
  }

  .compare__body {
    grid-template-columns: 1fr;
  }

  .compare__table_body {
    border-right: 0;
  }

  .compare__table {
    border-bottom: var(--compComBor);
  }

  .compare__body_right {
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .compare__detail {
    width: 100%;
    padding: 20px;
  }

  .compare__detail ul {
    flex-direction: row;
    max-width: 400px;
    width: 100%;
    margin-inline: auto;
  }

  .compare__detail li {
    flex-direction: column;
    gap: 10px;
    flex: 1;
    border: var(--compComBor);
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-wrap: balance;
  }
}

@media(min-width: 768px) {
  .compare__table_item:first-child :where(.compare__table_heading, .compare__table_body) {
    padding-top: calc(var(--itemColPadTop) * 2);
  }

  .compare__table_item:last-child :where(.compare__table_heading, .compare__table_body) {
    padding-bottom: calc(var(--itemColPadTop) * 2);
  }
}

@media(max-width: 767px) {
  .compare__table {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-bottom: 0;
  }

  .compare__table_item {
    --itemColPadTop: 20px;
    grid-template-columns: 1fr;
  }

  .compare__table_heading {
    text-align: center;
    justify-content: center;
    padding-bottom: 10px;
  }

  .compare__table_body {
    border-left: 0;
    border-block: var(--compComBor);
  }

  .compare__table_col {
    align-items: center;
    text-align: center;
  }
}

@media(max-width: 575px) {
  .compare__table_grid {
    grid-template-columns: 1fr;
  }
}
/* Section: Compare/Event Tiers End */

/* Section: Booking Content Start */
.booking-accordion {
  padding-bottom: 72px;
}

.booking-accordion .accordion-wrap {
  border: none;
  margin-top: 0;
  background-color: transparent;
}

.booking-accordion .accordion-wrap > div + div {
  margin-top: 50px;
}

.booking-accordion .accordion-wrap > .accordion-col:not(:first-child) {
  margin-top: 50px;
}

.booking-accordion .accordion-wrap > div:not(:last-child) {
  border-bottom: none;
}

.booking-accordion .accordion-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  border-radius: 10px;
  border: 1px solid rgba(11, 79, 108, 0.15);
  background: var(--white);
  box-shadow: 4px 4px 3px 0 rgba(0, 0, 0, 0.15);
  padding: 18px 132px 18px 53px;
  overflow: hidden;
  position: relative;
}

.booking-accordion .accordion-title span {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
  letter-spacing: 0.15px;
}

.booking-accordion .accordion-title:before {
  content: "";
  width: 12px;
  height: 100%;
  background: var(--neutral-green);
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
}

.booking-accordion .accordion-title:after {
  content: "";
  width: 30px;
  height: 30px;
  background: var(--chevron-down-url);
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 34px;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
}

.booking-accordion .accordion-title.active:after {
  transform: translateY(-50%) rotate(-180deg);
}

.booking-accordion .accordion-tab {
  border-top: none;
  padding-inline: 0;
}

.booking-accordion .accordion-tab h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
  letter-spacing: 0.15px;
  margin-block: 0 7px;
}

.booking-accordion .accordion-tab p {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.price-counter {
  width: min(300px, 100%);
  margin-left: auto;
  margin-top: 6px;
}

.price-counter > div + div {
  margin-top: 8px;
}

.price__counter-row {
  column-gap: 30px;
  row-gap: 8px;
}

.price__counter-row > div {
  width: calc(100% / 2 - 15px);
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 24px;
  letter-spacing: 0.15px;
}

.counter-box input {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(11, 79, 108, 0.15);
  border-left: none;
  border-right: none;
  text-align: center;
  -moz-appearance: textfield;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
  letter-spacing: 0.5px;
}

.counter-box input::-webkit-outer-spin-button,
.counter-box input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.counter-box .counter-btn {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(11, 79, 108, 0.15);
  background: var(--neutral-green);
  font-size: 24px;
  font-weight: 600;
  color: var(--neutral-blue);
  line-height: 1;
  text-align: center;
  cursor: pointer;
}

.counter-box .decrease {
  color: var(--white);

  border-radius: 10px 0px 0px 10px;
}

.counter-box .increase {
  color: var(--white);
  border-radius: 0px 10px 10px 0px;
}

.price-counter-btn {
  margin-top: 60px;
}

.table-info-note {
  margin: 10px 10px;
  font-size: 12px;
  font-weight: 500;
  color: #000;
  line-height: 24px;
  letter-spacing: 0.15px;
}

.price-counter-btn button {
  min-width: 150px;
  border: none;
  padding: 8px 25px;
  cursor: pointer;
  margin-top: 20px;
}

.price-counter-btn button:hover {
  background-color: var(--neutral-green);
  color: var(--white);
}

.skip-btn button {
  border: none;
  padding: 8px 20px;
  cursor: pointer;
}

.skip-btn button:hover {
  background-color: var(--neutral-green);
  color: var(--white);
}

.booking-accordion .accordion-title .common-btn {
  background-color: var(--neutral-green);
}

.product-list-wrap > div:not(:last-child) {
  margin-bottom: 25px;
}

.product-list {
  gap: 25px;
}

.product-list > * {
  width: 100%;
}

.product-list-col {
  gap: 25px;
}

.product-list-col > * {
  width: 100%;
}

.product-list-col h3 {
  font-weight: 700;
  color: var(--black);
  line-height: 1.5;
  letter-spacing: 0.15px;
  margin-block: 0;
}

.product-list-item {
  border-radius: 10px;
  border: 0.5px solid rgba(11, 79, 108, 0.15);
  background: #fff;
  box-shadow: 4px 4px 3px 0 rgba(0, 0, 0, 0.15);
  padding: 9px 16px 9px 7px;
}

.pr__left-col {
  flex: 1;
  gap: 13px;
  padding-right: 5px;
  border-right: 1px solid rgba(11, 79, 108, 0.15);
}

.pr__right-col {
  width: 25%;
  min-width: 280px;
  gap: 10px;
  padding-left: 15px;
}

.product-pic {
  width: 90px;
  height: 62px;
  border-radius: 10px;
  overflow: hidden;
}

.product-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info h5 {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.5;
  letter-spacing: 0.5px;
  margin-block: 0;
}

.product-info span {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.5;
  letter-spacing: 0.25px;
}

.pr__right-col > div {
  width: calc(100% / 2 - 5px);
}

.pr__right-col .product-counter {
  text-align: right;
}

.product-price {
  font-size: 16px;
  font-weight: 500;
  color: var(--neutral-black);
  line-height: 1.5;
  letter-spacing: 0.15px;
  text-align: center;
}

.contact__social-links {
  list-style: none;
  margin-top: 51px;
  gap: 10px;
}

.booking-badge {
  border-radius: 10px !important;
}

.contact__social-links li {
  width: calc(100% / 3 - 7px);
}

.contact__social-links li:nth-child(2) {
  text-align: center;
}

.contact__social-links li:last-child {
  text-align: right;
}

.contact__social-links li a {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  width: min(260px, 100%);
  border-radius: 5px;
  border: 0.6px solid rgba(4, 15, 22, 0.6);
  background: var(--white);
  padding: 7.5px 10px;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.5;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.contact__social-links li .icon {
  height: 30px;
  line-height: 0;
  margin-right: 10px;
}

.guest-info-form {
  margin-top: 51px;
}

.guest-info-form .form-heading {
  position: relative;
}

.guest-info-form .form-heading:before {
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(11, 79, 108, 0.15);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.guest-info-form h5 {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.45;
  letter-spacing: 0.25px;
  margin-block: 0;
  padding-inline: 50px;
  position: relative;
  background-color: var(--light-white);
}

.guest-info-form .common-form {
  margin-top: 33px;
}

.guest-info-form .form-submit {
  margin-top: 60px;
}

.price__detail-table {
  margin-top: 40px;
  overflow: hidden;
}

.price__detail-table table {
  width: 100%;
  border-collapse: collapse;
}

.price__detail-table th,
.price__detail-table td {
  padding: 4px 12px;
  text-align: left;
  white-space: normal;
}

.price__detail-table table th {
  text-align: left;
  padding-inline: 15px;
  padding-bottom: 26px;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
  letter-spacing: 0.15px;
}

.price__detail-table td.nowrap {
  white-space: nowrap;
}

.price__detail-table table tr th:first-child,
.price__detail-table table tr th:last-child {
  width: 15%;
}

.price__detail-table table tbody {
  margin-top: 26px;
}

.price__detail-table table tr td {
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.5;
  letter-spacing: 0.5px;
  padding-inline: 15px;
}

.price__detail-wrap {
  border-radius: 5px;
  background: rgba(11, 79, 108, 0.15);
  padding: 21px 25px;
  margin-top: 18px;
}

.price__detail-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
}

.price__detail-row > div {
  font-size: 16px;
  font-weight: 400;
  color: var(--neutral-black);
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.price__detail-total > div:first-child div,
.price__detail-total > div:last-child div {
  font-weight: 500;
}

.price__detail-value {
  width: 15%;
  padding-inline: 30px 0px;
}

/* Old promo-box styles - kept for backward compatibility but scoped to prevent conflicts */
.promo-box:not(.promo-code-form) input {
  height: 49px;
  border-radius: 50px 0 0 50px;
  border-top: 1px solid rgba(11, 79, 108, 0.5);
  border-bottom: 1px solid rgba(11, 79, 108, 0.5);
  border-left: 1px solid rgba(11, 79, 108, 0.5);
  border-right: none;
  background: var(--white);
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.5;
  letter-spacing: 0.15px;
}

.promo-box:not(.promo-code-form) .apply-btn {
  height: 49px;
  padding: 12px 18px;
  border-radius: 0 50px 50px 0;
  background: var(--neutral-gold);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: 0.15px;
  border: none;
  cursor: pointer;
}

.promo-code-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.promo-code-form {
  display: flex;
  gap: 8px;
  width: fit-content;
  align-items: flex-start;
}

.promo-code-section .promo-code-input {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 10px 12px;
  background-color: #fff;
  font-size: 14px;
  width: 200px;
  min-width: 200px;
  outline: none;
  box-sizing: border-box;
  font-family: inherit;
  color: #000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.promo-code-section .promo-code-input::placeholder {
  color: #999;
  opacity: 1;
  font-weight: normal;
}

.promo-code-section .promo-code-input::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}

.promo-code-section .promo-code-input::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.promo-code-section .promo-code-input:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}

.promo-code-input:focus {
  border-color: #8B6F47;
  box-shadow: 0 0 0 2px rgba(139, 111, 71, 0.1);
}

.promo-code-input:disabled,
.promo-code-input[readonly] {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #f5f5f5;
}

.promo-code-btn {
  border-radius: 8px;
  color: #fff;
  padding: 10px 20px;
  border: none;
  white-space: nowrap;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  font-family: inherit;
  font-size: 14px;
  box-sizing: border-box;
}

.promo-code-btn:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-1px);
}

.promo-code-btn:active:not(:disabled) {
  transform: translateY(0);
}

.promo-code-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.promo-code-btn.apply {
  background-color: #8B6F47;
}

.promo-code-btn.remove {
  background-color: #dc3545;
}

.promo-code-error {
  display: none;
  color: #dc3545;
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.4;
}

.promo-code-success {
  display: none;
  color: #28a745;
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.4;
}

.pay-now-btn {
  margin-top: 60px;
}

.pay-now-btn button {
  padding: 8px 50px;
}

.pay-now-btn button:hover {
  background-color: var(--neutral-green);
  color: var(--white);
}

@media (max-width: 991px) {
  .booking-accordion .accordion-title {
    padding: 15px 60px 15px 20px;
    gap: 10px;
  }

  .price__detail-row > div {
    font-size: 15px;
    text-align: start;
  }

  .booking-accordion .accordion-title:after {
    width: 20px;
    height: 20px;
    right: 20px;
  }

  .booking-accordion .accordion-title .common-btn {
    padding: 6px 18px;
  }

  .booking-accordion .accordion-wrap > div + div {
    margin-top: 40px;
  }

  .pr__right-col {
    min-width: 250px;
  }
}

@media (max-width: 767px) {
  .price-counter-btn {
    margin-top: 40px;
  }

  .pr__left-col,
  .pr__right-col {
    width: 100%;
    justify-content: center;
  }

  .pr__left-col {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(11, 79, 108, 0.15);
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .pr__right-col {
    padding-left: 0;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .product-pic {
    display: none;
  }

  .product-price {
    text-align: center;
  }

  .product-counter {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .pr__right-col > div {
    width: auto;
  }

  .pr__right-col .counter-box {
    justify-content: center;
  }

  .contact__social-links {
    margin-top: 30px;
  }

  .contact__social-links li {
    width: 100%;
    text-align: center !important;
  }

  .guest-info-form {
    margin-top: 35px;
  }

  .guest-info-form .form-submit {
    margin-top: 40px;
  }

  .price__detail-wrap {
    padding: 20px 15px;
  }

  .price__detail-value {
    padding-inline: 0;
    text-align: right;
    padding-left: 8px;
  }

  .price__detail-value {
    width: 80px;
  }

  .pay-now-btn {
    margin-top: 40px;
  }

  .price__detail-table {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .table-responsive {
    overflow-x: scroll;
  }

  .table-booking-price {
    width: 500px;
  }

  .pr__right-col > div {
    width: 100%;
  }

  .product-info {
    width: 100%;
    text-align: center;
  }

  .promo-box:not(.promo-code-form) input {
    width: calc(100% - 70px);
  }

  .promo-box:not(.promo-code-form) .apply-btn {
    padding: 12px 10px;
    font-size: 14px;
    width: 70px;
  }

  .promo-code-input {
    width: 100%;
    max-width: 200px;
  }
}
/* Section: Booking Content End */

/* Section: Common Form Start */
.common-form .form__group-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 164px;
}

.common-form .form__group-wrap > div {
  width: calc(100% / 2 - 82px);
}

.common-form label {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--ff-pr);
  color: var(--neutral-black);
  line-height: 1.5;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.common-form .form-group {
  margin-bottom: 26px;
}

.common-form .form-checkmark {
  margin-bottom: 8px;
}

.common-form input:not([type="submit"]):not([type="radio"]),
.common-form select {
  width: 100%;
  height: 45px;
  border: 0.6px solid rgba(4, 15, 22, 0.6);
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  color: var(--neutral-black);
  background-color: var(--light-white);
  padding: 9px 19px;
}

.common-form input::placeholder {
  color: rgba(4, 15, 22, 0.6);
}

.common-form input:focus,
.common-form select:focus {
  outline: none;
  box-shadow: none;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.23);
}

.common-form .form-check,
.common-form .form-check-input {
  margin: 0;
}

.form-check .radiomark {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 1px solid rgba(4, 15, 22, 0.6);
  position: absolute;
  top: 2px;
  left: 0;
}

.form-check .radiomark:after {
  content: "";
  display: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--neutral-blue);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-check input:checked ~ .radiomark:after {
  display: block;
}

.common-form select {
  appearance: none;
  padding-right: 35px;
  background-image: var(--down-icon-url);
  background-repeat: no-repeat;
  background-size: 13px;
  background-position: calc(100% - 15px) 50%;
  color: rgba(4, 15, 22, 0.6);
}

.common-form select:focus {
  border: 1px solid rgba(4, 15, 22, 0.6);
}

.common-form .form-check {
  padding-left: 0;
  gap: 15px;
}

.form-remember label,
.form-checkmark label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--ff-pr);
  color: var(--neutral-black);
  line-height: 1.5;
  letter-spacing: 0.15px;
  padding-inline: 25px 0;
  margin: 0;
  position: relative;
  cursor: pointer;
}

.form-remember input,
.form-checkmark input {
  width: 0 !important;
  height: 0 !important;
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.form-remember .checkmark,
.form-checkmark .checkmark {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(4, 15, 22, 0.6);
  border-radius: 4px;
  position: absolute;
  top: 3px;
  left: 0;
}

.form-remember .checkmark:after,
.form-checkmark .checkmark:after {
  content: "";
  display: none;
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  position: absolute;
  top: 2px;
  left: 5px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.form-remember label input:checked ~ .checkmark:after,
.form-checkmark label input:checked ~ .checkmark:after {
  display: block;
}

.form-checkmark label input:checked ~ .checkmark {
  background: var(--neutral-green) !important;
}

.form-checkmark .checkmark:after {
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  top: 1px;
}

.form-checkmark label {
  font-weight: 400;
  letter-spacing: 0.5px;
}

.common-form .form-checkmark a {
  color: var(--neutral-black);
}

.common-form .form-checkmark a:hover {
  text-decoration: none;
}

.common-form .form-submit button {
  width: min(150px, 100%);
}

.common-form .form-submit button:hover {
  background: var(--neutral-green);
  color: var(--white);
}

@media (max-width: 767px) {
  .common-form .form__group-wrap {
    gap: 30px;
  }

  .common-form .form__group-wrap > div {
    width: calc(100% / 2 - 15px);
  }
}

@media (max-width: 480px) {
  .common-form .form__group-wrap > div {
    width: 100%;
  }

  .common-form .form__group-wrap {
    gap: 26px;
  }
}

.mandatory-info-heading {
  padding: 9px 10px;
  text-align: center;
  margin-block: 20px 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.02);
  position: relative;
  border: 0;
  border-bottom: 2px solid #9ad7c8;
  background: #b8f1e3;
}

.mandatory-info-heading h3 {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Section: Common Form End */

/* Section: Confirmation Start */
.confirmation-section {
  padding-block: 49px 102px;
}

.confirmation-wrapper {
  width: min(768px, 100%);
  margin-inline: auto;
}

.confirmation-hdr h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--neutral-gold);
  line-height: 1;
  margin-block: 0 6px;
}

.confirmation-hdr p {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
  letter-spacing: 0.15px;
  margin: 0;
}

.cnf__match-info {
  border-radius: 10px;
  border: 1px solid rgba(11, 79, 108, 0.15);
  background: var(--white);
  padding: 26px 23px;
  margin-top: 49px;
}

.cnf__team-info {
  gap: 83px;
}

.cnf__team-col .team-name,
.cnf__vs-col {
  font-size: 22px;
  font-weight: 400;
  color: var(--neutral-black);
  line-height: 1.27;
}

.cnf__vs-col {
  padding-bottom: 32px;
}

.team-flag {
  width: 105px;
  height: 79px;
  line-height: 0;
  margin-top: 18px;
}

.team-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cnf__ticket-benefits {
  list-style: none;
  gap: 15px;
  border-radius: 10px;
  border: 1px solid rgba(11, 79, 108, 0.15);
  background: var(--light-white);
  margin-top: 38px;
  padding: 20px 85px;
}

.cnf__ticket-benefits ul {
  width: 50%;
}

.cnf__ticket-benefits li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}

.cnf__ticket-benefits li + li {
  margin-top: 3px;
}

.cnf__ticket-benefits li span,
.cnf__ticket-benefits li span a {
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral-black);
  line-height: 1.4;
  letter-spacing: 0.1px;
}

.cnf__ticket-benefits li span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.cnf__ticket-benefits li img {
  width: 13px;
}

.cnf__ticket-info {
  padding-left: 46px;
  margin-top: 37px;
  position: relative;
}

.cnf__ticket-info:before {
  content: "";
  width: 32px;
  height: 32px;
  background: url("../images/info-icon.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: -5px;
  left: 0;
}

.cnf__ticket-info h3 {
  font-size: 18px;
  font-weight: 400;
  color: var(--neutral-black);
  line-height: 1;
  margin-block: 0 14px;
}

.cnf__ticket-info p {
  font-size: 12px;
  font-weight: 400;
  color: var(--neutral-black);
  line-height: 1.4;
  letter-spacing: 0.4px;
  margin-block: 0;
}

.share__ticket-form {
  border-radius: 10px;
  border: 1px solid rgba(11, 79, 108, 0.15);
  background: var(--neutral-green);
  padding: 27px 30px;
  margin-top: 37px;
}

.share__ticket-form .form-heading h5 {
  font-size: 24px;
  font-weight: 400;
  color: var(--light-white);
  line-height: 1.3;
  margin-block: 0 18px;
}

.share__ticket-form .form__group-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  border-radius: 10px;
  border: 1px solid rgba(251, 251, 255, 0.1);
  padding: 13px 17px 17px;
  width: 100%;
}

.share__ticket-form .form__group-wrap > .form-col {
  flex: 1;
}

.share__ticket-form .form__group-wrap > .plus-btn {
  flex: 0 0 auto;
  height: 40px;
  align-self: flex-end;
}

.share__ticket-form .form-group label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--light-white);
  line-height: 1.5;
  letter-spacing: 0.15px;
  margin-block: 0 8px;
}

.share__ticket-form .common-form input:not([type="submit"]):not([type="radio"]),
.share__ticket-form .common-form select {
  height: 40px;
  border-radius: 10px;
  background: var(--white);
}

.share__ticket-form .form-submit {
  gap: 15px;
}

.share__ticket-form .form-submit button,
.confirmation-section .new__order-btn button {
  padding: 13px 32px;
  width: auto;
  font-size: 16px;
  font-weight: 400;
}

.plus-btn:hover {
  color: var(--neutral-green) !important;
}

.plus-btn {
  height: 40px;
  padding-inline: 18px;
  border-radius: 11px;
  padding-block: 8px;
}

.share__ticket-form .form-submit button:hover {
  background: var(--white);
  color: var(--neutral-green) !important;
}

.confirmation-section .new__order-btn {
  margin-top: 11px;
}

.top-new-oder {
  text-align: end;
  margin: 15px;
  margin-right: 15px;
}

.top-new-oder button:hover {
  color: var(--white);
  background-color: var(--neutral-green) !important;
}

.confirmation-section .new__order-btn button:hover {
  background: var(--neutral-green);
  color: var(--white);
}

.ticket-loader {
  width: min(500px, 100%);
  border-radius: 10px;
  border: 1px solid rgba(11, 79, 108, 0.1);
  background: var(--light-white);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  margin-top: 20px;
  margin-inline: auto;
  padding: 42px 20px;
}

.ticket-loader h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--neutral-green);
  line-height: 1;
  margin: 0;
}

.ticket-loader .loader-icon {
  width: 36px;
  height: 45px;
  margin: 14px auto;
}

.ticket-loader .loader-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ticket-loader p {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.15px;
}

@media (max-width: 767px) {
  .location-date-list li {
    justify-content: end;
  }
  .cnf__team-info {
    gap: 40px;
  }
  .cnf__match-info .team-flag {
    width: 65px;
    height: 39px;
    margin-top: 14px;
  }
  .cnf__vs-col {
    padding-bottom: 7px;
  }
  .cnf__team-col .team-name,
  .cnf__vs-col {
    font-size: 18px;
  }
  .cnf__ticket-benefits {
    padding: 20px;
  }
  .cnf__ticket-info {
    padding-left: 40px;
  }
  .cnf__ticket-info:before {
    width: 26px;
    height: 26px;
  }
  .share__ticket-form {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .share__ticket-form .form__group-wrap {
    flex-direction: column;
  }
  .cnf__ticket-benefits ul {
    width: 100%;
  }
  .confirmation-section {
    padding-block: 49px 60px;
  }
  .cnf__ticket-benefits {
    flex-direction: column;
    text-align: center;
  }
  .confirmation-hdr h2 {
    font-size: 30px;
  }
  .cnf__ticket-benefits li span {
    display: block;
    width: 100%;
    text-align: center;
  }
  .cnf__ticket-benefits li {
    gap: 10px;
  }
  .share__ticket-form .form__group-wrap > div {
    width: 100%;
  }
  .share__ticket-form .form-heading h5 {
    font-size: 20px;
  }
  .cnf__team-info {
    gap: 25px;
  }
  .cnf__match-info {
    margin-top: 30px;
  }
  .ticket-loader h3 {
    font-size: 30px;
  }
}
/* Section: Confirmation End */

/* Section: Organisation Website Start */
.name-phone-input,
.email-confim-input {
  gap: 158px;
}

#org-contact-us {
  padding-bottom: 50px;
}

.org-form-wrapper {
  padding: 57px 0 33px;
}

.banner-text-outer {
  background-image: linear-gradient(
      214deg,
      rgba(4, 15, 22, 0) 14.88%,
      rgba(4, 15, 22, 0.7) 80.48%
    ),
    url("../images/Crowd_and_big_screen.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 723px;
  padding: 92px 20px 123px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.banner-heading {
  color: var(--white);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 36px;
  font-weight: 500;
  line-height: 44px;
  margin: 0;
  width: 100%;
}

.banner-text-screen,
.banner-text-events {
  color: var(--white);
  font-size: 72px;
  max-width: 750px;
  font-weight: 700;
  letter-spacing: 86.4px;
  margin-top: 8px;
  letter-spacing: 2.16px;
}

.fanparks-text {
  color: var(--neutral-gold);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 57px;
  font-weight: 600;
  letter-spacing: -0.25px;
  width: 100%;
  display: inline-block;
  margin-top: 41px;
  word-break: break-word;
}

.organisation-outer {
  background-color: var(--neutral-green);
}

.org__nav-bar {
  padding-block: 0px;
}

.org-header-main {
  padding: 24px 0px;
}

.org-container {
  width: min(1180px, 100%);
  padding-inline: 15px;
  margin-inline: auto;
}

.org-contact-main {
  background: #fbfffd;
}

.org-container-contact {
  width: min(1180px, 100%);
  padding-inline: 15px;
  margin-inline: auto;
}

.form-label-outer {
  width: 100%;
}

.banner-tabs {
  padding-left: 48px;
  gap: 1px;
  padding-right: 48px;
}

.footer-social-org {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
}

.banner-tabs__link {
  display: flex;
  flex-direction: column;
}

.banner-tabs__link span {
  border: 1px solid var(--neutral-green);
  padding: 5px 15px;
  font-size: 16px;
  line-height: normal;
  border-radius: 30px;
  margin-bottom: 23px;
  color: var(--neutral-green);
}

.banner-tabs__link img {
  height: 10px;
  width: 10px;
}

.banner-tabs__link div {
  gap: 12px;
}

.banner-tabs a {
  cursor: pointer;
  height: 133px;
  width: 286px;
  border: none;
  border-radius: 30px 0px 0px 30px;
  background-color: var(--white);
  color: var(--neutral-green);
  font-size: 28px;
  font-weight: 400;
  line-height: 36px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease 0s;
  z-index: 1;
}

.banner-tabs a:hover {
  background-color: var(--white);
  color: var(--neutral-green);
}

.oslo-tab {
  border-radius: 0px 30px 30px 0px !important;
}

.tabs-wrapper {
  position: relative;
  width: 100%;
  top: -75px;
}

#org-contact-us {
  padding: 92px 87px;
}

.org-page-heading {
  text-align: center;
  color: var(--white);
  font-size: 36px;
  line-height: 44px;
  font-weight: 500;
  margin: 0;
}

.contact-us-heading {
  text-align: center;
  color: var(--neutral-green);
  font-size: 36px;
  line-height: 44px;
  font-weight: 500;
  margin: 0;
}

.buy-ticket-btn {
  gap: 24px;
  position: relative;
  z-index: 1;
  padding: 50px 0 57px;
}

.buy-ticket-btn a:hover {
  background-color: var(--neutral-gold) !important;
  color: var(--white) !important;
}

.buy-ticket-btn a {
  gap: 26px;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer !important;
  letter-spacing: 0.1px;
  line-height: 20px;
}

.buy-ticket-btn a img {
  width: 32px;
  height: 16px;
  transition: transform 0.3s ease;
}

.buy-ticket-btn a:hover img {
  transform: translateX(6px);
}

#about-us-wrapper p {
  color: var(--white);
  text-align: center;
  padding-top: 57px;
  margin: 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 36px;
}

.about-us-content {
  padding-top: 30px;
}

.about-us-content p:last-of-type {
  padding-top: 20px !important;
}

.about-us-content p {
  padding: 0px !important;
  font-size: 16px !important;
  line-height: 24px !important;
  letter-spacing: 0.5px;
}

.buy-ticket-btn a,
.send-msg-btn {
  cursor: pointer;
  border: none;
  border-radius: 50px;
  background-color: var(--neutral-gold);
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.15px;
  display: inline-flex;
  padding: 9px 25px;
  transition: all 0.3s ease 0s;
  justify-content: center;
}

.buy-ticket-btn a:hover,
.send-msg-btn:hover {
  background-color: var(--white);
  color: var(--neutral-green);
}

.send-msg-btn {
  gap: 26px;
  margin-top: 52px;
  background-color: var(--neutral-green);
  width: fit-content;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.send-msg-btn:hover {
  transition: all 0.3s ease 0s;
  color: var(--white) !important;
  background-color: var(--neutral-green) !important;
}

.send-msg-btn img {
  width: 32px;
  transition: transform 0.3s ease;
  height: 16px;
}

.send-msg-btn:hover img {
  transform: translateX(6px);
}

.accept-terms {
  width: fit-content;
}

.accept-terms .checkmark {
  width: 20px;
  height: 20px;
  border: 1px solid var(--neutral-green);
  border-radius: 4px;
  top: 2px;
}

.org-footer {
  border-top: 1px solid rgba(11, 79, 108, 0.15);
}

.org-form-label {
  width: 100%;
  color: var(--neutral-green);
}

.org-form-input {
  width: 100%;
  padding: 15px;
  border-radius: 5px;
  height: 45px;
  outline: none;
  background-color: var(--white);
  border: 1px solid var(--neutral-green);
  margin-top: 5px;
}

.form-label-input {
  width: 90%;
}

.accept-terms label {
  color: var(--neutral-green);
  font-size: 16px;
  text-align: center;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  padding-inline: 40px 0;
}

.form-label-input label span {
  color: var(--neutral-red);
}

#about-us-wrapper {
  position: relative;
  width: 100%;
}

#about-us-wrapper::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images//layer.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  max-height: 528px;
  width: min(944px, 100%);
  margin: 0 auto;
}

.send-message-section {
  margin-top: 44px;
  flex-direction: column;
}

.email-confim-input {
  margin-top: 25px;
}

.footer-bar {
  background-color: var(--neutral-green);
  height: 50px;
}

@media screen and (max-width: 991px) {
  .org__nav-bar {
    padding-block: 12px;
  }
  .banner-tabs a {
    border: none;
    line-height: 28px;
  }
  .org-header-main {
    padding: 0;
  }
  .tabs-wrapper {
    top: -62px;
  }
  #about-us-wrapper::before {
    max-height: 480px;
    top: -206px;
  }
  .buy-ticket-btn a {
    font-size: 12px;
    gap: 10px;
    padding: 8px 16px;
  }
  .accept-terms label {
    font-size: 15px;
  }
  #about-us-wrapper p {
    font-size: 24px;
  }
  .about-us-content p {
    font-size: 14px;
  }
  .banner-text-screen {
    font-size: 65px;
  }
  #org-contact-us {
    padding-inline: 0px;
  }
}

@media screen and (max-width: 767px) {
  .banner-text-outer {
    padding: 70px 20px 100px 20px;
  }
  .banner-heading {
    font-size: 40px;
  }
  .fanparks-text {
    font-size: 40px;
    margin-top: 15px;
  }
  .banner-heading {
    font-size: 30px;
  }
  .banner-text-screen,
  .banner-text-events {
    font-size: 50px;
  }
  .name-phone-input,
  .email-confim-input {
    gap: 20px;
  }
  .banner-tabs a {
    font-size: 22px;
    line-height: 22px;
  }
  .name-phone-input,
  .email-confim-input,
  .send-message-section {
    flex-direction: column;
  }
  .tabs-wrapper {
    top: -45px;
  }
  .banner-tabs {
    padding-left: 25px;
    padding-right: 25px;
  }
  #about-us-wrapper::before {
    max-height: 390px;
    top: -37px;
    background-size: contain;
  }
  #about-us-wrapper p {
    padding-top: 30px;
    font-size: 18px;
  }
  .org-form-wrapper {
    padding: 37px 0 13px;
  }
  .buy-ticket-btn {
    padding: 30px 0 37px;
  }
  .form-label-input {
    width: 100%;
  }
  .accept-terms {
    justify-content: center;
    margin-bottom: 20px;
    display: flex;
  }
}

@media screen and (max-width: 575px) {
  .banner-tabs {
    padding-left: 24px;
    padding-right: 24px;
    gap: 1px;
  }
  .about-us-content p {
    font-size: 14px;
  }
  .banner-heading {
    font-size: 30px;
  }
  .fanparks-text {
    font-size: 30px;
    margin-top: 6px;
  }
  .banner-text-screen,
  .banner-text-events {
    font-size: 40px;
    margin-top: 8px;
  }
  .banner-text-outer {
    height: 400px;
    padding: 60px 20px 80px 20px;
  }
  .buy-ticket-btn {
    flex-direction: column;
    gap: 14px;
  }
  .org-form-wrapper {
    padding: 6px 0 0px;
  }
  .org-form-input {
    height: 39px;
  }
  #about-us-wrapper p {
    font-size: 18px;
    padding-top: 20px;
  }
  .banner-tabs a {
    font-size: 18px;
    line-height: 19px;
  }
  .tabs-wrapper {
    top: -40px;
  }
}

@media screen and (max-width: 480px) {
  .banner-tabs {
    flex-direction: column;
    row-gap: 5px;
  }
  .banner-tabs a {
    width: 100%;
    font-size: 18px;
    line-height: 16px;
    border-radius: 30px !important;
  }
  .banner-text-outer {
    padding: 40px 20px 60px 20px;
  }
  .banner-heading {
    font-size: 20px;
  }
  .fanparks-text {
    font-size: 20px;
    margin-top: 0px;
  }
  .banner-text-screen,
  .banner-text-events {
    font-size: 30px;
    margin-top: 2px;
  }
}

@media screen and (max-width: 390px) {
  .name-phone-input,
  .email-confim-input {
    gap: 8px;
  }
  .email-confim-input {
    margin-top: 8px;
  }
  .banner-text-outer {
    padding: 25px 20px 45px 20px;
  }
  .banner-heading {
    font-size: 15px;
  }
  .fanparks-text {
    font-size: 15px;
    margin-top: 0px;
  }
  .tabs-wrapper {
    top: -28px;
  }
  #about-us-wrapper p {
    padding-top: 0px;
    font-size: 20px;
    margin-top: 10px;
  }
  .org-form-input {
    height: 35px;
  }
  .buy-ticket-btn {
    padding: 15px 0 27px;
  }
  .org-form-label {
    font-size: 12px;
  }
}
/* Section: Organisation Website End */

/* Ensure intl-tel-input wrapper takes full width */
#customer-phone {
  width: 100%;
}

.iti {
  width: 100%;
}

.iti__flag-container {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding-right: 8px;
}

.iti input {
  width: 100% !important;
  padding-right: 60px;
}

.form-group #customer-phone {
  position: relative;
}

/* Disabled accordion styles */
.accordion-col.accordion-disabled {
  opacity: 0.6;
  pointer-events: none !important;
}

.accordion-col.accordion-disabled .accordion-title {
  cursor: not-allowed !important;
  opacity: 0.6;
  pointer-events: none !important;
}

.accordion-col.accordion-disabled .accordion-title:hover {
  background-color: transparent;
}

.accordion-col.accordion-disabled * {
  pointer-events: none !important;
}

/* Enabled accordion styles */
.accordion-col:not(.accordion-disabled) .accordion-title {
  cursor: pointer;
}

/* Mandatory addons step */
#mandatory-requirement-message {
  display: none;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-red);
  line-height: 1.5;
  letter-spacing: 0.1px;
  text-align: right;
}

/* Privacy Modal */
#privacyModal .modal-dialog {
  max-width: 900px;
}

#privacyModal .modal-body {
  max-height: calc(100vh - 300px);
  overflow-y: auto;
  padding: 30px;
  line-height: 1.7;
}

#privacyModal .privacy-content h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #2c3e50;
}

#privacyModal .privacy-content h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #34495e;
}

#privacyModal .privacy-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #34495e;
}

#privacyModal .privacy-content p {
  margin-bottom: 15px;
  color: #555;
  text-align: justify;
}

#privacyModal .privacy-content ul {
  margin-bottom: 15px;
  padding-left: 40px;
}

#privacyModal .privacy-content li {
  margin-bottom: 8px;
  color: #555;
}

#privacyModal .privacy-content .last-updated {
  font-style: italic;
  color: #7f8c8d;
  margin-bottom: 20px;
}

#privacyModal .privacy-content .contact-info {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
  margin: 15px 0;
}

#privacyModal .modal-header {
  border-bottom: 2px solid #e9ecef;
  padding: 20px 30px;
}

#privacyModal .modal-footer {
  border-top: 2px solid #e9ecef;
  padding: 15px 30px;
}

/* Terms Modal */
#termsModal .modal-dialog {
  max-width: 900px;
}

#termsModal .modal-body {
  max-height: calc(100vh - 300px);
  overflow-y: auto;
  padding: 30px;
  line-height: 1.7;
}

#termsModal .terms-content h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 30px;
  color: #2c3e50;
  border-top: 2px solid #e9ecef;
  padding-top: 30px;
}

#termsModal .terms-content h1:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

#termsModal .terms-content h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #34495e;
}

#termsModal .terms-content p {
  margin-bottom: 15px;
  color: #555;
  text-align: justify;
}

#termsModal .terms-content .last-updated {
  font-style: italic;
  color: #7f8c8d;
  margin-bottom: 20px;
}

#termsModal .terms-content .contact-info {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
  margin: 15px 0;
}

#termsModal .modal-header {
  border-bottom: 2px solid #e9ecef;
  padding: 20px 30px;
}

#termsModal .modal-footer {
  border-top: 2px solid #e9ecef;
  padding: 15px 30px;
}
/* Modal Styles End */

.d-flex-column {
  display: flex;
  flex-direction: column;
}

.compare__table_grid {
  grid-template-columns: repeat(auto-fit, minmax(202px, 1fr));
}

/* DNB | VISA - Ullevaal Stadion Start */
.before-booking__welcome {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
  color: var(--white);
}

.before-booking__welcome h2 {
  font-size: 23px;
  text-transform: uppercase;
  font-weight: 500;
}
/* DNB | VISA - Ullevaal Stadion End */