body {
    padding: 0px;
    margin: 0px;
    background-color: #000F17;
    font-family: 'Manrope', sans-serif;
    color: #FFF;
    box-sizing: border-box;
}

/* COMMON ELEMENTS */
/* ANIMATIONS */
.hub_anim_fade_0 {
    opacity: 0;
    animation: fade 0.3s ease-in-out forwards 0s;
}
.hub_anim_fade_1 {
    opacity: 0;
    animation: fade 0.3s ease-in-out forwards 0.2s;
}
.hub_anim_fade_2 {
    opacity: 0;
    animation: fade 0.3s ease-in-out forwards 0.4s;
}
.hub_anim_fade_3 {
    opacity: 0;
    animation: fade 0.3s ease-in-out forwards 0.8s;
}
.hub_anim_fade_4 {
    opacity: 0;
    animation: fade 0.3s ease-in-out forwards 1s;
}
.hub_anim_fade_10 {
    opacity: 0;
    animation: fade 0.3s ease-in-out forwards 1s;
}
.hub_anim_fade_11 {
    opacity: 0;
    animation: fade 0.3s ease-in-out forwards 1.2s;
}

.hub_anim_fade_102 {
    opacity: 0;
    animation: fade 0.3s ease-in-out forwards 4s;
}
.hub_anim_fade_110 {
    opacity: 0;
    animation: fade 0.3s ease-in-out forwards 4.1s;
}
.hub_anim_fade_111 {
    opacity: 0;
    animation: fade 0.3s ease-in-out forwards 3.3s;
}
.hub_anim_slide_0 {
    opacity: 0;
    animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.hub_anim_slide_100 {
    opacity: 0;
    animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 3.8s both;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slide-left {
    0% {
        opacity: 0;
      -webkit-transform: translateX(100px);
              transform: translateX(100px);
    }
    100% {
        opacity: 1;
      -webkit-transform: translateX(0px);
              transform: translateX(0px);
    }
  }

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



/* BUTTONS */
.hub__button_fill {
    margin-right: 10px;
    background-color: #FFCD4D;
    border: 1px solid #FFCD4D;
    border-radius: 6px;
    color: #000F17;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px 7px 16px;
    cursor: pointer;
}

.hub__button_outline {
    margin-right: 10px;
    background-color: transparent;
    border: 1px solid #FFCD4D;
    border-radius: 6px;
    color: #FFCD4D;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px 7px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hub__button_outline:hover,
.hub__button_outline_small:hover {
    background-color: #FFCD4D;
    color: #000F17;
}

.hub__button_outline_small {
    position: relative;
    margin-right: 10px;
    background-color: transparent;
    border: 1px solid #FFCD4D;
    border-radius: 6px;
    color: #FFCD4D;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 12px 3px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 6px;
    max-width: 100px;
    text-decoration: none;
}




/* NAVBAR */
.hub__navbar_container {
    /* background-color: aqua; */
    background-image: linear-gradient(to bottom,rgba(0,15,23,1) 60%,rgba(0,15,23,0) 100%);
    position: fixed;
    top: 0px;
    left: 0px;
    height: 80px;
    width: 100%;
    z-index: 100;
}

.hub__navbar {
    /* background-color: #A15A3C; */
    width: calc(100% - 160px);
    height: calc(100% - 20px);
    margin-left: 80px;
    display: flex;
    justify-content: space-between;
}

.hub__navbar_left {
    /* background-color: bisque; */
    height: 100%;
    min-width: 100px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hub__navbar_menu_button{
    display: none;
}

.hub__navbar_left>img {
    height: 46px;
    margin-right: 30px;
    cursor: pointer;
}

.hub__navbar_link {
    font-size: 18px;
    font-weight: 500;
    margin-right: 26px;
    cursor: pointer;
}

.hub__navbar_right {
    /* background-color: bisque; */
    height: 100%;
    min-width: 100px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hub__navbar_link_button {
    border: 1px solid #FFF;
    border-radius: 6px;
    padding: 4px 10px 3px 10px;
    font-weight: 500;
    margin-right: 26px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hub__navbar_link_button>img {
    height: 14px;
    margin-right: 8px;
}

.hub__navbar_jv>img {
    margin-top: 2px;
    height: 36px;
}

.hub__navbar_container_mobile {
    background-color: #2f3e46;
    position: fixed;
    top: 60px;
    left: 20px;
    z-index: 10000;
    padding: 14px 18px;
    border-radius: 12px;
    display: none;
    flex-direction: column;
}

.hub__navbar_link_mobile {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

.hub__navbar_link_button_mobile {
    border: 1px solid #FFF;
    border-radius: 6px;
    padding: 4px 10px 3px 10px;
    font-weight: 500;
    margin-top: 6px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hub__navbar_link_button_mobile>img {
    height: 14px;
    margin-right: 8px;
}

.scale-up-tl {
	-webkit-animation: scale-up-tl 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: scale-up-tl 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}


/* HEADER */
.hub__header {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}

.hub__header_text_container {
    margin-left: 80px;
    z-index: 1;
}

.hub__header_text_second {
    font-weight: 500;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0.1em;
}

.hub__header_text_main {
    width: 50vw;
    margin: 10px 0px 30px 0px;
}

.hub__header_text_button_container {
    display: flex;
}

.hub__header_img {
    position: absolute;
    bottom: 0px;
    right: 0px;
    height: 95vh;
    z-index: 0;
}

.hub__header_arraow_container {
    position: absolute;
    bottom: 10px;
    left: calc(50% - 25px);
    width: 50px;
    height: 50px;
    background-color: transparent;
    cursor: pointer;
}

.hub__header_arrow {
    position: absolute;
    bottom: 26px;
    left: calc(50% - 20px);
    width: 40px;
    -webkit-animation: fade_move_down 2s ease-in-out infinite;
    -moz-animation: fade_move_down 2s ease-in-out infinite;
    animation: fade_move_down 2s ease-in-out infinite;
}

@-webkit-keyframes fade_move_down {
    0% {
        -webkit-transform: translate(0, -20px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(0, 20px);
        opacity: 0;
    }
}

@-moz-keyframes fade_move_down {
    0% {
        -moz-transform: translate(0, -20px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -moz-transform: translate(0, 20px);
        opacity: 0;
    }
}

@keyframes fade_move_down {
    0% {
        transform: translate(0, -20px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(0, 20px);
        opacity: 0;
    }
}

/* LANDING */
.hub__landing_section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hub__landing_spacer_30 {
    height: 30px;
    width: 10px;
}

.hub__landing_spacer_50 {
    height: 50px;
    width: 10px;
}

.hub__landing_spacer_100 {
    height: 100px;
    width: 10px;
}

.hub__landing_spacer_150 {
    height: 150px;
    width: 10px;
}

.hub__landing_fixed_width {
    /* width: 1100px; */
    width: min(1100px, calc(100% - 40px));
    position: relative;
}

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

.hub__landing_box_centered_horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.hub__landing_text {
    font-weight: 600;
    font-size: 24px;
}

.hub__landing_text_small {
    font-weight: 200;
    font-size: 20px;
    text-align: justify;
}

.hub__landing_jv {
    /* width: 500px; */
    width: min(500px, 80%);
}

.hub__landing_quote_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 280px;
    width: 280px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(217, 217, 217, 0.1) 0%, rgba(217, 217, 217, 0.05) 100%);
    opacity: 0;
}

.hub__landing_quote {
    width: 80%;
    text-align: center;
    color: #FFCD4D;
    font-weight: 500;
    font-size: 22px;
    margin-top: 10px;
}

.hub__landing_title_container {
    opacity: 0;
}


.hub__landing_title_bar {
    width: 40px;
    height: 4px;
    /* background: linear-gradient(90deg, #FFCD4D -3.32%, #A15A3C 100%); */
    background: linear-gradient(90deg, #FFCD4D -3.32%, #000F17 100%);
    margin-bottom: 1px;
}

.hub__landing_title {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.hub__landing_link {
    color: #FFCD4D;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.8px;
    border: 1px solid #FFCD4D;
    border-radius: 6px;
    padding: 0px 6px;
    margin-right: 6px;
    cursor: pointer;
}

.hub__landing_info_container {
    width: 500px;
    /* width: 310px; */
    height: 145px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(217, 217, 217, 0.1) 0%, rgba(217, 217, 217, 0.05) 100%);
    padding: 20px;
}

.hub__landing_info_title_container {
    display: flex;
    align-items: center;
}

.hub__landing_info_title_container>img {
    height: 40px;
    margin-right: 10px;
}

.hub__landing_info_title {
    font-weight: 500;
    font-size: 22px;
}


/* SECTION PILLARS */
.hub__landing_pillars_title_container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.hub__landing_pillars_title {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.hub__landing_pillars_title>img {
    height: 30px;
    margin-right: 10px;
}

.hub__landing_pillars_indicator {
    position: absolute;
    top: 32px;
    left: 0px;
    width: 100px;
    height: 3px;
    border-radius: 3px;
    background-color: #FFCD4D;
    transition: all 0.3s ease-in-out;
}

.hub__landing_pillars_text_container{
    margin-top: 20px;
    width: calc(100% - 60px);
    padding: 20px 30px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(217, 217, 217, 0.1) 0%, rgba(217, 217, 217, 0.05) 100%);
}



/* SECTION MEMEBERS */
.hub__section_members {
    width: 100%;
    /* display: flex;
    flex-direction: column;
    align-items: center; */
}

.hub__section_title {
    /* color: #000F17; */
    display: flex;
    justify-content: center;
    font-weight: 800;
    font-size: 32px;
    letter-spacing: 1.6px;
    margin-bottom: 20px;
}

/* SLIDER START */

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.container {
  /* border-bottom: 1px solid black */
  margin: 20px 0px;
  position: relative;
}

.brand-wheel {
    flex-direction: row;
    align-items: center;
    display: flex;
    overflow: hidden;
    position: relative;
    height: 200px;

    --animationspeed: 45s;
    --animationdelay: calc( var(--animationspeed) / 2 );
}

.brand-wheel::before {
    position: absolute;
    /* background-image: linear-gradient(to right,rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); */
    background-image: linear-gradient(to right,rgba(0,15,23,1) 0%,rgba(0,15,23,0) 100%);
    content: '';
    height: 100%;
    width: 3%;
    z-index: 2;
    pointer-events: none;
}
.brand-wheel::after{
    position: absolute;
    /* background-image: linear-gradient(to left,rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); */
    background-image: linear-gradient(to left,rgba(0,15,23,1) 0%,rgba(0,15,23,0) 100%);
    content: '';
    height: 100%;
    width: 3%;
    z-index: 2;
    pointer-events: none;
    right: 0;
}

.brand-slide {
    flex-shrink: 0;
    position: absolute;
    animation-name: slidelogo;
    animation-duration: var(--animationspeed);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    min-width: 100%;
    display: flex;
    justify-content: space-around;
}

.brand-slide.delay {
    transform: translateX(100%);
    animation-name: slidelogo;
    animation-delay: var(--animationdelay);
}

.brand-wheel:hover .brand-slide {
    animation-play-state: paused;
}

.logo-div {
    display: inline-flex;
    align-self: center;
    animation: fade-in 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
    padding: 0 20px 0 20px;
    justify-content: center;
}

.logo-div>img {
    max-width: 200px;
    max-height: 200px;
}

@keyframes slidelogo {
    from {
        transform: translateX(100%);
        /* transform: translateX(0%); */
    }
    to {
        transform: translateX(-100%);
        /* transform: translateX(-200%); */
    }
}

/* SLIDER END */

/* SECTION JOIN */
.hub__landing_astronaut {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    height: 550px;
    margin-right: 30px;
}

.hub__landing_join_form {
    /* min-height: 300px; */
    width: 500px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(217, 217, 217, 0.08) 0%, rgba(217, 217, 217, 0.06) 100%);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    position: relative;
}

.hub__landing_join_form_title {
    margin-bottom: 10px;
}

.hub__landing_join_form_textarea {
    width: 100%;
    height: 70px;
    border: none;
    padding: 0;
    background-color: transparent;
    resize: none;
    font-family: 'Manrope', sans-serif;
    color: #FFF;
    border-bottom: 1px solid rgba(128, 128, 128, 0.5);
    outline: none;
    margin-bottom: 30px;
    transition: all 0.2s ease;
}

.hub__landing_join_form_textarea:focus {
    border-bottom: 1px solid #FFCD4D;
}

.hub__landing_join_form_block {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.hub__landing_join_form_input_small {
    width: calc(50% - 14px);
    height: 25px;
    background-color: transparent;
    border: none;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    color: #FFF;
    border-bottom: 1px solid rgba(128, 128, 128, 0.5);
    outline: none;
    transition: all 0.2s ease;
}

.hub__landing_join_form_input_small:focus {
    border-bottom: 1px solid #FFCD4D;
}

.hub__landing_join_form_input_large {
    width: 100%;
    height: 25px;
    background-color: transparent;
    border: none;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    color: #FFF;
    border-bottom: 1px solid rgba(128, 128, 128, 0.5);
    margin-bottom: 40px;
    outline: none;
    transition: all 0.2s ease;
}

.hub__landing_join_form_input_large:focus {
    border-bottom: 1px solid #FFCD4D;
}

.hub__landing_join_form_message {
    position: absolute;
    bottom: 16px;
    font-weight: 200;
    font-size: 15px;
    transition: all 0.2s ease;
    opacity: 0;
    color: #FFCD4D;
}

.hub__landing_join_form_message_shown {
    opacity: 1;
}


/* SECTION MORE */
.hub__landing_more_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    width: 300px;
    padding: 0px 20px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(217, 217, 217, 0.1) 0%, rgba(217, 217, 217, 0.05) 100%);
    cursor: pointer;
    text-decoration: none;
    color: #FFF;
}

.hub__landing_more_container>img {
    /* margin-right: 10px; */
    height: 60px;
}

.hub__landing_more_text {
    font-size: 17px;
    font-weight: 500;
}

/* SECTION CONTACT */

.hub__landing_porthole {
    position: absolute;
    width: 550px;
    top: -90px;
    right: -75px;
    z-index: 0;
    /* -webkit-transform: scaleX(-1);
    transform: scaleX(-1); */
}

.hub__landing_contact_circle {
    height: 7px;
    width: 7px;
    border-radius: 6px;
    background-color: #FFCD4D;
    position: absolute;
    top: 12px;
    left: 118px;
    z-index: 2;
}

.hub__landing_contact_pointer {
    height: 50px;
    width: 1px;
    background-color: #FFCD4D;
    position: absolute;
    top: 18px;
    left: 121px;
    z-index: 2;
}

.hub__contact_text_container {
    width: 64%;
    z-index: 1;
}


/* FOOTER */

.hub__footer {
    width: 100%;
    height: 160px;
    background-color: #111F26;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.hub__footer>img {
    height: 80px;
}

.hub__footer_link {
    cursor: pointer;
    color: #FFF;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hub__footer_link:hover {
    color: #FFCD4D;
    text-decoration: underline;
}


/* PAGE LOADER */
.hub__loader_container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #000F17;
    z-index: 1000;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    animation: fade-out 0.2s ease-in-out forwards 3.5s;
}


.hub__loader_container_logo {
    position: absolute;
    top: calc(50% - 200px);
    left: calc(50% - 200px);
    height: 400px;
    animation: size-in 0.8s ease-in-out forwards 2.5s;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.hub__loader_container_logo_show {
    opacity: 1;
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes size-in {
    0% {
        top: calc(50% - 200px);
        left: calc(50% - 200px);
        height: 400px;
    }

    100% {
        top: calc(50% - 200px);
        left: calc(50% - 200px);
        height: 46px;
        top: 7px;
        left: 80px;
    }
}

@keyframes size-in2 {
    0% {
        top: calc(50% - 150px);
        left: calc(50% - 150px);
        height: 300px;
    }

    100% {
        top: calc(50% - 150px);
        left: calc(50% - 150px);
        height: 46px;
        top: 7px;
        left: 58px;
    }
}



/* LEGAL */
.hub__legal_container {
    background-color: #2f3e46;
    width: calc(100vw - 160px);
    height: 90%;
    position: fixed;
    bottom: 0px;
    left: 80px;
    z-index: 10000;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    transform: translateY(100%);
    transition: all 0.4s ease-in-out;
}

.hub__legal_container_show {
    transform: translateY(0%);
}

.hub__legal_close {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

.hub__legal__box {
    position: relative;
    /* background-color: brown; */
    width: calc(100% - 40px);
    height: calc(100% - 140px);
    /* top: 80px; */
    left: 20px;
    overflow-y: auto;
}

.hub__legal_title{
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
}

.hub__legal_subtitle{
    font-size: 18px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 10px;
}

.hub__legal_text {
    text-align: justify;
    margin-bottom: 20px;
    margin-right: 10px;
}



/* RESPONSIVE */
@media only screen and (max-width: 600px) {
    .hub__landing_astronaut {
        display: none;
    }

    .hub__landing_pillars_title_container{
        flex-direction: column;
    }

    .hub__landing_box_centered_horizontal{
        flex-direction: column;
        gap: 10px;
    }

    .hub__navbar{
        margin-left: 20px;
        width: calc(100vw - 40px);
    }

    .hub__navbar_link, .hub__navbar_link_button{
        display: none;
    }

    .hub__landing_join_form{
        width: calc(100% - 40px);
        padding: 30px 20px;
    }

    .hub__header_text_container{
        margin-left: 20px;
    }

    .hub__header_text_second{
        font-size: 15px;
        line-height: 20px;
    }

    .hub__header_text_main{
        width: 80vw;
    }

    .hub__section_title{
        font-size: 26px;
    }

    .hub__landing_text{
        font-size: 18px;
    }

    .hub__landing_more_container{
        margin-right: 0px !important;
    }

    .hub__landing_porthole, .hub__landing_contact_circle, .hub__landing_contact_pointer{
        display: none;
    }

    .hub__header_img {
        /* right: -400px; */
        transform: translateX(400px);
    }

    .hub__button_fill{
        font-size: 13px;
        padding: 6px 14px 5px 14px;
    }

    .hub__button_outline{
        font-size: 13px;
        padding: 6px 14px 5px 14px;
    }

    .hub__landing_spacer_150{
        height: 50px;
    }

    .hub__landing_quote_container{
        height: 200px;
        width: 300px;
    }

    .hub__landing_quote_container>img{
        height: 100px;
    }

    .hub__landing_quote{
        font-size: 18px;
    }

    .hub__footer{
        height: 140px;
    }

    .hub__footer>img{
        height: 60px;
    }

    .hub__loader_container_logo {
        position: absolute;
        top: calc(50% - 150px);
        left: calc(50% - 150px);
        height: 300px;
        animation: size-in2 0.8s ease-in-out forwards 2.5s;
        /* opacity: 0; */
        transition: opacity 0.4s ease-in-out;
    }

    .hub__legal_container {
        width: calc(100vw - 40px);
        left: 20px;
    }

    .hub__legal_title{
        font-size: 24px;
    }

    .hub__legal_text {
        margin-right: 0px;
    }

    .hub__contact_text_container {
        width: 100%;
    }

    .hub__landing_link{
        display: inline-flex;
        justify-content: center;
    }

    .hub__landing_pillars_title{
        margin-left: 20px;
        margin-bottom: 10px;
        width: fit-content;
    }

    .hub__navbar_menu_button{
        display: block;
        height: 32px !important;
        margin-right: 6px !important;
        z-index: 100000 !important;
    }

}
