/* ---- Header ---- */
.header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: 9999;
  transition: .4s;
}
.header .container{
  padding: 0;
  max-width: 1650px;
}
.header .flex-row{
  background: rgba(7, 7, 18, 0.16);
  -webkit-backdrop-filter:blur(27px);
  backdrop-filter: blur(27px);
  padding: 15px;
  justify-content: space-between;
  align-items: center;
}
.header .flex-item{
  padding: 0;
}
.sticky-header .header{
  position: fixed;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter:blur(27px);
  backdrop-filter: blur(27px);
  border-bottom: 1.34px solid rgba(250, 40, 55, 0.30);
  padding-top:0;
}
.sticky-header .header .flex-row{
  background: unset;
  border:unset;
  backdrop-filter:unset;
}
.header .flex-row .logo-wrapper{
  display: flex;
  flex-direction: row;
  max-width: 250px;
  text-decoration: none;
  vertical-align: top;
  align-items: stretch;
  line-height: 0;
  position: relative;
  z-index: 2;
}
.header .flex-row .logo-wrapper span{
  position: relative;
  margin-left: 30px;
  font-size: 9px;
  font-style: normal;
  font-weight: 500;
  line-height: 127%; /* 15.24px */
  letter-spacing: -0.24px;
  font-family: 'termina';
  color:#fff;
  transition:.4s;
}
.header .flex-row .logo-wrapper span:before{
  display: block;
  content: '';
  background-image: url('../img/header-star.svg');
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -26px;
}
.header .flex-row .logo{
  height: 36px;
  position: relative;
  transition:.4s;
}
.header .main-menu{
  display:inline-block;
  list-style:none;
  margin:0;
  color:#fff;
}
.header .main-menu li{
  display:block;
  padding:10px 0;
  text-align:center;
}
.header .main-menu li a{
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 18px */
  letter-spacing: -0.12px;
  text-transform: uppercase;
  position:relative;
  text-decoration:none;
  font-family:'termina';
}
.header .main-menu li a:before{
  display:block;
  content:'';
  position:absolute;
  bottom:0;
  height:1px;
  background-color:#fff;
  width: 0;
  left:0;
  transition: .4s;
}
.header .main-menu li a:hover:before{
  width:100%;
}
.nav-icon{
  border: none;
  cursor: pointer;
  padding: 0;
  outline: none;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  margin-top: -5px;
}
.header .nav-icon{
  display: flex;
}
.nav-icon svg{
  width: 40px;
  height: 40px;
}
.nav-icon .line {
  fill: none;
  stroke: #fff;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
  stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-icon .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.nav-icon .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.nav-icon .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.nav-icon.is-tapped .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.nav-icon.is-tapped .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.nav-icon.is-tapped .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.header .flex-row .flex-item.header-menu-item{
  position: fixed;
  width: 100%;
  height: 100%;
  background: radial-gradient(81.2% 138.17% at -4.27% 133.01%, #FA2837 0%, rgba(250, 40, 55, 0.00) 100%), linear-gradient(0deg, #000 0%, #000 100%), var(--theme-background, #FFFDFC);
  left: 0;
  top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 40px;
  overflow-y: scroll;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  justify-content: center;
  transition: .4s;
}
.header .flex-row .flex-item.header-menu-item.show-menu{
  opacity: 1;
  z-index: 1;
  pointer-events: all;
}
@media(min-width:1024px){
  .header{
    padding: 15px 15px 0;
  }
  .header .flex-row{
    border-radius: var(--radius-large, 16px);
    border: 1.34px solid rgba(250, 40, 55, 0.30);
  }
  .header .flex-row .flex-item.header-menu-item{
    position: static;
    z-index: 0;
    pointer-events: all;
    overflow: unset;
    width: unset;
    height: unset;
    min-height: unset;
    display: block;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 1;
    background: unset;
  }
  .header .nav-icon{
    display: none;
  }
  .header .flex-row{
    padding: 15px;
  }
  .header .flex-row .logo-wrapper{
    max-width: 300px;
  }
  .header .flex-row .logo-wrapper span{
    font-size: 12px;
  }
  .header .flex-row .logo{
    height: 43px;
    transition:.4s;
  }
  .header .menu-main-menu-container,
  .header .buttons-grid{
    display:inline-block;
  }
  .header .main-menu li{
    display:inline-block;
    padding:10px 15px;
  }
}
/* --- Footer --- */
footer{
  background-color: var(--black);
  padding:30px 0 0;
  color:#fff;
  position: relative;
}
footer .container{
  position: relative;
  z-index: 2;
}
footer .info-row{
  align-items: flex-start;
  text-align: center;
}
footer .info-row.last-row{
  align-items: center;
}
footer .info-row.last-row p{
  font-size: 12px;
  line-height: 140%;
  letter-spacing: -0.36px;
  font-family: 'termina';
}
footer .info-row.last-row .terms-container p{
  color: rgba(255, 255, 255, 0.50);
}
footer .info-row.last-row .terms-container a{
  text-decoration: underline;
  color:#fff;
}
@media(min-width:850px){
  footer{
    padding:50px 0 20px;
  }
  footer .info-row.last-row p{
    font-size: 14px;
  }
  footer .info-row{
    text-align: left;
  }
  footer .info-row.last-row .terms-container{
    text-align: right;
  }
}
/* Default Page Settings */
.default_template{
  margin-top:110px;
}
