/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap');

@font-face {
    font-family: 'TT Norms';
    src: url(../src/TTNorms-Regular.otf);
    font-display: swap;
}


/* Global */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

html {
    text-rendering: optimizelegibility;
    font-family: 'Ubuntu', sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
}

ul {
    padding: 0;
    margin: 0;
}

.App {
    position: relative;
    overflow: hidden;
}

#root {
    width: 100%;
    height: 100%;
}

::selection {
    background: #B73AE6;
    color: #14143C;
}

* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}


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

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
}

p,
button,
a {
    font-family: 'TT Norms', sans-serif !important;
}


input[type="submit"],
button {
    cursor: pointer;
    background: none;
}

input[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

textarea {
    overflow: auto;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input,
button {
    margin: 0;
    padding: 0;
    border: 0;
}

div,
input,
textarea,
select,
button,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
a:focus {
    outline: none;
}

ul,
ol {
    list-style-type: none;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-zoom: none;
}

body {
    background-color: #14143C;
    font-family: 'Ubuntu', sans-serif !important;
    position: relative;
    color: #fff;
    min-width: 375px;
    font-size: 18px;
    line-height: 1.77778;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;

}

p {
    color: #fff;
    font-size: 16px;
}


a:hover {
    text-decoration: none;
    color: inherit;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-transition: all .5s;
    transition: all .5s;
    -o-transition: all .5s;
}

a,
button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button:focus {
    outline: none;
}

.container {
    padding: 0 40px;
    position: relative;
}

.blockBody {
    overflow-x: hidden;
}

.app {
    width: 100%;
    overflow-x: hidden;
}

/* Header CSS */

.navMob {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #14143C8a;
    z-index: 99999;
    opacity: 1;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -webkit-transition: all .5s;
    transition: all .5s;
    -o-transition: all .5s;
}

.headerTop {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0;
    align-self: center;
    width: 100%;
}

.navMenu {
    display: flex;
    font-size: 15px;
    font-feature-settings: "salt";
    align-items: center;
}

.nav-link.active {
    color: #c45f96;
}

.brand img {
    padding-top: 5px;
}

.nav-link {
    position: relative;
    padding: 0;
    margin: .5rem 1rem;
    font-family: 'Ubuntu', sans-serif !important;
    font-size: 13px;
}

.nav-link:hover {
    color: #ffffff8a;
}

.nav-link:last-child {
    margin-right: 0;
}

.navButton {
    height: 15px;
    width: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navButton span {
    display: none;
    height: 1px;
    width: 100%;
    background-color: #fff;
    -webkit-transition: all .5s;
    transition: all .5s;
    -o-transition: all .5s;
}

.navButton span:nth-child(2) {
    margin-left: 5px;
}

.activeHeader .navButton span:nth-child(2) {
    opacity: 0;
}

.activeHeader .navButton span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 6px);
    transform-origin: bottom;
}

.activeHeader .navButton span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, 0px);
    transform-origin: bottom;
}




/* Fin Hero Home */

/* Modulos */
.modu {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 60px 0;
}

.whiteMod {
    background-color: #fff;
}

.modu70 {
    width: 70%;
}

.fullH {
    min-height: 900px;
    height: 100%;
}


/* Globals */
html {
    scroll-padding-top: 100px;
}

h1 {
    font-size: 84px;
    line-height: 100%;
    margin-bottom: 20px;
}

h1 span {
    display: block;
}

h4 {
    font-size: 18px;
    line-height: 148%;
    margin-bottom: 10px;
}

h2 {
    font-size: 65px;
    line-height: 100%;
    margin-bottom: 20px;
}

h5 {
    font-size: 15px;
    color: #ffffffb8;
    margin-bottom: 10px;
}
.mobOnly {
    display: none;
}
.pcOnly {
    display: block;
}
.textWhite {
    color: #fff;
}

.textDark {
    color: #14143C;
}

.textGray {
    color: #C4C4C4;
}

.textGrayP {
    color: #353535;
}

.textColor {
    color: #A03CE1;
}

.textCenter {
    text-align: center !important;
}

.textLeft {
    text-align: left !important;
}
.textRight {
    text-align: right !important;
}

.flexCol {
    display: flex;
    flex-direction: column;
}

.flexRow {
    display: flex;
    flex-direction: row;
}

.columnsBlock {
    justify-content: space-between;
    margin-top: 30px;
}

.flexWrap {
    flex-wrap: wrap;
}

.flexCenter {
    align-items: center;
    justify-content: center;
}

.boton {
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 13px;
    width: fit-content;
    margin-top: 15px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all .3s;
    position: relative;
}
.boton p {
    font-size: 13px;
}
.btn {
    height: 50px;
    width: 150px;
}

.bordWhiteBoton {
    border: 2px solid #fff;
    color: #fff;
}

.bordWhiteBoton:hover {
    border: 2px solid #A03CE1;
    ;
    color: #fff;
    background-color: #A03CE1;
}

.botonSimple {
    font-size: 14px;
    width: fit-content;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all .3s;
}

.botonSimple.textDark:hover {
    color: #14143c59;
}

.botonSimple i {
    font-size: inherit;
    padding-left: 10px;
}

.violetBoton {
    background-color: #A03CE1;
}
.pinkBoton {
    background-color: #ff5c77;
}

.violetBoton:hover {
    background-color: #9f3ce1a9;
}
.pinkBoton:hover {
    background-color: #d44a61;
}

.circle1 {
    position: absolute;
    top: -320px;
    left: -160px;
    width: 770px;
    z-index: -1;
}

.circle2 {
    position: absolute;
    top: -130px;
    right: -170px;
    transform: rotate(90deg);
    width: 480px;
    z-index: -1;
}
#home .circle3 {
    position: absolute;
    width: 260px;
    top: -110px;
    right: 240px;
    z-index: -1;
}
.circle3 {
    position: absolute;
    width: 260px;
    bottom: -110px;
    right: 240px;
    z-index: -1;
}
.dots1 {
    position: absolute;
    width: 675px;
    bottom: -180px;
    left: -100px;
    z-index: -1;
}

.blockchainSvg {
    width: 70%;
}

.blockColSvg div {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
#servicios .circle1 {
    top: -170px;
    width: 420px;
    left: 0;
}
#gobiernos .dots1 {
    top: 0;
    bottom: initial;
    right: 0;
    left: auto;
    transform: rotate(
180deg
);
}
#gobiernos .extraMargBot {
    margin-bottom: 20px;
}
#empresas .extraMargBot {
    margin-bottom: 20px;
}
#gobiernos .circle2 {
    bottom: -90px;
    top: auto;
    left: -270px;
}
#gobiernos .cardList {
    padding: 30px 30px;
    min-height: 170px;
}
/* End Globals */

/* Cards */

.cardsIcons {
    font-size: 70px !important;
    padding-right: 30px;
}

.cardList {
    padding: 50px 30px;
    background-color: rgb(0 0 0 / 12%);
    display: flex;
    margin-bottom: 20px;
    border-radius: 5px;
    min-height: 210px;
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
}

.cardsFlex .cardList {
    width: 49%;
}

.cardsFlex {
    margin-top: 30px;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.cardList .botonSimple {
    position: absolute;
    right: 50px;
    margin-top: 15px;
}

.cardList h4 {
    font-size: 15px;
}
.extraMargBot {
    margin-bottom: 50px;
}
.moduSection {
    padding: 200px 0 100px;
}
/* Modu Home */
.backNota {
    background-image: url(../src/ethereum.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.backNota::before {
    content: '';
    background: #15153c8f;
    position: absolute;
    width: 100%;
    height: 100%;
}
.blockColSvg h4:before {
    content: '· ';
    font-size: 20px;
    color: #b955ac;
}
.spanList span {
    color: #b955ac;
}
/* Nosotros */

.nosotrosSvg {
    width: 50%;
    padding-left: 40px;
}
.nosotrosSec div {
    align-self: center;
}
/* Footer */
.flexJusBeet {
    width: 50%;
    justify-content: space-between;
    margin-bottom: 30px;
}
.footerSec .place p {
    font-size: 13px;
    color: #ffffff75;
    display: flex;
    align-items: center;
}
.footerSec .place i {
    font-size: 15px;
    color: #ffffff75;
    padding-right: 10px;
}
.rrSSFoot svg {
    width: 20px;
    height: auto;
    fill: #9e3de1;
}
.columnsFooter>div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blackSection {
    background-color: #09091b;
}

.columnsFooter {
    justify-content: space-between;
    margin-top: 30px;
}

.columnsFooter>div {
    width: 25%;
}

.susinfo {
    font-size: 13px;
    margin-top: 15px;
}
.padTop {
    padding-top: 30px;
}
.footerSec {
    display: flex;
    flex-direction: column;
}

input.footer-subscribe__input {
    -webkit-appearance: none;
    appearance: none;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.10625rem;
    line-height: 1rem;
    background-color: hsla(0, 0%, 62%, .1);
    border-image: initial;
    border-radius: 0px;
    outline: none;
    padding: 0.9375rem 1.25rem;
    width: 100%;
}

form.formsuscriber {
    display: flex;
    width: 100%;
    transition: opacity 250ms ease 0s;
}

.formsuscriber {
    display: flex;
}

.newssub {
    color: #bbbbbf;
    font-size: 4px !important;
}

button.newssub {
    position: relative;
    width: 3.125rem;
    height: 3.125rem;
    min-width: 3.125rem;
    min-height: 3.125rem;
    color: #fff;
    cursor: pointer;
    border-width: 2px;
    border-style: solid;
    border-color: #9f3de1;
    border-image: initial;
    outline: none;
    transition: all 250ms ease 0s;
    background: transparent;
}
/* Contacto */

#contacto .circle2 {
    left: -100px;
    top: -170px;
}
#contacto .dots1 {
    left: auto;
    right: -60px;
    transform: rotateY(
190deg
);
}

#contacto {
    padding-top: 40px;
}

/* Servicios  */

#servicios .fullH {
    padding: 230px 0px 130px;
}
#servicios .cardList .botonSimple {
    bottom: 30px;
}
.imgServ {
    width: 50%;
    padding-right: 30px;
    text-align: center;
}
.cardList h3 {
    margin-bottom: 20px;
}
.pad30 {
    padding: 30px;
}
#servicios .cardList p {
    font-size: 14px;
}
.widthMin {
    width: 80%;
}
.widthMinMin {
    width: 65%;
} 
.notaRow div {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#nota .modu70 i:not(:last-child) {
    color: #ff5c77;
    font-size: 23px;
    padding-right: 10px;
}
#nota .modu70 span:not(:last-child) {
    font-size: 17px;
    display: flex;
    align-items: center;
}
.notaRow div:first-child {
    padding-right: 50px;
}
.logoNota {
    margin-bottom: 10px;
}

.cardList .svgGob {
    width: 110px!important;
}
.gobh3 {
    font-size: 25px;
    padding-left: 40px;
    margin: 0!important;
}
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: -10px;
}
img.empresasSvg {
    width: 90%;
    align-self: center;
    padding-top: 30px;
}
/* Form */
.field__input, .field__textarea, .field__select {
    border-radius: 5px;
    -webkit-appearance: none;
    appearance: none;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.10625rem;
    line-height: 1rem;
    background-color: rgb(0 0 0 / 12%);
    border-image: initial;
    border-radius: 0px;
    outline: none;
    padding: 0.9375rem 1.25rem;
    width: 100%;
    font-family: 'TT Norms';
    text-transform: uppercase;
    margin-bottom: 12px;
    border: none;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.field__input::placeholder, .field__textarea::placeholder, .field__select::placeholder {
    color: #fff;
} 

.field__textarea {
    height: 150px;
    max-height: 150px;
    min-height: 120px;
}

.alert-warning {
    color: #ffffff !important;
    background-color: #4caf50;
    border: none !important;
    border-radius: 0;
    position: fixed;
    width: 100%;
    display: flex;
    left: 0;
    bottom: 0;
    z-index: 9999;
    height: 80px;
    justify-content: center;
    align-items: center;
    transform: translateY(400px);
    transition: .8s ease-in-out all;
    padding: 0 !important;
    font-weight: 300;
    margin: auto;
}

.closeAlert span {
    font-size: 45px;
    font-weight: 200;
}

.alert-red {
    background-color: #e64e4e;
}

.alertani {
    transform: translateY(0px);
}

.alert-dismissible .closeAlert {
    position: absolute !important;
    top: inherit !important;
    right: 0;
    padding: .75rem 1.25rem;
    color: #fff;
}


.closeAlert {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-shadow: none !important;
    opacity: 1 !important;
    transition: .5s all;
}




.loader-2 {
    position: absolute;
    width: 100%;
    right: 0;
    bottom: 25%;
    display: none;
}

.loader-2 span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #fff;
    margin: 0 3px;
}

.loader-2 span:nth-child(1) {
    animation: bounce 1s ease-in-out infinite;
}

.loader-2 span:nth-child(2) {
    animation: bounce 1s ease-in-out 0.33s infinite;
}

.loader-2 span:nth-child(3) {
    animation: bounce 1s ease-in-out 0.66s infinite;
}

@keyframes bounce {

    0%,
    75%,
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    25% {
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

/* End Form  */

/* Footer */
.footerNav {
    display: flex;
    flex-direction: column;
    color: #ffffff75;
}

.footerNav a {
    font-family: 'TT Norms', sans-serif !important;
    font-size: 15px;
}
.copyR {
    text-align: left;
}

/* Fin Footer */

.noPadTop {
    padding-top: 0;
}

.noPadBot {
    padding-bottom: 0;
}

@media (max-width:1000px) {
    .cardsFlex .cardList {
        width: 100%;
        height: 100% !important;
        min-height: 290px;
    }
}

@media (min-width:1300px) {
    .container {
        max-width: 1340px;
    }

}


@media (max-width: 850px) {

    body {
        font-size: 15px;
        line-height: 1.75;
    }

    p {
        font-size: 14px;
        line-height: 130%;
    }


    .brand img {
        width: 145px;
    }

    .modulo {
        min-height: 200px;
    }

    .navButton {
        display: flex;
    }
    .mobOnly {
        display: block;
    }
    .pcOnly {
        display: none;
    }
    .columnsFooter>div:nth-child(3) {
        width: 33%;
    }
    .headerTop {
        margin: 5px 0;
    }
    #gobiernos .cardsFlex .cardList {
        min-height: 180px;
        padding: 30px 30px!important;
    }
    .notaRow {
        flex-direction: column-reverse;
    }
    .notaRow div:first-child {
        margin-top: 40px;
    }
    .notaRow div {
        padding: 0!important;
        width: 100%;
    }
    .gobh3 {
        font-size: 16px;
        padding-left: 25px;
        margin: 0!important;
    }
    .navMenu {
        position: fixed;
        height: 100%;
        top: 0;
        left: 0;
        flex-direction: column;
        align-items: baseline;
        padding-left: 30px;
        width: 100%;
        font-style: normal;
        letter-spacing: 4px;
        color: #fff !important;
        justify-content: center;
        background: #14143c;
        min-height: 100vh;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all .4s;
        transition: all .4s;
        -o-transition: all .4s;
    }

    .circle1 {
        top: -130px;
        width: 430px;
        left: -30%;
    }

    .circle2 {
        top: -2%;
        right: -50%;
        width: 310px;
    }
    .circle3 {
        position: absolute;
        width: 190px;
        top: -130px;
        right: 280px;
    }

    .dots1 {
        width: 545px;
        bottom: 0;
        left: -190px;
    }
    #servicios .fullH {
        padding: 210px 0px 100px;
    }
    .flexRow.blockColSvg {
        flex-direction: column-reverse;
    }

    .blockchainSvg {
        width: 130%;
        order: 1;
        margin: 20px 0;
        align-self: center;
    }
    #nosotros .fullH {
        min-height: 980px;
        height: 100%;
    }
    .nosotrosSvg {
        width: 80%;
        padding-left: 20px;
        align-self: center;
    }
    .nosotrosSec {
        flex-direction: column;
    }
    .heroHome {
        min-height: inherit;
    }
    #servicios .circle1 {
        top: -200px;
    }
    #gobiernos .dots1 {
        width: 350px;
    }
    #gobiernos .circle2 {
        left: -140px;
    }
    .navActive {
        opacity: 1;
        visibility: visible;
    }

    .navMob.navActive {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }


    .activeHeader .navButton {
        position: absolute;
        z-index: 1;
        right: 40px;
        transform: translate(9px, -5px);
        transition: all .5s;
    }

    .nav-link:before,
    .nav-link.active:before {
        display: none;
    }

    .nav-link {
        margin: .4rem 1rem;
        font-size: 20px;
    }

    .nav-link:last-child {
        margin-right: 1rem;
    }

    /* Nav */
    .navButton span {
        display: block;
    }

    /* Fin Nav */

    /* Globals Mobile */
    .container {
        padding: 0 30px;
        position: relative;
    }

    .fullH {
        min-height: 790px;
        height: 100%;
    }

    .backCircles {
        background-position: 20%;
    }
    #servicios .cardList {
        flex-direction: column;
        padding: 40px 10px;
    }
    #servicios .cardList p {
        font-size: 13px;
    }
    .imgServ {
        width: 80%;
        padding-right: 0;
        
    }

    .boton {
        font-size: 12px;
    }
    .boton p {
        font-size: 12px;
    }

    .modu70 {
        width: 100%;
    }

    h1 {
        font-size: 44px;
    }

    h1 span {
        display: initial;
    }

    h4 {
        font-size: 14px;
    }

    h2 {
        font-size: 38px;
    }
    .moduSection {
        padding: 170px 0 100px;
    }
    /* Cards */
    .cardsFlex {
        flex-direction: column;
    }

    .cardsFlex .cardList {
        width: 100%;
    }

    .cardsFlex .cardList {
        min-height: 260px;
    }

    .cardList h4 {
        font-size: 13px;
    }


    /* End Globals */

    /* Footer */
    .flexJusBeet {
        flex-wrap: wrap;
        width: 100%;
    }
    .rrSSFoot a {
        width: 50%;
        margin-bottom: 10px;
    }

    .columnsFooter>div:last-child {
        width: 100%;
        margin-top: 40px;
    }
    .blockchainSvg {
        margin-bottom: 40px;
    }
    .blockColSvg h4:before {
        content: '· ';
        font-size: 20px;
        color: #b955ac;
    }
  
    .blockColSvg h4 {
        font-size: 14px;
    }
    .footerNav a {
        font-size: 13px;
    }
    .copyR {
        text-align: center;
    }
    h5 {
        font-size: 14px;
    }

    .owl-theme .owl-dots .owl-dot span {
        margin: 3px 7px;
        height: 8px;
        width: 8px;
    }


    .slideSaav {
        background-size: 150%;
        background-position: 0px 20%;
    }



    .moduText {
        width: 100%;
    }

    .moduNum {
        min-height: 500px;
    }

    .colTrom {
        flex-direction: column;
        align-items: baseline;
        height: 100%;
        min-height: 300px;
    }

    .colTrom br {
        display: none;
    }

    .colTrom div:before {
        height: 40%;
        top: 25%;
    }

    .cartaDesarrollo {
        width: 95%;
    }

    .brandCar {
        width: 130px;
        height: 60px;
    }

    .midMod {
        padding: 100px 0;
        min-height: 300px;
    }

    .contactFlex {
        flex-direction: column-reverse;
    }

    .col30,
    .col70 {
        width: 100%;
    }

    .contacts__field {
        width: 100%;
    }

    .field__textarea,
    .field__input {
        margin-left: 0;
    }

    .col30 img {
        width: 180px;
        margin-top: -80px;
    }

    .brands-carousel {
        margin-top: 20px;
    }

    .field__textarea,
    .field__input {
        font-size: 12px;
    }

    .moduFooter .colTrom,
    .copyRight {
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .itemCol {
        margin-bottom: 20px;
    }

    .moduFooter {
        min-height: 200px;
    }

    .itemCol:first-child,
    .itemCol:nth-child(2) {
        display: none;
    }

    .itemCol:nth-child(3) {
        margin: 0;
    }

    .moduFooter .colTrom {
        flex-direction: column-reverse;
    }


}