
/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #5e5e5e;
  --secondary-color:              #0080c8;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #0080c8;
  --custom-btn-bg-hover-color:    #00598d;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #0080c8;
  --blue-color:                   #05aad2;
  --purple-color:                 #7a529b;
  --pink-color:                   #d9405c;
  --dark-purple:                  #580134;

  --theme-main-color:             #0080c8;
  --header-footer-color:          #e0e0e0;
  --theme-maingrad-color:         #007fc8c4;

  --body-font-family:             'Ela Sans', sans-serif;
  --titles-font-family:           'Carla Sans', sans-serif;
  --content-font-family:          'Ela Sans', sans-serif;

  --h1-font-size:                 74px;
  --h2-font-size:                 34px;
  --h3-font-size:                 28px;
  --h4-font-size:                 24px;
  --h5-font-size:                 20px;
  --h6-font-size:                 18px;
  --p-font-size:                  12px;
  --navlink-font-size:            16px;
  --btn-font-size:                16px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}



@font-face {
  font-family: 'Carla Sans';
  src: url('../fonts/carla-sans.ttf');
  /* Carla Sans fontunun woff2 formatındaki dosyasının yolunu belirtin */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Ela Sans';
  src: url('../fonts/ela-sans-regular.ttf');
  /* Carla Sans fontunun woff2 formatındaki dosyasının yolunu belirtin */
  font-weight: normal;
  font-style: normal;
}

body {
  background-color: var(--theme-main-color);;
  font-family: var(--body-font-family);
}

header{
  border-bottom: 1px solid var(--theme-main-color);
}

/*---------------------------------------
  TYPOGRAPHY
-----------------------------------------*/
/*
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}
*/

.ql-snow .ql-editor h1,
h1 {
  font-size: var(--h1-font-size) !important;
}

.ql-snow .ql-editor h2,
h2 {
  font-size: var(--h2-font-size) !important;
}

.ql-snow .ql-editor h3,
h3 {
  font-size: var(--h3-font-size) !important;
}

.ql-snow .ql-editor h4,
h4 {
  font-size: var(--h4-font-size) !important;
}

.ql-snow .ql-editor h5,
h5 {
  font-size: var(--h5-font-size) !important;
}

.ql-snow .ql-editor h6,
h6 {
  font-size: var(--h6-font-size) !important;
}

p {
  /*
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  */
}

ul li {
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.site-standard-title {
  color: var(--secondary-color);
  font-family: var(--titles-font-family);
}

.site-standard-title-contrast {
  color: var(--white-color);
  font-family: var(--titles-font-family);
}

.link-fx-1 {
  color: var(--black-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: #8f62977a /* Renk ve opaklık ayarını buradan düzenleyebilirsiniz */
    background-color: #8f629736;
}


.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: var(--secondary-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  text-align: center;
  border: 1px solid var(--primary-color)
}

.kutu {
  text-align: center;
}

.kapat-btn {
  cursor: pointer;
  font-size: 20px;
  color: var(--primary-color);
}

.kutu-baslik {
  font-size: 18px;
  margin-bottom: 10px;
}

.input-alani {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  box-sizing: border-box;
}


.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}
.logo{
    /*width: 25%;*/
    height: 100px;
}

@media (max-width: 570px) {
    .logo {
        /*width: 50%;*/
        height: 80px;
    }
}

.timetable-list {
    color: var(--white-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
  }

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .2s;
}

.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}


/*---------------------------------------
  SECTION
-----------------------------------------*/
.section-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}

.equal-image-container {
    position: relative;
    padding: 0;
  }

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: rgba(42, 49, 158, 0.5); /* Arka plan rengi ve opaklık */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white; /* Yazı rengi */
    opacity: 1; /* Başlangıçta görünmez yapın */
    transition: opacity 0.3s ease; /* Düzeltme efekti için geçiş */
}

.equal-image-container:hover .image-overlay {
    color: var(--primary-color);
    font-weight: 600;
}


.image-container-2{
  position: relative;
}

.image-overlay-2{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(42, 49, 158, 0.5);
}

.image-container-text{
  width:100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 1;
}

.image-container-2:hover .image-container-text{
  /*
  color: var(--primary-color);
  font-weight: 600;
  */
}

.image-container-2 .link {
  transition: transform 0.3s ease;
}

.image-container-2 .link {
  color: var(--primary-color); /* Change color on hover */
  font-weight: 500;
  font-size: 20px;
}

.image-container-2:hover .linktext {
  padding-left: 20px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--header-footer-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--white-color);
}

.image-container {
    display: flex;
    padding: 0; /* Padding'i sıfıra ayarla */
  }

  .responsive-image {
    width: 33.33%; /* Resimlerin genişliği */
    height: auto;
  }

.dropdown-item-inner {
    display: block;
    width: 100%;
    padding: 11px;
    clear: both;
    font-weight: 400;
    color: #f9f9f9;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    font-size: 16px;
    background-color: transparent;
    border: 0;
}

.nav-tabs h5 {
  color: var(--p-color);
  margin-bottom: 0;
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5,
.nav-tabs .nav-link:hover h5 {
  color: var(--white-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON
-----------------------------------------*/
.content-btn{
  background: var(--p-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-small);
  color: #1a1919;
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 8px 40px; 
  font-size:20px
}

.content-btn:hover {
  background: var(--white-color);
  color: var(--theme-main-color) !important;
}

.custom-btn {
  background: var(--theme-main-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-small);
  color: #ffffff !important;
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--white-color);
  color: var(--theme-main-color) !important;
}

.custom-btn-contrast {
  background: var(--secondary-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-small);
  color: #ffffff;
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn-contrast:hover {
  background: var(--primary-color);
  color: #1a1919;
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}



.register-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.register-btn:hover {
  background: var(--theme-main-color);
  color: var(--white-color);
}




.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  VIDEO
-----------------------------------------*/
.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  SITE HEADER
-----------------------------------------*/
.site-header {
  background-color: var(--secondary-color);
  padding-top: 12px;
  padding-bottom: 12px;
}


/*---------------------------------------
  NAVIGATION
-----------------------------------------*/
.sticky-wrapper {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--header-footer-color);
}

.navbar-nav .nav-item.dropdown:hover .nav-link {
    color: var(--link-hover-color); /* İstediğiniz renge değiştirebilirsiniz */
  }

/* Dropdown menüsünün arka plan rengi */
.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  display: block;
  color: var(--white-color);
  background-color: var(--primary-color);
}

/* Dropdown içerisindeki bağlantıların üzerine gelindiğinde renk değiştirme */
.navbar-nav .nav-item.dropdown:hover .dropdown-menu a:hover {
  background-color: var(--white-color); /* İstediğiniz arka plan rengine değiştirebilirsiniz */
  color: var(--theme-main-color); /* İstediğiniz renge değiştirebilirsiniz */
}

.navbar {
    background-color: var(--header-footer-color);
    z-index: 999;
    height: 100px;
}
.innernavbar {
    background: var(--header-footer-color);
  }

.navbar-brand,
.navbar-brand:hover {
  color: var(--link-hover-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  padding: 10px 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--primary-color);
  font-size: var(--navlink-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--link-hover-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--theme-main-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--theme-main-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  height: calc(95vh - 51px);
}

.hero-section small {
  color: var(--primary-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
  z-index: 2;
  opacity: 0.2;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.hero-section .container .row {
  height: 100%;
}


/*---------------------------------------
  ABOUT
-----------------------------------------*/
.about-section {
  /*background-image: url('../images/edward-unsplash-blur.jpg');*/
  background-color: #dedddb;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
}

.about-text-wrap {
  position: relative;
}

.about-text-icon {
  background: var(--primary-color);
  border-radius: 100%;
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.about-text-info {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
  padding: 35px;
}


/*---------------------------------------
  TICKET
-----------------------------------------*/
.ticket-section {
  /*background-image: url('../images/nicholas-green-unsplash-blur.jpg');*/
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 130px;
}

.ticket-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.ticket-form .form-check {
  position: relative;
  min-height: 52px;
  padding-left: 35px;
}

.ticket-form .form-check .form-check-label {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 12px;
  margin-left: 35px;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  ARTISTS
-----------------------------------------*/


.artists-thumb {
  flex: 1 0 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.artists-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
  height: auto;
}

.artists-thumb:hover .artists-hover {
  transform: translateY(0);
  opacity: 1;
}

.artists-hover {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  margin: 20px;
  padding: 35px;
  transition: all 0.5s ease;
  transform: translateY(100%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
}

.artists-hover p strong {
  color: var(--white-color);
  display: inline-block;
  min-width: 180px;
  margin-right: 20px;
}

.artists-hover p a {
  color: var(--secondary-color);
}

.artists-hover p a:hover {
  color: var(--white-color);
}

.artists-hover hr {
  margin: 1.5rem 0;
}


/*---------------------------------------
  SCHEDULE
-----------------------------------------*/
.schedule-section {
  /*background-image: url('../images/nainoa-shizuru-unsplash-blur.jpg');*/
  background-color: #242424;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.table-responsive {
	filter: drop-shadow(2px 2px 4px #606060);
}

.schedule-table {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.schedule-table .bg-warning {
  background: #f0a5a5 !important;
}

.schedule-table thead th {
  background-color: var(--secondary-color);
}

.schedule-table th,
.schedule-table tr,
.schedule-table td {
  border: 1px solid #363a3e;
  border-bottom-color: #363a3e;
  padding: 30px;
}

.schedule-table tr:last-child th,
.schedule-table tr:last-child td {
  border-bottom-color: transparent;
}


.schedule-table thead th {
  border-right: 1px solid #c7460a;
  border-bottom-color: transparent;
}

.schedule-table th + td {
  border-bottom: 0;
}

.schedule-table thead th:last-child {
  border-right-color: transparent;
}

.schedule-table .pop-background-image {
  /*background-image: url('../images/artists/joecalih-UmTZqmMvQcw-unsplash.jpg');*/
}

.schedule-table .rock-background-image {
  /*background-image: url('../images/artists/abstral-official-bdlMO9z5yco-unsplash.jpg');*/
}

.schedule-table .country-background-image {
  /*background-image: url('../images/artists/soundtrap-rAT6FJ6wltE-unsplash.jpg');*/
}

.table-background-image-wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: none;
  position: relative;
}

.schedule-table h3,
.schedule-table p {
  color: var(--white-color);
  position: relative;
  z-index: 2;
}


.schedule-table h3 {
  font-size: 22px;
}

.schedule-table th {
  padding: 20px;
}

.schedule-table tr,
.schedule-table td {
  padding: 20px;
}

@media(max-width: 576px){
  .schedule-table th,
  .schedule-table tr,
  .schedule-table td {
    padding-top: 10px;
    text-align:center;
    justify-content: center;
    font-size: 14px;
  }

  .schedule-table{
    border-radius: 5px;
  }

}

/*---------------------------------------
  INFORMATIVE CARD
-----------------------------------------*/
.info-card{
  position: relative;
  max-width: 400px;
  height: 100%;
  /*min-height: 400px;*/
  background: linear-gradient(-45deg,#fe0847, var(--theme-main-color));
  border-radius: 15px;
  margin: 0 auto;
  padding: 25px 20px;
  -webkit-box-shadow: 0 10px 15px rgba(0,0,0,.6) ;
          box-shadow: 0 10px 15px rgba(0,0,0,.6) ;
  -webkit-transition: .5s;
  transition: .5s;
  font-size: 20px;
}

.info-card:hover{
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*
.info-card::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}*/


.info-card .toptag {
  background-color: #df4f0cbb;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 400;
  font-size: 40px !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  position: absolute;
  top: -60px;
  right: 0;
  margin: 0;
}

.info-card .title{
  position: relative;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 28px;
  z-index: 2;
  border-bottom: #000000 1px solid;
  width: 100%;
}

.info-card .description{
  position: relative;
  top: 20px;
  min-height: 270px;
  color: #f3f3f3 !important;
  font-size: 18px;
  z-index: 499;
  padding-bottom: 20px;
}

.info-card .subdescription{
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 10px;
  color: #f3f3f3 !important;
  font-size: 18px;
  z-index: 599;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.info-card .option{
  position: relative;
  bottom: 0;
  color: #ffffff !important;
  font-size: 20px;
  z-index: 399 !important;
  /*line-height: 24px;*/
}

.info-card .option p{
  margin-bottom: -2px;
}

.info-card .option ul {
  margin: 0;
  padding: 0;
}

.info-card .option ul li {
  margin: 0 0 10px;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  list-style: none;
  color: #ffffff !important;
  font-size: 20px;
  position: relative;
  display: block; 
  z-index: 99;
}

.info-card .option ul li::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 600; /* Ensure correct weight for solid icons */
  content: '\f0da'; /* Unicode for the fa-minus icon */
  color: #fff; /* Adjust the color if needed */
  font-size: 20px; /* Adjust the size if needed */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.info-card .option ul li::after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 600; /* Ensure correct weight for solid icons */
  content: '\f0d9'; /* Unicode for the fa-minus icon */
  color: #fff; /* Adjust the color if needed */
  font-size: 20px; /* Adjust the size if needed */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.info-card .option ul li::before {
  left: 0;
  /*left: -20px; /* Adjust the distance from the left edge of the li */
}

.info-card .option ul li::after {
  right: 0;
  /*right: -20px; /* Adjust the distance from the right edge of the li */
}

.info-card .option .fa {
  font-size: 8px;
}



/*---------------------------------------
  PRICING
-----------------------------------------*/

.price-card{
  position: relative;
  max-width: 400px;
  height: 100%;
  background: linear-gradient(-45deg,#fe0847, var(--theme-main-color));
  border-radius: 15px;
  margin: 0 auto;
  padding: 25px 20px;
  -webkit-box-shadow: 0 10px 15px rgba(0,0,0,.6) ;
          box-shadow: 0 10px 15px rgba(0,0,0,.6) ;
  -webkit-transition: .5s;
  transition: .5s;
  font-size: 20px;
}

.price-card:hover{
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.price-card::before{
  content: '';
  position: absolute;
  top: 200px;
  left: 0;
  width: 100%;
  height: calc(100% - 200px);

  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  /*
  -webkit-transform: skewY(-5deg) scale(1.5);
          transform: skewY(-5deg) scale(1.5);
  */
}

.price-card .toptag {
  background-color: #df4f0cbb;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 400;
  font-size: 40px !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  position: absolute;
  top: -60px;
  right: 0;
  margin: 0;
}

.price-card .title{
  position: relative;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 28px;
  z-index: 2;
}


/*
.price-card .title .fa{
  color:#fff;
  font-size: 60px;
  width: 100px;
  height: 100px;
  border-radius:  50%;
  text-align: center;
  line-height: 100px;
  -webkit-box-shadow: 0 10px 10px rgba(0,0,0,.1) ;
          box-shadow: 0 10px 10px rgba(0,0,0,.1) ;
}
*/

.price-card .price{
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #fff !important;
  font-size: 60px;
  padding-top: 5px;
  padding-bottom: 25px;
  min-height: 170px;
  display: inline-block;
}

.price-card .price .earlybird {
  display: inline-block;
  align-items: center;
}

.price-card .price .earlybird i{
  color: #d8d400;
}

.price-card .price .earlybird .validtill{
  display: inline-block;
  font-size: 16px;
  width: 65px;
  text-align: center;
  justify-content: center;
  color: #d8d400;
  padding-left: 0px;
  margin-left: -10px;
}

.price-card .price .discarded{
  color: #373636 !important;
  font-size: 38px;
  text-decoration: line-through;
  margin-top: -20px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.price-card .option{
  position: relative;
  bottom: 0;
  color: #ffffff !important;
  font-size: 20px;
  z-index: 399 !important;
  /*line-height: 24px;*/
}

.price-card .option p{
  margin-bottom: -2px;
}

.price-card .option ul {
  margin: 0;
  padding: 0;
}

.price-card .option ul li {
  margin: 0 0 10px;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  list-style: none;
  color: #ffffff !important;
  font-size: 20px;
  position: relative;
  display: block; 
  z-index: 99;
}

.price-card .option ul li::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 600; /* Ensure correct weight for solid icons */
  content: '\f0da'; /* Unicode for the fa-minus icon */
  color: #fff; /* Adjust the color if needed */
  font-size: 20px; /* Adjust the size if needed */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.price-card .option ul li::after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 600; /* Ensure correct weight for solid icons */
  content: '\f0d9'; /* Unicode for the fa-minus icon */
  color: #fff; /* Adjust the color if needed */
  font-size: 20px; /* Adjust the size if needed */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.price-card .option ul li::before {
  left: 0;
  /*left: -20px; /* Adjust the distance from the left edge of the li */
}

.price-card .option ul li::after {
  right: 0;
  /*right: -20px; /* Adjust the distance from the right edge of the li */
}

.price-card .option .fa {
  font-size: 8px;
}

.price-card a {
  position: relative;
  z-index: 2;
  background: #fff;
  color : black;
  width: 150px;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
  display: block;
  text-align: center;
  margin: 20px auto 0 ;
  font-size: 16px;
  cursor: pointer;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, .1);

}
.price-card a:hover{
    text-decoration: none;
}


.pricing-thumb {
    border: 1px dotted var(--white-color);
    border-radius: var(--border-radius-medium);
    position: relative;
    padding: 50px;
    height: 100%;
  }

.pricing-thumb h3 small {
  display: inline-block;
  font-size: var(--p-font-size);
  margin-right: 15px;
}

.pricing-list {
  column-count: 1;
  padding-left: 20px;
}

.pricing-list-item {
  line-height: normal;
  margin-right: 10px;
  margin-bottom: 10px;
}

.pricing-tag {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  position: absolute;
  top: -67px;
  right: 0;
  margin: 20px;
}

.pricing-tag span {
  font-size: 180%;
  line-height: normal;
}

.pricing-thumb .link-fx-1 {
  color: var(--white-color);
}

.pricing-thumb .link-fx-1:hover {
  color: var(--link-hover-color);
}


/*---------------------------------------
  CONTACT
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CUSTOM FORM
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER
-----------------------------------------*/
.site-footer {
  background-color: var(--header-footer-color);
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.site-footer-top {
  background-color: var(--secondary-color);
  /*background-image: url('../images/nainoa-shizuru-NcdG9mK3PBY-unsplash.jpg');*/
  background-repeat: no-repeat;
  margin-bottom: 70px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.site-footer-bottom {
  border-top: 1px solid #1f1c1c;
  margin-top: 60px;
}

.site-footer-title {
  color: var(--primary-color);
}

.equal-image {
    width: 100%;
    height: auto;
  }

.site-footer-link,
.copyright-text {
  color: var(--black-color);
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}


/*---------------------------------------
  SOCIAL ICON
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before{
  animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg);
  }
}


/*---------------------------------------
  RESPONSIVE STYLES
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;

  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .navbar {
    background-color: var(--header-footer-color);
  }

  .navbar-expand-lg .navbar-nav {
    width: -webkit-fill-available;
    position: absolute;
    padding: 20px;
    left: 0px;
    border-radius: 5px;
    background-color: var(--theme-main-color);
    color: var(--white-color);
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    font-size: var(--navlink-font-size);
    padding: 10px;
    color: var(--white-color);
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

}

/*---------------------------------------
  TABLE STYLES
-----------------------------------------*/
table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: .35em;
}

table th,
table td {
  padding: .625em;
  text-align: center;
}

table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  table {
    border: 0;
    border-radius: 5px;
  }

  /*
  table caption {
    font-size: 1.3em;
  }*/

  table thead {
    /*
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    */
  }

  table tr {
    border-bottom: 3px solid #ddd;
    /*
    display: block;
    margin-bottom: .625em;
    */
    
  }

  table td {
    border-bottom: 1px solid #ddd;
    /*    
    display: block;
    font-size: .8em;
    text-align: right;
    */
  }

  /*
  table td::before {
    content: attr(aria-label);
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }

  table td:last-child {
    border-bottom: 0;
  }
  */
}

.sign-in-btn {
  width: 100%;
  padding: 10px;
  background-color: #d2a546;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

body.show-kutu .kutu {
  right: 0;
}



  
/*---------------------------------------
  SIGN-IN AND SIGN-UP
-----------------------------------------*/
#signinup {
  font-family: 'Ela Sans', regular;
  font-size: 20px;
}

#signinup .nav .nav-item button{
  height: 50px;
  background: #ffffff;
  color: var(--theme-main-color);
  font-size: 24px;
}

#signinup .nav .nav-item button.active{
  height: 50px;
  background: var(--theme-main-color);
  color: #ffffff;
}

#signin-tab{
  border-top-left-radius: 0px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

#signup-tab{
  border-top-left-radius: 10px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}


#passreset {
  font-family: 'Ela Sans', regular;
  font-size: 20px;
}

#reset-tab{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

#passreset .nav .nav-item button{
  height: 50px;
  background: #ffffff;
  color: var(--theme-main-color);
  font-size: 24px;
}  

#passreset .nav .nav-item button.active{
  height: 50px;
  background: var(--theme-main-color);
  color: #ffffff;
}  

#pills-tab{
  background: #ffffff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-style: solid;
  border-bottom-color: var(--theme-main-color);
}

#pills-tabContent{
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.gsi-material-button {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  background-color: WHITE;
  background-image: none;
  border: 1px solid #747775;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1f1f1f;
  cursor: pointer;
  /*font-family: 'Roboto', arial, sans-serif;*/
  font-family: 'Ela Sans', regular;
  font-size: 14px;
  height: 40px;
  letter-spacing: 0.25px;
  outline: none;
  overflow: hidden;
  padding: 0 12px;
  position: relative;
  text-align: center;
  -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
  transition: background-color .218s, border-color .218s, box-shadow .218s;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  max-width: 400px;
  min-width: min-content;
}

.gsi-material-button .gsi-material-button-icon {
  height: 20px;
  margin-right: 12px;
  min-width: 20px;
  width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  /*font-family: 'Roboto', arial, sans-serif;*/
  font-family: 'Ela Sans', regular;
  font-weight: 500;
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
  -webkit-transition: opacity .218s;
  transition: opacity .218s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.gsi-material-button:disabled {
  cursor: default;
  background-color: #ffffff61;
  border-color: #1f1f1f1f;
}

.gsi-material-button:disabled .gsi-material-button-contents {
  opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
  opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  background-color: #303030;
  opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
  -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  background-color: #303030;
  opacity: 8%;
}

