*, *::before, *::after{
    box-sizing: border-box; /* Set the sizing of an element to include it's border */
}

*{
    margin: 0; /* Set the default margin to 0 */
    padding: 0; /* Set the default padding to 0 */
}

ul[role='list'], ol[role='list']{
    list-style: none; /* Turn off numbered and unordered list decoration */
}

html:focus-within{
    scroll-behavior: smooth; /* Make the scrolling inside of any scrollable element smooth */
}

a:not([class]){
    text-decoration-skip-ink: auto; /* Makes link undelines look better */
}
a {
    text-decoration: none;
    color: inherit;
}

img, picture, svg, video, canvas{
    max-width: 100%; /* Makes it responsive */
    height: auto; /* Makes it responsive */
    vertical-align: middle; /* Makes text next to inline images look better */
    font-style: italic; /* If the images don't load it makes the alt decription look better */
    background-repeat: no-repeat;
    /* The background repeat and size are there if you want to load a picture first like a backroung image that is worse quality while the better quality image loads */
    background-size: cover;
}

input, button, textarea, select{
    font: inherit; /* Makes these elements inherit fonts */
}

/* Turns off animation for people who don't want to see them */
@media (prefers-reduced-motion: reduce){
    html:focus-within {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        transition: none;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body, html{
    height: 100%; /* Makes the body element full screen */
    scroll-behavior: smooth; /* Makes normal scrolling smooth */
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-optical-sizing: auto;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: #3A3A3A;

}

.dark {
    color: #fff;
    overflow: hidden;
}
.align-center {
    text-align: center;
}
h5 {
    color: #22AABC;
}
h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
}
h2 {
    font-size: 38px;
    font-weight: 500;
    line-height: 120%;
}

h2.bold {
    font-size: 38px;
    font-weight: 700;
    line-height: 120%;
    padding-bottom: 32px;
    
    position: relative;
}
h2.bold:after {
    content: "";
    width: 100px;
    height: 2px;
    background: #22AABC;
    position: absolute;
    left: 0;
    bottom: 0;
}
h4 {
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
}
h5 {
    font-size: 22px;
    font-weight: 700;
    line-height: 120%;
    
}
@media screen and (min-width: 768px) {
    h1 {
        font-size: 56px;
        font-weight: 700;
        line-height: 64px;
    }
    h2 {
        font-size: 42px;
        font-weight: 500;
        line-height: 50px;
    }

    h2.bold {
        font-size: 42px;
        font-weight: 700;
        line-height: 50px;
        padding-bottom: 32px;
        
        position: relative;
    }

    h4 {
        font-size: 34px;
        font-weight: 700;
        line-height: 42px;
    }
    h5 {
        font-size: 26px;
        font-weight: 700;
        line-height: 35px;
        
    }
}
.lead-content {
    max-width: 731px;
}
.cordano-ada-side {
    display: flex;
    flex-direction: row;
    gap: 16px;
}
.cordano-ada-side .ada-text {
    padding: 13px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
strong {
    font-weight: 700;
}
.spacer {
    line-height: 0;
    height: 16px;
}
.spacer.large {
    height: 32px;
}
.spacer.small {
    height: 8px;
}
.spacer.medium {
    height: 12px;
}
/* 212 + 212 = 424 */
/* 1920 - 424 = 1496 */
section {
    position: relative;
}
section .wrap {
    margin: 0 auto;
    position: relative;
    width: calc(100% - 60px);
    height: 100%;
}

@media screen and (min-width: 1526px) {
    section .wrap {
        max-width: 1496px;
        margin: 0 auto;
        position: relative;
        width: 100%;
        height: 100%;
    }
}

.row {
    display: block;
}
@media screen and (min-width: 991px) {
    .row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
}


.site-lead {
    min-height: 100vh;
}
.section-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
}
.site-lead .row {
    margin: 20% 0;
}
.site-lead .header {
    margin: 32px 0 0;
}
.site-lead .row .col {
    max-width: 733px;
}


.finance .row .col {
    max-width: 609px;
    padding: 112px 0;
}
.finance .bg-image {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}
.overview .row .col {
    max-width: 609px;
    padding: 112px 0 112px 0;
}
@media screen and (min-width: 700px) {
    .overview .row .col {
        max-width: 609px;
        padding: 112px 0 340px 0;
    }
}

.overview .row .col svg {
    margin-bottom: 32px;
}
.infra {
    padding-top: 112px;
    padding-bottom: 112px;
}
.infra .row {
    display: block;
}
.infra .row .col {
    padding: 0 0 6px 0;
}
.infra .row .col p {
    margin-bottom: 36px;
}
@media screen and (min-width: 1400px) {
    .infra .row {
        display: flex;
    }
    .infra .row .col {
        max-width: 732px;
        /*padding: 112px 0;*/
    }
}
.infra .infra-tables {
    display: block;
    gap: 0 32px;
    left: 0;
    top: 0;
    /*margin-top: -300px;*/
    z-index: 2;
}
.infra .infra-tables .table {
    margin-bottom: 60px;
}
@media screen and (min-width: 700px) {
    .infra .infra-tables {
        display: flex;
    }
    .infra .infra-tables .table {
        margin-bottom: 0;
        margin-top: -200px;
    }
}
.infra .infra-tables .table-header {
    font-size: 18px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.infra .infra-tables .table-header .caption {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}
.infra .infra-tables .table {
    background-color: #fff;
    border-radius: 8px;
    width: 348px;
    padding: 22px 22px 22px 22px;
    max-width: 100%;
    border: 1px solid #31CAE9
}

.infra h2 {
    font-weight: 700;
}
.infra h6 {
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0%;
    color: #006EB1;
}
.infra  .wrap .section-title.width-icon {
    align-items: center;
    
}
.infra .right-text {
    gap: 12px;
    display: flex;
    flex-direction: column;
}
.infra .container .cell {
    background-color: transparent;
    color: #3A3A3A;
}
.infra .container .cell span {
    font-weight: 700;
    color: #006EB1;
}
.infra .container .cell a {
    text-decoration: underline;
    color: #22AABC;
}


.table .table-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 16px;
    border-top: 1px solid #EFEFEF;
    padding: 16px 0;
}
.table .table-row:first-child {
    border-top: none;
}
.infra .table-row .table-col {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}
.infra .table-row .table-col svg {
    margin-top: -3px;
}

.radialProgressBar {
    border-radius: 50%;
    width: 184px;
    height: 184px;
    display: flex;
    background: #ddd;
    margin: 24px auto;

}

.radialProgressBar .overlay {
    border-radius: 50%;
    width: 154px;
    height: 154px;
    margin: auto;
    background: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.radialProgressBar .overlay span{
    display: flex;
    flex-direction: column;
}

.progress-10 {
    background-image: -webkit-linear-gradient(50deg, #D9D9D9 50%, transparent 50%), -webkit-linear-gradient(left, #006EB1 50%, #D9D9D9 50%);
    background-image: linear-gradient(0deg, #D9D9D9 50%, transparent 50%), linear-gradient(180deg, #006EB1 50%, #D9D9D9 50%);
}


.progress .title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 0;

}
.progress .title span {
    font-size: 14px;
    line-height: 18px;
    flex-direction: column;
    display: flex;
}
.progress .title span strong {
    font-size: 16px;
    line-height: 27px;
}


.trading-infos {
    padding: 112px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    font-size: 16px;
    line-height: 22px;
}
.trading-infos h5 {
    color: #ffffff;
    display: flex;
    margin: 0;
    font-size: 26px;
    line-height: 35px;
}
.trading-infos .info-table {
    width: 100%;
    border: 1px solid #31CAE9;
    background-color: #06192A;
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 64px;
}
@media screen and (min-width: 700px) {
    .trading-infos .info-table {
        max-width: 746px;
    }
}
.trading-infos .info-table .info-table-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.trading-infos .info-table .three-column-row {
    border-top: 1px solid #1151A8;
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.trading-infos .info-table .three-column-row .col {
    flex: 0 0 calc(33% - (20px / 3));
    width: 100%;
    padding: 10px 0;
}
.trading-infos .info-table .two-column-row {
    border-top: 1px solid #1151A8;
    display: flex;
    flex-direction: row;
}
.trading-infos .info-table .two-column-row .col {
    flex: 0 0 calc(50%);
    width: 100%;
    padding: 10px 0;
}
.no-border {
    border-top: none !important;
}

a.button {
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    padding: 12px 24px 12px 24px;
    gap: 8px;
    border-radius: 24px;
    background-color: #22AABC;
    color: #000000;
    cursor: pointer;
}
a.button.secondary {
    background-color: transparent;
    border: 1px solid #22AABC;
    color: #22AABC;
}




@keyframes growProgressBar {
    0%, 33% { --pgPercentage: 0; }
    100% { --pgPercentage: var(--value); }
}

@property --pgPercentage {
    syntax: '<number>';
    inherits: false;
    initial-value: 0;
}

div[role="progressbar"] {
    --size: 186px;
    --fg: #006EB1;
    --bg: #def;
    --pgPercentage: var(--value);
    animation: growProgressBar 3s 1 forwards;
    width: var(--size);
    height: var(--size);
    border-radius: 100%;
    display: grid;
    place-items: center;
    margin: 24px auto;
    background:
            radial-gradient(closest-side, white 80%, transparent 0 99.9%, white 0),
            conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0)
    ;
}

.overlay {
    width: 156px;
    height: 156px;
    background-color: #ffffff;
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon-button {
    background: none;
    border: none;
    cursor: pointer;
}
@media screen and (min-width: 768px) {
.hidden-desktop {
    display: none;
}
}
@media screen and (max-width: 768px) {
    .hidden-mobile {
        display: none;
    }

}


.finance-social {
    background-color: #091727;
    background-image: url(dual-imp.svg);
    background-repeat: no-repeat;
    background-position: right;
    padding: 160px 0;
}
.overview {
    padding-top: 240px;
    padding-bottom: 197px;
}
.container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
}
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
    }
}
.wrap {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.wrap .section-title.width-icon {
    flex-direction: row;
    gap: 24px;
}
.wrap .section-title,
.wrap .section-title.width-icon div {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.wrap * {
    margin: 0;
}
.container .cell {
    background-color: #080F20B2;
    border: 1px solid #22AABC;
    border-radius: 12px;
    gap: 16px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    /*max-width: calc(50% - 16px);
    min-width: calc(50% - 16px);*/
    flex: calc(50% - 16px);
}
.container .cell h5 {
    color: #fff;
}

.modal {
    display: none;
}
.modal.active {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(16px);
    background: #091727A3;

}
.modal .modal-inner {
    max-width: 666px;
    border-radius: 8px;
    padding: 48px;
    background-color: #081122;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-height: 90vh;
    box-sizing: border-box;
    color: #D9D9D9;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.modal .modal-inner h2 {
    font-weight: 700;
    font-size: 26px;
    line-height: 35px;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 16px;
    color: #F5F5F5;
}
.modal .modal-inner h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    color: #F5F5F5;
}
.modal .modal-inner p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
}
.modal .modal-inner ul {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 0 20px 0;
    padding: 0 0 0 20px;
}
.modal .modal-inner .grey-info {
    background-color: #9FBDD8;
    display: flex;
    flex-direction: row;
    padding: 8px 12px;
    align-items: center;
    border-radius: 6px;
}
.modal .modal-inner .grey-info .info-icon {
    padding: 6px 8px 6px 0;
    flex: 0 0 24px;
}
.modal .modal-inner .grey-info .info-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    vertical-align: middle;
    color: #000000;

}
.modal .modal-inner .close {
    position: absolute;
    top: 0;
    right: 0;
    margin: 15px 20px;
}


