/************************************************************************************
RESET
*************************************************************************************/
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

img, fieldset {
	border: 0;
}

/* set image max width to 100% */
img {
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}

/* set html5 elements to block */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
fieldset,img { 
    border:0;
}
ol,ul {
    list-style:none;
}
caption,th {
    text-align:left;
}
h1,h2,h3,h4,h5,h6 {
    font-size:100%;
    font-weight:normal;
}
q:before,q:after {
    content:'';
}
abbr,acronym { border:0;}

/********************************************************************************
FONT
*********************************************************************************/
@font-face {
    font-family: DIN;
    src: url("../fonts/DIN_Regular.otf") format("opentype");
}
@font-face {
    font-family: DIN;
    font-weight: 700;
    src: url("../fonts/DIN_Bold.otf") format("opentype");
}

.yumin{
    font-family: "yu-mincho-pr6n", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/************************************************************************************
GENERAL STYLING
*************************************************************************************/
body{
    font-family: DIN;
    font-optical-sizing: auto;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    color: #191919;
    background-color: #f7f7f7;
}
.container{
    max-width:1366px;
    margin: 0 auto;
    position: relative;
    max-width: 100vw;
}
.container-inner{
    max-width: 1168px;
    margin: 0 auto;
    height: 100%;
}

/************************************************************************************/

/***********************Header Area****************************/
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.header-container {
    position: relative;
    height: 701px; /* adjust as needed */
    overflow: hidden;
    padding-top: 25px;
}
.header-container .container-inner:after {
    content: '';
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.header-content {
    position: relative;
    z-index: 1;
    color: white;
}
nav{position: sticky; top: 0; z-index: 99;}
.navMng{position: absolute; top: 25px; left: 0; right: 0; z-index: 99;}
nav .top-container {
    background-color: rgba(255,255,255,.85);
    border-radius: 10px;
    height: 76px;
    display: flex;
    align-items: center;
    padding: 0 0 0 98px;
}
.navMng.stickyOn{top: 0;}
.navMng.stickyOn .top-container {
    background-color: rgba(255,255,255, 1); box-shadow: #00000029 1px 1px 11px;
}
nav .logo-container {
    display: flex;
    padding-right: 235px;
}
nav .logo-container .btec-logo{
    width: 56px;
}
nav .navigation-container{
    display: flex;
    justify-content: right;
}
nav .navigation-container .navigation-list{
    display: flex;
    gap: 46px;
}
nav .navigation-container .navigation-list li a{
    font-weight: 700;
    font-size: 21px;
    color: #191919;
    text-decoration: none;
    padding: 26px 0;
}
nav .navigation-container .navigation-list li.nav-has-children {
    position: relative;
    padding-right: 15px;
}
nav .navigation-container .navigation-list li {
    position: relative;
}
nav .navigation-container .navigation-list li ul.sub-menu {
    position: absolute;
    left: 0;
    top: 51px;
    width: 240px;
    background-color: rgba(255,255,255,.8);
    transition: all .2s ease-in;
    display: none;
    border-radius: 5px;
    overflow: hidden;
    padding: 10px 0;
}
nav .navigation-container .navigation-list li ul.sub-menu li a {
    font-size: 16px;
    padding: 4px 12px;
    display: block;
    font-weight: normal;
}
nav .navigation-container .navigation-list li:hover ul.sub-menu { 
    display: block;
    transition: all .2s ease-out;
}
nav .navigation-container .navigation-list li ul.sub-menu li a:hover { 
    background-color: rgba(255,255,255,1);
    transition: all .2s ease-out;
}

#introduction .container-inner{display: flex; align-items: center;}
.header-container .header-content h2 {
    font-family: "yu-mincho-pr6n", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 84px;
    padding-top: 58px;
    padding-bottom: 39px;
    line-height: 62px;
}
.header-container .header-content p {
    line-height: 35px;
}
.floating-box {
    background: #8FC31F;
    background: linear-gradient(90deg, rgba(143, 195, 31, 1) 0%, rgba(0, 167, 227, 1) 100%);
    position: fixed;
    right: 0;
    top: 519px;
    height: 67px;
    display: flex;
    align-items: center;
    padding: 0 30px 0 27px;
    border-radius: 15px 0px 0px 15px;
    z-index: 999;
}
.floating-box h2{
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    padding-left: 53px;
}
.floating-box h2:before{
    content: '';
    background-image: url('../images/btec-logo-white.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    height: 27px;
    width: 34px;
}
/************************************************************************************/
/****************************Main Container******************************************/

.section-one .white-box-container{
    margin-top: -25px;
}
.white-box-container{
    background-color: #ffffff;
    border-radius: 10px;
    padding: 100px 50px 50px;
    box-shadow: 10px 1px 20px rgba(0,0,0,.05);
}
.white-box-container .white-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.white-box-container .white-box-image {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 41px;
}
.white-box-container h2{
    font-family: "yu-mincho-pr6n", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 47px;
    line-height: 41px;
    margin-bottom: 35px;
}
.white-box-container h2 span{
    font-family: DIN;
    font-size: 21px;
    font-weight: 400;
    padding-left: 58px;
}
.white-box-container .wb-list{
    line-height: 33px;
    padding-top: 8px;
}
.white-box-container .wb-list li{
    position: relative;
    padding-left: 38px;
}
.white-box-container .wb-list li:before{
    content: '';
    background-image: url('../images/arrow.png');
    width: 13px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.section-two{
    padding-top: 52px;
    padding-bottom: 104px;
}
.mt34{
    margin-top: 34px;
    line-height: 33px;
}

.section-three{
    background: #182630;
    background: linear-gradient(90deg,rgba(24, 38, 48, 1) 0%, rgba(26, 65, 77, 1) 100%);   
    text-align: center;
    padding: 104px 0 52px;
    color: #ffffff;
}
.section-three h2{
    font-family: "yu-mincho-pr6n", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 47px;
    line-height: 41px;
    margin-bottom: 35px;
}
.arrow-img {
    position: relative;
    display: table;
    margin: 0 auto;
}
.arrow-img:before{
    content: '';
    background-image: url('../images/arrow-white.png');
    width: 13px;
    height: 10px;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}
.section-three p {
    line-height: 33px;
}
.token-burn-content{
    padding-bottom: 33px;
    position: relative;
}
.token-burn-content:after{
    content: '';
    background-color: #ffffff;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.section-four{
    min-height: 650px;
    padding: 100px 0 140px;
}
.box-container{
    display: grid;
    grid-template-columns: 594px 542px;
    column-gap: 32px;
    row-gap: 101px;
}
.box-container .box h2{
    font-family: "yu-mincho-pr6n", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 45px;
    line-height: 41px;
    margin-bottom: 35px;
    margin-top: 45px;
}
.box-container .box h4{
    font-weight: 700;
    font-size: 26px;
    padding-top: 16px;
    padding-bottom: 18px;
}
.box-container .box p{
    line-height: 32px;
}
.box-container .box-bg{
    text-align: center;
    position: relative;
}
.box-container .box-bg-img-container-main{
    position: relative;
    width: 542px;
}
.box-container .box-bg-img-container{
    position: relative;
    width: 542px;
    /* height: 470px; */
    border-radius: 10px;
    box-shadow: 10px 1px 20px rgba(0,0,0,.1);
    overflow: hidden;    
}
.box-container .box-bg1 .box-bg-img-container{background-color: #000f1b;}

/* .box-container .box-bg-img-container:after{
    content:'';
    background-color: rgba(0,0,0,.35);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
} */
.box-container .box-bg-img-container .box-bg-img{
    /* width: 100%; */
    /* height: 100%; */
    /* object-fit: cover; */
    /* border-radius: 10px; */
}
.box-container .box-bg .bg-box-content{
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%,-50%); */
    width: 100%;
    color: #ffffff;
}
.box-container .box-bg .bg-box-content h4{
    font-size: 40px;
    font-weight: 700;
    padding: 0 0 38px 0;
}
.box-container .box-bg .bg-box-content .box-btn{
    background-color: #003387;
    color: #ffffff;
    display: flex;
    width: 225px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 0 auto;
    border-radius: 15px;
    font-size: 23px;
    font-weight: 700;
    position: relative; z-index: 2; margin-bottom: 40px;;
    /* margin-top: 44px; */
    box-shadow: 3px 4px 5px rgba(0,0,0,.2);
}
.box-container .box-bg .bg-box-content .box-btn:after{
    content: '';
    background-image: url('../images/arrow-right-white.png');
    background-repeat: no-repeat;
    background-size: auto;
    width: 9px;
    height: 12px;
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
}
.box-container .box-bg .bg-box-content .box-btn:hover{
    opacity: .8;
}

.box-container .box-bg1 .box-bg-img-container .box-bg-img {
}
.box-container .box-bg2 .box-bg-img-container:after{
    background-color: rgba(255, 255, 255, .35);
}
.box-container .box-bg2 .bg-box-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: #191919;
}
.box-container .box-bg2 .bg-box-content p{
    text-align: left;
    line-height: 25px;
}
.box-container .box-bg2 .bg-box-content .btn-container{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
    margin-bottom: 57px;
}
.c-adress{text-align: left; padding-bottom: 5px;}
.c-adress b{display: block;}
.cliptxtWrap{position: relative; display: inline-grid; gap: 10px; grid-template-columns: 1fr 22px; margin-right: -10px;}
.cliptxtWrap img#copyBtn{cursor: pointer;}
.cliptxt .copyBtn{cursor: pointer;}
.box-container .box-bg2 .bg-box-content{
    padding: 0 36px;
    margin-top: 45px;
}
.box-container .box-bg2 .bg-box-content .box-btn{
    position: relative;
}
.box-container .box-bg2 .bg-box-content .box-btn:before {
    content: '';
    background-image: url('../images/btec-logo-white.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    height: 27px;
    width: 34px;
}
.box-container .box-bg2 .bg-box-content .box-btn2:before {
    background-image: url('../images/add-token-icon.png');
}
.box-container .box-bg2 .bg-box-content .box-btn:after{
    display: none;
}
.box-container .box-bg2 .bg-box-content .box-btn {
    background-color: #003387;
    color: #ffffff;
    display: block;
    width: 225px;
    height: 57px;
    display: block;
    text-decoration: none;
    margin: 0 auto;
    border-radius: 15px;
    font-size: 23px;
    font-weight: 700;
    position: relative;
    margin-top: 44px;
    box-shadow: 3px 4px 5px rgba(0, 0, 0, .2);
    padding-left: 0;
    line-height: 55px;
    text-align: left;
    padding-left: 75px;
}
.box-container .box-bg2 .bg-box-content .box-btn:hover{
    opacity: .8;
}
.box-container .box-bg2 .bg-box-content .box-btn2 {
    background-color: #ffffff;
    color: #191919;
    border: 1px #003387 solid;
}
.box-container .box-bg2 .bg-box-content .box-btn2:hover {
    background-color: #003387;
    color: #ffffff;
    opacity: 1;
}
.box-container .box-bg2 .bg-box-content h4 {
    margin-top: 16px;
    padding: 0;
}
.box-container .box-bg2 .box-bg-img-container {
    width: 546px;
    height: 476px;
}
.box-container .box-bg2 .box-bg-img-container img{width: 100%; height: 100%; object-fit: cover;  border-radius: 10px;}
.section-five {
    padding-top: 100px;
    padding-bottom: 61px;
    background-color:rgba(26,65,77,1); 
    background-image: url(../images/section-five-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;        
    position: relative;  
    color: #ffffff;  
}
.box-container .box-bg2 .box-bg-img-container:after{
    content:'';
    background-color: rgba(255, 255, 255, .35);
    
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.section-five h2{
    text-align: center;
    font-family: "yu-mincho-pr6n", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 45px;
    line-height: 53px;
}
.section-five .sfive-box-container{
    position: relative;
    min-height: 534px
}
.section-five .sfive-box-container .section-five-content-bg{
    position: absolute;
    bottom: 0;
    left: 51px;
}
.section-five .sfive-box-container .sfive-box1 {
    position: absolute;
    left: 0;
    bottom: 0;
}
.section-five .sfive-box-container .sfive-box1 p.content-padding {
    padding-bottom: 145px;
}
.section-five .sfive-box-container .sfive-box1 span.sfive-box-date {
    position: relative;
    padding-left: 30px;
    bottom: 26px;
    left: 84px;
}
.section-five .sfive-box-container .sfive-box2 {
    position: absolute;
    left: 354px;
    bottom: 0;
}
.section-five .sfive-box-container .sfive-box2 p.content-padding {
    padding-bottom: 145px;
}
.section-five .sfive-box-container .sfive-box2 span.sfive-box-date {
    position: relative;
    padding-left: 30px;
    bottom: 64px;
    left: 122px;
}
.section-five .sfive-box-container .sfive-box2 p.content-padding {
    padding-bottom: 294px;
}
.section-five .sfive-box-container .sfive-box3 {
    position: absolute;
    left: 708px;
    bottom: 181px;
}
.section-five .sfive-box-container .sfive-box3 p.content-padding {
    padding-bottom: 145px;
}
.section-five .sfive-box-container .sfive-box3 span.sfive-box-date {
    position: relative;
    padding-left: 30px;
    bottom: 26px;
    left: 105px;
}
.section-five .sfive-box-container .sfive-box3 p.content-padding {
    padding-bottom: 214px;
}
span.sfive-box-date {
    font-size: 25px;
    font-weight: 700;
}
span.sfive-box-date:before {
    content: '';
    background-color: #fff;
    width: 17px;
    height: 17px;
    position: absolute;
    border-radius: 50px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
img.sfive-box-line {
    position: absolute;
    left: 8px;
    bottom: 25px;
}
.section-five .sfive-box-container .sfive-box p.content-padding span {
    position: relative;
    padding-left: 15px;
    display: block;
}
.section-five .sfive-box-container .sfive-box p.content-padding span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 7px;
    height: 1px;
    background-color: #ffffff;
}
.section-five .sfive-box-container .sfive-box p.content-padding {
    line-height: 32px;
}

.section-six{
    position: relative;
    background-color: #f7f7f7;
    padding: 115px 0 111px;
}

.section-six h2{
    font-family: "yu-mincho-pr6n", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 45px;
    margin-bottom: 35px;
}

.section-six .project-overview-list li{
    background-color: #ffffff;
    padding: 43px 43px;
    border-radius: 10px;
    box-shadow: 10px 1px 20px rgba(0,0,0,.05) ;
    margin-bottom: 28px;
}
.section-six .project-overview-list li:last-child{
    margin-bottom: 0px;
}
.section-six .project-overview-list li span.head{
    font-weight: 700;
    font-size: 25px;
    position: relative;
    margin-right: 63px;
    width: 264px;
    display: inline-block;
}
.section-six .project-overview-list li span.head:after{
    content: '';
    background-color: #d1d1d1;
    width: 2px;
    height: 16px;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.section-seven{
    background: #1B1B1B;
    background: linear-gradient(90deg,rgba(27, 27, 27, 1) 0%, rgba(87, 87, 87, 1) 100%);
    padding: 74px 0 102px;
    color: #ffffff;
}
.section-seven h2{
    font-family: "yu-mincho-pr6n", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 45px;
    margin-bottom: 35px;
    text-align: center;
    color: #ffffff;
}
.section-seven .section-seven-box-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.section-seven .section-seven-box-container .section-seven-box{
    border-radius: 10px;
    background-color: #182630;
    padding: 54px 35px;
    min-height: 293px;
    background-size: cover;
    background-repeat: no-repeat;
}
.section-seven .section-seven-box-container .section-seven-box.ss-box1{
    background-image: url('../images/section-seven-box1-bg.jpg');
}
.section-seven .section-seven-box-container .section-seven-box.ss-box2{
    background-image: url('../images/section-seven-box2-bg.jpg');
}
.section-seven .section-seven-box-container .section-seven-box.ss-box3{
    background-image: url('../images/section-seven-box3-bg.jpg');
}
.section-seven .section-seven-box-container .section-seven-box h4{
    font-weight: 700;
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 16px;
}
.section-seven .section-seven-box-container .section-seven-box p{
    line-height: 32px;
}

.section-eight{
    background-color: #f7f7f7;
    padding: 100px 0;
    text-align: center;
}
.section-eight h2{
    font-family: "yu-mincho-pr6n", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 45px;
    margin-bottom: 54px;
    text-align: center;
    line-height: 36px;
}
.section-eight .get-started-today-btn{
    text-decoration: none;
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    background-color: #003387;
    border-radius: 15px;
    width: 304px;
    height: 59px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 31px auto 0;
    box-shadow: 3px 5px 5px rgba(0,0,0,.1);
}
.section-eight .get-started-today-btn:hover{
    opacity: .8;
}
.section-eight p {
    line-height: 27px;
}

footer{
    text-align: center;
    font-size: 15px;
}
footer .container-inner p{
    border-top: 1px #c6c6c6 solid;
    padding: 15px 0 20px;
    line-height: 20px;
}
.show-on-mobile{
    display: none;
}
/*********************Margintop***********************/
.mt23{
    margin-top: 23px;
}
.mt25{
    margin-top: 25px;
}
.mt27{
    margin-top: 25px;
}
/*********************************************/
a.floating-box{
    text-decoration: none;
    color: #ffffff;
}
a.floating-box:hover{
    opacity: .8;
}
/************************************************************************************/