:root {
    --red: #FF004D;
    --green: #2DBA46;
    --black: #282828;
    --light-black: #3D3C40;
    --white: #FFFFFF;
    --dark-white: #F9F9F9;
    --light-gray: #DDDDDD;
    --blue: #0D95FE;
  }

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');


@font-face {
    font-family: Catamaran-Light;
    src: url('../fonts/catamaran-font/Catamaran-Light.ttf');
} 

@font-face {
    font-family: Catamaran-Normal;
    src: url('../fonts/catamaran-font/Catamaran-SemiBold.ttf');
} 

@font-face {
    font-family: Catamaran-Bold;
    src: url('../fonts/catamaran-font/Catamaran-Bold.ttf');
} 

@font-face {
    font-family: Catamaran-ExtraBold;
    src: url('../fonts/catamaran-font/Catamaran-ExtraBold.ttf');
} 

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  /* border: 1px solid lightgray; */
}

body {
    background-color: var(--white);
    font-family: 'Catamaran-Light', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizelegibility;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  /* margin: 0;
  padding: 0; */
  font-weight: normal;
}

ol,
ul {
  list-style: none;
  -webkit-padding-start: 0px;
          padding-inline-start: 0px;
}

img {
  max-width: 100%;
  height: auto;
}

.fs-2rem {
    font-size: 2rem;
}

.fs-26px {
    font-size: 26px;
}

.color-white {
    color: #ffffff;
    color: var(--white);
 }

.color-red {
    color: #0D95FE;
    color: var(--blue);
}

.color-blue {
    color: #0D95FE;
    color: var(--blue);
}

.background-white {
    background-color: #fff;
}

.f-bold {
    font-weight: 500;
}

.f-bolder {
    font-weight: 600;
}

.f-light {
    font-family: 'Catamaran-Light', sans-serif;
}

.f-s-26px {
    font-size: 26px;
}

.max-h-img-1 {
    height: 620px;
    max-height: calc(100vh - 120px);
}

.lead-2 {
    font-size: 19.2px;
    font-weight: 400;
    color: var(--light-black);
}

.img-logo-inside-section-2 {
    max-width: 120px;
    margin-right: auto;
    margin-left: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-family: Catamaran-ExtraBold;
}

p {
    font-weight: 700;
}

hr.custom {
    max-width: 100px;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee;
    border-width: 3px;
}

hr.blue {
    border-color: #0D95FE;
}

 @-webkit-keyframes scale-up-center {
    0% {
      -webkit-transform: scale(0.5);
              transform: scale(0.5);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  @keyframes scale-up-center {
    0% {
      -webkit-transform: scale(0.5);
              transform: scale(0.5);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }

  @-webkit-keyframes glowing {
    0% { background-color: #0D95FE; -webkit-box-shadow: 0 0 3px #0D95FE; }
    50% { background-color: #0D95FE; -webkit-box-shadow: 0 0 40px #0D95FE; }
    100% { background-color: #0D95FE; -webkit-box-shadow: 0 0 3px #0D95FE; }
  }
  
  @-moz-keyframes glowing {
    0% { background-color: #0D95FE; -moz-box-shadow: 0 0 3px #0D95FE; }
    50% { background-color: #0D95FE; -moz-box-shadow: 0 0 40px #0D95FE; }
    100% { background-color: #0D95FE; -moz-box-shadow: 0 0 3px #0D95FE; }
  }
  
  @-o-keyframes glowing {
    0% { background-color: #0D95FE; box-shadow: 0 0 3px #0D95FE; }
    50% { background-color: #0D95FE; box-shadow: 0 0 40px #0D95FE; }
    100% { background-color: #0D95FE; box-shadow: 0 0 3px #0D95FE; }
  }
  
  @keyframes glowing {
    0% { background-color: #0D95FE; box-shadow: 0 0 3px #0D95FE; }
    50% { background-color: #0D95FE; box-shadow: 0 0 40px #0D95FE; }
    100% { background-color: #0D95FE; box-shadow: 0 0 3px #0D95FE; }
  }


.se-pre-con > div {
    -webkit-animation: scale-up-center 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite alternate both;
    animation: scale-up-center 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite alternate both;
}


.row-btn-app {
    display: block;
    background-color: #dddddd;
}

.btn-flash {
    background-color: #004A7F;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}

.h-22 {
    height: 22px;
}


footer {
    background-color: #0d94fe;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #0D95FE;
    background-color: var(--blue);
}

a {
    color: #0D95FE;
    color: var(--blue);
    -webkit-transition: color 0.6s ease;
    -o-transition: color 0.6s ease;
    transition: color 0.6s ease;
}

a:hover {
    color: #0b77ca;
}

.text-red {
    color: #0D95FE;
    color: var(--blue);
}

.text-blue {
    color: #0D95FE;
    color: var(--blue);
}

.bg-blue {
    background-color: #0D95FE;
    background-color: var(--blue);
}

.cover-frame {
    background-color:unset;
}

@media(max-width: 1190px) {
    .cover-frame {    
        background-color: rgba(0,0,0,0.75);
    }
}



/* baa */

.baa-container {
    border: 1px solid lightgray;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 900px;
    margin: auto;
}

.baa-container > svg {
    width: 100%;
}

.baa-img {
    width: 100%;
}

.baa-p {
    /* border: 1px solid lightgray; */
    border-bottom: none;
    padding: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    font-size: 16px;
    margin-right: auto;
    margin-left: auto;
}

.baa-p:last-child {
    /* border-bottom: 1px solid lightgray; */
}

.baa-span1 {
    /* border-right: 1px solid var(--light-gray);
    padding: 0 13px 0 8px; */
    border-radius: 50%;
    background-color: #DDDDDD;
    width: 25px;
    height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.baa-span2 {
    /* text-align: center; */
    /* width: 100%; */
    padding: 0 10px;
    color: var(--black);
}


/* Fraola BLOCK */
.fdb-block {
    padding: 30px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    background-color: unset;
}

.baa-h1 {
    /* padding-left: 15px; */
    padding-right: 15px; 
    width: 100%;
    text-align: left;
    font-size: 16px;
    /* font-style: italic; */
}


.lead {
    font-size: 21px;
    font-weight: 400;
    color: var(--light-black);
}

.small-lead {
    border: 1px dashed #dddddd;
    padding: 10px;
    display: block;
    color: #212529;
    cursor: pointer;
    position: relative;
    padding-top: 26px;
}

.small-lead:link,
.small-lead:visited,
.small-lead:hover,
.small-lead:active {
    text-decoration: none;
    color: #212529;
}

.small-lead:hover {
    border: 1px solid #0D95FE;
    border: 1px solid var(--blue);
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.1);
            box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.1);
}

.small-lead:hover::before {
    border: 1px solid #0D95FE;
    border: 1px solid var(--blue);
    color: #0D95FE;
    font-size: 1.2rem;
}

.small-lead::before {
    content: "VS";
    background-color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -24px;
    border: 1px dashed #dddddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #3d3c40;
    font-size: 1rem;
    padding-top: 2px;
    transition: all 0.2s ease-out;
}


.button-big {
    color:#444444;;
}

.button-big:hover {
    color: #0D95FE;
    color: var(--blue);;
}






/* NAVIGATION */

.navbar-nav .nav-link {
    font-weight: 600;
    color: black;
    color: var(--black);
}

.navbar-nav .nav-link.active {
    color: var(--blue);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");}


header .navbar-nav a.nav-link:hover {
        color: #0D95FE;
        color: var(--blue);
}

.btn-standard:hover {
    color: #fff;
    background-color: #0D95FE;
    border-color: #0D95FE;
    background-color: var(--blue);
    border-color: var(--blue);
}

.dropdown-item:focus, .dropdown-item:hover {
    background-color: #0D95FE54;
}

#mainNav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background-color: #ffffff;
}

body:not(#bodyIndex) {
    margin-top: 80px;
}

#bodyIndex #mainNav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

#bodyIndex #mainNav:not(.affix) {
    background-color: rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}


#bodyIndex #mainNav:not(.affix) .navbar-collapse.collapse.show .navbar-nav .nav-link {
    color: black;
    color: var(--black);
}

#bodyIndex #mainNav:not(.affix) .navbar-nav .nav-link {
    color: white;
    color: var(--white);
}


#bodyIndex #mainNav:not(.affix) + .row-btn-app {
    margin-top: 77px;
}



#bodyIndex #mainNav:not(.affix) .navbar-collapse.collapse.show {
    margin-left: -15px;
    margin-right: -15px;
    background-color: var(--white);
}

#bodyIndex #mainNav:not(.affix) .navbar-collapse.collapse.show ul {
    padding-left: 10px;
    padding-right: 10px;
}




#bodyIndex #mainNav:not(.affix) .btn-outline-dark{
    color: #ffffff;
    border-color: var(--blue);
    background-color: var(--blue);
}

#bodyIndex #mainNav.affix {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* HEADINGS AND PARAGRAPHS */

h1 {
    font-size: 42px;
    color: var(--black);
}

.title-p {
    font-size: 24px;
    color: #ffffff;
}


.underline {
    border-top: 4px solid #0D95FE;
    border-top: 4px solid var(--blue);
}
.underline {
    display: inline-block;
    width: 160px;
    max-width: 45%;
    height: 1px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.underline-small {
    border-top: 3px solid #0D95FE;
    border-top: 3px solid var(--blue);
}
.underline-small {
    display: inline-block;
    width: 65%;
    /* max-width: 100%; */
    height: 1px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.index-h {
    font-size: 21px;
}

.index-img {

}

/* PAGES */

.reinventing1 {
    height: 700px;

    background-image: url("../imgs/cover/header-vendor.jpg");
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-size: auto 100%; */

    background-position: right bottom;
}

/* .tutSwitchContainer {

} */

.custom-control-label {
    cursor: pointer;
}


/* CUSTOM SWITCH */

div.custom-control-right {
    padding-right: 40px;
    padding-left: 0;
    margin-left: 0;
    margin-right: 0;
}
div.custom-control-right .custom-control-label::after{
    right: -1.5rem;
    left: auto;
}
div.custom-control-right .custom-control-label::before {
    right: -2.35rem;
    left: auto;
}




.section-main-menu {
    background-image: url("../imgs/cover/1.jpg");
}

.section-main-catalog {
    background-image: url("../imgs/cover/2.jpg");
}

.section-main-loyalty {
    background-image: url("../imgs/cover/3.jpg");
}

.section-main-orders {
    background-image: url("../imgs/cover/4.jpg");
}

.section-main-reserve {
    background-image: url("../imgs/cover/6.jpg");
}

.section-main-biznet {
    background-image: url("../imgs/cover/6.jpg");
}

.section-main-smartcode {
    background-image: url("../imgs/cover/7.jpg");
}

.section-main-price {
    background-image: url("../imgs/cover/6.jpg");
}


/* .c1 {   
    background-image: url("../imgs/cover/invention02.jpg");
}

.token1 {   
    background-image: url("../imgs/cover/token01.jpg");
}

.c3 {   
    background-image: url("../imgs/cover/govermant01.jpg");
}

.c4 {   
    background-image: url("../imgs/cover/trader01.jpg");
}

.payment1 {   
    background-image: url("../imgs/cover/payment01.jpg");
}

.c6 {   
    background-image: url("../imgs/cover/index01.jpg");
} */

.feature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 46px;
}

.feature-icon-container {
    padding-bottom: 17px;
}

.feature-icon {
    border: 2px solid var(--blue);
    height: 75px;
    width: 75px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 20px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    background-color: var(--blue);
    color:white;
    font-size: 25px;
}


.phone-img {
    margin: auto;
    display: block;
}



/* COINS */

.articles-row1 {
    margin-bottom: 15px;
}

#bg1 {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0, 0.2)), to(rgba(0,0,0, 0.6))), url(../imgs/article1.jpeg);
    background-image: -o-linear-gradient(top, rgba(0,0,0, 0.2), rgba(0,0,0, 0.6)), url(../imgs/article1.jpeg);
    background-image: linear-gradient(to bottom, rgba(0,0,0, 0.2), rgba(0,0,0, 0.6)), url(../imgs/article1.jpeg);
}

#bg2 {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0, 0.2)), to(rgba(0,0,0, 0.6))), url(../imgs/article2.jpeg);
    background-image: -o-linear-gradient(top, rgba(0,0,0, 0.2), rgba(0,0,0, 0.6)), url(../imgs/article2.jpeg);
    background-image: linear-gradient(to bottom, rgba(0,0,0, 0.2), rgba(0,0,0, 0.6)), url(../imgs/article2.jpeg);
}
#bg3 {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0, 0.2)), to(rgba(0,0,0, 0.6))), url(../imgs/article3.jpeg);
    background-image: -o-linear-gradient(top, rgba(0,0,0, 0.2), rgba(0,0,0, 0.6)), url(../imgs/article3.jpeg);
    background-image: linear-gradient(to bottom, rgba(0,0,0, 0.2), rgba(0,0,0, 0.6)), url(../imgs/article3.jpeg);
}
#bg4 {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0, 0.2)), to(rgba(0,0,0, 0.6))), url(../imgs/article4.png);
    background-image: -o-linear-gradient(top, rgba(0,0,0, 0.2), rgba(0,0,0, 0.6)), url(../imgs/article4.png);
    background-image: linear-gradient(to bottom, rgba(0,0,0, 0.2), rgba(0,0,0, 0.6)), url(../imgs/article4.png);
}

.bg {
    height: 362px;
    background-position: center;
    border-radius: 1px;
    border: 1px solid rgba(0,0,0, .15);
}

.article-h {
    position: relative;
    font-weight: bold;
    color: white;
    top: 50%;
    left: 15px;
    font-size: 32px;
    text-shadow: 3px 3px 10px black;
    /* margin-bottom: 5px; */
}

.article-p {
    color: white;
    position: relative;
    top: 51%;
    left: 15px;
    font-size: 16px;
    font-weight: 500;
    text-shadow: 3px 3px 10px black;
}

/* SLIDER */

.swiper-container {
    width: 600px;
    height: initial;
    max-width: 100%;
}

/* swipper */
.swiper-button-next, .swiper-button-prev {
    color: var(--blue) !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--blue) !important;
}




/* cPro Token */

.nav-tabs>li:first-child>a {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.nav-tabs>li>a {
    border: 1px solid #e1e1e1;
    border-radius: 0px;
    padding: 18px 0;
    width: 208px;
    text-align: center;
    font-weight: bold;
    color: #282828;
}
.nav-tabs>li>a {
    margin-right: 2px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
}
.nav>li>a {
    position: relative;
    display: block;
    padding: 10px 15px;
}

.nav-tabs>li:first-child>a {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.nav-tabs>li>a {
    border: 1px solid #e1e1e1;
    border-radius: 0px;
    padding: 18px 0;
    width: 208px;
    text-align: center;
    font-weight: bold;
    color: #282828;
}
.nav-tabs>li>a {
    margin-right: 2px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
}
.nav>li>a {
    position: relative;
    display: block;
    padding: 10px 15px;
}

@media all and (min-width: 1200px) {
	.navbar .nav-item .dropdown-menu{ display: none; }
	.navbar .nav-item:hover .dropdown-menu{ display: block; }
    .navbar .nav-item .dropdown-menu{ margin-top:0; }
    .dropdown-toggle::after {display: none; }
}	

@media all and (min-width: 550px) {
    .row-btn-app {
        display: none;
    }
}


/* Open consortium */
.consortium1 {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e5799+0,2989d8+30,207cca+62,7db9e8+100 */
    background: #1e5799; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear,  left top, right top,  from(#1e5799),color-stop(30%, #2989d8),color-stop(62%, #207cca),to(#7db9e8));
    background: -o-linear-gradient(left,  #1e5799 0%,#2989d8 30%,#207cca 62%,#7db9e8 100%);
    background: linear-gradient(to right,  #1e5799 0%,#2989d8 30%,#207cca 62%,#7db9e8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=1 ); /* IE6-9 */
    background-image: url("../imgs/background-metal-silver.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}



/* SOCIAL */


.social {
    padding: 30px 0;
}

.list-social {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}



/* FOOTER */

footer {
    margin-top: 30px;
}

footer a {
    color: #ffffff;
    position: relative;
    bottom: 0;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

footer a:hover {
    color:#f9f9f9;
}


.social a:hover {
    color:#f9f9f9;
    bottom: 5px;
}

.p-footer-title {
    font-weight: 600;
    letter-spacing: 0.06em;
}




.working-img {
    max-width: 650px;
    display: block;
    margin: auto;
    margin-bottom: 15px;
}




/* Index - WIDGETS */

.grid-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0px 1fr 0px 1fr 0px 1fr 0px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    /* grid-template-rows: 1fr 1fr 1fr; */
    gap: 0px 0px;
        grid-template-areas:
      ". . . . .";
}

.grid-container > div {
      /* padding: 3px; */
      margin: 2px;
      border: 1px solid gray;
}


.navbar-brand {
    max-width: 50px;
}

.nav-pills .nav-link {
    color: black;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color:var(--blue);   
}

.nav-widgets {
    margin-left: auto;
}





@media (max-width:992px) {
    .grid-container {
        display: -ms-grid;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        /* grid-template-rows: 1fr 1fr 1fr; */
        gap: 0px 0px;
        grid-template-areas: ". . .";
    }
 }

 @media (max-width:576px) {
    .grid-container {
        display: -ms-grid;
        display: grid;
        grid-template-columns: 1fr;
        /* grid-template-rows: 1fr 1fr 1fr; */
        gap: 0px 0px;
        grid-template-areas: ".";
    }
 }




/* GOVERNMANT */

.lead-ul {
list-style-type: circle;
padding-left: 20px;
}



/* CONTACT */

.btn-send, .newsletter input, .newsletter textarea {
    border: 1px solid var(--light-gray);
}
.newsletter input {
    height: 62px;
    width: 500px;
    padding: 20px;
    background: none;
    color: #333;
    border-radius: 3px;
}
.newsletter textarea {
    height: 100px;
    width: 500px;
    padding: 20px;
    background: none;
    color: #333;
    border-radius: 3px;
}



/* HOME */

.home-h2 {
    font-size: 23px;
    font-weight: 500;
    text-align: center;
    color: #2DBA46;
    color: var(--light-black);
    /* background-color: #ff00002b; */
    padding: 15px;
    border: 1px solid #2DBA46;
    border: 1px solid var(--blue);
}

.home-heading-section {
    height: 370px;
    background-position: center;
}

.text1Of4 {
    line-height: 26px;
}

.figure-img {
    position: relative;
}

.text-on-img {
    content: '';
    width: 140px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    color: #ffffff;
    background-color: rgba(44, 186, 70, 0.5);
    position: absolute;
    height: 30px;
    top: 0;
    left: 0;
}

.text-on-img::after {
    content: '';
    position: absolute;
    top: 0;
    right: -30px;
    width: 0;
    height: 30px;
    border-top: 30px solid rgba(44, 186, 70, 0.5);
    border-right: 30px solid transparent;
  }

  .max-width-tokens {
    max-width: 168px;
  }

  .t-img-index {
    top: 13.6%;
  }

  .t-img-widgets {
    top: 8%;
    left: 2.1%;
  }

@media (max-width:575px) {
    .row-5 {
       display: block;
    }
 }

 .home-heading-section {
    height: 550px;
    background-position: right;
}


 .coming-soon-h {
    color: #2DBA46;
    color: var(--blue);
 }

 .coming-soon-p {
    font-size: 21px;
    color: #7a7a7d;
    max-width: 550px;
    margin: auto;
 }





/* helpers */

.red-text {
    color: #2DBA46 !important;
    color: var(--blue) !important;
}

.txt-align-center {
    text-align: center;
}  


.pr0 {
    padding-right: 0;
}


.pl0 {
    padding-left: 0;
}

.pl17 {
    padding-left: 17px;
}

.pr17 {
    padding-right: 17px;
}

.pv60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.pt60 {
    padding-top: 60px;
}

.pv80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pt80 {
    padding-top: 80px;
}

.mt0 {
    margin-top: 0;
}

.mb0 {
    margin-bottom: 0;
}

.mt10 {
    margin-top: 10px;
}

.mb10 {
    margin-bottom: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mb20 {
    margin-bottom: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mb30 {
    margin-bottom: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mb40 {
    margin-bottom: 40px;
}

.mt80 {
    margin-top: 80px;
}

.mb80 {
    margin-bottom: 80px;
}




@media (max-width:575px) {

    .small-lead > div > div.my-auto {
        padding: 0;
    }

    .fdb-block.pt60 {
        padding-top: 30px;
    }

    div.custom-control-right {
        margin-bottom: 20px;
    }

    .posL9 {
        position: relative;
        left: 9px;
    }
    
    .posR9 {
        position: relative;
        right: 9px;
    }
 }

    .red-table th, .red-table td {
        vertical-align: middle;
        padding: .25rem;
    }

    .green-table th, .green-table td {
        vertical-align: middle;
        padding: .25rem;
    }

    .red-table {
        background-color: #ffbcb6;
        color: black;
    }

    .green-table {
        background-color: #7fe484;
        color: black;
    }

    .t-green2 {
        background-color: #b6ffba;
        color: black;
    }

    .table-bordered-custom td, .table-bordered-custom th {
        border: 1px solid #535353;
    }

    .t-green1 {
        background-color: #24bd09;
        color: #ffffff;
    }

    .t-green3 {
        background-color: #d3f5cf;
    }

    .t-red1 {
        background-color: #2DBA46;
        color: #ffffff;
    }

    .t-red3{
        background-color: #ffd7db;
    }

    .t-gray {
        background-color: #727272;
        color: yellow;
        text-align: center;
    }

    .t-white {
        background-color: #ffffff;
        color: #0D95FE;
    }

    .height-fix2 {
        min-height: 40px;
        height: 40px !important;
    }

 @media (max-width:800px) {

    .height-fix1 {
        min-height: 140px;
        height: 140px !important;
    }


    table {
        font-size: 13.5px;
    }

    .table td, .table th {
        padding: 3px;
    }

    .table td.p0, .table th.p0 {
        padding: 0px;
    }

    td.rotate {
        /* Something you can count on */
        height: 140px;
        white-space: nowrap;
        vertical-align: middle;
    }
    
    th.rotate > div {
        transform: 
        /* Magic Numbers */
        translate(0, 51px)
        /* 45 is really 360 - 45 */
        rotate(-90deg);
        width: 30px;
    }
    th.rotate > div > span {
        /* border-bottom: 1px solid #ccc; */
        padding: 5px 10px;
    }

    td.rotate {
        /* Something you can count on */
        height: 140px;
        white-space: nowrap;
        vertical-align: middle;
    }
    
    td.rotate > div {
        transform: 
        /* Magic Numbers */
        translate(0, 51px)
        /* 45 is really 360 - 45 */
        rotate(-90deg);
        width: 30px;
    }
    td.rotate > div > span {
        /* border-bottom: 1px solid #ccc; */
        padding: 5px 10px;
    }

    .last-table {
        width: 90% !important;
        font-size: 13.5px;
    }
}


.small-yellow-container {
    max-width: 358px;
    width: 90%;
    margin: auto;
    text-align: center;
    /* background-color: yellow;
    border: 1px solid gray; */
}

.small-yellow-container > div {
    padding: 6px 0;
}

.small-green-container {
    max-width: 600px;
    width: 90%;
    margin: auto;
    text-align: center;
    background-color: green;
    border: 1px solid gray;
}

.small-green-container > div {
    padding: 12px 5px;
}

.bb1sg {
    border-bottom: 1px solid gray;
}

.last-table {
    max-width: 600px;
    width: 90%;
    margin: auto;
    margin-top: 17px;
    background-color: whitesmoke;
}

.bg-yellow {
    background-color: yellow;
}

.yellow-highlight-box {
    background-color: yellow;
    padding: 4px 6px;
}

.family-tokens-span {
    border-bottom: 1px solid gray;
    display: inline-block;
    margin-bottom: 11px;
    padding-bottom: 10px;
}

.text1Of4 h3 {
    font-size: 21px;
}

.underline2 {
    display: inline-block;
    width: 86px;
    max-width: 45%;
    height: 1px;
    margin-top: 16px;
    margin-bottom: 16px;
    border-top: 3px solid #2DBA46;
    border-top: 3px solid var(--blue);
}

.blog-header {
    height: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-size: auto 100%; */
    background-position: center top;
}

.stable_tokens_blog {
    background-image: url("/imgs/news/stableTokens/header.jpg");
}

.cpro_token_blog {
    background-image: url("/imgs/cover/token01.jpg");
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
    padding-top: 74%;
    position: relative;
}

.news-image-placeholder::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 74%;
    background-color: var(--light-gray);
    background-size: cover;
    border: 1px solid lightgray;
    background-position: center;
}

.news-st4-img::after {
    background-image: url("/imgs/news/stableTokens/4.jpg");
}

.news-st3-img::after {
    background-image: url("/imgs/news/stableTokens/3.jpeg");
}

.news-st2-img::after {
    background-image: url("/imgs/news/stableTokens/2.jpg");
}

.news-st1-img::after {
    background-image: url("/imgs/news/stableTokens/1.jpg");
}

.a0-img::after {
    background-image: url("/imgs/news/stableTokens/a0.jpeg");
}

.a2-img::after {
    background-image: url("/imgs/news/stableTokens/a2.jpeg");
}

.a3-img::after {
    background-image: url("/imgs/news/stableTokens/a3.jpg");
}

.a4-img::after {
    background-image: url("/imgs/news/stableTokens/a4.jpg");
}

.a5-img::after {
    background-image: url("/imgs/news/stableTokens/a5.jpeg");
}

.a6-img::after {
    background-image: url("/imgs/news/stableTokens/a6.jpeg");
}

.b0-img::after {
    background-image: url("/imgs/news/cpro/0.jpeg");
}

.b1-img::after {
    background-image: url("/imgs/news/cpro/1.png");
}

.b2-img::after {
    background-image: url("/imgs/news/cpro/2.png");
}

.b3-img::after {
    background-image: url("/imgs/news/cpro/3.jpg");
}

.b4-img::after {
    background-image: url("/imgs/news/cpro/4.jpeg");
}

.c0-img::after {
    background-image: url("/imgs/news/evolution/0.jpg");
}

.c1-img::after {
    background-image: url("/imgs/news/evolution/1.jpeg");
}

.c2-img::after {
    background-image: url("/imgs/news/evolution/2.png");
}

.c3-img::after {
    background-image: url("/imgs/news/evolution/3.jpeg");
}

.c4-img::after {
    background-image: url("/imgs/news/evolution/4.png");
}

.c5-img::after {
    background-image: url("/imgs/news/evolution/5.png");
}

.d0-img::after {
    background-image: url("/imgs/news/reviews/0.jpg");
}

.bg-blog-gray {
    background-color: #eeeeee;
}

.blog-p {
    font-size: 18px;
}

.item-p {
    margin-left: 5px;
    padding-left: 12px;
    position: relative;
}

.item-p::before {
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    background-color: rgb(255, 126, 126);
    position: absolute;
}

.blog-h3 {
    font-size: 21px;
}

.blog-img {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 7px;
}

.other-news {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 7px;
    display: block;
}

a.other-news {
    color: rgb(0, 0, 0)
}

/* MARQUEE */

.marquee {
    width: 100%;
    overflow: hidden;
    /* border-bottom: 1px solid #ccc; */
    background: var(--blue);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    /* margin-top: -8px;
    margin-bottom: 5px; */
    padding: 5px 0;
    letter-spacing: 2px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased !important;
    -moz-font-smoothing: antialiased !important;
    text-rendering: optimizelegibility !important;
}

/* unvisited link */
.marquee a:link {
    color: white;
    text-decoration: none;
}

/* visited link */
.marquee a:visited {
    color: white;
    text-decoration: none;
}

/* mouse over link */
.marquee a:hover {
    color: white;
    text-decoration: none;
}

/* selected link */
.marquee a:active {
    color: white;
    text-decoration: none;
}

/* MARQUEE END*/


.h3-rules {
    font-size: 19.2px;
}

.btn-blue {
    background-color: #0d94fe;
    color: #ffffff;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 69px;
    min-width: 125px;
}

.btn-green {
    background-color: #2DBA46;
    color: #ffffff;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 69px;
    min-width: 165px;
    font-size: 21px;
}

a.btn-green:hover {
    background-color: #1ea837;
    color: #ffffff;
}

.img-first-section {
    width: 850px;
}

/* BLOG */

.blog-holder {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #c5c5c5;
    transition: all 0.4s ease;
}

.blog-holder:hover {
    transform: translateY(-3px);
}

.blog-holder-part-1 {
    padding: 4px;
    text-align: center;
    /* object-fit: cover; */
    display: flex;
    justify-content: center;
    align-content: center;
}

.blog-holder-part-2 {
    background-color: #f8f8f8;
    padding: 25px 15px;
}

a.blog-holder-row {
    color: var(--light-black);
    text-decoration: none;
}

.blog-wrapper {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

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

.center-flex-sb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.bg-light-blue {
    background-color: #CAECFF;
}


.img-blog-frame {
    padding: 5px;
    border-radius: 5px;
    background-color: #ffffff;
}

a.row-a {
    text-decoration: none;
}

a.row-a:hover {
    /* transform: translateY(-3px); */
    outline: 1px solid var(--light-gray);
}

.flyer-text-holder-1 {
    padding: 25px;
    font-size: 21px;
    background-color: red;
    background-color: var(--red);
    border-radius: 15px;
    color: #ffffff;
}

.flyer-text-holder {
    padding: 25px;
    font-size: 21px;
    border-radius: 15px;
}

.flyer-text-holder-2 {
    padding: 25px;
    font-size: 21px;
    border: 2px solid var(--blue);
    border-radius: 15px;
}

.flyer-text-holder-3 {
    padding: 25px;
    font-size: 21px;
    font-weight: 400;
}

.check-list {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
}

.check-list > span {
    font-weight: 500;
}

.img-pixelated {
    image-rendering: pixelated;
}


.b-holder {
    border-radius: 10px;
}

.bg-blog-green {
    background-color: #E3EDA2;
}
.bg-blog-blue {
    background-color: #9CD8F6;
}
.bg-blog-pink {
    background-color: #F5CBE0;
}
.bg-blog-yellow {
    background-color: #FBE9B4;
}