:root {
  --primary-font: "Inter", sans-serif;
  --secondary-font: "Antonio", sans-serif;
  --orange: rgba(221, 71, 71, 1);
  --dark-black: rgb(27, 27, 27);
  --black: rgb(0, 0, 0);
  --white: rgb(255, 255, 255);
}

/* General CSS start */
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
strong,
sub,
sup,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
form,
label,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
figure,
footer,
header,
menu,
nav,
section,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--dark-black);
}

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

li {
  list-style: none;
}

a {
  text-decoration: none;
  outline: 0;
  margin: 0;
  padding: 0;
  font-family: var(--primary-font);
  font-size: 70%;
  color: var(--white);
  vertical-align: baseline;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: inline-block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  -ms-interpolation-mode: bicubic;
  height: auto;
  vertical-align: middle;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  max-width: 100%;
  display: block;
}

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

::placeholder {
  color: #000000;
  opacity: 1;
  text-transform: uppercase;
}

::-webkit-input-placeholder {
  color: #000000;
  opacity: 1;
  text-transform: uppercase;
}

:-moz-placeholder {
  color: #000000;
  opacity: 1;
  text-transform: uppercase;
}

:-ms-input-placeholder {
  color: #000000;
  text-transform: uppercase;
  opacity: 1;
}

button::-moz-focus-inner {
  border: 0;
}

:focus {
  outline: none;
}

::-moz-focus-inner {
  border: 0;
}

input[type="text"],
input[type="date"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
select,
textarea {
  width: 100%;
  border: solid 1px #000;
  border-radius: 5px;
  padding: 10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="submit"],
input[type="button"] {
  cursor: pointer;
  border: 0;
}

input:focus {
  outline: none;
}

label {
  display: inline-block;
  line-height: 1.5;
  vertical-align: middle;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
  font-weight: 700 !important;
  line-height: 130% !important;
  color: var(--white) !important;
  margin: 0;
  padding: 0;
}

p {
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--white);
  margin: 0;
  padding: 0;
}

/* General CSS end */

.container {
  max-width: 1535px;
  width: 100%;
  padding: 0 25px;
  margin: 0 auto;
}

h1,
.h1 {
  font-size: clamp(54px, 5vw, 96px);
}

h2,
.h2 {
  font-size: clamp(38px, 2.813vw, 54px);
}

h3,
.h3 {
  font-size: clamp(32px, 1.979vw, 44px);
}

h4,
.h4 {
  font-size: clamp(26px, 1.979vw, 38px);
}

h5,
.h5 {
  font-size: clamp(20px, 1.458vw, 28px);
}

h6,
.h6 {
  font-size: 24px;
}

.orange {
  color: var(--orange);
}

/* Header section start */
header {
  padding: 24px 0;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 99;
}

.main-header .logo a {
  display: block;
}

.main-header .logo img {
  max-width: clamp(
    300px,
    10.573vw,
    203px
  ); /*max-width: clamp(150px, 10.573vw, 203px); */
  height: auto;
}

.main-header nav ul,
.main-header nav {
  gap: clamp(50px, 5.052vw, 97px);
}

.main-header nav ul li a {
  font-size: 31px;
  line-height: 130%;
}

.main-header nav ul li a:hover {
  color: var(--orange);
}

.main-header .hamburger {
  width: 30px;
  height: 20px;
}

.main-header .hamburger span {
  height: 4px;
  background-color: var(--white);
  border-radius: 6px;
  position: absolute;
  left: 0;
  right: 0;
  transition: all 0.3s;
}

.main-header .hamburger span:nth-child(1) {
  top: 0;
}

.main-header .hamburger span:nth-child(2) {
  top: 8px;
}

.main-header .hamburger span:nth-child(3) {
  top: 16px;
}

/* Header section end */

/* Banner section start */
.banner-sec {
  /* background-image: url('../images/banner-img.png'); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.59);
  background-blend-mode: multiply;
  position: relative;
  padding-bottom: 175px;
  display: flex;
  align-items: center;
  height: 100vh;
}

.banner-sec .h1 {
  font-size: clamp(36px, 3vw, 57px);
  text-align: center;
  text-transform: uppercase;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  margin-top: 150px;
}

.banner-sec .h1::before {
  position: absolute;
  content: "";
  border: 2px solid rgba(221, 71, 71, 1);
  max-width: clamp(450px, 75.094vw, 1091px); /*clamp(460px, 46.094vw, 885px);*/
  width: 100%;
  height: clamp(254px, 13.333vw, 448px); /* clamp(260px, 23.333vw, 448px); */
  border-radius: 20px;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 48%;
  z-index: -1;
}

/* Banner section end */

/* Dj night section start */
.dj-night {
  padding-bottom: clamp(50px, 4.688vw, 90px);
  margin-top: -175px;
}

.dj-night .inner-sec {
  gap: 65px;
  flex-wrap: wrap;
}

.dj-night .inner-sec .event-info {
  position: relative;
  width: calc(25% - (195px / 4));
}

.dj-night .inner-sec img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.dj-night .inner-sec p {
  font-size: clamp(18px, 1.146vw, 22px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(16px, 1.25vw, 24px);
  background-color: rgba(0, 0, 0, 0.72);
  border-radius: 0 0 20px 20px;
  text-wrap: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.dj-night .h2 {
  font-size: clamp(38px, 3.125vw, 60px);
  text-align: center;
  margin-bottom: clamp(40px, 4.688vw, 90px);
  text-transform: uppercase;
}

.dj-night.gay-men {
  padding: clamp(50px, 4.688vw, 90px) 0;
  margin-top: 0;
}

/* Dj night section end */

/* About club section start */
.about-club {
  padding: clamp(50px, 4.688vw, 90px) 0;
}

.about-inner-sec {
  gap: 85px;
  max-width: 1380px;
  margin: 0 auto;
}

.about-inner-sec:not(:last-child) {
  padding-bottom: clamp(50px, 4.688vw, 90px);
}

.about-inner-sec:not(:first-child) {
  padding-top: clamp(50px, 4.688vw, 90px);
}

.about-inner-sec > div {
  width: 50%;
  height: 100%;
}

.about-inner-sec .h3 {
  text-transform: uppercase;
  margin-bottom: clamp(20px, 2.083vw, 40px);
}

.about-inner-sec p {
  font-size: clamp(20px, 1.25vw, 24px);
  line-height: 200%;
  margin-bottom: 24px;
}

.about-inner-sec p:last-child {
  margin-bottom: 0;
}

.about-inner-sec .right-side img {
  width: 100%;
  height: auto;
  max-width: 90%;
  max-height: 470px;
  object-fit: cover;
  border-radius: 30px;
}

.about-inner-sec .right-side img.image-2 {
  border: 8px solid var(--orange);
  max-width: 80%;
  max-height: 390px;
  margin-left: auto;
  margin-top: -30%;
  position: relative;
  z-index: 1;
}

.about-inner-sec.image-left .right-side img {
  max-width: 100%;
  max-height: 100%;
  border: 2px solid var(--orange);
}

/* About club section end */

/* list of cities section start */
.list-of-cities {
  padding: clamp(50px, 4.688vw, 90px) 0;
  background: rgba(37, 37, 37, 1);
}

.list-of-cities .main-heading {
  margin-bottom: clamp(40px, 3.125vw, 60px);
}

.list-of-cities .main-heading .h2 {
  margin-bottom: 30px;
  font-family: var(--secondary-font);
}

.list-of-cities .main-heading p {
  font-size: clamp(16px, 1.094vw, 21px);
  line-height: 180%;
}

.list-of-cities .cities-name {
  gap: 100px;
  flex-wrap: wrap;
}

.list-of-cities .cities-name ul {
  width: calc(25% - (300px / 4));
  list-style-type: disc;
  border-right: 1px solid rgba(208, 208, 208, 0.24);
  padding-right: 20px;
}

.list-of-cities .cities-name ul:last-child {
  border: 0;
}

.list-of-cities .cities-name ul li {
  list-style-type: disc;
  list-style-position: inside;
  font-family: var(--primary-font);
  font-size: 22px;
  font-weight: 400;
  line-height: 210%;
  color: var(--white);
}

.list-unstyled ul li a:hover {
  color: #d2691e;
}

.state-name a {
  margin-top: 20px;
  font-size: 28px;
}

.state-name a:hover {
  color: #d2691e;
}

/* list of cities section end */

/* Sign up banner form section start */
.sign-up-banner {
  background-image: url("../images/sign-up-banner-img.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.73);
  background-blend-mode: multiply;
  padding: clamp(50px, 4.688vw, 90px) 0;
}

.sign-up-banner .h2 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: clamp(30px, 2.5vw, 48px);
}

.sign-up-banner form {
  border: 2px solid rgba(221, 71, 71, 1);
  background: rgba(255, 255, 255, 0.29);
  padding: 70px;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}

.sign-up-banner form .field-group {
  position: relative;
  margin-bottom: 50px;
}

.sign-up-banner form .field-group input {
  background-color: rgba(217, 217, 217, 1);
  border-radius: 10px;
  padding: 18px 18px 18px 60px;
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  line-height: normal;
  border: 0;
  appearance: none;
  background-repeat: no-repeat;
  background-position: 18px center;
  background-size: 24px 24px;
}

.sign-up-banner form .field-group input.email {
  background-image: url("../images/Email-2.svg");
}

.sign-up-banner form .field-group input.name {
  background-image: url("../images/User.svg");
}

.sign-up-banner form .field-group input.birthday {
  background-image: url("../images/calender.svg");
}

.sign-up-banner form .checkbox {
  display: flex;
  gap: 16px;
  align-items: self-start;
}

.sign-up-banner form .checkbox input {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background-color: rgba(217, 217, 217, 1);
  flex: 0 0 20px;
  padding: 0 !important;
  margin-top: 3px;
  position: relative;
  cursor: pointer;
}

.sign-up-banner form .checkbox input::after {
  position: absolute;
  content: "";
  background-image: url("../images/check-solid.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: none;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sign-up-banner form .checkbox input:checked::after {
  display: block;
}

.sign-up-banner form .checkbox p {
  font-size: 12px;
  line-height: 200%;
  font-weight: 600;
  text-transform: uppercase;
}

.sign-up-banner form .checkbox p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sign-up-banner form .checkbox p a:hover {
  color: var(--black);
}

.sign-up-banner form .register {
  border: 0;
  background-color: var(--orange);
  text-align: center;
  padding: 16px;
  text-transform: uppercase;
  width: 100%;
  font-size: clamp(20px, 1.302vw, 25px);
  font-weight: 700;
  color: var(--white);
  border-radius: 10px;
}

/* Sign up banner form section end */

/* Footer section start */
footer {
  background-color: var(--black);
  padding: clamp(50px, 3.125vw, 60px) 0 0;
}

footer .footer-inner {
  padding-bottom: clamp(50px, 3.125vw, 60px);
  gap: 30px;
}

footer .copyright {
  background: rgba(37, 37, 37, 1);
  text-align: center;
  padding: clamp(24px, 1.771vw, 34px) 0;
}

footer .copyright p {
  font-size: clamp(20px, 1.25vw, 24px);
  line-height: 130%;
  color: var(--white);
  font-family: var(--secondary-font);
}

footer .footer-top,
footer .footer-top .social-icons ul {
  gap: 30px;
}

footer .footer-menu .h3 {
  color: var(--orange) !important;
  margin-bottom: 33px;
  font-family: var(--secondary-font);
}

footer .footer-menu ul li {
  margin-bottom: 25px;
}

footer .footer-menu ul li:last-child {
  margin-bottom: 0;
}

footer .footer-menu ul li a,
footer .footer-menu.address ul li {
  font-family: var(--primary-font);
  font-size: clamp(20px, 1.458vw, 28px);
  line-height: 120%;
  color: var(--white);
}

footer .footer-menu ul li a:hover {
  color: var(--orange);
}

footer .footer-menu.address ul li {
  display: flex;
  gap: 25px;
  line-height: 150%;
  align-items: start;
}

footer .footer-menu.address ul li img {
  width: 34px;
  height: auto;
}

footer .footer-menu.address ul li:first-child img {
  margin-top: 5px;
}

/* Footer section end */

@media only screen and (max-width: 1535px) {
  .dj-night .inner-sec {
    gap: 40px;
  }

  .dj-night .inner-sec .event-info {
    width: calc(25% - (120px / 4));
  }
}

@media only screen and (max-width: 1365px) {
  .list-of-cities .cities-name {
    gap: 50px;
  }

  .list-of-cities .cities-name ul {
    width: calc(25% - (150px / 4));
  }

  .list-of-cities .cities-name ul li {
    font-size: clamp(18px, 1.146vw, 22px);
  }
}

@media only screen and (max-width: 1199px) {
  .main-header nav ul li a {
    font-size: 24px;
  }

  .sign-up-banner form .field-group {
    margin-bottom: 30px;
  }

  .sign-up-banner form {
    padding: 50px;
  }

  .dj-night .inner-sec .event-info {
    width: calc(33.33% - (80px / 3));
  }

  .about-inner-sec {
    gap: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .list-of-cities .cities-name ul {
    width: calc(50% - 25px);
  }

  .list-of-cities .cities-name ul:nth-child(2n + 2) {
    border-right: 0;
  }

  .main-header nav ul,
  .main-header nav {
    gap: 30px;
  }

  .dj-night .inner-sec .event-info {
    width: calc(50% - (40px / 2));
  }

  .about-inner-sec {
    flex-wrap: wrap;
  }

  .about-inner-sec > div {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .container {
    padding: 0 16px;
  }

  header {
    padding: 16px 0;
  }

  .main-header .logo img {
    max-width: 130px;
  }

  .main-header .hamburger {
    display: block !important;
  }

  .main-header nav {
    flex-direction: column;
    position: fixed;
    left: 100%;
    right: 0;
    top: 68px;
    height: calc(100vh - 68px);
    background: var(--orange);
    padding: 24px 16px;
    align-items: self-start !important;
    transition: all 0.5s ease-in-out;
    width: 100%;
  }

  .main-header nav ul {
    flex-direction: column;
  }

  .main-header nav ul li a {
    color: var(--white);
  }

  .show-menu {
    overflow: hidden;
  }

  .show-menu .main-header nav {
    left: 0;
  }

  .show-menu .main-header .hamburger span:nth-child(1) {
    top: 8px;
    transform: rotate(145deg);
  }

  .show-menu .main-header .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .show-menu .main-header .hamburger span:nth-child(3) {
    top: 8px;
    transform: rotate(-145deg);
  }

  .list-of-cities .cities-name ul li {
    line-height: 180%;
  }

  .list-of-cities .cities-name {
    gap: 20px;
  }

  .list-of-cities .cities-name ul {
    width: 100%;
    border-right: 0;
    padding: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #cecdcd;
  }

  .list-of-cities .cities-name ul:last-child {
    padding-bottom: 0;
  }

  footer .footer-menu .h3 {
    margin-bottom: 24px;
  }

  footer .footer-menu ul li {
    margin-bottom: 16px;
  }

  footer .footer-menu.address ul li {
    gap: 16px;
  }

  footer .footer-menu.address ul li img {
    width: 24px;
  }

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

  footer .footer-inner > div {
    width: 100%;
  }

  .dj-night .inner-sec {
    gap: 30px;
  }

  .dj-night .inner-sec .event-info {
    width: 100%;
  }

  .sign-up-banner form {
    padding: 36px 16px;
  }

  .sign-up-banner form .field-group input {
    padding: 18px 18px 18px 44px;
    font-size: 16px;
    background-position: 12px center;
    background-size: 20px 20px;
  }

  .main-header nav ul li a:hover {
    color: var(--black);
  }

  .about-inner-sec p {
    font-size: 18px;
    line-height: 160%;
  }

  .about-inner-sec:not(:last-child) {
    padding-bottom: 30px;
  }

  .about-inner-sec:not(:first-child) {
    padding-top: 30px;
  }

  .dj-night {
    margin: 0;
    padding: clamp(50px, 4.688vw, 90px) 0;
  }

  .banner-sec {
    height: auto;
    padding: 80px 0;
  }
  .banner-sec .h1::before {
    position: absolute;
    content: "";
    border: 2px solid rgba(221, 71, 71, 1);
    max-width: clamp(454px, 77.094vw, 1083px);
    width: 100%;
    height: clamp(387px, 13.333vw, 450px);
    border-radius: 20px;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 48%;
    z-index: -1;
  }
}

.about-inner-sec ul li {
  list-style: disc;
  color: #fff;
  font-size: 18px;
}
.about-inner-sec ul {
  padding-left: 26px;
}
section.about-club .about-inner-sec a {
  text-decoration: underline;
  font-size: 20px;
}
section.about-club a {
  font-size: 16px;
}
a.banner-center-btn {
  text-align: center;
  height: auto;
  width: 100%;
  font-size: 22px;
  margin: 25px 0px;
  background: #fff;
  border-radius: 10px;
  color: #000;
  display: inline-block;
  width: 200px;
  max-width: 100%;
  padding: 10px 10px;
  border: 1px solid red;
}
.main-join-now {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-top: 85px;
}
ul.privacy-policy-ul {
  padding-left: 30px;
  padding-top: 18px;
}
ul.privacy-policy-ul li {
  color: #fff;
  list-style: disc;
}
