@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
h1, h2, h3, h4, h5, h6, p, button {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  border: none;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

main {
  background-color: #000;
  background-image: url("../images/bg-noise.png");
}

.events {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-block: 30px;
}

.event-card {
  border: #fff 1px solid;
}
.event-card li {
  width: 138px;
  height: 245px;
}

.events {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-block: 30px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-items: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (min-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 27px 27px;
  }
}
@media screen and (min-width: 1200px) {
  .events-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 70px;
  }
}

.event-card {
  position: relative;
  cursor: pointer;
  width: 138px;
  height: 242px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  overflow: visible;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.event-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 108px;
  height: 101px;
  top: -10px;
  right: -10px;
  border: 1px solid rgba(220, 86, 197, 0.3);
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
@media screen and (min-width: 768px) {
  .event-card {
    width: 196px;
    height: 312px;
  }
  .event-card::before {
    width: 153px;
    height: 143px;
    top: -12px;
    right: -12px;
  }
}
@media screen and (min-width: 1200px) {
  .event-card {
    width: 196px;
    height: 312px;
  }
  .event-card::before {
    width: 153px;
    height: 143px;
    top: -14px;
    right: -14px;
  }
}

.event-image {
  width: 128px;
  height: 161px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  display: block;
}
@media screen and (min-width: 768px) {
  .event-image {
    width: 180px;
    height: 227px;
  }
}
@media screen and (min-width: 1200px) {
  .event-image {
    width: 180px;
    height: 227px;
  }
}

.event-info {
  margin: 10px auto 0;
  text-align: center;
  max-width: 184px;
  width: 100%;
}
.event-info .event-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: #DC56C5;
  margin-bottom: 6px;
  display: block;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}
@media screen and (min-width: 768px) {
  .event-info .event-title {
    font-size: 16px;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
    max-width: 184px;
    display: inline-block;
  }
}
@media screen and (min-width: 1200px) {
  .event-info .event-title {
    font-size: 16px;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
    max-width: 184px;
    display: inline-block;
  }
}
.event-info .event-date {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  opacity: 1;
  margin-bottom: 5px;
  line-height: 100%;
}
.event-info .event-location {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  white-space: nowrap;
}
.event-info .event-location img {
  width: 7px;
  height: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
}

* {
  margin: 0;
  padding: 0%;
}

body {
  color: #000;
}

header {
  position: relative;
  background-image: url(../images/pic.png);
  height: 365px;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.h1-and-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  text-align: center;
}

.title-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 212px;
  font-family: "Montserrat", sans-serif;
  color: #DC56C5;
  font-size: 18px;
  margin-top: 80px;
}
@media screen and (min-width: 720px) {
  .title-text {
    margin-top: 40px;
    font-weight: 900;
    font-size: 30px;
    width: 355px;
  }
}
@media screen and (min-width: 1200px) {
  .title-text {
    font-size: 50px;
    width: 590px;
  }
}

.header-logo {
  position: absolute;
  width: 90px;
  height: 107px;
}
@media screen and (min-width: 720px) {
  .header-logo {
    width: 180px;
    height: 151px;
  }
}
@media screen and (min-width: 1200px) {
  .header-logo {
    width: 238px;
    height: 201px;
  }
}

.search-form {
  max-width: 800px;
  margin: 0 auto;
}
.search-form .div_label_header {
  position: relative;
  margin-bottom: 20px;
}
.search-form .div_label_header .label_header {
  display: block;
  width: 100%;
}
.search-form .div_label_header .search-input {
  width: 100%;
  height: 40px;
  padding: 0 50px 0 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 20px;
  font-size: 14px;
  color: #ffffff;
  outline: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 720px) {
  .search-form .div_label_header .search-input {
    width: 270px;
  }
}
.search-form .div_label_header .search-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.search-form .div_label_header .search-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.search-form .div_label_header .search-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.search-form .div_label_header .search-input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.search-form .div_label_header .search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.search-form .div_label_header .search-input:focus {
  background: rgba(255, 255, 255, 0.2);
}
.search-form .div_label_header .search_button_header {
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.search-form .div_label_header .search_button_header:hover {
  opacity: 1;
}
.search-form .div_label_header .search_button_header img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  width: 12px;
  height: 12px;
}
.search-form .select_country {
  width: 100%;
}
@media screen and (min-width: 720px) {
  .search-form .select_country {
    width: 270px;
  }
}
.search-form .select_country .country_select {
  width: 100%;
  height: 40px;
  padding: 0 50px 0 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.2);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-opacity='0.6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 24px center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 720px) {
  .search-form .select_country .country_select {
    width: 270px;
  }
}
.search-form .select_country .country_select:hover, .search-form .select_country .country_select:focus {
  background-color: rgba(255, 255, 255, 0.2);
}
.search-form .select_country .country_select option {
  background: #333;
  color: #fff;
  padding: 10px;
}
@media screen and (min-width: 720px) {
  .search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

footer {
  background-color: #000;
  background-image: url("../images/bg-noise.png");
}

.foot-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 30px;
}

.footer-text {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  color: rgb(147, 147, 147);
  width: 258px;
}
@media screen and (min-width: 720px) {
  .footer-text {
    font-size: 16px;
    width: 525px;
  }
}

#modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  margin-top: 100px;
  background-color: rgb(255, 242, 253);
  border-radius: 150px 0 150px 0;
  padding: 75px 15px 105px 15px;
  z-index: 3;
}
#modal #h3_p_modal {
  max-width: 240px;
  font-family: Montserrat;
}
#modal h3 {
  color: rgb(220, 86, 197);
  font-size: 20px;
  margin-bottom: 5px;
}
#modal p {
  margin-bottom: 10px;
}
#modal #prices button {
  border: none;
  background-color: rgb(76, 0, 254);
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}
#modal #more_btn {
  padding: 10px 3px;
  background-color: rgb(255, 242, 253);
  border: 1px solid rgb(76, 0, 254);
  color: rgb(76, 0, 254);
  border-radius: 5px;
}
#modal #close_btn {
  position: absolute;
  top: 25px;
  right: 25px;
  background: transparent;
  width: 17px;
  height: 17px;
}
#modal #modal_content {
  display: none;
  padding: 12px 115px 12px 115px;
}
#modal .image_of_band {
  background-color: #636363;
  height: 415px;
}
@media screen and (min-width: 720px) {
  #modal .content_of_modal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}/*# sourceMappingURL=main.css.map */