@font-face {
  font-family: "BebasNeue";
  src: url("../fonts/BebasNeue/BebasNeue-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Merriweather";
  src: url("../fonts/Merriweather/Merriweather_24pt-Regular.ttf")
    format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Merriweather";
  src: url("../fonts/Merriweather/Merriweather_36pt-Bold.ttf")
    format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Merriweather";
  src: url("../fonts/Merriweather/Merriweather_36pt-Light.ttf")
    format("truetype");
  font-weight: 300;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Merriweather", serif;
  font-weight: 400;
  color: var(--primary-color);
  font-size: clamp(20px, 1.25vw, 24px);
  line-height: clamp(24px, 1.822916666666667vw, 35px);
  font-weight: 300;
}
* {
  box-sizing: border-box;
}
a {
  color: inherit;
  font-family: inherit;
  display: inline-block;
  text-decoration: none;
}
a:focus {
  outline: none;
}
p {
  margin: 0;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.subtitle {
  color: var(--primary-color);
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  font-size: max(0.78125vw, 12px);
  line-height: 1.3;
  padding-bottom: 9px;
}

h1 {
  font-size: clamp(50px, 3.645833333333333vw, 70px);
  line-height: clamp(50px, 3.645833333333333vw, 70px);
  font-family: "BebasNeue", sans-serif;
  color: var(--secondary-color);
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
}
h2 {
  font-size: clamp(24px, 1.875vw, 36px);
  line-height: clamp(30px, 2.604166666666667vw, 50px);
  font-weight: 700;
  padding-top: max(4.166vw, 60px);
  margin: 0;
}

h3 {
  font-size: clamp(20px, 1.25vw, 24px);
  line-height: clamp(24px, 1.822916666666667vw, 35px);
  font-weight: 700;
  margin: 0;
  /* padding-top: max(2.605vw, 20px); */
}

.paragraph__xxl p {
  /* font-size: max(, 16px); */
}

header .menu a {
  /* font-size: max(, ); */
}

.paragraph__xl p {
  font-size: clamp(20px, 1.25vw, 24px);
  line-height: clamp(28px, 1.822916666666667vw, 35px);
  font-weight: 300;
}
.paragraph__xl p strong {
  font-weight: 700;
}
.paragraph__l p {
  font-size: clamp(14px, 0.83333vw, 18px);
  line-height: max(30px, 2.604166666666667, 50px);
}

.paragraph__m p {
  font-size: clamp(12px, 0.7291666666666667vw, 16px);
  line-height: max(1.302vw, 25px);
}

.paragraph__s p {
  /* font-size: max(, 14px); */
}

:root {
  --primary-color: #011b32;
  --secondary-color: #b11712;
}
.f-right {
  float: right;
}
.uppercase {
  text-transform: uppercase;
}
.hide {
  display: none;
}
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.gap-20 {
  gap: 20px;
}
.gap-5 {
  gap: 5px;
}
.container-padding,
.woocommerce-breadcrumb {
  padding-left: 52px;
  padding-right: 52px;
}
.container--right {
  max-width: calc(max(83.593vw, 1605px));
  /* max-width: 1605px; */
  padding-left: 9px;
  width: 100%;
  margin-left: auto;
}
.hidden {
  display: none;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.w-content {
  width: fit-content;
}
.relative {
  position: relative;
}
/* main > section:first-of-type {
      padding-top: 87px;
    } */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-white {
  color: white;
}
.text-black {
  color: #222222;
}
.text-primary {
  color: var(--primary-color);
}
.text-secondary {
  color: var(--secondary-color);
}
.home-hero-content {
  /* padding-top: max(8.96vw, 50px);
      padding-bottom: max(7.65vw, 50px); */
  padding-left: max(4.74vw, 15px);
}
.child-flex-1 > * {
  flex: 1;
}

#primary-menu {
  justify-content: center;
}
.header-right {
  text-align: right;
}
.o-cover {
  object-fit: cover;
}
.o-contain {
  object-fit: contain;
}
.filled-primary,
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained,
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
  color: #fff;
  padding: 17px 52px;
  font-size: max(0.833333vw, 16px);
  border: 1px solid transparent;
  background-color: var(--primary-color);
  transition: 0.3s;
  border-radius: 99px;
  font-weight: 500;
  text-transform: capitalize;
}
.filled-primary:visited {
  color: #fff;
}
.filled-primary:hover,
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:hover,
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  background-color: #fff;
}
.filled-primary.hero {
  border: 2px solid #fff;
  margin-bottom: -34px;
  z-index: 2;
}
.filled-primary.hero:hover {
  border: 2px solid var(--primary-color);
  margin-bottom: -34px;
  z-index: 2;
}
.filled-secondary,
.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained {
  color: #fff !important;
  padding: 17px 50px;
  font-size: max(0.833333vw, 14px);
  border: 1px solid transparent;
  background-color: var(--secondary-color);
  transition: 0.3s;
  border-radius: 99px;
  font-weight: 700;
  text-transform: capitalize;
}
.filled-secondary:visited {
  color: #fff;
}
.filled-secondary:hover {
  color: var(--secondary-color) !important;
  border: 1px solid var(--secondary-color);
  background-color: #fff;
}

.p-0 {
  padding: 0;
}
/* margin topp  */
.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: max(1.56vw, 20px);
}
.mt-40 {
  margin-top: max(2.083vw, 20px);
}
.mt-50 {
  margin-top: max(2.605vw, 20px);
}
.mt-60 {
  margin-top: max(3.125vw, 40px);
}
.mt-70 {
  margin-top: max(3.64vw, 40px);
}
.mt-80 {
  margin-top: max(4.166vw, 60px);
}
.mt-90 {
  margin-top: max(4.678vw, 60px);
}
.mt-100 {
  margin-top: max(5.208vw, 60px);
}
.mt-110 {
  margin-top: max(5.729vw, 60px);
}
.mt-120 {
  margin-top: max(6.25vw, 60px);
}
.mt-130 {
  margin-top: max(6.77vw, 60px);
}
.mt-140 {
  margin-top: max(7.29vw, 60px);
}
.mt-150 {
  margin-top: max(7.8vw, 60px);
}
.mt-160 {
  margin-top: max(8.33vw, 60px);
}
.mt-170 {
  margin-top: max(8.854vw, 70px);
}
.mt-180 {
  margin-top: max(9.375vw, 70px);
}
.mt-190 {
  margin-top: max(9.89vw, 70px);
}
.mt-200 {
  margin-top: max(10.41vw, 80px);
}
/* margin bottom  */
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: max(1.56vw, 20px);
}
.mb-40 {
  margin-bottom: max(2.083vw, 20px);
}
.mb-50 {
  margin-bottom: max(2.605vw, 20px);
}
.mb-60 {
  margin-bottom: max(3.125vw, 40px);
}
.mb-70 {
  margin-bottom: max(3.64vw, 40px);
}
.mb-80 {
  margin-bottom: max(4.166vw, 60px);
}
.mb-90 {
  margin-bottom: max(4.678vw, 60px);
}
.mb-100 {
  margin-bottom: max(5.208vw, 60px);
}
.mb-110 {
  margin-bottom: max(5.729vw, 60px);
}
.mb-120 {
  margin-bottom: max(6.25vw, 60px);
}
.mb-130 {
  margin-bottom: max(6.77vw, 60px);
}
.mb-140 {
  margin-bottom: max(7.29vw, 60px);
}
.mb-150 {
  margin-bottom: max(7.8vw, 60px);
}
.mb-160 {
  margin-bottom: max(8.33vw, 60px);
}
.mb-170 {
  margin-bottom: max(8.854vw, 70px);
}
.mb-180 {
  margin-bottom: max(9.375vw, 70px);
}
.mb-190 {
  margin-bottom: max(9.89vw, 70px);
}
.mb-200 {
  margin-bottom: max(10.41vw, 80px);
}

/* padding topp  */
.pt-10 {
  padding-top: 10px;
}
.pt-20 {
  padding-top: 20px;
}
.pt-30 {
  padding-top: max(1.56vw, 20px);
}
.pt-40 {
  padding-top: max(2.083vw, 20px);
}
.pt-50 {
  padding-top: max(2.605vw, 20px);
}
.pt-60 {
  padding-top: max(3.125vw, 40px);
}
.pt-70 {
  padding-top: max(3.64vw, 40px);
}
.pt-80 {
  padding-top: max(4.166vw, 60px);
}
.pt-90 {
  padding-top: max(4.678vw, 60px);
}
.pt-100 {
  padding-top: max(5.208vw, 60px);
}
.pt-110 {
  padding-top: max(5.729vw, 60px);
}
.pt-120 {
  padding-top: max(6.25vw, 60px);
}
.pt-130 {
  padding-top: max(6.77vw, 60px);
}
.pt-140 {
  padding-top: max(7.29vw, 60px);
}
.pt-150 {
  padding-top: max(7.8vw, 60px);
}
.pt-160 {
  padding-top: max(8.33vw, 60px);
}
.pt-170 {
  padding-top: max(8.854vw, 70px);
}
.pt-180 {
  padding-top: max(9.375vw, 70px);
}
.pt-190 {
  padding-top: max(9.89vw, 70px);
}
.pt-200 {
  padding-top: max(10.41vw, 80px);
}
.pt-210 {
  padding-top: max(10.9375vw, 80px);
}
.pt-220 {
  padding-top: max(11.458vw, 80px);
}
.pt-230 {
  padding-top: max(11.97916666666667vw, 80px);
}
.pt-240 {
  padding-top: max(12.5vw, 80px);
}
.pt-250 {
  padding-top: max(13.02083333333333vw, 80px);
}
/* padding bottom  */
.pb-10 {
  padding-bottom: 10px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pb-30 {
  padding-bottom: max(1.56vw, 20px);
}
.pb-40 {
  padding-bottom: max(2.083vw, 20px);
}
.pb-50 {
  padding-bottom: max(2.605vw, 20px);
}
.pb-60 {
  padding-bottom: max(3.125vw, 40px);
}
.pb-70 {
  padding-bottom: max(3.64vw, 40px);
}
.pb-80 {
  padding-bottom: max(4.166vw, 60px);
}
.pb-90 {
  padding-bottom: max(4.678vw, 60px);
}
.pb-100 {
  padding-bottom: max(5.208vw, 60px);
}
.pb-110 {
  padding-bottom: max(5.729vw, 60px);
}
.pb-120 {
  padding-bottom: max(6.25vw, 60px);
}
.pb-130 {
  padding-bottom: max(6.77vw, 60px);
}
.pb-140 {
  padding-bottom: max(7.29vw, 60px);
}
.pb-150 {
  padding-bottom: max(7.8vw, 60px);
}
.pb-160 {
  padding-bottom: max(8.33vw, 60px);
}
.pb-170 {
  padding-bottom: max(8.854vw, 70px);
}
.pb-180 {
  padding-bottom: max(9.375vw, 70px);
}
.pb-190 {
  padding-bottom: max(9.89vw, 70px);
}
.pb-200 {
  padding-bottom: max(10.41vw, 80px);
}
.pb-210 {
  padding-bottom: max(10.9375vw, 80px);
}
.pb-220 {
  padding-bottom: max(11.458vw, 80px);
}
.pb-230 {
  padding-bottom: max(11.97916666666667vw, 80px);
}
.pb-240 {
  padding-bottom: max(12.5vw, 80px);
}
.pb-250 {
  padding-bottom: max(13.02083333333333vw, 80px);
}
img {
  width: 100%;
  height: auto;
}
/* .site-logo img {
  max-width: 140px;
} */

/* #primary-menu li a {
      padding-left: max(2.083vw, 20px);
      padding-right: max(2.083vw, 20px);
    } */

/* header */

#site-navigation {
  max-width: 1600px;
  width: 100%;
  border-bottom: 1px solid var(--primary-color);
}
#primary-menu a {
  color: var(--primary-color);
  font-size: clamp(24px, 1.5625vw, 30px);
  line-height: clamp(30px, 1.875vw, 36px);
  font-family: "BebasNeue", sans-serif;
}
#primary-menu li {
  margin-right: clamp(15px, 5.208333333333333vw, 100px);
}
.header-social {
  gap: 40px;
}
.header-social svg path {
  fill: var(--primary-color);
}
.logo svg path {
  fill: var(--secondary-color);
}
.gigs__apperance p {
  border-top: 1px solid var(--primary-color);
  padding-top: 20px;
  padding-bottom: 20px;
}

.gigs__apperance.last-item p {
  border-bottom: 1px solid var(--primary-color);
}
.songs {
  color: #fff;
  background-color: var(--primary-color);
}
.songs h1 {
  color: #fff;
}
.songs .gigs__apperance p {
  border-top: 1px solid #fff;
}
.songs .gigs__apperance.last-item p {
  border-bottom: 1px solid #fff;
}
.contact__info p strong {
  color: #b11712;
  font-weight: 700;
  padding-bottom: max(3.64vw, 40px);
  display: block;
}
.contact__info p {
  font-size: clamp(24px, 1.875vw, 36px);
  line-height: clamp(30px, 2.604166666666667vw, 50px);
}
.contact__info a {
  font-weight: 700;
  transition: 0.3s;
}
.contact__info a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}
footer #site-navigation {
  max-width: 1600px;
  width: 100%;
  border-top: 1px solid var(--primary-color);
  border-bottom: none;
}
@media only screen and (max-width: 767px) {
  #primary-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #site-navigation {
    flex-direction: column;
  }
  #primary-menu li {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .site-logo svg {
    max-width: 100%;
  }
}
