body {
    font-family: 'Instrument Sans', sans-serif;
    background-color: #F4F8F9;
    color: #C2F6F4;
}

header {
    position: absolute;
    width: 100%;
}

.heroimgbox {
    width: 100%;
    height: 400px;
    background-image: url('/honorprime/assets/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 30px;
    background-color: #0E3F3D;
}


/* Header */
.main-header {
    padding: 50px;
    color: white;
    width: 100%;
    z-index: 1000;
}

.logo {
    font-weight: bold;
    font-size: 22px;
    color: white;
    text-decoration: none;
}


/* Mobile Toggle */
.mobile-toggle {
    width: 30px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    height: 3px;
    background: white;
    margin: 6px 0;
    transition: 0.4s;
}

/* Slide Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    background: #111;
    transition: 0.4s ease;
    z-index: 1100;
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mobile-nav {
    list-style: none;
    padding: 0;
}

.mobile-nav li {
    margin-bottom: 10px;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px 0;
}

/* Submenu */
.submenu {
    display: none;
    padding-left: 15px;
}

.has-submenu.active .submenu {
    display: block;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    display: none;
    z-index: 1050;
}

.menu-overlay.active {
    display: block;
}

/* Close button */
.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: white;
}

.main-header a {
    color: #C2F6F4;
    font-weight: 500;
    font-size: 18px;
}

.main-header a.active {
    color: #427D7A;
}

.main-header a:hover {
    color: #427D7A;
}

/* Desktop dropdown: readable text on white background */
.main-header .nav-link:focus,
.main-header .nav-link:hover {
    color: #427D7A;
}

.main-header .dropdown-menu {
    background: #fff;
}
.main-header .dropdown-menu .dropdown-item {
    color: #0E3F3D;
}
.main-header .dropdown-menu .dropdown-item:hover {
    color: #427D7A;
    background: rgba(194, 246, 244, 0.2);
}

.main-header button {
    background: #FFFFFF;
    color: #0E3F3D;
    border: none;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;

}

.main-header button:hover {
    background: linear-gradient(45deg, #C2F6F4, #0E3F3D);
    color: #0E3F3D;
}

.button {
    display: inline-block;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;

}

.button:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 10rem;
    z-index: -2;
}

.button:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #C2F6F4;
    transition: all 0.3s;
    border-radius: 10rem;
    z-index: -1;
}

.button:hover {
    color: #fff;
}

.button:hover:before {
    width: 100%;
}

.heroimgbox {
    margin-top: 20px;
    border-radius: 40px;
    background-image: url(../img/hero.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    width: 100%;
    align-items: flex-end;
    justify-content: space-between;
    position: relative; 
}
.haeroimgbox::before {
    position: absolute;
    top: 2%;
    bottom: 1%;
    left: 1%;
    right: 1%;
    content: "";
    width: 98%;
    height: 96%;
    border-radius: 40px;
    border: 1px solid #C2F6F433;
    filter: blur(5px);
    background: url(../img/hero.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.haeroimgbox::after {
    position: absolute;
    top: 2%;
    bottom: 1%;
    left: 1%;
    right: 1%;
    content: "";
    width: 98%;
    height: 96%;
    border-radius: 40px;
    border: 1px solid #C2F6F433;
    filter: blur(0);
    z-index: 1;
}

.textbox {
    position: relative;
    z-index: 5;
    display: flex;
    width: 100%;
    align-items: flex-end;
    justify-content: space-between;
    padding: 70px;
    position: relative;
}

.heroimgbox h1 {
    font-size: 60px;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(90deg, #ffffff, #C2FFFC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.heroimgbox a.btn-primary {
    border: 1px solid #C2FFFC88;
    background: none;
    color: #ffffff88;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    padding: 5px 25px 5px 5px;
    display: flex;
    text-align: left;
    line-height: 20px;
    transition: all 1000ms cubic-bezier(0.075, 0.82, 0.165, 1) !important;
}

@media (max-width: 991px) {
    .heroimgbox a.btn-primary {
        display: none !important;
    }
}

.heroimgbox a.btn-primary span {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 20px;
}

.heroimgbox a.btn-primary:hover {
    background: linear-gradient(-45deg, #C2F6F4 0%, rgba(14, 63, 61, 0.8) 100%);
    border: 1px solid #0E3F3D;
    color: #0E3F3D;
    padding-right: 50px;
    transition: all 1000ms cubic-bezier(0.075, 0.82, 0.165, 1) !important;

}

.heroimgbox a.btn-primary:hover img {
    transform: rotate(-45deg);
}

* {
    transition: 400ms all cubic-bezier(0.075, 0.82, 0.165, 1) !important;
}

.footer {
    background: #151B1F;
    padding-top: 250px;
    border-radius: 40px 40px 0 0;
    margin-top: -225px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer h3 {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 50px;
}

.footer ul li a {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: none;
    display: block; 
    margin-right: 20px !important;
    margin-left: 0 !important;
}

.footer ul li a:hover {
    color: #C2F6F4;
}

.copyright a {
    color: #ffffff;
    text-decoration: none;
}

.formbox {
    background-color: #0E3F3D;
    background-image: url(/honorprime/assets/img/speak-bg.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    border-radius: 20px;
    padding: 70px 50px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.formbox h2 {
    font-size: 32px;
    color: #FFFFFF;
}

.formbox p {
    font-size: 18px;
    color: #FFFFFF80;
}

.formbox form input {
    border: 1px solid #538F8D;
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    background: none !important;
    color: #538F8D !important;

}

::placeholder {
    color: #538F8D !important;
}

.formbox form textarea {
    border: 1px solid #538F8D;
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    background: none !important;
    color: #538F8D !important;
}

.formbox form button {
    background: none !important;
    color: #C2F6F4;
    border: 2px solid #C2F6F4;
    padding: 10px 30px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 13px;
    margin-top: 20px;
}

.formbox form button:hover,
.formbox form button:focus {
    background: #C2F6F4 !important;
    color: #0E3F3D !important;
    border: 2px solid #0E3F3D;

}

.border-radius-40 {
    border-radius: 40px;
}

.smallheading {
    color: #33B8B1;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.bigheading {
    color: #012725;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.mainbtn {
    background: #F0F5F7;
    color: #02B3AA;
    border: 1px solid #F0F5F7;
    border-radius: 100px;
    padding: 10px 30px;
    font-weight: 500;
    font-size: 16px;
    animation: pulse 2s infinite
}

.mainbtn:hover,
.mainbtn:focus {
    background: #02B3AA;
    color: #F0F5F7;
    border: 1px solid #02B3AA;
    transform: scale(1.1);
    box-shadow: 0 20px 15px #EEF4F5;
}

.mainbtn-rv {
    background: #ffffff;
    color: #02B3AA !important;
    border: 1px solid #F0F5F7;
    border-radius: 100px;
    padding: 10px 30px;
    font-weight: 500;
    font-size: 16px;

}

.mainbtn-rv:hover,
.mainbtn-rv:focus {
    background: #02B3AA;
    color: #ffffff !important;
    border: 1px solid #02B3AA;
    transform: scale(1.1);
    box-shadow: 0 20px 15px #EEF4F5;

}

.boxtext img {
    width: 50px;
    height: 50px;
}

.boxtext h3 {
    color: #012725;
    font-size: 19px;
    font-weight: 600;
    margin-top: 20px;
}

.boxtext p {
    color: #7C7C7C;
    font-size: 14px;
    font-weight: 400;
    margin-top: 20px;
}

.signboxtext {
    padding: 50px;
    border-radius: 20px;
    border-style: solid !important;
    border-color: #DFE0E0 !important;
    border-width: 1px !important;
}

.signboxtext img {
    width: 75px;
    height: 75px;
}

.signboxtext h3 {
    color: #012725;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 20px;
}

.signboxtext h4 {
    color: #ADAFB1;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

.signboxtext p {
    color: #7C7C7C;
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
}

.signboxtext:hover {
    background: #ffffff;
    color: #012725;
    transform: scale(1.1);
}

.signboxtext:hover h3,
.signboxtext:hover h4,
.signboxtext:hover p {
    color: #012725
}

.tlb {
    border-width: 0 1px 1px 0px !important;
}

.trb {
    border-width: 0 0px 1px 1px !important;
}

.tb {
    border-width: 0 0px 1px 0px !important;
}

.blb {
    border-width: 1px 1px 0px 0px !important;
}

.brb {
    border-width: 1px 0px 0px 1px !important;
}

.bb {
    border-width: 1px 0px 0px 0px !important;
}

/* ===== Crypto / Instruments section – HonorPrime theme ===== */
#crypto .smallheading { color: #33B8B1; }
#crypto .bigheading { color: #012725; }

.crypto-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 1rem;
}
.crypto-sidebar {
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.crypto-category-btn {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #012725;
    background: #F0F5F7;
    border: 1px solid #DFE0E0;
    border-radius: 100px;
    padding: 14px 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
}
.crypto-category-btn:hover {
    background: #e8eeef;
    border-color: #02B3AA;
    color: #02B3AA;
}
.crypto-category-btn.active {
    background: #02B3AA;
    border-color: #02B3AA;
    color: #fff;
}
.crypto-disclaimer {
    font-size: 11px;
    color: #7C7C7C;
    line-height: 1.4;
    margin: 8px 0 0 0;
}
.crypto-ticker-status {
    font-size: 11px;
    color: #ADAFB1;
    letter-spacing: 0.04em;
    margin-top: 8px;
}
.crypto-ticker-status.live { color: #33B8B1; }
.crypto-cards-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    min-width: 0;
}
.crypto-card {
    background: #fff;
    border: 1px solid #DFE0E0;
    border-top: 2px solid #DFE0E0;
    border-radius: 20px;
    padding: 1.25rem;
    transition: all 0.25s ease;
}
.crypto-card:hover {
    box-shadow: 0 10px 30px rgba(1, 39, 37, 0.08);
    border-color: #33B8B1;
    border-top-color: #33B8B1;
}
.crypto-card.hidden {
    display: none !important;
}
.crypto-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.crypto-icon { flex-shrink: 0; }
.crypto-icon svg { display: block; }
.crypto-info { min-width: 0; }
.crypto-name {
    font-size: 15px;
    font-weight: 600;
    color: #012725;
    margin: 0 0 2px 0;
}
.crypto-pair {
    font-size: 13px;
    color: #ADAFB1;
    margin: 0;
}
.crypto-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
}
.crypto-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.stat-label {
    font-size: 11px;
    color: #ADAFB1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.stat-value {
    font-size: 20px;
    font-weight: 600;
    color: #012725;
}
.stat-value.positive { color: #10B981; }
.stat-value.negative { color: #EF4444; }

@media (max-width: 991px) {
    .crypto-container { flex-direction: column; }
    .crypto-sidebar {
        flex: none;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }
    .crypto-category-btn { flex: 1 1 auto; min-width: 120px; }
    .crypto-cards-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}

.spacer {
    width: 100%;
    height: 50px;
    display: block;
}

.servicebox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background-color: #FFFFFF;
    border-radius: 0;
    ;
    border-bottom: 2px solid #EAEAEA;
}

.servicebox p {
    color: #012725;
    font-size: 22px;
    font-weight: 500;
    margin: 25px 0 0 0;
    width: 75%;
}

.arrowbtn:hover {
    transform: scale(1.1) rotate(45deg);
    filter: hue-rotate(-100deg);
}

.noborder {
    border: none !important
}

.serviceboxtxt a {
    text-decoration: none !important;
}

.serviceboxtxt a:hover h3 {
    transform: scale(0.9);
    transform-origin: left;
}

.serviceboxtxt a h3 {
    font-size: 100px;
    font-weight: 900;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #121212;
    background-size: contain;
    transition: 400ms all cubic-bezier(0.075, 0.82, 0.165, 1) !important;
}

.liquidtext {
    background: url('../img/liquidity-txt.png') 0 0 no-repeat;
}

.hedgetext {
    background: url('../img/hedgefund.png') 0 0 no-repeat;
}

.riskadvisorytext {
    background: url('../img/risk-txt.png') 0 0 no-repeat;
}

.technologytext {
    background: url('../img/tech-txt.png') 0 0 no-repeat;
}

.partnerbox {
    border-radius: 20px;
    border: 1px solid #DFE0E0;
    padding: 30px;
    min-height: 300px;
    display: flex;
    align-self: start;
    justify-content: space-between;
    flex-flow: column;
}

.partnerbox img {
    width: 55px;
    height: 55px;
    transition: all 400ms ease-in-out;
}

.partnerbox h3 {
    color: #012725;
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
}

.border-rt {
    border-width: 1px 1px 0px 0px !important;
}

.border-rb {
    border-width: 0 1px 1px 0px !important;
}

.boxtext:hover img,
.partnerbox:hover img {
    transform: rotateY(180deg) !important;
}

.tabox {
    display: flex;
    position: relative;

}

.taboxbtn {
    cursor: pointer;
    left: 15px;
    position: relative;
    background: #FFFFFF;
    height: 100%;
    border-radius: 20px;
    width: 90%;

}

.taboxbtn h2 {
    color: #012725;
    font-size: 18px;
    font-weight: 400 !important;
    margin: 0;
    padding: 40px;
    position: absolute;
    border-radius: 20px;
    transform: rotate(-90deg);
    bottom: 0;
    left: 0;
    transform-origin: 50px 53px;
    white-space: nowrap;
    min-width: 100%;
}

.taboxtext {
    display: none;
}

.taboxtext.active {
    display: block;
}

.inner-element.active+.taboxbtn h2 {
    background: #20716E;
    color: #EBE9DB;
    border-radius: 20px 20px 0 0;
}

.taboxbtn:hover {
    background: #20716E;
}

.taboxbtn:hover h2 {
    color: #EBE9DB !important;
}













.main {

    display: flex;
    flex-direction: row;
    width: 1200px;
    height: 600px;

}
.footer-disclaimers p{
    font-size: 12px;
    color:#666
}
.textbased{
    display:none;
}

.textbased.show{
    display:block!important;
}
.scrollmore{
    text-decoration: none;
    color:#ffffff;
    font-size: 13px;
}


    .gradient-text, .herofooter{
        z-index: 2;
        position: relative;
    }
.heroimgbox{
    background-color: #0d3a39!important;
    background-image: url(../img/centercircle.png);
    background-position:  center bottom;
    background-repeat: no-repeat; 
    background-size: cover;
}
.heroimgbox:after{
    display: none;
}
.spacer-top{
    margin-top:350px
}
.herofooter{
    position: absolute;
    bottom:50px
}
.circleshade{
  bottom: -40%;
  left: 50.8%;
  transform: translateX(-50%);
  z-index: 0;
  width: 650px;
  height: 650px;
  position: absolute;
  /* position: relative; if you want lines positioned relative to this */
}
.lines{
  border: 1px solid #02B3AA;
  background: none;
  border-radius: 100%;  /* 100% or 50% both work for circles */
  position: absolute;
  top: 37%;
  left: 50%;
  animation: growAndFade 5s linear infinite;
  opacity: 0;
  border-width: 1px 0px 0 0 ;
}
/* Different sizes for each line with spacing */
 
.lines:nth-child(0) {
  width: 500px;
  height: 500px;
  animation-delay: 0s;
}
.lines:nth-child(1) {
  width: 500px;
  height: 500px;
  animation-delay: 1s;
}
 
.lines:nth-child(2) {
  width: 500px;
  height: 500px;
  animation-delay: 2s;
 }
.lines:nth-child(3) {
  width: 500px;
  height: 500px;
  animation-delay: 3s;
 }

.lines:nth-child(4) {
  width: 500px;
  height: 500px;
  animation-delay: 4s;
 }

/* Animation: scale from 0 to 1 and fade in/out */
@keyframes growAndFade {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;

  }
  20% {
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}

.heroimgbox{
    overflow: hidden;
    position: relative;
}


 .matrix-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.line {
  position: absolute;
  top: -100%;
  width: 2px;           /* thin line */
  height: 20px;          /* line length */
  background: #0ff;      /* cyan/teal glow */
  opacity: 0.6;
  border-radius: 1px;
  box-shadow: 0 0 6px #0ff;
}
 
 











/*Device below 1024px, tablet/mobile*/
@media(max-width:1024px) {
    .herofooter{
        display: grid !important;
        bottom: 15px !important;
    }
    .herofooter .space+.col-4{
        order:3;
        margin-top: 30px;
    }
    .heroimgbox{
        padding: 50px !important;
    }
    .lines{top:70%!important
    }
    
.lines{
  width: 150px!important;
  height: 150px!important;
}

    .main {

        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;

    }
}

.column {

    width: 20%;
    transition: width 0.5s;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;

}

.inner-element.active {
    background: #20716E;
    border-left: 1px solid #31928E
}

.column h3 {
    font-size: 24px;
    color: #FFFFFF;
    font-weight: 400;
}

.smalltab .spanbox {
    max-width: 30%;
    margin-right: 30px;

}

.spanbox h4 {
    font-size: 16px !important;
    color: #FFFFFF;
    font-weight: 500;
    margin: 0;
}

.spanbox p {
    font-size: 13px !important;
    color: #FFFFFF88;
    font-weight: 300 !important;
    margin: 0;
}

.inner-element.active h3,
.active .smalltab {
    padding: 30px
}

/*Border Styling for device width below 1024px, Tablet/Mobile*/
@media(max-width:1024px) {

    .column:nth-child(1) {

        border-radius: 10px 10px 0px 0px;

    }

    .column:nth-child(4) {

        border-radius: 0px 0px 10px 10px;
    }
}

/*Desktop Styling*/
@media screen and (min-width: 1025px) {

    /*Clicked column styling*/
    .expanded {

        width: 150% !important;

    }
}

.expanded:after {

    content: '';
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    pointer-events: none;
    display: none;

}

/*Tablet and mobile, below 1025px*/
@media (max-width: 1024px) {

    .column {

        width: 100%;
        transition: height 0.5s;
        height: 120px;

    }

    /*Clicked column styling*/
    .expanded {

        height: 400px !important;

    }
}

/*Inner elements inside column container styling*/
.inner-element {

    opacity: 0;
    transition: opacity 0s;
    z-index: 2;
    padding: 0;
    background: transparent;
    position: absolute;
    left: 100px;
    bottom: 50px
}

.inner-element h2 {

    color: white;
    font-family: rubik;
    font-size: 24px;

}

.inner-element p { 
    color: white; 
    font-size: 16px;
    font-weight: 100;

}

/*Inner elements made visible on clicked column*/
.inner-element.active {

    opacity: 1;
    transition: opacity 0.5s 0.4s;
    padding-bottom: 50px;
    bottom: 0
}

.inner-element.active img {
    width: 100%;
}

.icons {

    position: absolute;
    bottom: 20px;
    left: 18px;
    font-size: 40px;
    padding: 20px;
    background: white;
    z-index: 2;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.vh50 {
    max-height: 50vh;
}

.box {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px
}

.box h3 {
    color: #012725;
    font-size: 18px;
    font-weight: 600;
    margin-top: 0;
}

.box p {
    color: #7C7C7C;
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
}

.centerlogo img {
    width: 100%;
}

.twobox .bigheading {
    font-size: 24px;
    font-weight: 600;
}

.twobox ul {
    list-style: none;
    padding: 0 !important;
}

.twobox li {
    margin: 10px 0;
}

.twobox ul li{
    font-size: 18px;
    color: #012725;
    padding: 20px 0 !important;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #D6D6D6;
    font-weight: 500;
}

.twobox ul li:hover {
    color: #8D8868;
    background: linear-gradient(90deg, #EBE9DB00, #EBE9DB55) no-repeat;
}

.twobox ul li:last-child{
    border-bottom: none;
}

.number1 {
    background: url(../img/one.png) right center no-repeat;
}

.number2 {
    background: url(../img/two.png) right center no-repeat;
}

.number3 {
    background: url(../img/three.png) right center no-repeat;
}

.number4 {
    background: url(../img/four.png) right center no-repeat;
}

#onboarding .partnerbox:hover {
    background-color: #ffffff;
}

.diagramtext {
    position: relative;
}

.partnerbox p {
    color: #7C7C7C;
    font-size: 16px;
    font-weight: 400;
}

.diagram h4 {
    font-size: 18px;
    color: #012725;
}

.diagram p {
    font-size: 12px;
    color: #120725;
}

.diagram {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background-size: cover;
    width: 350px;
    text-align: center;
    position: relative;
}

.diagram:hover {
    transform: scale(1.1);
}

.dbox1 {
    background: url(../img/square1.png) 0 0 no-repeat;
    z-index: 10;
    margin-left: 10px
}

.dbox2 {
    background: url(../img/square2.png) 0 0 no-repeat;
    z-index: 3;
    margin-left: -30px
}

.dbox3 {
    background: url(../img/square3.png) 0 0 no-repeat;
    z-index: 2;
    margin-left: -80px
}

.dbox4 {
    background: url(../img/square4.png) 0 0 no-repeat;
    z-index: 1;
    margin-left: -120px
}

.paratext {
    color: #7C7C7C;
    font-size: 16px;
}

.overviewbox h3 {
    font-size: 20px;
    color: #012725;
    margin-left: 15px;
    padding-right: 50px
}

.overviewbox img {
    width: 48px;
    height: 48px
}

.spacer-col-top {
    margin-top: 200px
}

.textbased * {
    color: #012725
}

.sidenav ul {
    list-style: none;
    padding: 0;
    width: 75%;
}

.sidenav ul li {
    margin: 10px 0;

}

.sidenav ul li a {
    color: #120725;
    text-decoration: none;
    display: block;
    padding: 10px 25px;
    border: 1px solid #D6D6D6;
    border-radius: 100px;
}

.sidenav ul li a.active,
.sidenav ul li a:hover {
    background: #33B8B1;
    color: #EBE9DB;
}

@keyframes premiumPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(47, 118, 111, 0.5);
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 0 20px 10px rgba(47, 118, 111, 0.15);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(47, 118, 111, 0);
    }
}

.premium-pulse {
    animation: premiumPulse 2s ease-in-out infinite;
}



@keyframes updown {
    0% {
        transform: translate(0, 0px);
        box-shadow: 0 0 0 0 rgba(47, 118, 111, 0.5);
    }

    50% {
        transform: translate(0, -20px);
        box-shadow: 0 0 20px 10px rgba(47, 118, 111, 0.15);
    }

    100% {
        transform: translate(0,0px);
        box-shadow: 0 0 0 0 rgba(47, 118, 111, 0);
    }
}

.updown {
    animation: updown 2s ease-in-out infinite;
}



@keyframes expandright {
    0% {

        padding-right: 5px;
    }

    50% {
        padding-right: 50px;
    }

    100% {
        padding-right: 5px;
    }
}


.expand-r {
    animation: expandright 2s ease-in-out infinite;
}

.footer-social a:hover{
    transform: scale(1.1);

}

.video-bg{
position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100vh;
  transform: none;
  pointer-events: none;
  z-index: -1;
  border-radius: 80px;
  padding: 10px;
}
.submenu-toggle{
    background-image: url(/assets/img/chevron-down.svg);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center right;
}


@media (max-width:991px) {
    .formbox {
        background-size: cover;
    }

    .formbox .col-6,
    .footer .col-6,
    .footer .col-2 {
        max-width: 100%;
        width: 100%;
        min-width: 100%;
    }

    .spacer {
        width: 100%;
        height: 50px;
        display: none !important;
    }

    .textbox {
        display: block;
        padding:30px
    }

    .heroimgbox h1 {
        font-size: 26px;
        text-align: center;
        margin-bottom: 20px;
    }
    .heroimgbox a.btn-primary span br{
        display: none;
    }

    .heroimgbox h1 br {
        display: none;
    }
    .bigheading {
    font-size: 20px;
}
#overview .d-flex, #trading .d-flex, #oversight .d-flex, #strategy .d-flex, #investment .d-flex, #onboarding .d-flex, #routing .d-flex, #formbox .d-flex, #partner .d-flex, #services .d-flex, #technology .d-flex, #global .d-flex, #compliance .d-flex{
    display: block!important;
}
.col-8,.col-4,.boxtext, .formbox .col-6, .box{
    max-width: 100%;
    width: 100%;
    text-align: center!important;
}
.signboxtext{
    border: 0 !important;
    padding:20px;
    text-align: center!important;
}
.heroimgbox {
    max-height: 60vh;
}
.container.p-5,.py-5{
    padding: 10px 30px !important;
}
.container.p-5.bg-white{
    padding: 30px 30px !important;
} 
.servicebox {
    padding:0!important;
    text-align: center!important;
    display: block!important;
}
.smallheading, .bigheading, .servicebox p{
    max-width: 100%;
    width: 100%;
    text-align: center!important;
}
.serviceboxtxt a h3 {
    font-size: 50px;
}
.twobox .bigheading{
    font-size: 18px;
}
.twobox ul{
    text-align: center;
}
.partnerbox{
    max-width: 100%;
    width: 100%;
    text-align: center!important;
    display: block;
    border:0!important;
    min-height: inherit;
}
 .formbox .col-6 h2, .formbox p{
 padding:0!important;
    text-align: center!important;
    display: block!important;
 }
 .footer * {
    text-align: center!important;
    display: block!important;
 }
 .footer img {
    margin:0 auto 35px
 }
 .footer span{
    margin:0!important;
 }
 .footer span a{margin:0!important}
 .taboxbtn h2{position: relative; transform: none!important; padding: 10px !important;  text-align: center; border-radius: 0!important;}
 .inner-element, .inner-element.active{position: static; padding:0!important}
 .taboxbtn {border-radius: 0;position: static; width: 100%; }
 .taboxbtn, .column, .expanded{height: inherit!important;}
 .column.expanded .inner-element{ height: inherit!important;padding-top:0px!important}
.smalltab .spanbox{ max-width: 100%; width: 100%; text-align: center!important; margin:0 0 20px!important}
.column h3{max-width: 100%; width: 100%; text-align: center!important; font-size: 18px; padding: 0 20px!important}
 .column .inner-element{height: 0!important;}
 .inner-element.active+.taboxbtn h2 {background: #0E3F3D;}
 .serviceboxtxt a h3{ background-size: cover!important;} 
 .formbox {background-position: top right; background-size: 100% !important;}
 .centerlogo{display: none!important;}
 .diagram{margin:0!important;background-size: 110% 110% !important; background-position: bottom left;height: 250px;width: 100%;}
 .diagram h4 {font-size: 14px;}
 .paratext{text-align: center!important;}
 .overviewbox{max-width: 100%; width: 100%; text-align: center!important; font-size: 18px; padding: 0 20px!important}
 .overviewbox h3{padding:0!important;margin-bottom: 30px;}
 .spacer-col-top{display: none;}
 .sidenav ul{width: 100%;}
 .heroimgbox h1{text-align: center!important;}
 .logo img{max-width: 70%;}
 .main-header .px-4{padding: 0!important;}
 .footer .col-3{max-width: 100%; width: 100%; text-align: center!important;}
     .footer span.footer-social {       margin: 0 auto !important;        display: flex !important;        justify-content: center;    }
     .footer span.footer-social a{margin: 0 10px 35px!important}
     .footer h3{margin:40px 0 10px!important}
}