<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/********** Template CSS **********/
:root {
    --primary: #0a7075;
    --secondary: #999999;
    --light: #f0f0f0;
    --dark: #091414;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 99;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--light);
    font-weight: 500;
    outline: none;
}

.nav-link:focus {
    color: var(--light) !important;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary) !important;
}


/*** Header ***/
.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -80px;
    right: -80px;
    border: 80px solid;
    transform: rotate(45deg);
    opacity: 1;
    transition: .5s;
}

.service-item.bg-white::after {
    border-color: transparent transparent var(--light) transparent;
}

.service-item.bg-light::after {
    border-color: transparent transparent #FFFFFF transparent;
}

.service-item:hover::after {
    opacity: 0;
}


/*** Roadmap ***/
.roadmap-carousel {
    position: relative;
}

.roadmap-carousel::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    top: 20px;
    left: 0;
    border-top: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item .roadmap-point {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 6px;
    left: 50%;
    margin-left: -15px;
    background: #FFFFFF;
    border: 2px solid var(--primary);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-carousel .roadmap-item .roadmap-point span {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--primary);
}

.roadmap-carousel .roadmap-item {
    position: relative;
    padding-top: 150px;
    text-align: center;
}

.roadmap-carousel .roadmap-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 115px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-right: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 111px;
    left: 50%;
    margin-left: -7px;
    transform: rotate(45deg);
    background: var(--primary);
}

.roadmap-carousel .owl-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.roadmap-carousel .owl-nav .owl-prev,
.roadmap-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.roadmap-carousel .owl-nav .owl-prev:hover,
.roadmap-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: var(--primary);
    border: 1px solid var(--primary);
}

.footer .btn.btn-square:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(17, 17, 17, .1);
}

.footer .copyright a {
    color: var(--primary);
}

.footer .copyright a:hover {
    color: var(--light);
}

.thorchain-img {
    opacity: 0.5;
    margin: 0 auto;
    display: flex;
    width: 490px;
    height: 500px;
    position: relative;

    .spin-anim-anti-clockwise {
        animation: spin-anti 10s linear infinite;
    }

    .spin-anim-clockwise {
        animation: spin 10s linear infinite;
    }

    .thorchain-swirl-centerpiece {
        width: 180px;
        height: 180px;
    }

    .liquidity-circle {
        width: 420px;
        height: 420px;
    }

    .centered {
        position: absolute;
    }

    .thorchain-swirl {
        width: 300px;
        height: 300px;
    }
}

.logo-decentral {
    width: 300px;
}

.text-primary {
    color: var(--primary) !important
}

.dropdown-item {
    background-color: var(--dark);
    color: var(--light) !important
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--primary) !important;
    background-color: var(--dark);
}

.btn-primary {
    color: var(--light);
    background-color: transparent;
    border-color:
        var(--primary);
}

.btn-primary:focus,
.btn-primary:hover {
    color: #000;
    background-color: var(--primary);
    border-color:
        var(--primary);
}

.bg-dark {
    background-color: var(--dark) !important
}

.img-app {
     width: 50%;
     border-radius:
         10px;
     border:
         #0a7075 2px solid;
 }

 .framer-1vcyz2b {
     flex: none;
     height: 398px;
     left: calc(25.00000000000001% - 1066px / 2);
     overflow: visible;
     position: absolute;
     /* top: -198px; */
     width: 1066px;
     z-index: 1;
 }
 .framer-8rjsk4 {
     -webkit-filter: blur(24.5px);
     background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, var(--token-d8314751-3109-4e71-b0e5-25619a148f21, #00ffb2) 0%, rgba(0, 202, 141, .4000000059604645) 100%);
     border-radius: 100%;
     filter: blur(24.5px);
     flex: none;
     height: 29px;
     left: 3px;
     mix-blend-mode: lighten;
     opacity: .3;
     position: absolute;
     /* top: 182px; */
     width: 1059px;
 }
 .framer-ffes65 {
     -webkit-filter: blur(40.5px);
     background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, var(--token-d8314751-3109-4e71-b0e5-25619a148f21, #00ffb2) 0%, rgba(0, 202, 141, .4000000059604645) 100%);
     border-radius: 100%;
     filter: blur(40.5px);
     flex: none;
     height: 17px;
     left: 193px;
     mix-blend-mode: lighten;
     opacity: .8;
     position: absolute;
     /* top: 188px; */
     width: 679px;
 }
 .framer-1efgymg {
     -webkit-filter: blur(7px);
     background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, #ffffff 0%, rgba(255, 255, 255, .4000000059604645) 100%);
     border-radius: 100%;
     filter: blur(7px);
     flex: none;
     height: 17px;
     left: calc(50.046904315197% - 645px / 2);
     mix-blend-mode: lighten;
     opacity: .2;
     position: absolute;
     /* top: 189px; */
     width: 645px;
 }
 .framer-1r1clni {
     -webkit-filter: blur(12px);
     background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, #ffffff 0%, rgba(255, 255, 255, .4000000059604645) 100%);
     border-radius: 100%;
     filter: blur(12px);
     flex: none;
     height: 5px;
     left: calc(50.046904315197% - 463px / 2);
     mix-blend-mode: lighten;
     opacity: .8;
     position: absolute;
     /* top: 195px; */
     width: 463px;
 }
 .framer-1ro5wqn {
     -webkit-filter: blur(0px);
     background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, #ffffff 0%, rgba(199, 255, 238, 0) 100%);
     border-radius: 100%;
     filter: blur(0px);
     flex: none;
     height: 2px;
     left: calc(49.968729502264594% - 647.3333129882812px / 2);
     mix-blend-mode: lighten;
     position: absolute;
     /* top: 197px; */
     width: 647px;
 }

.glow-shadow-green {
    box-shadow:
        1px 1px 0 #0a7075,
        0 0 10px 5px #407c80;
    transition: 0.5s ease-out;
}
.custom-shadow {
    filter: drop-shadow(0 0 0.75rem #0a7075);
}

@keyframes spin {
    100% {
        transform: rotate(1turn);
    }
}

@keyframes spin-anti {
    100% {
        transform: rotate(-1turn);
    }
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }

    .framer-1vcyz2b {
        left: calc(50.00000000000002% - 533px / 2);
        width: 533px;
    }

    .thorchain-img{
        width: calc(490px * 0.6);
        height: calc(500px * 0.6);

        .thorchain-swirl-centerpiece {
                width: calc(180px * 0.6);
                height: calc(180px * 0.6);
        }
    
        .liquidity-circle {
            width: calc(420px * 0.6);
            height: calc(420px * 0.6);
        }

        .thorchain-swirl {
            width: calc(300px * 0.6);
            height: calc(300px * 0.6);
        }
    }

    .logo-decentral{
        width: 180px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}</pre></body></html>