@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:wght@100;200;300;400;500;600;700&display=swap");


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #F8CB2E;
  --secondary-color:              #f2b638;
  --section-bg-color:             #111;
  --custom-btn-bg-color:          #EE5007;
  --custom-btn-bg-hover-color:    #c01f27;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #B22727;
  --bordercolor:                  #f2b638;
  --box-shadow: 0px 0px 18px 0px rgba(54.99999999999997, 156.00000000000023, 255, 0.9882352941176471) inset;
  --icon-shadow: 0px 0px 10px 0px rgba(54.99999999999997, 156.00000000000023, 255, 0.9882352941176471) inset;
  --e-global-color-1bb4924:       #030510;
  --body-font-family:             'Outfit', sans-serif;

  --h1-font-size:                 74px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --btn-font-size:                14px;
  --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;
}

body {
  background-color: var(--section-bg-color);
  font-family: var(--body-font-family);
  overflow-x: hidden; 
  cursor: url("https://s.electerious.com/images/codepen/cursor.svg") 3 3, auto;
}
html{
  scroll-behavior: smooth;
}


/*---------------------------------------
  CURSTOM SCROLL BAR               
-----------------------------------------*/

html::-webkit-scrollbar{
  width: 17px;
}
html::-webkit-scrollbar-track{
  background-color: #333;
}

html::-webkit-scrollbar-thumb{
  background-color: var(--bordercolor);
  border-radius: var(--border-radius-small);
  box-shadow: 0px 0px 20px 0px rgba(54.99999999999997, 156.00000000000023, 255, 0.9882352941176471);

}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-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);
}

.link-fx-1 {
  color: var(--white-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(--bordercolor);
}

.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;
}

.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;
}

.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: 80px;
  padding-bottom: 80px;
}

.section-bg {
  /* background-color: var(--section-bg-color); */
}

.section-overlay {
  background-color: rgba(0,0,0,.175);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content-form{
  border-radius: var(--border-radius-large);
  background-image: radial-gradient(at top center, #379CFF66 0%, var(--e-global-color-1bb4924 ) 85%);
  border: 1px solid var(--bordercolor);
  border-radius: var(--border-radius-medium);
  --card-ozone-shadow: 0px 0px 10px 0px rgba(54.99999999999997, 156.00000000000023, 255, 0.9882352941176471);
  box-shadow: var(--card-ozone-shadow)!important;
  padding: 45px;
}

.nav-tabs-form{
  background-color: transparent;
  border-radius: var(--border-radius-large);
  background-image: radial-gradient(at top center, #379CFF66 0%, var(--e-global-color-1bb4924 ) 85%);
  border: 1px solid var(--bordercolor);
  border-bottom: 0;
  padding: 15px;
  transition: .2s ease;

}


.nav-tabs-form:hover{
--card-ozone-shadow: 0px -1px 0px 0px rgba(54.99999999999997, 156.00000000000023, 255, 0.9882352941176471);
box-shadow: var(--card-ozone-shadow);
transition: .3s ease;
}
.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: transparent;
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  /* color:var(--white-color); */
  border: 1px solid var(--bordercolor);
  box-shadow: var(--icon-shadow);
}

.nav-tabs h5 {
  color: #eee; 
  margin-bottom: 0;
  font-weight: 500;
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5, 
.nav-tabs .nav-link:hover h5 {
  color: var(--bordercolor);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {

  text-align: center;
  background-color: #72D3FF00;
  padding: 10px 25px;
  box-shadow: var(--box-shadow);
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: var(--bordercolor);
  border-radius: 50px 50px 50px 50px;
  color: #fff;
}

.custom-btn:hover {
  box-shadow:  0px 0px 27px 0px rgba(54.99999999999997, 156.00000000000023, 255, 0.9882352941176471) inset;
  color: #fff;
  border-color: var(--bordercolor);

}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-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;
  left: 0;
  bottom: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}




/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  transition: .3s linear;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--dark-color);
  transition: .3s linear;
}

.navbar {
  background: transparent;
  z-index: 9;
  transition: .3s linear;

}
.navbar-brand img{
max-height: 100px;
}
@media screen and (max-width: 568px) {
.navbar-brand img{
max-height: 50px;
}

}
.navbar-brand,
.navbar-brand:hover {
  color: var(--white-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);
  margin: 10px;
  padding: 10px 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
}

/* .navbar- */
.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--secondary-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(--white-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(--white-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(100vh + 51px); */
  height: 100vh;
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
  z-index: 2;
  opacity: 0.45;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.hero-section .container .row {
  height: 100%;
}
.hero-section h1 {
  font-family: "IBM Plex Serif", serif;
  font-weight: 700;
  font-size:  50px;
  line-height: 55px;
  color: var(--white-color);
  text-align: center;
}
.hero-section h1 span{
  color: var(--bordercolor);
}
.hero-section h5 {
  font-family: "IBM Plex Serif", serif;
  font-weight: 700;
  font-size:  30px;
  color: #eee;
  text-align: center;
}
.hero-section p{
  font-family: "Rubik", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  letter-spacing: 0.02em;
  color: var(--white-color);
  margin: 0px auto 40px auto;
  max-width: 790px;
}

.hero-section .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin-left: 18px;
  color: var(--white-color);
  line-height: 1;
}

.hero-section .btn-watch-video i {
  color: #333;
  font-size: 30px;
  transition: 0.3s;
  margin-right: 8px;
  width: 2.6rem;
  height: 2.6rem;
  text-align: center;
  line-height: 2.6rem;
  border-radius: var(--border-radius-medium);
  background-color: var(--white-color);
  border: 1.40px solid var(--bordercolor);
}


@keyframes pulse {
   100%{
      transform: scale(2.2);
      opacity: 0;
   }
}


/*---------------------------------------
  section bg              
-----------------------------------------*/

.section-bg{
  background-color: var(--section-bg-color);
}

/*---------------------------------------
  FAQ'S SECTION              
-----------------------------------------*/
.accordia-section .accordion-list {
  padding: 0 0px 60px 0px;
}

.accordia-section .accordion-list ul {
  padding: 0;
  list-style: none;
}

.accordia-section .accordion-list li+li {
  margin-top: 15px;
}

.accordia-section .accordion-list li {
  padding: 20px;
  /* background-color: rgba(255, 255, 255, 0.08); */
  background-color: transparent;
  border: 1px solid var(--bordercolor);
  background-image: radial-gradient(at top center, #379CFF66 0%, var(--e-global-color-1bb4924 ) 85%);
  border-radius: 4px;
  border: 1px solid var(--bordercolor);
}

.accordia-section .accordion-list li:hover{
 --card-ozone-shadow: 0px 0px 10px 0px rgba(54.99999999999997, 156.00000000000023, 255, 0.9882352941176471);
 box-shadow: var(--card-ozone-shadow);
 transition: .3s ease;
}
.accordia-section .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
  color: var(--white-color);
}

.accordia-section .accordion-list span {
  color: var(--white-color);
  font-weight: 600;
  font-size: 20px;
  padding-right: 10px;
}

.accordia-section .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.accordia-section .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  color: #eee;
  font-size: 17px;

}
.accordia-section .accordion-list p a{
  color: var(--bordercolor);
  
}

.accordia-section .accordion-list .icon-show {
  display: none;
 
}

.accordia-section .accordion-list a.collapsed {
  color: var(--white-color);
}

.accordia-section .accordion-list a.collapsed:hover {
  color: var(--white-color);
}

.accordia-section .accordion-list a.collapsed .icon-show {
  display: inline-block;
 
  
}

.accordia-section .accordion-list a.collapsed .icon-close {
  display: none;
}

.accordian-left-image{
  background-image: url('../images/blockchain-circle.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 12px 0;
  text-align: center;
}

.clients img {
  max-width: 60%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
  mix-blend-mode: color-burn;
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}
.clients h6{
  color: #eee;
  font-size: 17px;
  font-weight: 500;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, ;
}
@media (max-width: 768px) {
  .clients img {
    max-width: 50%;
  }
    .about-section{
        overflow-y: hidden;
    }
    .features {
        overflow-y: hidden;
    }
    section {
        overflow-y: hidden;
    }
}

section{
    overflow-y: hidden;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-color: #111;
  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: transparent;
  box-shadow: var(--icon-shadow);
  border-radius: 100%;
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  color: var(--white-color);
  border: 1px solid var(--bordercolor);
}

.about-text-info {
  backdrop-filter: blur(2px) saturate(100%);
  -webkit-backdrop-filter: blur(2px) saturate(100%);
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  
 
}



.about-section h2 {
  font-family: "IBM Plex Serif", serif;
  font-style: normal;
  font-weight: bold;
  font-size: 48px;
  line-height: 65px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white-color);
  margin-bottom: 30px;
}

.about-section p {
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: var(--white-color);
}

ul.goals li {
  display: flex;
  align-items: center;
  justify-content: start;
  max-width: 310px;
  width: 100%;
  padding: 10px;
  background-image: radial-gradient(at top center, #379CFF66 0%, var(--e-global-color-1bb4924 ) 85%);
  border: 1px solid var(--bordercolor);
  box-shadow: var(--icon-shadow);
  margin-bottom:30px;
}

ul.goals li:last-child {
  margin: 0;
}

ul.goals li:nth-child(even) {
  margin-left: auto;
}

ul.goals li .icon {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  background-color: transparent;
  box-shadow: var(--icon-shadow);
  border: 1px solid var(--bordercolor);
  margin-right: 10px;
  border-radius: var(--border-radius-large);
}
ul.goals li .icon i{
  color: var(--white-color);
  font-size: var(--h3-font-size);

}

ul.goals li .text {
  width: calc(100% - 100px);
  padding: 20px 15px;
  font-size: 16px;
  color: var(--white-color);

}

@media (max-width: 768px){
  ul.goals{
    padding-left: 0;
  }
}



/*---------------------------------------
  lOGIN FORM AND REGISTER FORM           
-----------------------------------------*/

.form {
    --input-focus: var(--bordercolor);
    --font-color: #ffffff;
    --font-color-sub: #7e7e7e;
    --bg-color: #222;
    --main-color: #5ca3ebfc;
    padding: 25px;
    background: var(--bg-color);
    background-image: radial-gradient(at top center, #379CFF66 0%, var(--e-global-color-1bb4924 ) 50%);
    border-radius: 20px;
    border: 2px solid var(--main-color);
    box-shadow: 4px 4px var(--main-color);
    margin-top: 3rem;
}

.title {
  color: var(--font-color);
  font-weight: 900;
  font-size: 35px;
  margin-bottom: 25px;
  text-align: center;
}

.title span {
  color: var(--font-color-sub);
  font-weight: 600;
  font-size: 17px;
}

.input {
  height: 55px;
  border-radius: 8px;
  border: 2px solid var(--main-color);
  background-color: transparent!important;
  box-shadow: 4px 4px var(--main-color);
  font-size: 15px;
  font-weight: 600;
  color: var(--font-color);
  padding: 5px 10px;
  outline: none;
}

.input::placeholder {
  color: var(--font-color-sub);
  opacity: 0.8;
}

.input:focus {
  border: 2px solid var(--input-focus);
  box-shadow: 4px 4px var(--main-color);
  color: #eee;
}



.button-log:active, .button-confirm:active {
  box-shadow: 0px 0px var(--main-color);
  transform: translate(3px, 3px);
}

.button-confirm {
  margin: 50px auto 0 auto;
  width: 160px;
  height: 45px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  background-color: var(--bg-color);
  box-shadow: 4px 4px var(--main-color);
  font-size: 17px;
  font-weight: 600;
  color: var(--font-color);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form p {
  font-size: 18px;
}
.form p a{
  color: var(--bordercolor)!important;
}

/*---------------------------------------
  OZONE CARD SECTION              
-----------------------------------------*/
.card-icon{
   width: 4.4rem;
   height: 4.4rem;
   border-radius: var(--border-radius-large);
   background-color: transparent;
   text-align: center;
   display: flex;
   justify-content: center;
   align-items: center;
   border: 1.50px solid var(--bordercolor);
   box-shadow: var(--icon-shadow);
   color: var(--white-color);
   transition: .3s ease;
  
}
.card-icon span i{
  font-size: var(--h4-font-size);
}
.card-ozone{
   background-color: transparent;
   border: 1px solid var(--bordercolor);
   background-image: radial-gradient(at top center, #379CFF66 0%, var(--e-global-color-1bb4924 ) 85%);

}
.card-ozone:hover{
  --card-ozone-shadow: 0px 0px 10px 0px rgba(54.99999999999997, 156.00000000000023, 255, 0.9882352941176471);
  box-shadow: var(--card-ozone-shadow);
  transition: .3s ease;
}
.card-ozone:hover .card-icon{
  box-shadow: none;
  outline: 2px solid var(--bordercolor);
  outline-offset: 5px;
}
.card-ozone:hover .card-icon {
  transform: rotate(360deg);
  transition: .3s linear ;
}
.card-ozone h3{
  font-size: var(--h5-font-size);
  margin-top: 1rem;
}
.card-ozone h3, 
.card-ozone p{
  color: var(--white-color);
  text-align: center;
}
.card-ozone p{
  line-height:24px;
  color: #eee;
}




/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
 /* padding-bottom: 40px;*/
}

.features .nav-tabs {
  border: 0;
  background-color: transparent;
  border-radius: 0;
}
.features .tab-content {
  border: 0;
  background-color: transparent;
}

.features .nav-link {
  border: 0;
  padding: 20px;
  transition: 0.3s;
  color: #364146;
  transition: 0.3s ease-in-out;
  border-radius: 0;
  border-left: 4px solid #aaaaaa16;

}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  color: #ddd;
}

.features .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
  color: var(--white-color);
}

.features .nav-link:hover {
  background: rgba(255, 255, 255, 0.062);
  /* opacity: .4; */
}

.features .nav-link:hover h4{
  color: #fff;
}



.features .nav-link.active {
  border-radius: 0;
  border: 0;
  border-left: 4px solid var(--bordercolor);
  background-image: radial-gradient(at bottom center, #379CFF66 0%, var(--e-global-color-1bb4924 ) 85%);
  /* border: 1px solid var(--bordercolor); */
  background-color: transparent;
  box-shadow: var(--icon-shadow);

}

.features .nav-link.active h4 {
  color: #009cea;
}

.features .tab-pane.active {
  animation: slide-down 0.5s ease-out;
}

.features .tab-content {
  text-align: right;
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*---------------------------------------
  BEST SECTION              
-----------------------------------------*/

.best-section{
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
   background-image: url('../images/ormanents03.png');
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center center;
   width: 100%;
}

.best-section .image-center{
  z-index: 2;

}
.card-mini:hover .card-icon{
  box-shadow: none;
  outline: 2px solid var(--bordercolor);
  outline-offset: 5px;
 
}

 .card-mini:hover .card-icon span{
  -webkit-animation-name: wobble;
  animation-name: wobble;
  -webkit-animation-duration: 0.8s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -webkit-transform-origin: 50% 100%;
}
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  } 
}
.card-mini p,
.card-mini h4{
 color: var(--white-color);
}
.card-mini p{
  color: #eee;
  line-height: 18px;
  font-size: 17px;
  margin-top: .8rem;
  padding-left: 1rem;
}


/*---------------------------------------
  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 {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.artists-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
}

.artists-thumb:hover .artists-hover {
  transform: translateY(0);
  opacity: 1;
}

.artists-hover {
  background-color: var(--primary-color);
  background-color: rgba(248, 203, 46, 0.75);
  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-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;
}


/*---------------------------------------
  PRICING              
-----------------------------------------*/
.pricing-thumb {
  border: 5px dotted var(--dark-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  padding: 50px;
}

.pricing-thumb h3 small {
  display: inline-block;
  font-size: var(--p-font-size);
  margin-right: 15px;
}

.pricing-list {
  column-count: 2;
  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: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}

.pricing-tag span {
  font-size: 180%;
  line-height: normal;
}

.pricing-thumb .link-fx-1 {
  color: var(--primary-color);
}

.pricing-thumb .link-fx-1:hover {
  color: var(--link-hover-color);
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}
.contact-section{
  background-image: url('../images/pngegg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100%;
}
.contact-form-body .form-control{
  background-color: transparent;
  border-color: var(--bordercolor);
 
}
.contact-form-body .form-control::placeholder{
  color: var(--white-color);
}
.contact-form-body .form-control:focus{
  box-shadow: var(--icon-shadow);
}
/*---------------------------------------
  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: transparent;
  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 ease;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  --card-ozone-shadow: 0px 0px 10px 0px rgba(54.99999999999997, 156.00000000000023, 255, 0.9882352941176471);
    box-shadow: var(--card-ozone-shadow);
    border: 1px solid var(--bordercolor);
    transition: .2s ease;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  padding: 15px;
}

.site-footer-top {
  background-color: var(--bordercolor);
  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(--bordercolor); 
  position: relative;
}
.site-footer-title:before{
  content: '';
  position: absolute;
  top: 102%;
  left: 0;
  width: 20%;
  height: 2px;
  background-color: #29adf0;
}

.site-footer-link,
.copyright-text {
  color: #eee;
}
.site-footer-link:hover{
  color: #009cea;
}

.site-footer-links {
  padding-left: 0;
  display: flex;
  flex-direction: column;

}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}

.footer-bottom {
  padding-bottom: 5px;
  color: #aaa;

}

/*---------------------------------------
  NEWSLATTER             
-----------------------------------------*/

.site-footer .footer-newsletter {
  padding: 80px 0;
  background: #222;
  background-image: radial-gradient(at top center, #379CFF66 0%, var(--e-global-color-1bb4924 ) 50%);
  text-align: center;
  font-size: 15px;
}

.site-footer  .footer-newsletter h4 {
  font-size: var(--h3-font-size);
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: var(--white-color);
}
.site-footer  .footer-newsletter p{
  color: #aaa;
}
.site-footer  .footer-newsletter form {
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.11);
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.site-footer  .footer-newsletter form input[type=email] {
  border: none;
  padding: 7px 9px;
  width: calc(100% - 100px);
  background: none;
  color: var(--white-color);
}
.site-footer  .footer-newsletter form input[type=email]:focus{
  border: none;
  outline: none;
  background: transparent;

}
.site-footer  .footer-newsletter form input[type=email]:focus ~ form{
  --card-ozone-shadow: 0px 0px 6px 0px rgba(54.99999999999997, 156.00000000000023, 255, 0.9882352941176471);
  box-shadow: var(--card-ozone-shadow);
  transition: .3s ease;
}
input{
  caret-color: var(--bordercolor);
}
input::placeholder{
  color: #aaa;
}

.site-footer  .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: transparent;
  border: 1px solid var(--bordercolor);
  box-shadow: var(--box-shadow);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;

}

.site-footer  .footer-newsletter form input[type=submit]:hover {
  box-shadow: var(--icon-shadow);

}
/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: transparent;
  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;
  box-shadow: var(--icon-shadow);
}

.social-icon-link:hover {
  box-shadow: var(--box-shadow);
  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: 40px;
    padding-bottom: 100px;
  }
  
  .navbar {
    background-color: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr, 
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
  }
      .about-section h2 {
        font-size: 44px;
    }
    .nav-tabs-form{
        padding: 10px 3px;
    }

 
}


@media screen and (max-width: 568px) {
    .about-section h2 {
        font-size: 36px;
    }
}

    @media screen and (max-width: 767px) {
        .custom-btn {
            font-size: 14px;
            padding: 10px 20px;
        }

        .hero-section h1 {
            font-size: 44px;
        }

        .hero-section h5 {
            font-size: 28px;
        }
    }

    @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;
        }
    }

@media screen and (max-width: 320px) {
     .about-section h2{
         font-size: 35px;
     }
    .hero-section h1 {
        font-size: 30px;
        line-height: 45px;
    }
    .hero-section h5 {
        font-size: 18px;
    }

    .section-padding {
        padding-top: 40px;
        padding-bottom: 130px;
    }
}
    /* scroll indicator */
    .indicator-scroll {
        content: '';
        position: absolute;
        bottom: 0px;
        left: 0;
        width: 0%;
        height: 2.5px;
        background-color: var(--bordercolor);
        --card-ozone-shadow: 0px 0px 15px 0px rgba(54.99999999999997, 156.00000000000023, 255, 0.9882352941176471);
        box-shadow: var(--card-ozone-shadow);
    }

    /* scroll to top button */


    .progress-wrap {
        position: fixed;
        right: 30px;
        bottom: 50px;
        height: 46px;
        width: 46px;
        cursor: pointer;
        display: block;
        border-radius: 50px;
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear;
    }

        .progress-wrap::before {
            position: absolute;
            font-family: 'Font Awesome 5 Free';
            font-weight: bold;
            content: 'â†‘';
            text-align: center;
            line-height: 46px;
            font-size: 15px;
            opacity: 0;
            background-image: linear-gradient(298deg, var(--bordercolor), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            left: 0;
            top: 0;
            height: 46px;
            width: 46px;
            cursor: pointer;
            display: block;
            z-index: 2;
            -webkit-transition: all 200ms linear;
            transition: all 200ms linear;
        }

        .progress-wrap::after {
            position: absolute;
            font-family: 'Font Awesome 5 Free';
            font-weight: bold;
            content: 'â†‘';
            text-align: center;
            line-height: 46px;
            font-size: 15px;
            color: var(--white-color);
            left: 0;
            top: 0;
            height: 46px;
            width: 46px;
            cursor: pointer;
            display: block;
            z-index: 1;
            -webkit-transition: all 200ms linear;
            transition: all 200ms linear;
        }

        .progress-wrap:hover::after {
            color: var(--skyblue);
        }

        .progress-wrap:hover {
            --card-ozone-shadow: 0px 0px 15px 0px rgba(54.99999999999997, 156.00000000000023, 255, 0.9882352941176471);
            box-shadow: var(--card-ozone-shadow);
        }

        .progress-wrap.active-progress {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .progress-wrap:hover::after {
            opacity: 0;
        }

        .progress-wrap:hover::before {
            opacity: 1;
        }

        .progress-wrap svg path {
            fill: none;
        }

        .progress-wrap svg.progress-circle path {
            stroke: var(--bordercolor);
            box-shadow: var(--icon-shadow);
            stroke-width: 4;
            box-sizing: border-box;
            -webkit-transition: all 200ms linear;
            transition: all 200ms linear;
        }



    /*--------------------
LAYER SLIDE HOME SECTION
--------------------*/


    /*banner-shape*/
    .layar img {
        position: relative;
        z-index: 1;
        margin-top: -340px;
        margin-left: 150px;
    }

    .layar-1 img {
        position: relative;
        z-index: 1;
        margin-top: -370px;
        margin-left: 1050px;
    }

    @keyframes grow-and-shrink {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(.9);
        }

        100% {
            transform: scale(1);
        }
    }

    .slidd {
        animation: grow-and-shrink 4000ms;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
    }

    .layar-2 img {
        width: 100px;
        position: relative;
        z-index: 1;
        margin-top: -870px;
        margin-left: 800px;
    }

    @keyframes fancy-spin {
        0% {
            transform: rotate(0turn) scale(1);
        }

        25% {
            transform: rotate(1turn) scale(1);
        }

        50% {
            transform: rotate(1turn) scale(1.3);
        }

        75% {
            transform: rotate(0turn) scale(1.3);
        }

        100% {
            transform: rotate(0turn) scale(1);
        }
    }

    .spinnerr {
        animation: fancy-spin 5000ms;
        animation-iteration-count: infinite;
    }




    /* cursor  */

    .cursor {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: var(--width);
        height: var(--height);
        transform: translate(calc(var(--x) - var(--width) / 2), calc(var(--y) - var(--height) / 2));
        transition-duration: 0.1s;
        transition-timing-function: cubic-bezier(0.25, 0.25, 0.42, 1);
        transition-property: width, height, transform;
        z-index: 1000;
        pointer-events: none;
        will-change: transform;
    }

    @media (pointer: fine) {
        .cursor {
            display: block;
        }
    }

    .cursor::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        color:;
        border-radius: var(--radius);
        border: 1.30px solid var(--bordercolor);
        opacity: var(--scale);
        transform: scale(var(--scale));
        transition: 0.3s cubic-bezier(0.25, 0.25, 0.42, 1) opacity, 0.3s cubic-bezier(0.25, 0.25, 0.42, 1) transform, 0.1s cubic-bezier(0.25, 0.25, 0.42, 1) border-radius;
    }

    body:not(body:hover) .cursor::after {
        opacity: 0;
        transform: scale(0);
    }

    section {
        overflow-x: hidden;
    }