@import url(helper.css);
*,
* button:focus {
  outline: 0;
}

:root {
  --main: #BA3A94;
}

.cr-main {
  color: var(--main) !important;
}

.bg-main {
  background-color: var(--main) !important;
  border-color: var(--main) !important;
  color: #fff !important;
}

.border-main {
  border-color: var(--main) !important;
}

.hover-main:hover {
  color: var(--main);
}

.hover-bg-main:hover {
  background-color: var(--main);
  border-color: var(--main);
  color: #fff !important;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

html::-webkit-scrollbar {
  height: 5px;
  width: 5px;
  background: rgba(255, 255, 255, 0);
  border-radius: 0;
}

html::-webkit-scrollbar-thumb {
  background: var(--main);
  border-radius: 5px;
}

html::-webkit-scrollbar-corner {
  background: var(--main);
  border-radius: 5px;
}

body {
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  background-color: #000;
  background-size: cover;
  background-position: top;
  color: #fff;
  z-index: 5;
}
body .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

section {
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.1;
  font-kerning: none;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

[type=email],
[type=number],
[type=tel],
[type=url] {
  direction: inherit;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  transition: all 0.6s ease;
  outline: 0;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

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

.img-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.object-top {
  -o-object-position: top;
     object-position: top;
}

.object-bottom {
  -o-object-position: bottom;
     object-position: bottom;
}

.dnf-center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.df-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 14px;
  line-height: 1.8;
}

small.text {
  font-size: 12px;
}

.section-padding {
  padding: 100px 0;
}

.dropdown .dropdown-menu {
  border-radius: 10px;
  padding: 10px;
  border: 0;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.0666666667);
}
.dropdown .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.0666666667);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateX(-100px);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --------------- butn --------------- */
.butn {
  position: relative;
  padding: 13px 35px;
  transition: all 0.3s ease;
  text-align: center;
  text-transform: capitalize;
  overflow: hidden;
  z-index: 2;
  border-radius: 15px;
}
.butn:hover {
  box-shadow: 7px 10px 15px rgba(24, 25, 27, 0.1333333333);
  transform: translateY(-2px);
}
.butn.butn-grad1 {
  color: #fff;
}
.butn.butn-grad1::before {
  position: absolute;
  content: "";
  left: -100%;
  top: 0;
  width: 200%;
  height: 100%;
  background: var(--grad1);
  transition: all 0.4s ease;
  z-index: -1;
}
.butn.butn-grad1:hover::before {
  left: 0;
}
.butn.butn-white {
  background: #fff;
  color: var(--cr-main);
}
.butn.butn-white:hover {
  background-color: var(--cr-main);
  color: #fff;
}
.butn.butn-border {
  background-color: #fff;
  border: 1px solid var(--cr-main);
  color: var(--cr-main);
}
.butn.butn-border:hover {
  background-color: var(--cr-main);
  border-color: var(--cr-main);
  color: #fff;
}
.butn.butn-border-light {
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--cr-main);
}
.butn.butn-border-light:hover {
  background-color: var(--cr-main);
  border-color: var(--cr-main);
  color: #fff;
}
.butn.md-butn {
  padding: 12px 25px;
  font-size: 13px;
}
.butn.blur-wh-butn {
  background-color: rgba(255, 255, 255, 0.0666666667);
  backdrop-filter: blur(10px);
}
.butn.hvr-scale:hover {
  transform: scale(1.1);
}
.butn.hvr-txt-trans {
  position: relative;
  overflow: hidden;
}
.butn.hvr-txt-trans .txt {
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
}
.butn.hvr-txt-trans .txt::after {
  content: attr(data-text);
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, 100%);
  transition: opacity 0.3s, transform 0.3s;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  white-space: nowrap;
}
.butn.hvr-txt-trans .txt span {
  transition: all 0.4s ease;
}
.butn.hvr-txt-trans:hover .txt span {
  transform: translateY(-150%);
  opacity: 0;
}
.butn.hvr-txt-trans:hover .txt::after {
  transform: translate(-50%, -50%);
  opacity: 1;
}

/* --------------- page title --------------- */
.page-title {
  position: relative;
}
.page-title h1 {
  font-size: clamp(25px, 7vw, 70px);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
}
.page-title h1 span {
  text-shadow: 2px 2px 15px #000;
  font-size: clamp(25px, 9vw, 65px);
  font-weight: bolder;
  margin-top: 15px;
}
.page-title .icon-item {
  position: relative;
  display: flex;
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 30px;
}
.page-title .icon-item .icon {
  font-size: 50px;
  margin-inline-end: 15px;
  flex-shrink: 0;
}

/* --------------- form-sec --------------- */
.form-sec {
  position: relative;
}
.form-sec .form {
  position: relative;
  display: block;
  padding: 30px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.form-control {
  position: relative;
  background-color: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid transparent;
  min-height: 55px;
  border-radius: 15px;
  padding-inline-start: 20px;
}
.form-control::-moz-placeholder {
  opacity: 0.4;
}
.form-control::placeholder {
  opacity: 0.4;
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--main);
}

/* --------------- Signature --------------- */
.signature-wrapper {
  position: relative;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
}

canvas {
  width: 100%;
  height: 100%;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
  margin-top: 40px;
}

/* --------------- table --------------- */
.table-rows {
  position: relative;
}
.table-rows .txt {
  padding: 10px 0;
  height: 100%;
}

.event-sec {
  margin-top: 400px;
}

/* --------------- footer --------------- */
.footer {
  position: relative;
  border-top: 6px solid var(--main);
  padding: 30px 0;
}

/* --------------- to_top --------------- */
/* ======== */
@media screen and (max-width: 991px) {
  body::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    opacity: 0.6;
  }
  body .bg {
    top: -15%;
    height: 115%;
    max-height: unset;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  .page-title .icon-item {
    font-size: 25px;
    justify-content: flex-start !important;
    margin: 20px 0 !important;
  }
  .icon-70 {
    width: 40px;
    height: 40px;
  }
  .icon-40 {
    width: 30px;
    height: 30px;
  }
  .fsz-35 {
    font-size: 27px !important;
  }
  .section-padding {
    padding: 50px 0;
  }
  .event-sec {
    margin-top: 0;
  }
  .table-item {
    position: relative;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.0666666667);
  }
  .item-row {
    position: relative;
    padding: 20px;
    margin: 15px 0;
    border: 1px solid rgba(255, 255, 255, 0.2666666667);
  }
  .item-row .txt {
    text-align: start !important;
  }
  .item-row .arrow {
    display: none;
  }
  br {
    display: none;
  }
  .fsz-25 {
    font-size: 20px !important;
  }
  .fsz-20 {
    font-size: 16px !important;
  }
  .fsz-18 {
    font-size: 15px !important;
  }
}
/* ======= */
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}/*# sourceMappingURL=style.css.map */