@font-face {
    font-family: 'Teko';
    font-weight: 300;
    src: url('Teko-Light.ttf');
}

@font-face {
    font-family: 'Teko';
    font-weight: 400;
    src: url('Teko-Regular.ttf');
}

@font-face {
    font-family: 'Teko';
    font-weight: 500;
    src: url('Teko-Medium.ttf');
}

@font-face {
    font-family: 'Teko';
    font-weight: 600;
    src: url('Teko-SemiBold.ttf');
}

@font-face {
    font-family: 'Teko';
    font-weight: 700;
    src: url('Teko-Bold.ttf');
}

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

:root {
    --primary-clr: #FF8503;
    --secondary-clr: #2b3241;
    --green-clr: #D8EE34;
    --linear-bg: linear-gradient(270deg, #00fff0 0%, #D8EE34 100%);
    --card-bg: #292929;
    --orange-clr: #FF8503;
}

body {
    font-family: 'Teko', sans-serif;
    background: #141414;
    color: #fff;
}

html {
    scroll-padding-top: 94px;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #ccc;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-clr);
}

::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

p {
    font-size: 20px;
    font-weight: 500;
    color: rgb(255, 255, 255, 0.6);
}

a,
.nav-link {
    text-decoration: none;
    transition: 0.2s linear;
}

button:focus:not(:focus-visible) {
    box-shadow: none;
}

.primary-btn {
    position: relative;
    /* clip-path: polygon(0 0, 85% 0%, 100% 34%, 100% 100%, 100% 100%, 15% 100%, 0% 72%, 0 0); */
    font-size: 26px;
    line-height: normal;
    padding: 8px 40px;
    border: 1px solid transparent;
    margin-right: 20px;
    font-weight: 700;
    color: #fff;
    background-color: var(--orange-clr);
    border-radius: 10px;
}

.primary-btn:hover {
    background: transparent;
    color: var(--orange-clr);
    border-color: var(--orange-clr);
}

.inner-gap {
    padding: 70px 0;
}

.title-group {
    margin-bottom: 64px;
    text-align: center;
}

.section-title {
    font-size: 60px;
    line-height: 1;
    font-weight: 700;
    color: var(--orange-clr);
    margin-bottom: 28px;
    display: block;
}

.sub-title {
    font-size: 64px;
    line-height: 1.4;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
}

.text-orange {
    color: var(--orange-clr);
}

/* Header */
header {
    background: #000000;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
    padding-block: 15px;
}

.navbar-brand img {
    max-width: 220px;
}

.navbar-collapse {
    flex-grow: 0;
}

.navbar {
    padding-block: 0;
}

.navbar-nav .nav-link {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: 1.3px;
    font-weight: 400;
    padding: 16px 20px;
    color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 16px 20px;

}

.nav-link:focus,
.nav-link:hover,
.nav-link.active {
    color: var(--orange-clr);
}

a.dropdown-item {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 700;
    padding: 10px;
    color: #292929;
}

.toggle-menu-icon {
    width: 24px;
    height: 20px;
    display: inline-block;
    position: relative;
    margin: 0;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.toggle-menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    background: #fff;
}

.toggle-menu-icon span:nth-child(1) {
    top: 2px;
}

.toggle-menu-icon span:nth-child(2),
.toggle-menu-icon span:nth-child(3) {
    top: 10px;
}

.toggle-menu-icon span:nth-child(4) {
    top: 18px;
}

.toggle-menu-icon.open span:nth-child(1) {
    top: 11px;
    width: 0%;
    left: 50%;
}

.toggle-menu-icon.open span:nth-child(2) {
    transform: rotate(45deg);
}

.toggle-menu-icon.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.toggle-menu-icon.open span:nth-child(4) {
    top: 11px;
    width: 0%;
    left: 50%;
}


#splash {
    overflow: hidden;

}

#splash-screen {
    width:100%;
    height:200%;
    position: fixed;
    top: 0;
    left: 0;
    background: url("clouds.webp");
    background-repeat: repeat;
    background-position: 0 0;
    -webkit-animation: scrolling 2s linear infinite;
    -moz-animation: scrolling 2s linear infinite;
    -o-animation: scrolling 2s linear infinite;
    animation: scrolling 2s linear infinite;
    z-index:10000000;
}

@-webkit-keyframes scrolling {
    0%{
        background-position: 0px 0px;
    }
    100%{
        background-position: 0px 1000px;
    }
}

#splash-screen h1, #splash-screen p {
    color:#FFF;
    text-align:center;
    text-shadow:2px 2px 5px   rgba(0,0,0,0.5);
}  

.play {
    position: relative;
    /* clip-path: polygon(0 0, 85% 0%, 100% 34%, 100% 100%, 100% 100%, 15% 100%, 0% 72%, 0 0); */
    font-size: 26px;
    line-height: normal;
    padding: 8px 40px;
    border: 1px solid transparent;
    margin-right: 0px;
    font-weight: 700;
    color: #fff;
    background-color: var(--orange-clr);
    border-radius: 10px;
}

.play:hover {
    background: #292929;
    color: var(--orange-clr);
    border-color: var(--orange-clr);
}



/* Banner */
.banner {
    background: radial-gradient(circle farthest-side at bottom right, #00388d, #3f0092, #0034c4, #39b6ff, #00b36e, #4400ff);
    background-size: 500% 500%;
    -webkit-animation: gradientbg 20s ease infinite;
    -moz-animation: gradientbg 20s ease infinite;
    animation-name: gradientbg;
    animation-duration: 20s;
    animation-timing-function: ease-in-out;
    animation-delay: 1s ;
    animation-iteration-count: infinite;
    animation-direction: normal  ;
    animation-fill-mode: ;
	/*min-height: calc(100vh - 2rem);*/
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: space-evenly;
	overflow: hidden;
	position: relative; 
}

.banner::before, 
.banner::after {
	content: "";
	width: 70vmax;
	height: 70vmax;
	position: absolute;
	background: rgba(255, 255, 255, 0.07);
	left: -20vmin;
	top: -20vmin;
	animation: morph 15s linear infinite alternate, spin 20s linear infinite;
	z-index: 1;
	will-change: border-radius, transform;
	transform-origin: 55% 55%;
	pointer-events: none; 
}
	
.banner::after {
    width: 70vmin;
    height: 70vmin;
    left: auto;
    right: -10vmin;
    top: auto;
    bottom: 0;
    animation: morph 10s linear infinite alternate, spin 26s linear infinite reverse;
    transform-origin: 20% 20%; 
}

@-webkit-keyframes gradientbg {
    0%{background-position:0% 7%}
    50%{background-position:100% 94%}
    100%{background-position:0% 7%}
}
@-moz-keyframes gradientbg {
    0%{background-position:0% 7%}
    50%{background-position:100% 94%}
    100%{background-position:0% 7%}
}
@keyframes gradientbg {
    0%{background-position:0% 7%}
    50%{background-position:100% 94%}
    100%{background-position:0% 7%}
}


@keyframes morph {
  0% {
    border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%; }
  100% {
    border-radius: 40% 60%; } 
}

@keyframes spin {
  to {
    transform: rotate(1turn); 
  } 
}
	.st0{display:none;}
	.st1{display:inline;}
	.st2{opacity:0.29;}
	.st3{fill:#FFFFFF;}
	.st4{clip-path:url(#SVGID_2_);fill:#FFFFFF;}
	.st5{clip-path:url(#SVGID_4_);}
	.st6{clip-path:url(#SVGID_6_);}
	.st7{clip-path:url(#SVGID_8_);}
	.st8{clip-path:url(#SVGID_10_);}
	.st9{fill:none;}
	.st10{clip-path:url(#SVGID_12_);}
	.st11{opacity:0.7;}
	.st12{clip-path:url(#SVGID_14_);}
	.st13{opacity:0.2;}
	.st14{clip-path:url(#SVGID_16_);}
	.st15{opacity:0.3;fill:#FFFFFF;enable-background:new    ;
}

.banner-content {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.banner-content h2 {
    font-size: 48px;
    font-weight: 500;
    color: var(--orange-clr);
    margin-bottom: 12px;
}

.banner-content h1 {
    font-size: 96px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.banner-content h1 .small {
    font-size: 75px;
    display: inline-block;
}

.banner-content h1 .orange {
    color: var(--orange-clr);
}

.banner-content p {
    font-size: 30px;
    color: #fff;
}

.contract-card {
    background-color: #292929;
    padding: 40px 30px;
    border-radius: 20px;
    transition: 0.2s linear;
    height: 100%;
}

.contract-card:hover {
    transform: translateY(-5px);
}

.contract-card h3 {
    font-size: 50px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 20px;
    color: var(--orange-clr);
    text-align: center;
}

.contract-card h2 {
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: 10px;
    word-wrap: break-word;
    color: #ffff;
    text-align: center;
}


.contract-card p {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    justify-content: center;
}

.contract-right {
    text-align: right;
}


.about-content p {
    font-size: 30px;
    font-weight: 300;
    line-height: 1.3;
    color: #fff;
    letter-spacing: 0.9px;
    margin-bottom: 65px;
}

.about-card {
    padding: 40px 24px;
    border-radius: 20px;
    background: var(--card-bg);
    box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.04);
    height: 100%;
    text-align: center;
    transition: 0.2s linear;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card-img {
    width: 80px;
    height: 80px;
    margin-inline: auto;
    position: relative;
}

.about-card-img img {
    position: relative;
}

.about-card-img::before {
    content: '';
    position: absolute;
    height: 56px;
    width: 56px;
    left: -8px;
    bottom: -8px;
    background: var(--orange-clr);
    filter: blur(26.5px);
}

.about-card a {
    display: block;
    color: var(--orange-clr);
    margin-block: 20px 10px;
    font-size: 30px;
    font-weight: 500;
    line-height: normal;
}

.about-card p {
    font-size: 21px;
    font-weight: 400;
    color: rgb(255, 255, 255, 0.6);
} 

/*  */

.dobenomics {
    height: 100%;
    overflow: hidden;
    background: #000;
    perspective: 340px;
}

.stars {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 2px;
    box-shadow: 1137px 404px #e0e0e0, 989px 0px #fcfcfc, -111px 337px #fcfcfc, 274px -447px #c4c4c4, 867px -408px #e8e8e8, 965px 118px #ededed, -228px -66px #cccccc, -962px 466px #f2f2f2, -631px 349px #c7c7c7, 713px 288px #c7c7c7, -816px -135px #cccccc, 1440px 407px #e6e6e6, 1308px -106px #e3e3e3, -1334px -429px #cfcfcf, -1018px 11px #e8e8e8, 1185px -63px #f0f0f0, -373px -252px #e6e6e6, -960px -78px white, -1128px 95px #cfcfcf, 1277px -397px #e3e3e3, -782px -189px #dbdbdb, 1318px -169px #e6e6e6, 1177px 301px #fcfcfc, -593px 52px #c4c4c4, -1403px -334px #fcfcfc, 111px -337px #d6d6d6, 978px -86px #fcfcfc, 502px 212px #f7f7f7, -1124px 52px #d9d9d9, -10px 328px #e8e8e8, 1418px 385px #e3e3e3, 755px 392px #f7f7f7, -142px -210px #dedede, -731px -154px #c9c9c9, 662px 380px #d1d1d1, -80px 407px #e3e3e3, 1416px 191px #f7f7f7, 290px 385px #e8e8e8, 106px -136px #d9d9d9, -237px 290px #e8e8e8, -1322px -445px white, -200px -106px #e6e6e6, 1125px -475px #cccccc, 1059px -462px #cccccc, -439px -440px #cccccc, -1413px 160px #e8e8e8, -822px -476px #c2c2c2, -167px 351px #ebebeb, 1117px 3px #d1d1d1, 164px 157px #fafafa, -1240px 10px #fcfcfc, 990px -216px #d1d1d1, -655px 191px #e8e8e8, 614px 197px #d1d1d1, -801px -467px #d4d4d4, 1035px 188px #ebebeb, 308px -374px whitesmoke, 444px 4px #e0e0e0, 666px 244px #c7c7c7, -1289px 349px #d9d9d9, 1408px 223px #c2c2c2, 497px -246px #e0e0e0, -482px 458px #c9c9c9, 1112px -351px #e6e6e6, 56px 312px #dedede, 1336px 38px #fafafa, -1369px -417px #e0e0e0, 1202px 315px #d6d6d6, -977px 329px #c9c9c9, 1181px -251px #d6d6d6, -717px -246px #e6e6e6, -1203px 196px whitesmoke, -1128px 196px #c4c4c4, -741px 38px whitesmoke, -993px -173px whitesmoke, -1246px 176px #cccccc, -691px -382px #e0e0e0, 415px -195px #fcfcfc, -807px 78px whitesmoke, 501px -389px whitesmoke, 804px -224px #d6d6d6, 431px 115px #f0f0f0, 338px -324px #dedede, 374px 436px #e3e3e3, 611px -179px #d4d4d4, 37px -434px #d4d4d4, 1389px -148px #d9d9d9, 505px -25px #f7f7f7, 17px 366px #fcfcfc, 99px 435px #e6e6e6, 1290px -438px #cfcfcf, -1318px -114px #dedede, 461px 216px #e3e3e3, -953px -143px #e8e8e8, 408px 402px #f2f2f2, 910px 85px #d1d1d1, -602px -202px #fafafa, 1132px 425px #ededed, 1350px 135px #f0f0f0, -585px -13px #f0f0f0, -1091px -97px whitesmoke, 1193px 219px #f0f0f0, -720px 127px #c9c9c9, 1252px 450px #fcfcfc, -1304px 297px #d1d1d1, 174px 13px #e3e3e3, -1053px -297px #e3e3e3, 307px 440px #e3e3e3, 486px -239px #ebebeb, 744px -82px #dedede, 1329px -91px #ededed, 206px 336px #e0e0e0, 468px -392px #c9c9c9, 1090px -335px #ebebeb, 702px 148px #e0e0e0, -496px 431px #f0f0f0, -570px 69px #c7c7c7, 1119px 334px #d9d9d9, 993px 129px #c9c9c9, -292px -432px whitesmoke, 688px 34px #d9d9d9, -1112px 259px #ebebeb, -1415px -105px #ededed, -55px 293px #fafafa, 551px 291px whitesmoke, -745px -334px #d9d9d9, -925px 144px #fafafa, 3px 97px #f0f0f0, 1460px 452px #f0f0f0, -823px -311px white, 1306px 346px #dedede, -1051px -44px #ededed, -313px 121px #c4c4c4, 1308px 165px #d9d9d9, 1231px 394px #d4d4d4, -1000px 337px #f2f2f2, -144px -200px #d4d4d4, -692px -171px #e3e3e3, -1450px -290px #f7f7f7, 963px -128px #d4d4d4, 18px -324px #e0e0e0, -124px -334px #e0e0e0, 339px 70px #d6d6d6, 682px 163px #dedede, -1145px -388px #d6d6d6, 99px -119px #c4c4c4, -587px 438px #fafafa, -158px 305px #c4c4c4, 834px 185px #dbdbdb, 674px -74px #ededed, -257px -301px #e0e0e0, 1274px -20px #ebebeb, 1487px -460px #fafafa, 213px 338px #d4d4d4, 84px -295px #ededed, -304px -72px #d6d6d6, -120px -187px #f0f0f0, -978px -478px #dbdbdb, -676px -248px #d6d6d6, 641px -206px #c4c4c4, 677px 125px #ededed, -956px -476px #c2c2c2, 1139px 469px whitesmoke, -841px 273px #e6e6e6, -710px -59px #e8e8e8, 719px 234px #dedede, -1063px -367px #e6e6e6, 566px 303px white, 163px 412px #fcfcfc, 822px 229px #d4d4d4, 183px 432px white, -1394px -445px #fafafa, 728px 106px #d4d4d4, 1274px 438px #c4c4c4, -130px -96px #f0f0f0, -865px 333px #c2c2c2, 985px 208px #dbdbdb, 554px -429px #d1d1d1, -503px 396px #c9c9c9, -1351px -420px #d1d1d1, 482px 271px #d4d4d4, 195px 372px #f7f7f7, -849px -258px #e6e6e6, 975px -193px #f0f0f0, 1238px 177px #f0f0f0, 1251px -374px #d1d1d1, -1439px 149px #cccccc, 408px -407px #e8e8e8, 376px 39px #e0e0e0, 1490px 466px #dbdbdb, -547px 283px #dedede, -389px 85px whitesmoke, -1410px -425px #ededed, -901px 35px #cccccc, 713px -341px #c9c9c9, -827px -220px #e0e0e0, 267px 112px #c4c4c4, 63px 165px #e3e3e3, 705px 146px #fafafa, 19px 452px #c4c4c4, -913px -354px #ededed, -584px -374px #cccccc, 55px 191px #d9d9d9, 412px -334px #d4d4d4, -366px 45px #f2f2f2, -679px 353px #cccccc, 217px -420px #e3e3e3, 1496px 291px #d9d9d9, 1311px 311px #dedede, -404px -296px #ededed, -840px -400px #e6e6e6, 1083px -476px #cfcfcf, 502px 121px #f0f0f0, 351px -416px #ebebeb, -186px -403px #fafafa, 1372px -468px whitesmoke, -1443px -335px #e6e6e6, 1000px -23px #dbdbdb, 1188px -173px #fcfcfc, -823px -205px #e3e3e3, -248px 217px #ededed, 1331px 274px #e0e0e0, -741px -79px #fcfcfc, -1084px -16px whitesmoke, -1267px -85px #cfcfcf, 425px -142px white, -864px 152px #fafafa, -586px 271px #cfcfcf, 873px -61px #e0e0e0, 0px -295px #c7c7c7, -1034px -446px whitesmoke, 1328px 338px white, -764px 434px #d4d4d4, 800px -473px #cccccc, 1431px 25px #f7f7f7, 265px -252px #e8e8e8, -1101px -286px white, -607px 349px #e6e6e6, -48px 154px #c4c4c4, -313px 374px #fcfcfc, -115px -334px #c7c7c7, 800px 325px #dedede, -891px -89px #e8e8e8, 1020px -394px #f7f7f7, 1448px -417px #e6e6e6, 628px 267px #fafafa, 192px -406px #cfcfcf, -292px -150px #c2c2c2, -1210px 394px #fafafa, -995px -247px #e8e8e8, 560px 267px #f0f0f0, 908px 186px #d6d6d6, 173px -145px #f7f7f7, 599px 93px #cccccc, -1343px -182px #fafafa, -1162px -43px #d9d9d9, 61px 4px #d1d1d1, 541px 425px #f7f7f7, 1406px -121px whitesmoke, -1098px 393px #c2c2c2, 976px 109px #d9d9d9, 1500px 328px #ebebeb, -1064px 20px #d6d6d6, 626px -424px #d4d4d4, 347px -220px #cfcfcf, -831px 407px #e0e0e0, 895px 107px #d1d1d1, 934px -138px #ebebeb, 668px -358px #f2f2f2, 454px 6px #d1d1d1, -179px 28px #e3e3e3, 1225px -118px #d6d6d6, -738px 253px #f7f7f7, 775px 141px #f7f7f7, -521px 17px #f2f2f2, 1136px -427px #fafafa, 1298px -302px #dbdbdb, 199px 277px #c2c2c2, 788px -200px #cccccc, 1291px 39px #ededed, 325px -362px #d1d1d1, -1459px 428px #d6d6d6, -1041px -271px #d9d9d9, 930px 56px #f0f0f0, -159px -447px #d1d1d1, 41px 444px #e8e8e8, -657px -94px #e6e6e6, -339px 351px #e8e8e8, 1317px 249px #dbdbdb, 253px -237px #f0f0f0, 322px -100px whitesmoke, 1372px 83px #c2c2c2, -184px -154px #c4c4c4, -681px 475px white, 427px -90px #fcfcfc, -705px -33px #c9c9c9, -580px -122px #c9c9c9, -261px 13px #d4d4d4, -984px -136px #d6d6d6, -505px 250px #cccccc, 1186px -50px #c7c7c7, -1040px 203px #e8e8e8, -1343px 231px #fafafa, 1115px 120px #cccccc, -905px -414px #ededed, -507px -434px #f2f2f2, -1075px -174px #c4c4c4, 708px 456px #c7c7c7, 1021px 473px #dbdbdb, -718px 46px #dbdbdb, 838px 393px #d9d9d9, 1449px 250px #dedede, -11px 326px #ebebeb, -1001px 101px #f0f0f0, 956px 396px #e3e3e3, -735px -259px #cccccc, -598px -162px #d4d4d4, 590px -292px #cfcfcf, -1424px 43px #c2c2c2, -415px 448px #c9c9c9, 578px -29px #dbdbdb, 511px 270px #e8e8e8, -773px 104px #f7f7f7, -950px 56px #c2c2c2, -1090px 65px #e0e0e0, 355px 73px #c7c7c7, 175px 346px #d1d1d1, 1406px -55px whitesmoke, 802px -229px #f2f2f2, -287px 24px #c9c9c9, -1437px 71px #f2f2f2, -293px -180px #ebebeb, 592px 294px #cfcfcf, -1470px -326px #cccccc, 839px -333px #e3e3e3, 42px -155px #ebebeb, -796px 426px #e0e0e0, -1037px -452px #fcfcfc, -1158px -369px #ededed, 154px -278px #f2f2f2, 29px -426px #cfcfcf, -490px 116px #dbdbdb, 127px -340px #cfcfcf, 647px -70px #f7f7f7, 925px -296px #e3e3e3, 1035px -142px #fafafa, -1469px -469px #f2f2f2, 1432px 6px #d1d1d1, 799px -452px #e8e8e8, 1210px 64px #fcfcfc, -508px 307px #e3e3e3;
    animation: fly 3s linear infinite;
    transform-style: preserve-3d;
    z-index: -1
  }
  .stars:before, .stars:after {
    content: "";
    position: absolute;
    width: inherit;
    height: inherit;
    box-shadow: inherit;
  }
  .stars:before {
    transform: translateZ(-300px);
    animation: fade1 3s linear infinite;
  }
  .stars:after {
    transform: translateZ(-600px);
    animation: fade2 3s linear infinite;
  }
  
  @keyframes fly {
    from {
      transform: translateZ(0px);
    }
    to {
      transform: translateZ(300px);
    }
  }
  @keyframes fade1 {
    from {
      opacity: .5;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fade2 {
    from {
      opacity: 0;
    }
    to {
      opacity: .5;
    }
}


.float{
    animation: up-down 1.4s infinite ease-in-out alternate;
  }
  
  @keyframes up-down{
    from{
      transform: translatey(0px);
    }
    to{
      transform: translatey(-30px);
    }
  }

/*  */
.title-group p {
    font-size: 30px;
    color: rgb(255, 255, 255, 0.6);
    font-weight: 300;
    letter-spacing: 0.9px;
}

.roadmap-wrapper {
    position: relative;
}

.roadmap-wrapper::before {
    content: '';
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0px;
    right: 0;
    width: 8px;
    height: 100%;
    background: #fff;
    opacity: 0.6;
    z-index: -1;
}

.roadmap-step {
    position: relative;
    padding-block: 55px;
    align-items: baseline;
}

.roadmap-step::before {
    content: '';
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0px;
    right: 0;
    width: 24px;
    height: 24px;
    border: 4px solid var(--orange-clr);
    border-radius: 50%;
    background: #fff;
    z-index: -1;
}

.roadmap-step-first::before {
    top: 0;
}

.roadmap-step-last::before {
    bottom: 0;
}


.roadmap-card {
    border-radius: 30px;
    background: #292929;
    padding-block: 40px;
    position: relative;
}

.roadmap-card::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 30px;
    height: 30px;
    width: 30px;
    background: var(--orange-clr);
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
}

.roadmap-step-second .roadmap-card::before {
    right: auto;
    left: 100%;
    transform: rotateY(180deg);
}

.roadmap-step-second::before {
    display: none;
}

.roadmap-step-second .phase-title {
    text-align: left;
}

.roadmap-card ul {
    list-style: disc;
    padding-left: 40px;
}

.roadmap-card ul li {
    font-size: 30px;
    line-height: normal;
    font-weight: 300;
    color: rgb(255, 255, 255, 0.6);
    letter-spacing: 1.2px;
}

.social-media a:hover img {
    filter: invert(0%) sepia(100%) saturate(100%) brightness(200%) contrast(100%);
    transform: translateY(-5px);

}

.phase-title {
    font-size: 60px;
    color: #fff;
    font-weight: 600;
    text-align: right;
}

.memes {
	display: flex;
	justify-content: center;
	align-items: center;
}


i {
	position: relative;
	display: block;
	width: 800px;
	height: 800px;
    overflow: hidden;
	border-radius: 5px;
}

i:before, i:after {
	content: '⥪';
	position: absolute;
	top: 50%;
	left: 1rem;
	z-index: 2;
	width: 2rem;
	height: 2rem;
	background: #FF8503;
	color: white;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
}

i:after {
	content: '⥭';
	left: auto;
	right: 1rem;
}

/* I haven't found a way for IE and Edge to let me style inputs that way */
input {
	-moz-appearance: none;
	     appearance: none;
	-ms-appearance: none;
	-webkit-appearance: none;
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 5px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	transform: translateX(100%);
	transition: transform ease-in-out 400ms;
	z-index: 1;
}

input:focus {
	outline: none;
}

input:after {
	content: attr(title);
	position: absolute;
	top: 1rem;
	left: 1rem;
	background-color: rgba(0,0,0,0.4);
	color: white;
	padding: .5rem;
	font-size: 1rem;
	border-radius: 5px;
}

input:not(checked):before {
	content: '';
	position: absolute;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	top: 50%;
	left: calc(-100% + 1rem);
}

input:checked:before {
	display: none;
	left: 1rem;
}

input:checked {
	transform: translateX(0);
	pointer-event: none;
	z-index: 0;
	box-shadow: -5px 10px 20px -15px rgba(0,0,0,1);
}

input:checked + input:before {
	left: -3rem;
}

input:checked + input ~ input:before {
	display: none;
}

.footer-title {
    font-size: 60px;
    color: #fff;
    font-weight: 700;
}

.footer-title span {
    color: var(--orange-clr);
}

.footer-top {
    background: #000000;
    padding-block: 100px 60px;
    text-align: center;
}

.footer-link a {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}

.footer-bottom p {
    padding-block: 8px;
    text-align: center;
    color: #fff;
}





@media (min-width: 1650px) {
    .container {
        max-width: 1464px;
    }

    .inner-gap {
        padding: 50px 0;
    }

    .roadmap-card ul li {
        font-size: 40px;
        letter-spacing: 1.2px;
    }

}

@media (max-width: 1400px) {

    .section-title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .sub-title {
        font-size: 54px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 12px;
    }

    .banner {
        padding-block: 160px 100px;
    }

     .banner-content h1 .small {
        font-size: 60px;
    }

    .banner-content h2 {
        font-size: 38px;
    }

    .banner-content p {
        font-size: 24px;
    }

    .banner-content h1 {
        font-size: 75px;
        margin-bottom: 4px;
    }

    .counter-card h3 {
        font-size: 54px;
    }

    .about-content p {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .about-card a {
        font-size: 26px;
    }

    .about-card p {
        font-size: 18px;
    }

    .social-media a:hover img {
        transform: translateY(-5px);
    }

    .dobenomics-content h2 .large {
        font-size: 70px;
    }

    .dobenomics-content img {
        height: 240px;
    }

}

@media (max-width: 1199px) {
    .inner-gap {
        padding: 30px 0;
    }

    .primary-btn {
        font-size: 20px;
        padding: 10px 30px;
        border-radius: 6px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .sub-title {
        font-size: 54px;
        margin-bottom: 18px;
    }

    .navbar-brand img {
        max-width: 180px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 20px;
    }

    .banner {
        padding-block: 160px 100px;
    }


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


    .counter-card h3 {
        font-size: 44px;
    }

    .counter-card {
        height: 220px;
        width: 220px;
    }

    .dobenomics-content h2 .large {
        font-size: 57px;
    }

    .roadmap-card ul li {
        font-size: 25px;
    }

    .phase-title {
        font-size: 40px;
    }

    .footer-title {
        font-size: 50px;
    }

    .footer-top {
        padding-block: 60px 40px;
    }

    .footer-link a {
        font-size: 22px;
    }

}

@media (max-width: 991px) {
    .primary-btn {
        font-size: 16px;
        padding: 10px 24px;
    }

    .title-group p {
        font-size: 24px;
        letter-spacing: 0.2px;
    }

    .section-title {
        font-size: 24px;
    }

    #navbar-right .navbar-nav .nav-link {
        padding: 12px 20px;
    }

    .navbar-nav {
        padding: 10px;
    }

    .dropdown-menu {
        padding: .5rem 15px;
        background-color: transparent;
        border: 0;
    }

    a.dropdown-item {
        font-weight: 500;
        color: #fff;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        background: #1F2029;
        width: 100%;
    }

    .navbar-brand img {
        max-width: 180px;
    }

    .banner {
        padding-block: 140px 100px;
    }

    .contract-card h3 {
        font-size: 35px;
        margin-bottom: 10px;
    }

    .contract-card h2 {
        font-size: 35px;
        margin-bottom: 10px;
    }


    .counter .revolution-card h3 {
        font-size: 50px;
    }

    .roadmap-wrapper::before {
        margin: 0;
        left: 44px;
    }

    .phase-img-wrapper {
        order: 0;
    }

    .phase-title-wrapper {
        order: 1;
    }

    .phase-list {
        order: 2;
    }

    .roadmap-step-first::before {
        top: -5px;
        left: 47px;
        margin: 0;
    }

    .roadmap-step-last::before {
        bottom: -5px;
        left: 47px;
        margin: 0;
    }

    .roadmap-step-second .roadmap-card::before {
        right: 100%;
        left: auto;
        transform: rotateY(0);
    }

    .phase-title {
        font-size: 2.25rem;
        line-height: 2.5rem;
        text-align: start;
    }

    .contract-card p {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .about-right {
        text-align: center;
    }

    .revolution-img {
        height: 400px;
    }

    .dobenomics-img {
        text-align: center;
    }

    .dobenomics-img img {
        width: 80%;
    }

    .roadmap-step {
        padding-block: 25px;
    }

    .social-media img {
        height: 60px;
    }


    .about-card-img::before {
        height: 36px;
        width: 36px;
        filter: blur(13.5px);
    }

    .about-card-img {
        width: 70px;
        height: 70px;
    }

    .about-card-img img {
        height: 60px;
    }

    i {
   
        width: 400px;
        height: 400px;
    }

}

@media (max-width: 767px) {
    .inner-gap {
        padding: 20px 0;
    }

    .title-group {
        margin-bottom: 14px;
    }

    p {
        font-size: 18px;
    }

    .banner {
        padding-block: 100px 80px;
        background-position: center;
    }


    .contract-card h2 {
        font-size: 25px;
        margin-bottom: 0px;
    }


    .revolution-img {
        height: 300px;
        object-fit: contain;
    }

    .revolution-card {
        padding: 25px;
    }

    .revolution-card h3 {
        font-size: 22px;
    }

    .about-wrapper {
        margin-bottom: 50px;
    }

    .about .service-card,
    .service-card {
        padding: 20px;
    }

    .phase-number {
        padding-inline: 35px 20px;
    }

    .phase-number span {
        font-size: 30px;
    }

    .social-media a img {
        height: 60px;
    }


    .roadmap-wrapper::before {
        left: 30px;
    }

    .roadmap-step-first::before {
        left: 33px;
    }

    .roadmap-step-last::before {
        left: 33px;
    }

    .phase-title {
        font-size: 26px;
    }

    .roadmap-card {
        border-radius: 16px;
        padding-block: 30px;
    }

    .roadmap-card ul {
        padding-inline: 30px 10px;
    }

    .roadmap-card ul li {
        font-size: 20px;
        letter-spacing: 0.2px;
    }

    .about-content {
        text-align: center;
    }

    .dobenomics-content {
        text-align: center;
    }


    .footer-title {
        font-size: 40px;
    }

    .footer-link a {
        font-size: 20px;
    }
}

@media (max-width: 576px) {

    .inner-gap {
        padding: 10px 0;
    }

    p {
        font-size: 16px;
    }

    .primary-btn {
        font-size: 15px;
        padding: 8px 16px;
    }

    .sub-title {
        font-size: 36px;
        text-align: center;
    }

    .section-title {
        font-size: 20px;
        text-align: center;
    }

    .navbar-brand img {
        max-width: 120px;
    }

    .banner {
        padding-block: 80px 50px;
    }

    .banner-content h2 {
        font-size: 34px;
    }

    .banner-content h1 {
        font-size: 64px;
    }

   .banner-content h1 span.small {
        font-size: 54px;
    }

    .dobenomics-content p {
        font-size: 18px;
        margin-bottom: 30px;
        text-align: center;
    }

    .contract-card h3 {
        font-size: 25px;
        margin-bottom: 0px;
    }

    .contract-card h2 {
        font-size: 16px;
        margin-bottom: 0px;
    }

    .contract-card {
        padding: 20px;
        border-radius: 10px;
    }

    .contract-card p {
        font-size: 18px;
    }

    .counter-card {
        height: 200px;
        width: 200px;
    }

    .about-card {
        padding: 25px 20px;
        border-radius: 10px;
    }

    .dobenomics-content h2 .large {
        font-size: 40px;
    }

    .dobenomics-img img {
        width: 100%;
    }

    .dobenomics-content img {
        height: 180px;
    }

    .about-card-img {
        width: 50px;
        height: 50px;
    }

    .about-card-img img {
        height: 50px;
    }

    .revolution-img {
        max-width: 300px;
        width: 100%;
    }

    .title-group p {
        font-size: 18px;
        letter-spacing: 0;
    }

    .revolution,
    .counter {
        padding-block: 40px;
    }

    .revolution-card {
        padding: 25px;
    }

    .revolution-card h3 {
        font-size: 22px;
    }

    .roadmap-img {
        width: 30px;
    }

    .counter .revolution-card h3 {
        font-size: 40px;
    }

    .counter .revolution-card p {
        font-size: 20px;
    }

    .about {
        padding-block: 40px;
    }

    .about-wrapper {
        margin-bottom: 30px;
    }

    .service-card {
        flex-direction: column;
    }

    .dobenomics {
        padding-block: 40px;
    }

    .roadmap {
        padding-block: 40px;
    }

    .phase-number {
        padding-inline: 0;
        padding-block: 80px 0px;
        clip-path: polygon(51% 65%, 100% 50%, 100% 77%, 52% 100%, 0 81%, 0 51%);
        margin-bottom: 10px;
    }

    .footer-top {
        padding-block: 40px 20px;
    }

    .footer-link .nav-link {
        font-size: 16px;
        padding-inline: 6px;
    }

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

    .roadmap-wrapper::before {
        left: 12px;
        width: 4px;
    }

    .roadmap-step {
        padding-block: 30px;
    }

    .phase-title {
        font-size: 16px;
    }

    .roadmap-card::before {
        top: 34px;
        height: 20px;
        width: 20px;
    }

    .roadmap-step-first::before {
        left: 17px;
        width: 18px;
        height: 18px;
    }

    .roadmap-step-last::before {
        left: 17px;
        width: 18px;
        height: 18px;
    }

    .footer-title {
        font-size: 30px;
    }

    .about-content {
        text-align: center;
    }
    
}    

    
@media (max-width: 400px) {

    .inner-gap {
        padding: 5px 0;
    }

    i {
        width: 300px;
        height: 300px;
    }
}