
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
/* font-family: 'Space Grotesk', sans-serif; */

@font-face {
    font-family: 'icomoon';
    src:  url('fonts/icomoon.eot?ghd1ie');
    src:  url('fonts/icomoon.eot?ghd1ie#iefix') format('embedded-opentype'),
      url('fonts/icomoon.ttf?ghd1ie') format('truetype'),
      url('fonts/icomoon.woff?ghd1ie') format('woff'),
      url('fonts/icomoon.svg?ghd1ie#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
  }
  
  [class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
  
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .icon-discord:before {
    content: "\e900";
  }
  .icon-logo:before {
    content: "\e901";
  }
  .icon-twitter:before {
    content: "\e902";
  }
  

body,html{
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: initial!important;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Space Grotesk', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    background-color: #060514;
}

/* b,
strong {
    font-weight: 700;
} */

p {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.72em;
    color: #ffffff;
    margin: 0 0 18px 0;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px 0;
    padding: 0;
    font-weight: 400;
    line-height: 1.09em;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    color: #00FF9E;

}

h1 {
    font-size: 75px;
    font-weight: bold;
}

h2 {
    font-size: 70px;
    margin: 0 0 32px;
    position: relative;
    font-weight: bold;
}

h3 {
    font-size: 55px;
    margin: 0 0 32px;
    position: relative;
    font-weight: bold;
}

h4 {
    font-size: 30px;
    line-height: 1.2em;
    font-weight: 500;
}

h5 {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.4em;
    color: #00FF9E;
    margin: 0 0 18px;
    text-transform: uppercase;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}

a {
    text-decoration: none !important;
    outline: none !important;
    color: #00FF9E;
    font-weight: bold;
}

a:hover {
    color: #C925B4;
}

img {
    max-width: 100%;
}

/* form */
label {
    font-weight: bold;
    font-size: 14px;
    line-height: 1em;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 10px;
}

.form-field {
    margin-bottom: 10px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
input[type="date"],
input[type="time"],
input[type="number"],
select,
textarea {
    background: #ffffff;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    color: #818181;
    border: 1px solid #E7E7E7;
    height: 45px;
    padding: 0 22px;
    font-weight: 500;
    font-size: 12px;
    outline: none !important;
    transition: all .4s ease-in-out;
}

textarea {
    padding: 12px 22px;
    height: 94px;
    resize: none;
    border-radius: 16px;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

select,
input[type="text"].date-field,
input[type="text"].time-field {
    background: url(images/arrow_bottom.svg) no-repeat calc(100% - 24px) center #EEEEEE;
    background-size: 11px;
    padding-right: 42px;
    color: #232121;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

input[type="text"].date-field {
    color: #818181;
    font-weight: 500;
    background: url(images/calender.svg) no-repeat calc(100% - 18px) center #EEEEEE;
    background-size: 18px;
}

input[type="text"].time-field {
    background: url(images/clock.svg) no-repeat calc(100% - 14px) center #EEEEEE;
    background-size: 20px;
}

input[type="text"].time-field::placeholder {
    color: #232121;
}

select::-ms-expand {
    display: none;
}

input[type="submit"] {
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
}

input[type="submit"]:hover {

}

input[type="file"] {
    display: none;
}

input[type="file"] ~ label {
    width: 100%;
    height: 45px;
    display: block;
    position: relative;
    padding: 0 45px 0 22px;
    background: #F4F4F4;
    border: 1px solid #EAEAEA;
    border-radius: 50px;
    font-weight: bold;
    font-size: 12px;
    color: #4D5151;
    margin: 0;
    line-height: 45px;
    cursor: pointer;
}

input[type="file"] ~ label::after {
    content: "\e92f";
    font-family: 'icomoon';
    color: #1877E6;
    font-size: 14px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translate(0,-50%);
}

 ::-webkit-input-placeholder {
    color: #818181;
}

 :-ms-input-placeholder {
    color: #818181;
}

 ::-moz-placeholder {
    color: #818181;
}

 :-moz-placeholder {
    color: #818181;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    border-color: #000000;
}

@media (min-width: 1200px){
    .container {
        width: 100%;
        max-width: 1160px;
    }
}

.section-padding {
    padding-top: 114px;
    padding-bottom: 114px;
}

/* button */
.page-btn {
    display: inline-block;
    font-weight: 400;
    font-size: 15px;
    line-height: 1em;
    color: #FFFFFF;
    text-align: center;
    border-radius: 54px;
    min-width: 250px;
    position: relative;
    padding: 24px 20px;
    transition: all .4s ease-in-out;
}

.page-btn:hover {
    color: #ffffff;
}

.page-btn span {
    position: relative;
    z-index: 99;
}

.page-btn-primary {
    background: linear-gradient(to right, #C925B4, #343DD3, #00FF9E);
}

.page-btn-primary::before {
    content: "";
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    position: absolute;
    top: 2px;
    left: 2px;
    border-radius: 54px;
    background: #060514;
    transition: all .4s ease-in-out;
}

.page-btn-primary:hover::before {
    transform: scale(0);
} 


/* images alignment for wordpress content pages */
.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    float: none;
    clear: both;
}



/* custom checkbox */

.form_input_check label {
    position: relative;
    margin: 0;
    padding-left: 36px;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
}

.form_input_check label span {
    margin: 0;
    padding: 0;
}

.form_input_check label input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 24px;
    height: 24px;
    background: transparent;
    border: 1px solid #AFAFAF;
    box-sizing: border-box;
    border-radius: 5px;
}

.form_input_check label input[type="checkbox"]+span::after {
    content: '\e909';
    font-family: 'icomoon';
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 10px;
    color: #AFAFAF;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 24px;
    height: 100%;
    text-align: center;
    line-height: 24px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.form_input_check label input[type="checkbox"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* custom radio */

.form_input_radio label {
    position: relative;
    margin: 0;
    padding-left: 30px;
    display: inline-block;
}

.form_input_radio label span {
    margin: 0;
    padding: 0;
}

.form_input_radio label input[type="radio"] {
    visibility: hidden;
    display: none;
}

.form_input_radio label input[type="radio"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border: 2px solid #000000;
    border-radius: 100%;
    background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #4b0049;
    position: absolute;
    top: 6px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* custom radio end */

/* back to top */

#scroll {
    
}




/* navbar*/

.page-header {
    width: 100%;
    position: absolute;
    z-index: 999999;
    top: 0;
    left: 0;
    background: transparent;
    padding: 15px 0;
    transition: all .4s ease-in-out;
}

.page-header.affix {
    position: fixed;
    padding: 10px 0;
    background: #060514;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    color: #ffffff;
    display: inline-block;
    transition: all .4s ease-in-out;
}

.logo {
    font-size: 89px;
    transition: all .4s ease-in-out;
}

.page-header.affix .logo {
    font-size: 60px;
}

.navbar {
    background: none;
    margin: 0;
    padding: 0;
    min-height: inherit;
    height: inherit;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.navbar-nav li {
    position: relative;
    list-style: none;
    line-height: 1.2em;
}

.navbar-nav>li {
    margin: 0 30px 0 0;
    padding: 0 0 0 0;
    position: relative;
    cursor: pointer;
}

.navbar-nav>li:last-child {
    margin-right: 0;
}

.navbar-nav>li>a {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.17em;
    color: #FFFFFF;
    letter-spacing: 0.055em;
    position: relative;
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: capitalize;
    transition: all .4s ease-in-out;
}

.navbar-nav>li>a:after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #00FF9E;
    /* opacity: 0; */
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
    color: #00FF9E;
}

.navbar-nav>li.current-menu-item>a:after,
.navbar-nav>li>a:hover:after,
.navbar-nav>li.menu-item-has-children:hover>a:after {
    width: 100%;
}

/* navbar submenu*/

.sub-menu {
    background: #ffffff;
    position: absolute;
    top: 100%;
    left: -38px;
    z-index: 1000;
    display: none;
    border: none;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    width: 150px;
    padding: 0;
}

.sub-menu>li>a {
    color: #808080;
    display: block;
    width: 100%;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2em;
    transition: all .4s ease-in-out;
}

.sub-menu>li {
    width: 100%;
    display: block;
}

.sub-menu>li:first-child a {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.sub-menu>li:last-child a {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
    background: #3d77e6;
    color: #fff;
}



.navbar-nav>li:last-child>.sub-menu {
    right: 0;
    left: inherit;
    padding: 0;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
}


/* for push-menu */
.navbar-collapse .navbar-toggler{
    display: none;
}
#navoverlay{
    display: block;
    pointer-events: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    margin: 0;
    padding: 0 !important;
    z-index: 99;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
}

.header-social-media {
    display: flex;
    flex-wrap: wrap;
    margin-left: 34px;
}

.header-social-media a {
    width: 54px;
    height: 54px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
    background: url(images/social-circle.png) center center no-repeat transparent;
    background-size: 100% 100%;
    position: relative;
}

.header-social-media a + a {
    margin-left: 32px;
}

.header-social-media a span {
    position: relative;
    z-index: 99;
}

.header-social-media a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(137.52deg, #00FF9E -19.16%, #8A18FF 95.19%);
    border-radius: 50%;
    transform: scale(0);
    transition: all .4s ease-in-out;
}

.header-social-media a:hover::before {
    transform: scale(1);
}


/* desktop */
.masthead {
    position: relative;
    background: url(images/banner.png) center bottom no-repeat transparent;
    background-size: cover;
    padding: 142px 0 78px;
}

.masthead .container {
    position: relative;
    z-index: 99;
}

.masthead-top-curve {
    position: absolute;
    top: 0;
    right: 0;
}

.masthead-top-left-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 65.5%;
    height: 100%;
}

.masthead-top-left-curve img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.human-character {
    margin-left: -40px;
    width: calc(100% + 124px);
}

.human-character img {
    width: 100%;
}

.banner-content {
    width: 100%;
    max-width: 514px;
    margin: 0 0 0 auto;
    padding: 28px 0 0px;
}

.banner-content p {
    width: 100%;
    max-width: 390px;
}

/* about */
.about {
    padding: 66px 0 570px;
    background: url(images/about-rectangle.png) center center no-repeat;
    background-size: 100% 100%;
    background-position: center bottom;
    position: relative;
}

.about::before {
    content: "";
    position: absolute;
    top: 242px;
    left: 50%;
    transform: translate(-50% , 0);
    width: 401px;
    height: 401px;
    background: url(images/ellipse-circle400.png) center center no-repeat transparent;
    background-size: 100% 100%;

}

.about .container {
    position: relative;
    z-index: 99;
}

.about-content-two-column {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
    column-gap: 30px;
}

.about-cta__content {
    padding-top: 42px;
}

.about-cta__content h4 {
    font-weight: 300;
}

.about-cta__content .page-btn {
    margin-top: 12px;
}
/* about */

/* team */
.team {
    position: relative;
    margin-top: -460px;
}

.team .container {
    position: relative;
}

.team::before {
    content: "";
    position: absolute;
    top: 528px;
    left: 50%;
    transform: translate(-50% , 0);
    width: 446px;
    height: 446px;
    background: url(images/ellipse-circle446.png) center center no-repeat transparent;
    background-size: 100% 100%;
}

.team .row {
    margin: 0 -60px;
}

.team [class*="col-"] {
    padding: 0 60px;
    margin-bottom: 100px;
}

.team-header-section {
    padding-top: 136px;
    width: 100%;
    max-width: 458px;
}

.team-image {
    text-align: center;
    margin-bottom: 32px;
}

.team-image img {
    display: inline-block;
}

.team-description p {
    font-size: 15px;
    color: #ACA9A9;
}

.team-description h3 {
    letter-spacing: 0.015em;
    margin-bottom: 15px;
}
/* team */

/* roadmap */

.roadmap-lists {
    position: relative;
    width: 100%;
    max-width: 1110px;
    margin: 48px auto 0;
    padding: 24px 0 0;
}

.roadmap-lists::before {
    content: "";
    width: 3px;
    height: calc(100% - 100px);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    background-image: repeating-linear-gradient(-4deg, #ffffff, #ffffff 9px, transparent 9px, transparent 21px, #ffffff 21px), repeating-linear-gradient(86deg, #ffffff, #ffffff 9px, transparent 9px, transparent 21px, #ffffff 21px), repeating-linear-gradient(176deg, #ffffff, #ffffff 9px, transparent 9px, transparent 21px, #ffffff 21px), repeating-linear-gradient(266deg, #ffffff, #ffffff 9px, transparent 9px, transparent 21px, #ffffff 21px);
    background-size: 4px 100%, 100% 4px, 4px 100% , 100% 4px;
    background-position: 0 0, 0 0, 100% 0, 0 100%;
    background-repeat: no-repeat;
}

.roadmap-lists__list {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 20px;
    position: relative;
    z-index: 99;
}

.roadmap-lists__list:last-child {
    padding-bottom: 0;
}

.roadmap-lists__list--count {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    color: #FFFFFF;
    padding: 4px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.roadmap-lists__list:nth-child(odd) .roadmap-lists__list--count {
    background: #1CAC75;
    border: 2px solid #00FF9E;
    box-shadow: 0px 4px 93px 9px rgba(0, 255, 158, 0.3);
}

.roadmap-lists__list:nth-child(even) .roadmap-lists__list--count {
    background: #3944EB;
    border: 2px solid #0162DD;
    box-shadow: 0px 4px 87px 9px rgba(41, 48, 174, 0.5);
}

.roadmap-lists__list--content {
    width: calc(100% - 84px);
    padding: 0 0 0 38px;
}

.roadmap-lists__list--content h4 {
    font-weight: 400;
}

.roadmap-lists__list--content p {
    font-size: 15px;
    color: #E3E1E1;
}

.roadmap-lists__list:nth-child(odd) {
    width: 53.7%;
    margin: 0 0 0 auto;
}

.roadmap-lists__list:nth-child(even) {
    width: 53.7%;
}

.roadmap-lists__list:nth-child(even) {
    flex-direction: row-reverse;
}

.roadmap-lists__list:nth-child(even) .roadmap-lists__list--content {
    padding: 0 38px 0 0;
    text-align: right;
}
/* roadmap */

/* faq */
.faq {
    padding: 132px 0 48px;
    position: relative;
}

.faq .container {
    position: relative;
}

.faq::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 289px;
    height: 289px;
    background: url(images/ellipse-circle290.png) center center no-repeat transparent;
    background-size: 100% 100%;
}

.accordion-header {
    padding: 0;
    margin: 0;
}

.accordion {
    padding-top: 68px;
}

.accordion-item {
    margin-bottom: 32px;
    border: none;
    background: transparent;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-button {
    padding: 26px 20px 26px 32px;
    height: auto;
    min-height: auto;
    line-height: 1em;
    color: #ffffff;
    border: 2px solid #13111B;
    box-sizing: border-box;
    border-radius: 54px!important;
    font-weight: normal;
    font-size: 20px;
    letter-spacing: 0.02em;
    background-color: #13111B;
    position: relative;
}

.accordion-button span {
    position: relative;
    z-index: 99;
    color: #ffffff;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(to right, #8A18FF, #3944EB, #00FF9E);
    box-shadow: inherit;
    color: #ffffff;
    outline: inherit;
    border-color: #13111B;
    border-radius: 54px;
}

.accordion-button::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background: #060514;
    border-radius: 54px;
}

.accordion-button:not(.collapsed)::before {
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
}

.accordion-button:focus {
    box-shadow: inherit;
    outline: inherit;
    border-color: #13111B;
}

.accordion-item:first-of-type .accordion-button,
.accordion-item:first-of-type {
    border-top-left-radius: 54px;
    border-top-right-radius: 54px;
}

.accordion-button::after {
    background-image: url("images/plus.svg");
    width: 25px;
    height: 24px;
    background-position: center center;
    background-size: 100% 100%;
    position: relative;
}


.accordion-button:not(.collapsed)::after {
    transform: rotate(0);
    background-image: url("images/minus.svg");
    width: 25px;
    height: 24px;
    background-position: center center;
    background-size: contain;
}

.accordion-body {
    padding: 24px 34px 0;
    text-align: left;
    background: transparent;
}

.accordion-body p {
    font-weight: 400;
    font-size: 15px;
    color: #BCBBBB;
}

.faq-lists {
    width: 100%;
    max-width: 978px;
    margin: 0 auto;
}
/* faq */

/* cta */
.cta {
    padding: 50px 0 68px;
}

.cta-content {
    width: 100%;
    max-width: 600px;
}

.cta-content p {
    font-size: 25px;
}

.cta-content .page-btn {
    margin-top: 20px;
}
/* cta */

/* footer */
.copyright-content {
    border-top: 1px solid #242424;
    padding: 26px 0 38px;
    text-align: center;
}

.copyright-content p {
    font-size: 15px;
}
/* footer */

/* desktop */


@media(min-width:1025px) {
    /* navbar*/
    .navbar-nav .clickD {
        display: none;
    }
    .navbar-nav li.menu-item-has-children:hover>.sub-menu {
        display: block;
    }
}

@media (max-width: 1440px) {
    .masthead-top-curve {
        width: 10.3%;
    }
}

@media (max-width: 1199px) {
    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 42px;
    }

    h3 {
        font-size: 36px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 16px;
    }

    p {
        font-size: 16px;
    }

    .banner-content {
        max-width: 340px;
    }

    .cta-content p {
        font-size: 20px;
    }

    .roadmap-lists__list:nth-child(odd),
    .roadmap-lists__list:nth-child(even) {
        width: 54.5%;
    }

    .faq {
        padding: 78px 0 32px;
    }

    .cta {
        padding: 32px 0 40px;
    }

    .copyright-content {
        padding: 18px 0;
    }

    .accordion {
        padding-top: 38px;
    }

    .team [class*="col-"] {
        margin-bottom: 60px;
    }

    .about {
        padding: 40px 0 570px;
    }

    .masthead {
        padding: 122px 0 40px;
    }
}

@media (max-width: 991px) {
    /* navbar*/
    .navbar-toggler {
        position: relative;
        width: 33px;
        margin-left: auto;
        height: 28px;
        padding: 0;
        outline: none !important;
        border: none !important;
        box-shadow: none !important;
    }
    .stick,
    .stick:after,
    .stick:before {
        width: 30px;
        height: 2px;
        background: #ffffff;
        position: absolute;
        left: 0;
        top: auto;
        transition: all 0.6s;
        border-radius: 5px;
    }

    .stick:before {
        content: '';
        top: -10px;
        left: 0;
    }
    .stick:after {
        content: '';
        top: 10px;
        left: 0;
    }
    .stick.open {
        transform: translateX(-50px);
        background: transparent;
    }
    .stick.open:before {
        transform: rotate(45deg) translate(42px, -28px);
        left: 2px;
    }
    .stick.open:after {
        transform: rotate(-45deg) translate(42px, 28px);
        left: 2px;
    }

    .navbar-nav .clickD {
        top: 8px;
        right: 10px !important;
        -webkit-transform: rotate(0) !important;
        transform: rotate(0) !important;
    }
    .navbar-nav .clickD.toggled{
        -webkit-transform: rotate(180deg) !important;
        transform: rotate(180deg) !important;
    }
    .sub-menu,
    .navbar-nav>li>.sub-menu .sub-menu {
        position: relative;
        width: 100%;
        left: inherit;
        top: inherit;
        border: none;
        right: inherit;
        background: #282828;
        border-radius: unset;
    }
    .navbar-nav>li.menu-item-has-children {
        padding-right: 0;
    }
    .navbar-nav>li {
        margin: 0;
        padding: 0;
    }
    .navbar-nav li.menu-item-has-children > a{
        padding-right: 30px !important;
    }
    .navbar-nav>li>a {
        padding: 10px 20px;
        display: inline-block;
        width: 100%;
        font-size: 16px;
    }

    .sub-menu>li>a {
        padding-left: 16px;
        color: #ffffff;
    }
    .sub-menu .sub-menu>li>a {
        padding-left: 60px;
    }
    .sub-menu .sub-menu .sub-menu>li>a {
        padding-left: 80px;
    }
    
    .navbar-nav>li>a:after{
        bottom: 0;
    }
    /* navbar end*/

    /* push nav */

    .navbar-collapse{
        background: url(images/banner.png) center top no-repeat #060514;
        position: fixed;
        top: 0;
        height: 100% !important; 
        width: 290px;
        overflow-y: auto;
        transition: inherit !important;
        right: 0;
        margin: 0;
        display: block !important;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
        z-index: 100;
    }
    .navbar-collapse.show,
    .navbar-collapse.collapsing{
        display: block !important;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
    }
    .navbar-collapse .navbar-nav{
        margin: 62px 0 0 !important;
        padding: 0 0 40px 0;
    }
    .navbar-collapse .navbar-toggler{
        display: block;
        right: 20px;
        top: 20px;
        position: absolute;
    }
    #navoverlay.open{

    background-color: rgba(0,0,0,0.65);
    pointer-events: all;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
    }
    /* body.open-nav,
    html.open-nav{
        height: 100%;
        overflow: hidden !important;
    } */

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 14px;
    }

    .team-header-section {
        padding-top: 56px;
    }

    .roadmap-lists__list:nth-child(odd), 
    .roadmap-lists__list:nth-child(even) {
        width: 55.8%;
    }

    .banner-content {
        max-width: 264px;
    }

    .accordion-button {
        font-size: 16px;
    }

    .cta-content {
        padding-top: 18px;
        max-width: unset;
    }

    .cta-content .page-btn {
        margin-top: 4px;
    }

    .cta-content p {
        font-size: 18px;
    }

    .cta {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .masthead-top-left-curve {
        width: 82.5%;
    }

    .masthead-top-left-curve img {
        object-position: right;
    }

    .logo {
        font-size: 58px;
    }

    .page-header.affix .logo {
        font-size: 42px;
    }

    .header-social-media a {
        width: 46px;
        height: 46px;
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    h1 {
    }

    h2 {
    }

    p {
    }

    .masthead-top-left-curve {
        width: 100%;
        position: unset;
    }

    .human-character {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .banner-content {
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
        padding: 10px 0 0;
    }

    .about-content-two-column {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
        column-gap: 0;
    }

    .about {
        padding: 30px 0 492px;
        text-align: center;
    }

    .team-header-section {
        padding-top: 26px;
        max-width: unset;
        text-align: center;
    }

    .team-image {
        margin-bottom: 22px;
    }

    .team-description {
        text-align: center;
    }

    .logo {
        font-size: 42px;
    }

    .page-header.affix .logo {
        font-size: 36px;
    }

    .header-social-media a {
        width: 40px;
        height: 40px;
    }

    .header-social-media a + a {
        margin-left: 10px;
    }

    .header-social-media {
        margin-left: 12px;
    }

    .accordion-button {
        padding: 22px 20px 22px 26px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .copyright-content p {
        font-size: 14px;
    }

    .copyright-content {
        padding: 10px 0;
    }

    .faq {
        padding: 35px 0 22px;
    }

    .cta {
        padding: 22px 0 28px;
    }

    .roadmap-lists::before {
        left: 31px;
        height: 100%;
    }

    .roadmap-lists__list:nth-child(odd), 
    .roadmap-lists__list:nth-child(even) {
        width: 100%;
    }

    .roadmap-lists__list:nth-child(even) {
        flex-direction: inherit;
    }

    .roadmap-lists__list--content {
        width: calc(100% - 62px);
        padding: 15px 0 0 24px;
    }

    .roadmap-lists__list:nth-child(even) .roadmap-lists__list--content {
        padding: 15px 0 0 24px;
        text-align: left;
    }

    .roadmap-lists__list--count {
        width: 62px;
        font-size: 20px;
        height: 62px;
    }

    .about-cta__content {
        padding-top: 24px;
    }

    .page-btn {
        padding: 20px 10px;
        font-size: 14px;
    }

}

@media (max-width: 575px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .masthead {
        padding: 90px 0 25px;
    }
}

@media (max-width: 479px) {
  
}
