/* style * vers 4.5 1920px - xxl 1470px - xl 1380px - m 1200px - s 1000px - xs 800px - ms 600px - min */


/* styles */


:root{
    --green:#24ead9;
    --red:#e9307b;
    --blue:#5364f7;
    --black:#080627;
    --gray:#2d2d4d;
    --white:#fff;
    --border:#b5b5e936;
    --body:#07072D;
}


body{
    background: var(--body) !important;
}

body.fix{
    overflow:hidden;
}


html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,
address,big,cite,code,del,dfn,em,font,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,
dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td {
    color: #ffffff;
    /* font-size: 14px; */
    box-sizing: border-box;
}


/* header */
.top-header{
    position: fixed;
    z-index: 1000;
    width: 100%;
    transition:0.5s;
    margin: 10px 0;
}
.top-header.fix{
    position:fixed;
    background: linear-gradient(180deg, var(--body) 50%, rgba(0, 0, 0, 0) 100%);
    margin: 0;
    top: 0;
    padding: 5px 0;
    box-shadow: 0 15px 30px rgb(0 0 0 / 6%);
}
.top-header.fix .header-sp{
    height:0px;
}
@media(max-width:1380px){
    .top-header.fix{
        padding:10px 0;
   }
}

/* header left*/
.top-header .header-left{
    display: flex;
    position: relative;
}



/*menu-wrap*/
.menu-wrap{}
.menu-wrap ul{
    display: flex;
}
.menu-wrap ul li{
}
.menu-wrap ul li a{
    margin: 0 9px;
    font-size: 14px;
    position: relative;
    padding: 6px 7px;
    text-align: center;
}
.menu-wrap ul li a:before{
   content:'';
   position: absolute;
   height: 100%;
   border: 2px solid var(--green);
   top: 0;
   left: -13%;
   border-radius: 30px;
   width: 120%;
   width: 30%;
   opacity: 0;
   transition: 0.5s;
   box-sizing: border-box;
}
.menu-wrap ul li a:hover:before{
    opacity: 1;
    width: 120%;
}
.menu-wrap ul li a:hover{}
.menu-wrap ul li a.active:before{
   width:100%;
   opacity:1;
}


/*right-menu*/

.right-menu{
    position: fixed;
    top: 0;
    right: -110%;
    width: 45%;
    height: 100%;
    z-index: 9999;
    transition: 0.5s cubic-bezier(0.39, 0.01, 0.33, 0.99);
    background: linear-gradient(45deg, var(--black), #0b0b4a);
    border-radius: 25px 0 0 25px;
}
.right-menu .menu-btn{
    z-index: 1;
    right: 50px;
    top: 50px;
    position: absolute;
}

.right-menu.active{
    right: 0%;
}

.right-menu ul{
    max-width: 220px;
    display: block;
}
.right-menu li{}
.right-menu li a{
    margin-bottom: 10px !important;
    line-height: 33px;
    text-align: center;
    border: 2px solid var(--green);
    border-radius: 45px;
    font-size: 17px !important;
}
.right-menu li a:hover{
   /* border-color: #ffffff8c; */
   background: #fff0;
}
.right-menu ul li a:before{
   left: 0;
   right: 0;
   width: 100%;
}
.right-menu ul li a:hover:before{
   display: none;
}

@media(max-width: 600px){
   .right-menu{
      width: 100%;
      top: 0;
   }
   .right-menu li a{
      height: 40px;
      line-height: 26px;
      font-size: 15px !important;
   }
   .right-menu .menu-btn{
      right: 30px;
      top: 30px;
   }
}





/* head logo*/
.head-logo{
    position: relative;
    z-index: 1006;
}
.logo{
    display: block;
    position: relative;
    padding-left: 60px;
    box-sizing: border-box;
    height: 90px;
    width: 90px;
    border: 1px solid #fff0;
}
.fix .logo{
   height:50px
}
.logo img{
    height: 80px;
    width: auto;
    position: absolute;
    left: 0;
    top: 3px;
    transition: 0.5s ease;
}

@media(max-width:1380px){
    .logo{
        padding-left: 55px;
   }
    .head-logo svg{
       height: 100%;
   }
}

@media(max-width:800px){
   .logo{
      height: 60px;
      width: 60px;
   }
}

.top-header .header-right{
    z-index: 1001;
}


/*page-menu*/
.page-menu{
    display: flex;
    align-items: center;
}
.page-menu ul{
    display: flex;
    list-style: none;
}
.page-menu ul li{
   padding: 10px 00;
}
.page-menu ul li a{
    position: relative;
    margin: 0 15px;
    font-weight: 500;
    font-size: 15px;
}
.page-menu ul li a:before{
    content:"";
    position: absolute;
    height: 2px;
    width: 0;
    background: var(--blue);
    bottom: -3px;
    transition: 0.5s;
}
.page-menu ul li a:hover:before{
    width:100% 
}
.page-menu ul .menu-item-has-children a{
    padding-right: 15px;
}
.page-menu ul .menu-item-has-children a:after{
    content:"";
    height:6px;
    width:6px;
    border: 1px solid #ffffff;
    position:absolute;
    right: 0;
    top: 6px;
    transform:rotate(45deg);
    border-top:none;
    border-left:none;
}
.page-menu ul .menu-item-has-children .sub-menu a:after{
    display: none;
}
.page-menu .sub-menu{
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    min-width: 400px;
    box-sizing: border-box;
    background: #1b1c23;
    top: 60px;
    height:fit-content;
    max-height: 0px;
    overflow: hidden;
    opacity:0;
    z-index: -10;
    padding: 0 30px;
    border-top: 1px solid #14151a;
}
.page-menu .menu-item-has-children:hover .sub-menu{
    opacity: 1;
    max-height: 50vh;
   padding: 30px;
}
.page-menu .sub-menu li{
    position: relative;
    padding: 0;
    box-sizing: border-box;
}
.page-menu .sub-menu li a{
    display: block;
    padding: 15px 20px;
    margin: 0;
    text-decoration: auto;
    text-transform: inherit;
}
.page-menu .sub-menu li a:hover{
    background: #14151a;
    border-radius: 5px;
}
.page-menu .sub-menu li a:before{
    display:none;
}





/* footer */
footer{
    position:relative;
}


h1,h2,h3,h4,h5,h6{font-weight: 500 !important;}
h1{
    font-size: 50px;
    line-height: 110%;
    margin-bottom: 25px;
    font-weight: normal;
}
h2{
   font-size: 40px;
   margin-bottom: 20px;
   font-weight: normal;
}
h3{
   font-size: 35px;
   margin-bottom: 20px;
   font-weight: 400;
}
h4{
   font-size: 30px;
   margin-bottom: 15px;
   font-weight: 500;
}
h5{
   font-size: 25px;
   margin-bottom: 15px;
   font-weight: 400;
}
h6{
   font-size: 18px;
   margin-bottom: 15px;
   font-weight: 400;
}



.head{
   font-weight: 600;
}


.t-an{
	position:relative;
}
.t-an span{
    overflow: hidden;
    display: block;
    padding-top: 0;
}
.t-an span span{
	position: relative;
	top: 100px;
	transition: 1s ease;
}
.t-an.animated span span{
	top:0;
}
.t-an.animated span:nth-child(1) span{
	transition-delay:0.2s;
}
.t-an.animated span:nth-child(2) span{
	transition-delay:0.4s;
}
.t-an.animated span:nth-child(3) span{
	transition-delay:0.6s;
}
.t-an.animated span:nth-child(4) span{
	transition-delay:0.8s;
}
.t-an.animated span:nth-child(5) span{
	transition-delay:1s;
}

p{
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 130%;
}
p span{
   /* color: var(--green); */
}
@media(max-width:1600px){
    .head-big{
       font-size: 42px;
   }
    h1{}
    h2{}
    h3{}
    h4{}
    h5{}
    h6{}
}
@media(max-width:1380px){
    .head-big{
       font-size: 42px;
   }
    h1{
       font-size: 45px;
       margin-bottom: 17px;
   }
    h2{
       font-size: 35px;
        margin-bottom: 17px;
   }
    h3{
       font-size: 28px;
        margin-bottom: 20px;
   }
    h4{
       font-size: 25px;
       margin-bottom: 20px;
   }
    h5{
       font-size: 23px;
   }
    h6{
       font-size: 18px;
        margin-bottom: 15px;
   }
}
@media(max-width:1200px){}
@media(max-width:1000px){}
@media(max-width:800px){
}


.micra{
    font-family: "Micra";
}

.pointer{
    cursor:pointer;
}
.t-upper{
    text-transform:uppercase;
}
.smail{
   font-size: 13px;
}
.micro{
   font-size: 11px;
}
.hover-info{
    position:absolute;
    background:#fff;
    padding: 6px 10px;
    border-radius: 3px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    color: #2b2b2b;
    font-weight: 500 !important;
    left: 50%;
    bottom: 50px;
    transform: translate(-50%);
    opacity: 0;
    visibility: hidden;
    line-height: initial;
    font-size: 13px;
}
*:hover> .hover-info{
    opacity: 1;
    visibility: visible;
    bottom: 100%;
}
.t-red{
   color:var(--red)
}
.t-green{
   color:var(--green)
}
.t-gray{
   color: #B5B5E9;
}
.t-gray-1{
   color:#898db0
}
.t-blue{
   color:var(--blue)
}
.t-op{
    opacity: 0.7;
}

.t-red.neon{
    text-shadow: 0px 0px 10px #ce2167;
 }
 .t-green.neon{
    text-shadow: 0px 0px 16px #0cbcad7d;
 }


 .an-neon{
    box-shadow: 0px 0px 20px #0cbcad80;
    animation:neon_green 2s linear infinite;
 }
 .an-neon.red{
    box-shadow: 0px 0px 20px #cf3d78b8;
    animation:neon_red 2s linear infinite;
 }

 .an-neon-t{
    text-shadow: 0px 0px 20px #0cbcad80;
    animation:neon_green_t 2s linear infinite;
 }
 .an-neon-t.t-red{
    text-shadow: 0px 0px 20px #cf3d78b8;
    animation:neon_red_t 2s linear infinite;
 }

.hover-neon:hover{
   box-shadow: 0px 0px 20px #0cbcad80;
   animation:neon_green 2s linear infinite;
}
.hover-neon.red:hover{
   box-shadow: 0px 0px 20px #cf3d78b8;
   animation:neon_red 2s linear infinite;
}


.t-anim {
	overflow: hidden;
	display: inline-block;
	position: relative;
}
.t-anim > span{
	display: inline-block;
	position: relative;
	transform: translate(0, 100%);
	transition: 0.6s cubic-bezier(0.51, 0, 0.29, 1.01);
}
.t-anim.animated span{
	transform: translate(0, 0%);
}


@keyframes neon_red {
    0%{box-shadow: 0px 0px 25px #cf3d78b8}  
    10%{box-shadow: 0px 0px 25px #cf3d78b8}  
    20%{box-shadow: 0px 3px 25px #cf3d78b8}  
    30%{box-shadow: 1px 0px 23px #cf3d78b8}  
    40%{box-shadow: 0px 1px 25px #cf3d78b8}  
    50%{box-shadow: -2px 0px 25px #cf3d78b8}  
    60%{box-shadow: 0px 3px 23px #cf3d78b8}  
    80%{box-shadow: 0px 0px 25px #cf3d78b8}  
}
@keyframes neon_green {
    0%{box-shadow: 0px 0px 25px #0cbcad7d}  
    10%{box-shadow: 0px 0px 25px #0cbcad7d}  
    20%{box-shadow: 0px 3px 23px #0cbcad7d}  
    30%{box-shadow: 1px 0px 25px #0cbcad7d}  
    40%{box-shadow: 0px 1px 23px #0cbcad7d}  
    50%{box-shadow: -2px 0px 25px #0cbcad7d}  
    60%{box-shadow: 0px 3px 25px #0cbcad7d}  
    80%{box-shadow: 0px 0px 25px #0cbcad7d}  
}
@keyframes neon_red_t {
    0%{text-shadow: 0px 0px 25px #cf3d78b8}  
    10%{text-shadow: 0px 0px 25px #cf3d78b8}  
    20%{text-shadow: 0px 3px 25px #cf3d78b8}  
    30%{text-shadow: 1px 0px 23px #cf3d78b8}  
    40%{text-shadow: 0px 1px 25px #cf3d78b8}  
    50%{text-shadow: -2px 0px 25px #cf3d78b8}  
    60%{text-shadow: 0px 3px 23px #cf3d78b8}  
    80%{text-shadow: 0px 0px 25px #cf3d78b8}  
}
@keyframes neon_green_t {
    0%{text-shadow: 0px 0px 25px #0cbcad7d}  
    10%{text-shadow: 0px 0px 25px #0cbcad7d}  
    20%{text-shadow: 0px 3px 23px #0cbcad7d}  
    30%{text-shadow: 1px 0px 25px #0cbcad7d}  
    40%{text-shadow: 0px 1px 23px #0cbcad7d}  
    50%{text-shadow: -2px 0px 25px #0cbcad7d}  
    60%{text-shadow: 0px 3px 25px #0cbcad7d}  
    80%{text-shadow: 0px 0px 25px #0cbcad7d}  
}

i.icon,
.icon i{
   font-size:20px;
}

/* BTN + LINKS */


/*btn*/
.btn{
    height: 45px;
    position: relative;
    display: inline-block;
    background: var(--green);
    padding: 0 20px;
    line-height: 45px;
    font-weight: 500;
    border-radius: 50px;
    color: #14151a;
    text-align: center;
    cursor: pointer;
    z-index: 2;
    box-sizing: border-box;
    font-size: 14px;
}
.btn:before{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    top: 0px;
    width: 45px;
    background: #16335c66;
    transition: 0.5s ease;
    border-radius: 50px;
    z-index: -2;
    opacity: 0;
}

.btn:hover:before{
    opacity: 1;
    border-radius: 50px;
    width: 100%;
}
.btn:hover{
   box-shadow: 0px 11px 11px -6px var(--green)70;
   color: #ffffff !important;
}

.btn.full{
    width:100%;
}

.btn i{
    position: relative;
    font-size: 20px;
    margin:0 2px;
    color: inherit;
    bottom: -3px;
   transition-delay:0;
}


.btn.smail{
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    font-size: 13px;
}


.btn.micro{
    height: 30px;
    line-height: 30px;
    padding: 0 15px;
    font-size: 11px;
}
.btn.micro i{
    font-size: 15px;
    top:2px 
}


.btn.border{
   border:none;
   background:#0000 !important;
   color: #fff !important;
}
.btn.border:after{
   content:"";
   position:absolute;
   top:0;
   left:0;
   bottom: 0;
   right: 0;
   border:2px solid var(--green);
   border-radius: 50px;
   box-sizing: border-box;
   z-index: -1;
}





/*icon-btn*/

.icon-btn{
    height: 45px;
    width: 45px;
    position: relative;
    display: block;
    padding: 0;
    border-radius: 17px;
    color: var(--body);
    text-align: center;
    cursor: pointer;
    z-index: 2;
    box-sizing: border-box;
    background: var(--green);
    line-height: 45px;
    border: none;
    z-index: 2;
}
.icon-btn:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 10px;
    bottom: 0;
    opacity: 0;
    z-index: -2;
    transition: 0.5s;
    background: #16335c66;
    border-radius: 18px;
    z-index: -2;
}
.icon-btn:hover:before{
    height: 100%;
    opacity:1;
}
.icon-btn:hover{
    color: #ffffff !important;
    box-shadow: 0px 11px 11px -6px var(--green)70;
}

.icon-btn.border{
   background: #fff0 !important;
   color:#fff;
   border: none;
}
.icon-btn.border:hover{
   color: #ffffff !important;
}
.icon-btn.border:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    bottom: 0;
    border-radius: 18px;
    z-index: -1;
    transition: 0.5s;
    border:2px solid var(--green);
    box-sizing: border-box;
}

.icon-btn i{
    position: absolute;
    width: 100%;
    text-align: center;
    font-size:22px;
    margin: 0;
    color: inherit;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
}
.icon-btn svg{
    height: 20px;
    width: 19px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* smail */
.icon-btn.smail{
    height: 40px;
    width: 40px;
    line-height: 40px;
}

.icon-btn.smail i{
    font-size: 20px;
}
.icon-btn.smail svg{
    max-height: 17px;
    max-width: 17px;
}


/* miccro */
.icon-btn.micro{
    height: 30px;
    width: 30px;
    min-width: 30px;
    line-height: 30px;
    border-radius: 11px;
}
.icon-btn.micro:before{
   border-radius:10px;
}
.icon-btn.micro i{
    font-size: 17px;
}
.icon-btn.micro svg{
    max-height: 13px;
    max-width: 13px;
}


.icon-btn.red,
.btn.red{
   background:var(--red);
   color:#fff;
}
.icon-btn.red:hover,
.btn.red:hover{
   box-shadow: 0px 11px 11px -6px var(--red)b8;
}
.icon-btn.red:after,
.btn.red:after{
   border-color:var(--red);
}

.icon-btn.white,
.btn.white{
   background:#ffffff;
}
.icon-btn.white:after,
.btn.white:after{
   border-color:#ffffff;
}
.icon-btn.white:before,
.btn.white:before{
   /* background:var(--green); */
}






/* btn info*/
.btn .info, .icon-btn .info{
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translate(-50%);
    background: #151941;
    padding: 8px 5px;
    border-radius: 10px;
    font-size: 10px;
    color: #fcfcfc;
    line-height: initial;
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
}
.btn:hover .info, .icon-btn:hover .info{
    bottom: -40px;
    opacity: 1;
    visibility: visible;
}

/*.btn i  // icon */
.i-green i{
   color:#3ecf9b;
}
.i-red i {
   color:#fe6c86;
}
.i-gray i {
   color:#898db0;
}
.i-blue i {
   color:var(--blue);
}
.icon-btn.i-green i{
   color:#3ecf9b;
}
.icon-btn.i-red i {
   color:#fe6c86;
}
.icon-btn.i-gray i {
   color:#898db0;
}
.icon-btn.i-blue i {
   color:var(--blue);
}
.btn.i-green i{
   color:#3ecf9b;
}
.btn.i-red i {
   color:#fe6c86;
}
.btn.i-gray i {
   color:#898db0;
}
.btn.i-blue i {
   color:var(--blue);
}

.icon.cricle i{
    font-size: 18px;
    border: 1px solid;
    border-radius: 50%;
    padding: 5px;
}
.icon.big i{
    font-size: 25px;
}
.icon i{
    font-size: 19px;
    top: -2px;
    position: relative;
}
.icon.smail i{
    font-size: 15px;
}
.icon.micro i{
    font-size: 13px;
}



/*link*/
.link{
    position: relative;
    cursor: pointer;
    display: inline;
    padding-bottom: 0px;
    border-bottom: 1px solid var(--green);
}
.link:hover{
    color: var(--green);
    border-color: var(--red);
}
.link:before{
    content:'';
}
.link:hover:before{
    height: 100%;
    top: 50%;
    opacity: 1;
}

.link:has(i){
}
.link i{
   font-size: 22px;
   color: var(--green);
}

.underline{
    cursor:pointer;
    text-decoration:underline;
}
.underline:hover{
    color:#4200ff;
    text-decoration: underline;
}



/* BLOCKS  */

.relative{
    position: relative;
}

/*blocks*/

.an{
   opacity:0;
}

.b-white{background: #fff;}
.b-gray{
    background: var(--gray);
}
.b-black{
    background: var(--black);
}
.b-red{
    background: var(--red);
}
.b-green{
    background: var(--green);
}

.b-gradient-top{
   background:linear-gradient(180deg, var(--body) 0%, rgba(0, 0, 0, 0) 100%);
}
.b-gradient-bottom{
   background: linear-gradient(180deg, rgba(5, 5, 34, 0) 0%, var(--body) 40%, var(--body) 100%);
   position: relative;
}
.b-gradient-bottom:before{
   content:"";
   background:  var(--body);
   position: absolute;
   top: 100%;
   left: 0;
   width: 100%;
   height: 150%;
   z-index: -1;
}

@media(max-width:1000px){
   .b-gradient-bottom:before{
      height: 300%;
   }
}

.border {
   border: 1px solid var(--border);
}


.border.red {
   border-color:var(--red);
}

.border.green {
   border-color:var(--green);
}

.border.blue {
   border-color:var(--blue);
}

.mhover{
    transition:0.5s ease;
}
.overflow{
    overflow:hidden;
}



/*list*/
.list {
    position: relative;
    margin: 15px 0;
    padding-left: 5px;
    box-sizing: border-box;
}
.list ul{
    margin: 0;
    margin-left: 10px;
}
.list li{
    position: relative;
    padding-left: 20px;
    margin: 8px 0;
}
.list li:before{
    content:"";
    position: absolute;
    left: 0;
    top: 5px;
    height: 5px;
    width: 5px;
    border: 1px solid var(--green);
    border-radius: 50%;
    transform: rotate(45deg);
}
.list li.done:before{
    border-color:#00d084;
}



/* PROPS */

/* scroll top */

#scroll-top{
   position:relative;
   bottom:-200px;
   transition:0.5s
}
#scroll-top.active{
   bottom:0px;
}




/* alert*/
.alert-wrap{
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 230px;
    z-index: 99999;
}
.alert{
    position: relative;
    background: #28293b;
    color: #898db0;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    cursor: pointer;
    font-size: 11px;
    transform: translateY(200px);
    margin-top: 15px;
}
.alert.red,
.alert.error{
    background: #ff4444b8;
    color: #fff;
}
.alert.green,
.alert.success{
    background: #3ecf9b94;
    color: #fff;
}
.alert.blue{
    background: #2196f3;
    color: #fff;
}
.alert.gray{
    background: #61647e;
    color: #fff;
}
.alert.active{
    transform: translateY(0);
}


/*  notice */
.notice {
   position: relative;
   padding: 20px;
   border-radius: 10px;
   width: fit-content;
   padding-right: 80px;
}
.notice .notice-close{
   position:absolute;
   right:5px;
   top: 5px;
   opacity: 0.5;
}
.notice .notice-close:hover{
   opacity:1;
}
.notice.red,
.notice.error{
    background: #ff444442;
}

.notice.green,
.notice.success{
    background: #3ecf9b94;
}


.notice.blue{
    background: #2196f3;
}

.notice.gray{
    background: #61647e;
}




/*table*/
table {
    width: 100%;
    font-size: 16px;
}
td,th {
    text-align: left;
    font-size: 15px;
    vertical-align: middle;
    white-space: nowrap;
    width: max-content;
    padding: 5px 15px 5px 0px;
}
tr[class*="hide"] {
    display: none;
}
td.hide, th.hide {
    display: none;
}
@media(max-width:600px){
    table {
        min-width:100% 
    }
    td,th {
        /* white-space: normal;
        */
    }
}


/* table*/
.table-overflow{
    overflow:hidden;
    overflow-x:visible;
}
.table-overflow::-webkit-scrollbar{
    height:5px;
}
.table-overflow::-webkit-scrollbar-track-piece {
    background:#1b1c23;
}
.table tr{
    border-bottom: 1px solid #111111;
}
.table tr:hover{
    background:#14151a 
}
.table th{
    font-size: 13px;
    font-weight: 300;
    opacity: 0.8;
    padding: 10px 10px;
}
.table td{
    padding: 10px 20px;
    vertical-align: middle;
}
.table tr.sm td{
    padding: 10px 20px;
    line-height: 15px;
}
@media(max-width:1000px){
    .table td.cut, .table th.cut{
        opacity: 0;
        display: none;
    }
    .table.cut-on th.cut, .table.cut-on td.cut {
        display: table-cell;
        opacity:1;
    }
}
.table th.short{
    cursor:pointer;
}
.table th.short i{
    transition:0.3s;
    font-size: 15px;
    top: 1px;
    position: relative;
    color: var(--blue);
}
.table th.short:hover i{
    color:#2196f3;
}




/*popup*/
.popup {display: flex;-webkit-box-align: center;align-items: center;top: -50%;left: 50%;width: 100%;min-width: 320px;max-width: 900px;min-height: 0%;height: 100%;max-height: 80%;position: fixed;transform: translate(-50%,-50%);transition: 0.5s ease;z-index: 10000;overflow-x: hidden;background: linear-gradient(45deg, var(--black), var(--body));padding: 25px;box-sizing: border-box;border-radius: 30px;}
.popup.smail {
    height: auto;
    min-height: auto;
}

.active > .popup,
.active.popup{
      top: 50%;
  }
.popup.full-width{
    max-width: 1200px;
}
.popup.full{
    height: 95%;
    max-height: 95%;
    width: 95%;
    max-width: 1600px;
    display: block;
}
.popup.no-scroll{
    overflow: inherit;
}
.no-scroll .popup-content{
    height: 100%;
    
}

.popup-content{
display: flex;
flex-direction: column;
justify-content: center;
width: 100%;
height: 100%;
position: relative;
}
.noflex .popup-content{
    display:block;
}
.popup .close{
    position: fixed;
    z-index: 999;
    right: 10px;
    top: 10px;
    z-index: 1;
}
  
.popup::-webkit-scrollbar{width:0px;}

@media (max-width: 800px){
    .popup{max-width: 100%; max-height: 100%;}
}
@media(max-width:800px){
    .popup.full{
        width: 100%;
        height: 100%;
        max-height: 100%;
    }
}

    .close:hover{
    background: #e60042;
    color: #fff;
}


.popup-images .popup {
    max-height: 95%;
    height: 95%;
    overflow: hidden;
    width: 70%;
    max-width: 1000px
}

.popup-images .popup-content {
    display: block;
    max-height: 100%;
    width: 650px;
    max-width: 100%;
    margin: auto
}

.popup-images .owl-nav {
    position: absolute;
    bottom: 10px;
    margin: 0;
    z-index: 9999
}

.popup-rewiew .popup {
    display: block;
    padding: 50px 0
}

.popup.gallerey {
    background: #0d0d1b;
    overflow: hidden;
    max-width: 90%;
    z-index: 10000;
    box-shadow: none;
}

.popup.gallerey img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
    transition: .5s ease;
    pointer-events: auto;
    border-radius: 10px;
}

.popup.gallerey .hide {
    visibility: hidden;
    opacity: 0
}

.popup-gallerey-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 50px;
    box-sizing: border-box
}

.popup-gallerey-nav div {
    position: relative;
    cursor: pointer;
    pointer-events: auto;
    height: 60px;
    width: 60px;
    line-height: 60px;
}

.popup-gallerey-nav div:hover {
}

@media(max-width: 800px) {
    .popup-contayner .close {
        right:25px
    }

    .popup-gallerey-nav {
        right: 0;
        left: auto;
        width: auto;
        bottom: 30px;
        top: auto
    }

    .popup-gallerey-nav div {
        margin-left: 15px
    }
}


/*overlay*/
.overlay{
    position: fixed;
    height: 0%;
    width: 100%;
    background: rgb(5 6 9);
    right: 0;
    top: 0;
    z-index: 9999;
    opacity: 0.9;
    cursor: pointer;
    transition: 0.6s;
}
.overlay:hover{opacity: 0.7;}

.overlay.active{
    height:100%
}



/* BG */
.bg{
    background-position:top !important;
    background-size: cover;
    background-repeat: no-repeat !important;
    background-position: center !important;
}


/**/
.br-green{
border: 1px solid #00d084;
}
.br-yellow{
border: 1px solid #b4d000;
}
.br-red{
border: 1px solid #fe6c86;
}
.br-blue{
border: 1px solid #2e32cf;
}









/* form*/
form{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
}
label[for]{
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}
textarea, input[type="text"], input[type="date"], input[type="tel"], input[type="url"], input[type="email"], input[type="tel"], input[type="password"], input, select {
    display: block;
    height: 50px;
    width: 100%;
    background: #ffffff00;
    box-sizing: border-box;
    padding: 10px 25px;
    color: #ffffff;
    transition: 0.5s;
    margin-bottom: 15px;
    font-size: 17px;
    border-radius: 10px;
    border: 2px solid #0cbcad;
    padding: 5px 15px;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 13px;
}


input[type="color"]{
    padding: 0px;
    width: 70px;
    height: 35px;
}

select{
   cursor: pointer;
}
select option{
   font-size: 16px;
   cursor: pointer;
}

textarea.smail, input[type="text"].smail, input[type="date"].smail, input[type="tel"].smail, input[type="url"].smail, input[type="email"].smail, input[type="tel"].smail, input[type="password"].smail, input.smail, select.smail{
    height: 30px;
    border: 1px solid var(--blue);
    font-size: 10px;
    color: #14151a;
}
textarea.error, input.error, select.error {
   border-color: #ff576b;
}
textarea:hover, input[type="text"]:hover, input[type="date"]:hover, input[type="tel"]:hover, input[type="url"]:hover, input[type="email"]:hover, input[type="tel"]:hover, input:hover, select:hover {
   border-color: #1299da;
}


textarea:focus, input[type="text"]:focus, input[type="date"]:focus, input[type="tel"]:focus, input:focus, select:focus, input[type="url"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:active, input[type="text"]:active, input[type="date"]:active, input[type="tel"]:active, input[type="url"]:active, input[type="email"]:active, input[type="tel"]:active, input:active, select:active {
    border-color: var(--green);
    box-shadow: inset 2px 3px 5px 0px rgb(0 0 0 / 15%);
    background: var(--black);
}
textarea{
    height: auto;
    padding: 15px;
}
input[type="date"]{}
textarea::placeholder, 
input[type="text"]::placeholder, 
input[type="date"]::placeholder, 
input[type="tel"]::placeholder, 
input[type="url"]::placeholder, 
input[type="email"]::placeholder, 
input[type="tel"]::placeholder, 
input::placeholder, 
select::placeholder,
textarea::placeholder{
   color:#868aae;
   transition:0.4s
}

textarea.noborder, 
input[type="text"].noborder, 
input[type="date"].noborder, 
input[type="tel"].noborder, 
input[type="url"].noborder, 
input[type="email"].noborder, 
input[type="tel"].noborder, 
input[type="password"].noborder, 
input.noborder, 
select.noborder {
    border: none;
}


.input{
    position:relative;
}
.input .input-icon{
    position:absolute;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
}
input[type="submit"]{
    display: block;
    height: 50px;
    width: 100%;
    padding: 0 15px;
    text-align:center;
    box-sizing:border-box;
    border: none;
    z-index: 1;
    transition: 0.4s;
    margin:auto;
    background: #0cbcad;
    background-size: 300%;
    background-position: 98%;
    color: #fff;
    margin-bottom: 15px;
    cursor: pointer;
}
input[type="submit"]:hover{
    color: #ffffff;
    background: var(--red);
    box-shadow: 0px 11px 11px -6px #ff000057;
}

input[type="submit"]:disabled{
    cursor:default;
}


input[type="file"]{
   width: 150px;
}
input[type="file"]:before{
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: -15px;
    padding: 0 20px;
    text-align: center;
}

/* checkbox */
.checkbox{
    position:relative;
    display: inline-block;
}
.checkbox > div{
   display: flex;
   align-items: flex-start;
   flex-wrap: nowrap;
   justify-content: flex-start;
}
.checkbox .checkbox-text{
   /* width:100%; */
}
.checkbox .checkbox-tag{
    height: 25px;
    width: 40px;
    min-width: 40px;
    border: 2px solid var(--blue);
    border-color: #333b7d;
    border-radius: 50px;
    display: block;
    position: relative;
    z-index: 1;
    pointer-events: none;
    margin-right: 15px;
    cursor: pointer;
    box-sizing: border-box;
}
.checkbox .checkbox-tag:before{
   content:"";
   display: block;
   height: 17px;
   width: 17px;
   background: #9faab3;
   opacity: 0.8;
   border-radius: 50%;
   position: absolute;
   left: 2px;
   top: 2px;
   transition: 0.3s ease-in-out;
   box-sizing: border-box;
}

input[type="checkbox"]{
   height: 20px;
   width: 40px;
   position: absolute;
   opacity: 0;
   z-index: 0;
   cursor: pointer;
}
input[type="checkbox"]:checked + .checkbox-tag {
    border-color: #2e32cf;
}

input[type="checkbox"]:not(checked) + .checkbox-tag:before {
}
input[type="checkbox"]:checked + .checkbox-tag:before {
   left: 18px;
   opacity: 1;
   background: #2196f3;
}
input[type="checkbox"][disabled]{
   opacity: 0 !important;
}
input[type="checkbox"][disabled] + .checkbox-tag{
   opacity:0.5;
   cursor: default;
}
input[type="checkbox"][disabled] + .checkbox-tag:before {
   left:2px;
}

/* radio*/
.radio{
    position:relative;
    display: inline-block;
}
.radio > div{
   display: flex;
   align-items: flex-start;
}
.radio .radio-text{
   width:100%;
}
.radio .radio-tag{
    height: 25px;
    width: 25px;
    min-width: 25px;
    box-sizing: border-box;
    border: 2px solid var(--blue);
    border-color: #333b7d;
    border-radius: 50px;
    display: block;
    position: relative;
    z-index: 1;
    pointer-events: none;
    margin-right: 15px;
    cursor: pointer;
}
.radio .radio-tag:before{
   content:"";
   display: block;
   height: 15px;
   width: 15px;
   background: #00000000;
   opacity: 0.8;
   border-radius: 50%;
   position: absolute;
   left: 3px;
   top: 3px;
   transition: 0.3s ease-in-out;
   box-sizing: border-box;
}


input[type="radio"]{
   height: 20px;
   width: 40px;
   position: absolute;
   opacity: 0;
   z-index: 0;
   cursor: pointer;
}
input[type="radio"]:checked + .radio-tag {
    border-color: #2e32cf;
}

input[type="radio"]:checked + .radio-tag:before {
   opacity: 1;
   background: #2196f3;
}
input[type="radio"][disabled]{
   opacity: 0 !important;
}
input[type="radio"][disabled] + .radio-tag{
   opacity:0.5;
   cursor: default;
}
input[type="radio"][disabled] + .radio-tag:before {
   left:2px;
}






/* cursor */
.cursor--small {
    position: fixed;
    left: 0px;
    top: 0px;
    transition: 0.1s;
    z-index: 1050;
    pointer-events: none;
    height: 1px;
    width: 1px;
    opacity: 0;
  }
  .cursor--small.active{
      opacity:1;
  }
  .cursor--small.black{
      color:#fff;
  }
  .cursor--small:before{
     content:"";
     position: absolute;
     width: 5px;
     height: 5px;
     left: 50%;
     top: 50%;
     transform: translate(-50%, -50%);
     border-radius: 50%;
     z-index: 11000;
     border: 2px solid #ffffff;
     transition:0.6s;
  }
  
  .cursor--small.black i{color:#fff;}
  .cursor--small.black.c-hover:before{border-color: #fff;}
  .cursor--small.c-input:before{
     width: 0px;
     height: 17px;
     border-radius: 0;
     border-left: 2px solid transparent;
  }
  
  .cursor--small.c-hover:before{
    height: 65px;
    width: 65px;
    border: 1px solid #ffffff;
  }
  .cursor--small.c-hover.Play:before{
    height: 80px;
    width: 80px;
  }
  
  .cursor--small i{
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%) scale(0);
      transition:0.4s;
      font-size:14px;
      opacity:0;
      color:#ffffff2e;
      z-index:11001;
  }
  .cursor--small.c-hover i{
      transform: translate(-50%, -50%) scale(2.3);
  }
  .cursor--small.c-up .la-arrow-up{opacity:1;}
  .cursor--small.c-link .la-plus{opacity:1;}
  .cursor--small.c-close .la-times{opacity:1;}
  .cursor--small.c-send .la-paper-plane{opacity:1;}
  .cursor--small.c-left .la-arrow-left{opacity:1;}
  .cursor--small.c-right .la-arrow-right{opacity:1;}
  .cursor--small.Play .la-play{opacity:1;}
  .cursor--small.Pause .la-pause{opacity:1;}
  
  .cursor--canvas {
    width: 100vw;
    height: 100vh;
    z-index: -1;
    left: 0;
    top: 0;
    position: fixed;
    z-index: 1010;
    pointer-events: none;
  }



.bottom-menu{
   position: fixed;
   bottom: 20px;
   right: 20px;
   display: flex;
   z-index: 1000;
}

.sound-play{}
.sound-play.play i{
   animation:sound-play 6s infinite linear
}

@keyframes sound-play {
   0%{
      transform:translate(-50%, -50%) rotate(0deg)
   }
   100%{
      transform:translate(-50%, -50%) rotate(360deg)
   }
}

/*back-top*/
.back-top{
    position: fixed;
    right: 70px;
    bottom: -50px;
}
.back-top.active{
   bottom:20px;
}





/*preloader */
.preloader {
   position: fixed;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   backdrop-filter: blur(100px);
   z-index: 1000;
}
.loader{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(100px);
    z-index: 1001;
}
.loader.hide{
    opacity: 0;
    visibility: hidden;
}
.loader .loader-lines{
    position: absolute;
    width: 400px;
    height: 100px;
    max-width: 500px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(320deg);
    /* background: red; */
}
.loader .load-line{
   position: absolute;
   background: linear-gradient(45deg, transparent,#4b5ccd);
   height: 1px;
   animation: load 3s infinite cubic-bezier(0.61, 0.02, 0.31, 0.98);
   height: 20px;
   border-radius: 30px;
}

@keyframes load{
   0%{
      left:0%;
      right:100%;
      height:10px;
   }
   40%{
      right:30%;
   }
   60%{     
      left:30%;
   }
   100%{
      right:0%;
      left:100%;
      height:10px;
   }
}

.loader .load-line:nth-child(1){
   top: 0;
   background: linear-gradient(45deg, transparent, #d86b3d);
}
.loader .load-line:nth-child(2){
   top: 49%;
   animation-delay: 0.5s;
}
.loader .load-line:nth-child(3){
   top: 100%;
   animation-delay: 1s;
   background: linear-gradient(45deg, transparent, #d62625);
}



/* owl */

.owl-carousel .owl-stage-outer{
   border-radius: 15px;
   overflow:hidden;
}

.owl-dots{
    position: absolute;
    display: flex;
    bottom: 10px;
    left: 10px;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
}
.owl-dots .owl-dot{
   display: block;
   height: 10px;
}
.owl-dots .owl-dot.active{}
.owl-dots .owl-dot span{
    position: relative;
    display: block;
    height: 10px;
    width: 20px;
    /* background: white; */
    margin-right: 10px;
    border-radius: 25px;
    border: 2px solid var(--green);
    box-sizing: border-box;
}
.owl-dots .owl-dot:hover span{
    background: red;
}
.owl-dots .owl-dot.active span{width: 30px;background: var(--green);}


/*owl-nav*/
.owl-carousel .owl-nav{
    position: absolute;
    top: 45%;
    width: 100%;
}
.owl-carousel .owl-nav button{
    position: absolute;
    display: block;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background: white !important;
    font-size: 22px !important;
    color: #ff0000 !important;
    transition: 0.5s;
}
.owl-carousel .owl-nav button:hover{
   background: #ff0000 !important;
   color: #fff !important;
}
.owl-carousel .owl-nav .owl-prev{left: 5px;}
.owl-carousel .owl-nav .owl-next{
    right: 5px;
}



/*ac*/

.ac-item {
    display: block;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.ac-item:last-child {
}

.ac-item:hover {
    border-color: #cf3d78;
}

.ac-item.active {
    border-color: var(--red);
    background: var(--black);
}

.ac-item .title {
    font-weight: 500;
    padding: 25px;
    padding-right: 100px;
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 20px;
    border: 1px solid #ffffff00;
}
.ac-item.active .title {
    border: 1px solid var(--border);
}
.ac-item .title h5 {
    padding: 0;
    margin: 0;
    font-weight: 500;
    font-size: 18px
}

.ac-item .ithems-btn {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
    height: 40px;
    width: 40px;
    color: #fff;
    border-radius: 10px;
    text-align: center;
    z-index: 2
}

.ac-item .ithems-btn i {
    font-size: 21px;
    line-height: 40px;
    color: #898db0;
    height: auto;
    width: auto;
    text-align: center;
    z-index: -1;
    transition: .4s
}

.ac-item .ithems-btn:hover i {
    color: #fff !important
}

.ac-item .ithems-btn:hover {
    color: #fff;
    border-color: #898db0;
}

.ac-item.active .ithems-btn {
    transform: rotate(90deg) translate(-50%, -0%);
    border: 1px solid #898db0;
}

.ac-item.active .ithems-btn:hover i {
}

.ac-item .content-wrap {
    display: block;
    position: relative;
    padding: 0 20px;
    overflow: hidden;
    transition: .8s
}

@media(max-width: 800px) {
    .ac-items .title {
        padding:20px
    }

    .ac-items .ithems-btn {
        position: relative;
        display: none
    }
}




/*carousel*/
.carousel{}
.carousel .carousel-img{
    /* overflow: hidden; */
    border-radius: 15px;
}
.carousel .carousel-img:before{
   content:"";
   position: absolute;
   height: 100%;
   width: 100%;
   background: radial-gradient(#501b74ba, #080843b3);
   border-radius: 15px;
   opacity: 0;
   transition: 0.8s ease;
}
.carousel .carousel-img:hover:before{
   opacity:1;
}
.carousel .carousel-img svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition:0.8s ease-in-out;
    opacity: 0.2;
}
.carousel .carousel-img svg circle{stroke:var(--green);}
.carousel .carousel-img:hover svg{
    transform: translate(-50%, -50%) rotate(180deg);
    opacity: 1;
}

.carousel .prev path,
.carousel .next path{
   transition:0.5s;
}
.carousel .prev:hover path,
.carousel .next:hover path{
   stroke: var(--green);
}




/*retrowaveScene*/
#retrowaveScene{
    position: absolute;
    top: 0;
    z-index: -2;
    max-width: 100%;
    transition: 0.5s;
    left: 0;
}

#retrowaveScene.menu-active{
   z-index: 999;
   left: -25%;
   position: fixed;
}

@media(max-width: 600px){
   #retrowaveScene.menu-active{
      top: 50%;
      left: 0;
      position: fixed;
      height: 50% !important;
      width: 100% !important;
   }
}

/*review */
.review {
    position: relative;
}
.review .info{
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 10px;
}

/* STYLE CSS */