html {
    font-size: 14px;
}

.valid-campo {
    border: 2px solid transparent;
}

.invalid-campo{
    border: 2px solid red !important;
}

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
}

.loader {
    z-index: 99999999 !important;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #45144e;
    opacity: 0.8;
    top: 0
}

.loader--div {
    border: 16px solid var(--color-orange); /* Light grey */
    border-top: 16px solid var(--color-green); /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: zoomanima 2s linear infinite;
    z-index: 99999999 !important;
    position: absolute;
    top: calc(50% - 70px);
    left: calc(50% - 70px);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes zoomanima {
    0% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }

    25% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }

    75% {
        -webkit-transform: scale(1.25);
        -moz-transform: scale(1.25);
        -ms-transform: scale(1.25);
        -o-transform: scale(1.25);
        transform: scale(1.25);
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

:root {
    --color-green: #009DAF;
    --color-orange: #FE9938;
    --color-purple: #591957;
    --color-purpledark: #4c154a;
}

body {
    margin-bottom: 0px;
    overflow: auto !important;
}

.bg-main {
    background: white
}

.bg-purple {
    background: var(--color-purple) !important;
    background-color: var(--color-purple) !important
}

.bg-orange {
    background: var(--color-orange) !important;
    background-color: var(--color-orange) !important
}

.bg-green {
    background: var(--color-green) !important;
    background-color: var(--color-green) !important
}

.text-purple {
    color: var(--color-purple) !important
}

.text-orange {
    color: var(--color-orange) !important
}

.text-green {
    color: var(--color-green) !important
}

.mt-space-1 {
    margin-top: 720px
}

.container-login {
    position: relative;
    height: auto;
    width: 600px;
    margin: auto;
}

.form-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}

    .form-bg .shape {
        transform: rotate(45deg);
        position: absolute;
        animation: apper 1s linear forwards;
    }

    .form-bg .shape1 {
        height: 320px;
        width: 320px;
        background-color: var(--color-purple);
        top: 20px;
        left: -160px;
        border-radius: 0% 50% 50% 0;
        transform: rotate(0deg);
    }

        .form-bg .shape1:before {
            height: 280px;
            width: 280px;
            background: var(--color-green);
            top: 20px;
            right: 20px;
            border-radius: 50%;
            position: absolute;
            content: '';
        }

    .form-bg .shape2 {
        height: 220px;
        width: 220px;
        background: var(--color-purple);
        bottom: -172px;
        left: 0;
        border-radius: 50%;
    }

        .form-bg .shape2:before {
            height: 90px;
            width: 90px;
            background: var(--color-green);
            top: 20px;
            right: 20px;
            border-radius: 50%;
            position: absolute;
            content: '';
        }

    .form-bg .shape3 {
        height: 320px;
        width: 320px;
        background: var(--color-orange);
        top: 20px;
        right: -160px;
        border-radius: 50%;
    }

        .form-bg .shape3:before {
            height: 280px;
            width: 280px;
            background: var(--color-green);
            top: 20px;
            left: 20px;
            border-radius: 50%;
            position: absolute;
            content: '';
        }

    .form-bg .shape4 {
        height: 200px;
        width: 200px;
        background: var(--color-orange);
        bottom: 10px;
        right: 10px;
        border-radius: 50%;
    }

        .form-bg .shape4:before {
            height: 160px;
            width: 160px;
            background: var(--color-green);
            top: 20px;
            right: 20px;
            border-radius: 50%;
            position: absolute;
            content: '';
        }

.form-select {
    color: #009daf;
}

form {
    position: relative;
    /* height: 100%; */
    width: 100%;
    padding: 30px;
    /* padding-top: 156px; */
    z-index: 1;
    transition: all 0.2s ease;
    animation: apper 1s linear forwards;
}

.animate-x {
    transition: all 0.2s ease;
    animation: apper 1s linear forwards;
}

.animate-x2 {
    transition: all 0.2s ease;
    animation: apper 1s linear forwards;
}

@keyframes apper {
    0% {
        transform: translateX(-50%);
    }
}

@keyframes apper2 {
    0% {
        transform: translateX(50%);
    }
}

#anim {
    position: fixed;
    z-index: -10;
    top: 0;
    left: 0;
    opacity: 0.1;
    display: none
}

#particles-js canvas {
    display: block;
    vertical-align: bottom;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition: opacity .8s ease, -webkit-transform 1.4s ease;
    transition: opacity .8s ease, transform 1.4s ease
}

#particles-js {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -10;
    top: 0;
    left: 0
}

.zindex-1 {
    z-index: 1 !important
}

.zindex-0 {
    z-index: 0 !important
}

.top-mediocircle {
    position: relative;
    overflow: hidden;
    height: 100px !important;
    width: 600px !important;
    transition: all 2s ease-in-out;
    z-index: 1;
    margin: auto;
}

    .top-mediocircle::before {
        position: absolute;
        content: "";
        top: 0;
        left: -200px;
        background: var(--color-green);
        height: 600px !important;
        width: 1000px !important;
        border-radius: 150em 150em 0 0 !important;
        transition: all 2s ease-in-out;
        z-index: 1;
        margin: auto;
    }

.block-animate-1 {
    position: absolute;
    overflow: hidden;
    top: 0%;
    left: calc(50% - 700px);
    /*  transform: translate(-50%, 0%);*/
    height: 700px !important;
    width: 1400px !important;
    border-radius: 0 0 150em 150em !important;
    transition: all 2s ease-in-out;
    z-index: 1
}

.block-animate-2 {
    position: absolute;
    left: calc(50% - 550px);
    /* transform: translate(-50%, 70%);*/
    height: 550px !important;
    width: 1100px !important;
    border-radius: 0 0 150em 150em !important;
    top: 0%;
    transition: all 2s ease-in-out;
    z-index: 2;
    overflow: hidden
}

    .block-animate-2:before {
        position: absolute;
        left: calc(50% - 550px);
        background: var(--color-purple);
        content: "";
        height: 550px !important;
        width: 1100px !important;
        border-radius: 0 0 150em 150em !important;
        top: 0%;
        transition: all 2s ease-in-out;
        z-index: 2;
        overflow: hidden;
        opacity: 0.5;
    }

.block-animate-1:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 2s ease-in-out;
    /*  animation: anima-bgbass 12s linear infinite;*/
}

.block-animate-3 {
    position: absolute;
    top: 70px;
    left: calc(50% - 150px);
    /*transform: translate(-50%, 100%);*/
    height: 250px !important;
    width: 300px !important;
    border-radius: 0 0 150em 150em !important;
    transition: all 2s ease-in-out;
}

.block-animate-2:hover {
    background-color: var(--color-purple)
}


@keyframes anima-bgbass {
    0% {
        background: var(--color-orange);
    }

    33% {
        background: var(--color-purple);
    }

    66% {
        background: var(--color-green);
    }

    100% {
        background: var(--color-orange);
    }
}

.zindex-f {
    z-index: 9 !important;
}
/* Adding styles to button */
.btn2 {
    padding: 12px 50px;
    border: none;
    border-radius: 50%;
    background-color: #671156;
    color: #fff;
    font-size: 18px;
    outline: none;
    cursor: pointer;
    /* We need this to position
      span inside button */
    position: relative;
    overflow: hidden;
    box-shadow: 6px 7px 40px -4px rgba(0, 0, 0, 0.2);
    width: 120px;
    height: 120px;
    padding: 10px 0;
    text-decoration: none;
    transition: all 2s ease-in-out;
    animation: ripple 6s linear infinite;
    -webkit-transition: all 2s ease-in-out;
    -moz-transition: all 2s ease-in-out;
    box-shadow: inset 0 0 0 0 var(--color-purple);
}

    .btn2:hover {
        text-decoration: none;
        color: white;
        background-color: #40113f !important;
        box-shadow: inset 0 100px 0 0 var(--color-purple);
    }

/* Add animation */
@keyframes ripple {
    0% {
        background: var(--color-orange);
    }

    33% {
        background: var(--color-purple);
    }

    66% {
        background: var(--color-green);
    }

    100% {
        background: var(--color-orange);
    }
}

.form-control-purple {
    color: #ffffff;
    background-color: #591957;
    border: 1px solid #7c2579;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

    .form-control-purple::placeholder {
        font-weight: bold;
        opacity: 0.5;
        color: red;
    }

.form-floating > label {
    color: #ffffff !important;
    opacity: 1 !important;
    background: #009daf;
    height: 20px;
    line-height: 0px;
    border-radius: 30px;
    border: 1px solid #e2eaeb;
    margin-left: 10px;
    margin-top: -2px;
}

.accordion-button {
    color: #009daf !important;
    background-color: #ffffff !important;
}

.accordion-button {
    color: #009daf !important;
    background-color: #ffffff !important;
}

[data-bs-theme=dark] .accordion-button::after {
    filter: brightness(0) invert(1) !important;
}

.accordion-item {
    border-radius: 10px !important;
    /* background-color: #ffffff !important; */
    border: 0;
}

.accordion-icon-color {
    color: #7c2579 !important
}

.accordion-icon-active-color {
    color: white !important
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237c2579'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}


.accordion-body-border {
    border-bottom-right-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
    border: 1px solid #068b9b !important;
}

.accordion-body-border-w {
    border: 1px solid #fff !important;
}

.form-select {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%237c2579' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
}

.bg-purpledark {
    background: var(--color-purpledark) !important;
}

.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.pace-inactive {
    display: none;
}

.pace .pace-progress {
    background: var(--color-green) !important;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 100%;
    width: 100%;
    height: 3px !important;
}

.form-check-input:checked {
    background-color: #fe9938;
    border-color: #fe9938;
}

.alert-primary {
    color: #ffffff;
    background-color: #009daf;
    border-color: #04818f;
}

.anim-h3 h3 {
    display: flex;
    font-size: 160px;
    list-style: none;
    animation: scrolling 36s linear infinite;
    word-wrap: normal;
    width: auto;
    color: transparent;
    -webkit-text-stroke: 2px #ffffff;
    opacity: 0.2;
    text-shadow: 1px 0px 0px #591957;
    /* color: rgba(255,255,255,0); */
    text-decoration: normal;
    text-align: center;
    -o-text-overflow: clip;
    text-overflow: clip;
    white-space: pre;
    /* text-shadow: 0 0 1px rgba(255, 255, 255, 1), 0 0 3px #9C27B0, 0 0 5px #9C27B0, 0 0 10px #ff00de, 0 0 12px #ff00de, 0 0 16px #ff00de, 0 0 0px #ff00de; */
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
}



@keyframes scrolling {
    0% {
        transform: translateX(100%)
    }

    100% {
        transform: translateX(-100%)
    }
}

.mt-300 {
    margin-top: 300px
}

.mt-280 {
    margin-top: 280px
}

.footer-content {
    height: 800px !important;
    width: 100% !important;
    border-radius: 150em 150em 0 0 !important;
}

.chk-l .form-check-input {
    width: 1.5em !important;
    height: 1.5em !important;
}

.chk-l .form-check-label {
    margin-left: 10px !important;
    line-height: 30px !important;
}

.chk-l .form-check {
    margin-bottom: 0.5rem !important;
}

.accordion-button-orange {
    color: #ffffff !important;
    background-color: #fe9938 !important;
}

.accordion-button-greenlight {
    color: #ffffff !important;
    background-color: #09abbe !important;
    border: 1px solid #09aabd;
}

.form-range::-webkit-slider-thumb {
    background: #009daf !important;
}

.accordion-button-greenlight:not(.collapsed)::after, .accordion-button-greenlight:after {
    filter: brightness(0) invert(1);
}

.text-green {
    color: var(--color-green) !important;
}

.mt-300 {
    margin-top: 300px !important;
}

.scroll-down-btn {
    display: inline-block;
    text-decoration: none;
}

    .scroll-down-btn p {
        margin-top: 1.25rem;
        color: white;
        font-size: .875rem;
        font-weight: 500;
        letter-spacing: .375rem;
        text-indent: .375rem;
        animation: colorText 5s ease-out infinite, nudgeText 5s ease-out infinite;
    }

.mouse {
    background: #591957 linear-gradient(transparent 0%, transparent 50%, white 50%, white 100%);
    position: relative;
    width: 38px;
    height: 65px;
    margin: 0 auto;
    border-radius: 6rem;
    background-size: 100% 200%;
    animation: colorSlide 5s linear infinite, nudgeMouse 5s ease-out infinite;
}

    .mouse:before, .mouse:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
    }

    .mouse:before {
        width: 34px;
        height: 61px;
        background-color: #591957;
        border-radius: 6rem;
    }

    .mouse:after {
        background-color: #fe9938;
        width: .375rem;
        height: .375rem;
        border-radius: 100%;
        animation: trackBallSlide 5s linear infinite;
    }

@keyframes colorSlide {
    0% {
        background-position: 0% 100%;
    }

    20% {
        background-position: 0% 0%;
    }

    21% {
        background-color: #009daf;
    }

    29.99% {
        background-color: #fe9938;
        background-position: 0% 0%;
    }

    30% {
        background-color: #009daf;
        background-position: 0% 100%;
    }

    50% {
        background-position: 0% 0%;
    }

    51% {
        background-color: #009daf;
    }

    59% {
        background-color: white;
        background-position: 0% 0%;
    }

    60% {
        background-color: #009daf;
        background-position: 0% 100%;
    }

    80% {
        background-position: 0% 0%;
    }

    81% {
        background-color: #009daf;
    }

    90%, 100% {
        background-color: #fe9938;
    }
}

@keyframes trackBallSlide {
    0% {
        opacity: 1;
        transform: scale(1) translateY(-20px);
    }

    6% {
        opacity: 1;
        transform: scale(0.9) translateY(5px);
    }

    14% {
        opacity: 0;
        transform: scale(0.4) translateY(40px);
    }

    15%, 19% {
        opacity: 0;
        transform: scale(0.4) translateY(-20px);
    }

    28%, 29.99% {
        opacity: 1;
        transform: scale(1) translateY(-20px);
    }

    30% {
        opacity: 1;
        transform: scale(1) translateY(-20px);
    }

    36% {
        opacity: 1;
        transform: scale(0.9) translateY(5px);
    }

    44% {
        opacity: 0;
        transform: scale(0.4) translateY(40px);
    }

    45%, 49% {
        opacity: 0;
        transform: scale(0.4) translateY(-20px);
    }

    58%, 59.99% {
        opacity: 1;
        transform: scale(1) translateY(-20px);
    }

    60% {
        opacity: 1;
        transform: scale(1) translateY(-20px);
    }

    66% {
        opacity: 1;
        transform: scale(0.9) translateY(5px);
    }

    74% {
        opacity: 0;
        transform: scale(0.4) translateY(40px);
    }

    75%, 79% {
        opacity: 0;
        transform: scale(0.4) translateY(-20px);
    }

    88%, 100% {
        opacity: 1;
        transform: scale(1) translateY(-20px);
    }
}

@keyframes nudgeMouse {
    0%, 30%, 60%, 90% {
        transform: translateY(0);
    }

    20%, 50%, 80% {
        transform: translateY(8px);
    }
}

@keyframes nudgeText {
    0%, 30%, 60%, 90% {
        transform: translateY(0);
    }

    20%, 50%, 80% {
        transform: translateY(2px);
    }
}

@keyframes colorText {
    21%, 51%, 81% {
        color: #2c333e;
    }

    30%, 60%, 90% {
        color: white;
    }
}

.accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
    border-radius: 50px !important;
}

.rounded-purple, .rounded-orange, .rounded-green, .rounded-white,
.roundeds-purple, .roundeds-orange, .roundeds-green, .roundeds-white,
.roundedm-purple, .roundedm-orange, .roundedm-green, .roundedm-white,
.roundedl-purple, .roundedl-orange, .roundedl-green, .roundedl-white {
    border-radius: 50%;
    background: transparent;
    margin: auto;
    text-align: center;
    border-style: solid
}

.rounded-purple, .rounded-orange, .rounded-green, .rounded-white {
    width: 200px;
    height: 200px;
    border-width: 20px;
}

.rounded-tabs {
    width: 160px;
    height: 160px;
    border-width: 10px !important;
    border-color: var(--color-purpledark);
    color: #ffffff;
    background: #e9892c;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    color: white !important;
    background-color: var(--color-orange) !important;
    border-color: var(--color-orange) !important;
    border-color: white !important;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
    color: #ffffff;
    opacity: 0.6;
}

.rounded-purple {
    border-color: var(--color-purple);
}

.rounded-orange {
    border-color: var(--color-orange);
}

.rounded-green {
    border-color: var(--color-green);
}

.rounded-white {
    border-color: white;
}

.roundeds-purple, .roundeds-orange, .roundeds-green, .roundeds-white {
    width: 100px;
    height: 100px;
    border-width: 16px;
}

.roundeds-purple {
    border-color: var(--color-purple);
}

.roundeds-orange {
    border-color: var(--color-orange);
}

.roundeds-green {
    border-color: var(--color-green);
}

.roundeds-white {
    border-color: white;
}

.roundedm-purple, .roundedm-orange, .roundedm-green, .roundedm-white {
    width: 360px;
    height: 360px;
    border-width: 60px;
}

.roundedm-purple {
    border-color: var(--color-purple);
}

.roundedm-orange {
    border-color: var(--color-orange);
}

.roundedm-green {
    border-color: var(--color-green);
}

.roundedm-white {
    border-color: white;
}

.roundedl-purple, .roundedl-orange, .roundedl-green, .roundedl-white {
    width: 560px;
    height: 560px;
    border-width: 160px;
}

.roundedl-purple {
    border-color: var(--color-purple);
}

.roundedl-orange {
    border-color: var(--color-orange);
}

.roundedl-green {
    border-color: var(--color-green);
}

.roundedl-white {
    border-color: white;
}

.anima-orbita {
    -webkit-animation: spin-right 50s linear infinite;
    animation: spin-right 50s linear infinite;
}
/* ---------- Animation ---------- */
@-webkit-keyframes spin-right {
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}



.icon-container {
    /* margin-top: 30px; */
    /* width: 100%; */
    /* height: 60px; */
}

.icon {
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: 120px;
    height: 120px;
    /* margin-left: 12px; */
    /* margin-right: 12px; */
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
    border: 5px solid #fe9938;
}

    .icon::before, .icon::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        transition: all 0.25s ease;
        /* border-radius: 30px; */
        border-radius: 50%;
    }

    .icon i {
        position: relative;
        color: #FFFFFF;
        font-size: 30px;
        margin-top: 15px;
        transition: all 0.25s ease;
    }


.icon-expand::after {
    box-shadow: inset 0 0 0 0px #591957;
}

.icon-expand::before {
    background: #009daf;
    box-shadow: inset 0 0 0 80px #591957;
    border: 0;
}

.icon-expand:hover::before {
    box-shadow: inset 0 0 0 1px #fe9938;
}

.icon-label {
    font-weight: bold;
    z-index: 999999;
    display: block;
    position: relative;
    width: 110px !important;
    text-align: center !important;
    margin: auto;
    font-size: 14px;
}

.form-floating > .form-control, .form-floating > .form-control-plaintext, .form-floating > .form-select {
    background: white;
}

.border-top-orange {
    border-top: 2px solid #e9892c;
}

.border-bottom-orange {
    border-bottom: 2px solid #e9892c;
}

.logo-sm {
    width: 130px !important;
    margin:4px 0 0 20px
}
.ml-nav {
    margin-left: 150px;
}
.fs18 {
    font-size: 18px
}

.card-top.card-flip-front {
    left: calc(50% - 100px) !important;
}

.card-hover-primary:hover .text-primary {
    color: white !important
}

.card-hover-primary:hover {
    background-color: #009daf !important;
    border-color: #009daf !important;
}


.btn-primary {
    --ar-btn-bg: #009eb1 !important;
    --ar-btn-border-color: #009eb1 !important;
    --ar-btn-hover-bg: #048c9c;
    --ar-btn-active-bg: #048c9c;
    --ar-btn-hover-border-color: #048c9c;
    --ar-btn-active-border-color: #048c9c;
}
.accordion-button:focus {
    
    border-color: #08a1b3;
    
}
.card-hover-primary:hover > p strong, .card-hover-primary:hover > p span,
.card-hover-primary:hover > card-body .ql-align-justify strong, 
.card-hover-primary:hover > card-body .ql-align-justify span {
    --ar-heading-color: #fff !important;
    --ar-body-color: rgba(255, 255, 255, .7) #fff !important;
    color: rgba(255, 255, 255, .7) !important;
}
.card-hover-primary:hover p, .card-hover-primary:hover span, .card-hover-primary:hover strong, .card-hover-primary:hover div{
    --ar-heading-color: #fff;
    --ar-body-color: rgba(255, 255, 255, .7)#fff !important;
     
    color: rgba(255, 255, 255, .7) !important;
}
.btn-scroll-top {
    right: 38px !important;
    bottom: 100px !important;
}
.card-flip {
    min-height: 220px !important;
}
    @media (max-width: 767.98px) {
        .ml-nav {
            margin-left: 0 !important
        }

        .logo-sm {
            width: 100px !important;
            margin: 6px 0 0 20px
        }

        .rounded-tabs {
            margin: 20px auto 0 !important;
            width: 95px;
            height: 95px;
        }

        .btn-reg-topm {
            top: -300px !important;
        }

        .footer-content {
            padding: 20px;
        }

        footer {
            height: 160px !important;
        }

        .container-login {
            width: 100%;
        }

        form {
            position: relative;
            width: 100%;
        }

        .block-animate-3 {
            top: 30px;
        }

        .m-h-round {
            left: calc(50% - 100px) !important;
        }

        .h-round {
            height:auto !important
        }
        .card-flip {
            height: auto !important;
            min-height: auto !important;
        }
        .roundeds-purple {
            right: 15%;
            width: 60px;
            height: 60px;
        }

        .rounded-purple-m, .rounded-orange-m, .rounded-green-m, .rounded-white-m {
            width: 100px !important;
            height: 100px !important;
            border-width: 20px;
        }

        .p-sm-1 {
            padding: 10px !important
        }

        .block-animate-3 {
            left: calc(50% - 125px);
            height: 200px !important;
            width: 250px !important;
        }

        .card-flip-inner {
            transform: rotateY(180deg) !important
        }

        .center-mobile {
            width: 100%;
            text-align: center;
            display: block;
        }

        .column-mobile {
            flex-direction: column !important;
        }

            .column-mobile div {
                padding: 5px !important
            }
    }

    @media (max-height: 767.98px) {
        .bg-main {
            height: 700px !important;
        }
    }

    .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}
