/*loader*/
#loader{
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff
    url('loading.gif')

     no-repeat center center;   
    z-index: 99999;
}










.card-panel {
    transition: box-shadow .25s;
    padding: 20px;
    margin: 0.5rem 0 1rem 0;
    border-radius: 2px;
    background-color: #fff;
}

.card {
    position: relative;
    margin: 0.5rem 0 1rem 0;
    background-color: #fff;
    transition: box-shadow .25s;
    border-radius: 2px;
}

.card .card-title {
    font-size: 24px;
    font-weight: 300;
}

.card .card-title.activator {
    cursor: pointer;
}

.card.small,
.card.medium,
.card.large {
    position: relative;
}

.card.small .card-image,
.card.medium .card-image,
.card.large .card-image {
    max-height: 60%;
    overflow: hidden;
}

.card.small .card-content,
.card.medium .card-content,
.card.large .card-content {
    max-height: 40%;
    overflow: hidden;
}

.card.small .card-action,
.card.medium .card-action,
.card.large .card-action {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-color: inherit;
}

.card.small {
    height: 300px;
}

.card.medium {
    height: 400px;
}

.card.large {
    height: 500px;
}

.card .card-image {
    position: relative;
}

.card .card-image img {
    display: block;
    border-radius: 2px 2px 0 0;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
}

.card .card-image .card-title {
    color: #000000;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    font-weight: bolder;
}

.card .card-content {
    padding: 20px;
    border-radius: 0 0 2px 2px;
}

.card .card-content p {
    margin: 0;
    color: inherit;
}

.card .card-content .card-title {
    line-height: 48px;
}

.card .card-action {
    border-top: 1px solid rgba(160, 160, 160, 0.2);
    padding: 20px;
}

.card .card-action a:not(.btn):not(.btn-large):not(.btn-floating) {
    color: #ffab40;
    margin-right: 20px;
    transition: color .3s ease;
    text-transform: uppercase;
}

.card .card-action a:not(.btn):not(.btn-large):not(.btn-floating):hover {
    color: #ffd8a6;
}

.card .card-reveal {
    padding: 20px;
    position: absolute;
    background-color: #fff;
    width: 100%;
    overflow-y: auto;
    top: 100%;
    height: 100%;
    z-index: 1;
    display: none;
}

.card .card-reveal .card-title {
    cursor: pointer;
    display: block;
}

.parallax-container {
    position: relative;
    overflow: hidden;
    height: 500px;
}

#myBtn1 {
    display: none;

    /* Hidden by default */
    position: fixed;

    /* Fixed/sticky position */
    bottom: 20px;

    /* Place the button at the bottom of the page */
    right: 30px;

    /* Place the button 30px from the right */
    z-index: 99;

    /* Make sure it does not overlap */
    border: none;

    /* Remove borders */
    outline: none;

    /* Remove outline */
    background-color: red;

    /* Set a background color */
    color: white;

    /* Text color */
    cursor: pointer;

    /* Add a mouse pointer on hover */
    padding: 15px;

    /* Some padding */
    border-radius: 10px;

    /* Rounded corners */
    font-size: 18px;

    /* Increase font size */
}

#myBtn1:hover {
    background-color: #555;

    /* Add a dark-grey background on hover */
}

/* about us tabs */
.tabs {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    height: 48px;
    background-color: #fff;
    margin: 0 auto;
    width: 100%;
    white-space: nowrap;
}

.tabs .tab {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: block;
    float: left;
    text-align: center;
    line-height: 48px;
    height: 48px;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    text-overflow: ellipsis;
    overflow: hidden;
    letter-spacing: .8px;
    width: 15%;
    min-width: 80px;
}

.tabs .tab a {
    color: #ee6e73;
    display: block;
    width: 100%;
    height: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: color .28s ease;
}

.tabs .tab a:hover {
    color: #f9c9cb;
}

.tabs .tab.disabled a {
    color: #f9c9cb;
    cursor: default;
}

.tabs .indicator {
    position: absolute;
    bottom: 0;
    height: 2px;
    background-color: #f6b2b5;
    will-change: left, right;
}

.waves-effect {
    position: relative;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    vertical-align: middle;
    z-index: 1;
    will-change: opacity, transform;
    transition: all .3s ease-out;
}

.waves-effect .waves-ripple {
    position: absolute;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.7s ease-out;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transform: scale(0);
    transform: scale(0);
    pointer-events: none;
}

.waves-effect.waves-light .waves-ripple {
    background-color: rgba(255, 255, 255, 0.45);
}

.waves-effect.waves-red .waves-ripple {
    background-color: rgba(244, 67, 54, 0.7);
}

.waves-effect.waves-yellow .waves-ripple {
    background-color: rgba(255, 235, 59, 0.7);
}

.waves-effect.waves-orange .waves-ripple {
    background-color: rgba(255, 152, 0, 0.7);
}

.waves-effect.waves-purple .waves-ripple {
    background-color: rgba(156, 39, 176, 0.7);
}

.waves-effect.waves-green .waves-ripple {
    background-color: rgba(76, 175, 80, 0.7);
}

.waves-effect.waves-teal .waves-ripple {
    background-color: rgba(0, 150, 136, 0.7);
}

.waves-effect input[type="button"],
.waves-effect input[type="reset"],
.waves-effect input[type="submit"] {
    border: 0;
    font-style: normal;
    font-size: inherit;
    text-transform: inherit;
    background: none;
}

.waves-notransition {
    transition: none !important;
}

.waves-circle {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}

.waves-input-wrapper {
    border-radius: 0.2em;
    vertical-align: bottom;
}

.waves-input-wrapper .waves-button-input {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
}

.waves-circle {
    text-align: center;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    border-radius: 50%;
    -webkit-mask-image: none;
}

.waves-block {
    display: block;
}

/* Firefox Bug: link not triggered */
a.waves-effect .waves-ripple {
    z-index: -1;
}

@keyframes move_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1);
    }

    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55);
    }

    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1);
    }
}

/* .waveWrapper {
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
} */
.waveWrapperInner {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 105px;
    top: -1px;
    background-image: linear-gradient(to top, #07d9cb 20%, #00f2ff 80%);
}

.bgTop {
    z-index: 15;
    opacity: 0.5;
}

.bgMiddle {
    z-index: 10;
    opacity: 0.75;
}

.bgBottom {
    z-index: 5;
}

.wave {
    position: absolute;
    left: 0;
    width: 600%;
    height: 100%;
    background-size: 50% 100px;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
}

.waveTop {
    background-size: 50% 100px;
}

.waveAnimation .waveTop {
    animation: move-wave 3s;
    -webkit-animation: move-wave 3s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    background-size: 50% 100px;
}

.waveMiddle {
    background-size: 50% 120px;
}

.waveAnimation .waveMiddle {
    animation: move_wave 10s linear infinite;
}

.waveBottom {
    background-size: 50% 100px;
}

.waveAnimation .waveBottom {
    animation: move_wave 15s linear infinite;
}

.modal {
    box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
}

.modal {
    width: 80%;
}

.modal h1,
.modal h2,
.modal h3,
.modal h4 {
    margin-top: 0;
}

@media only screen and (max-width: 992px) {
    .modal {
        width: 80%;
    }
}

.modal .modal-content {
    padding: 24px;
}

.modal .modal-close {
    cursor: pointer;
}

.modal .modal-footer {
    border-radius: 0 0 2px 2px;
    background-color: #fafafa;
    padding: 4px 6px;
    height: 56px;
    width: 100%;
}

.modal .modal-footer .btn,
.modal .modal-footer .btn-large,
.modal .modal-footer .btn-flat {
    float: right;
    margin: 6px 0;
}

.lean-overlay {
    position: fixed;
    z-index: 999;
    top: -100px;
    left: 0;
    bottom: 0;
    right: 0;
    height: 125%;
    width: 100%;
    background: #000;
    display: none;
    will-change: opacity;
}

.modal.modal-fixed-footer {
    padding: 0;
    height: 70%;
}

.modal.modal-fixed-footer .modal-content {
    position: absolute;
    height: calc(100% - 56px);
    max-height: 100%;
    width: 100%;
    overflow-y: auto;
}

.modal.modal-fixed-footer .modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 0;
}

.modal.bottom-sheet {
    top: auto;
    bottom: -100%;
    margin: 0;
    width: 100%;
    max-height: 45%;
    border-radius: 0;
    will-change: bottom, opacity;
}

.z-depth-4,
.modal {
    box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
}

.mdi-image-collections:before {
    content: "\e7f7";
}

.collection {
    margin: 0.5rem 0 1rem 0;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.collection .collection-item {
    background-color: #fff;
    line-height: 1.5rem;
    padding: 10px 20px;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
}

.collection .collection-item.avatar {
    min-height: 84px;
    padding-left: 72px;
    position: relative;
}

.collection .collection-item.avatar .circle {
    position: absolute;
    width: 42px;
    height: 42px;
    overflow: hidden;
    left: 15px;
    display: inline-block;
    vertical-align: middle;
}

.collection .collection-item.avatar i.circle {
    font-size: 18px;
    line-height: 42px;
    color: #fff;
    background-color: #999;
    text-align: center;
}

.collection .collection-item.avatar .title {
    font-size: 16px;
}

.collection .collection-item.avatar p {
    margin: 0;
}

.collection .collection-item.avatar .secondary-content {
    position: absolute;
    top: 16px;
    right: 16px;
}

.collection .collection-item:last-child {
    border-bottom: none;
}

.collection .collection-item.active {
    background-color: #26a69a;
    color: #eafaf9;
}

.collection .collection-item.active .secondary-content {
    color: #fff;
}

.collection a.collection-item {
    display: block;
    transition: .25s;
    color: #26a69a;
}

.collection a.collection-item:not(.active):hover {
    background-color: #ddd;
}

.collection.with-header .collection-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 20px;
}

.collection.with-header .collection-item {
    padding-left: 30px;
}

.collection.with-header .collection-item.avatar {
    padding-left: 72px;
}

.secondary-content {
    float: right;
    color: #26a69a;
}

.collapsible .collection {
    margin: 0;
    border: none;
}

#map {
    width: 100%;
    height: 500px;
}

/* span.badge {
    min-width: 3rem;
    padding: 0 6px;
    text-align: center;
    font-size: 1rem;
    line-height: inherit;
    color: #757575;
    position: absolute;
    right: 15px;
    box-sizing: border-box;
}

span.badge.new {
    font-weight: 300;
    font-size: 0.8rem;
    color: #fff;
    background-color: #26a69a;
    border-radius: 2px;
}

span.badge.new:after {
    content: " new";
}

nav ul a span.badge {
    position: static;
    margin-left: 4px;
    line-height: 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} */
/* button for quick action and reg */



/*for signin with google*/
@import url(https://fonts.googleapis.com/css?family=Roboto:500);
 .google-btn {
     width: 184px;
     height: 42px;
     background-color: #4285f4;
     border-radius: 2px;
     box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .25);
}
 .google-btn .google-icon-wrapper {
     position: absolute;
     margin-top: 1px;
     margin-left: 1px;
     width: 40px;
     height: 40px;
     border-radius: 2px;
     background-color: #fff;
}
 .google-btn .google-icon {
     position: absolute;
     margin-top: 11px;
     margin-left: 11px;
     width: 18px;
     height: 18px;
}
 .google-btn .btn-text {
     float: right;
     margin: 11px 11px 0 0;
     color: #fff;
     font-size: 14px;
     letter-spacing: 0.2px;
     font-family: "Roboto";
}
 .google-btn:hover {
     box-shadow: 0 0 6px #4285f4;
}
 .google-btn:active {
     background: #1669f2;
}
 








































.example_f {
    border-radius: 4px;
    background: linear-gradient(to right, #67b26b, #4ca2cb) !important;
    border: none;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
    font-size: 17px;
    padding: 20px;
    transition: all 0.4s;
    cursor: pointer;
    margin: 5px;
}

.example_f span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.4s;
}

.example_f span:after {
    /* content: '\00bb'; */
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.example_f:hover span {
    padding-right: 25px;
}

.example_f:hover span:after {
    opacity: 1;
    right: 0;
}

.btn-flat {
    border: none;
    border-radius: 2px;
    display: inline-block;
    height: 36px;
    line-height: 36px;
    outline: 0;
    padding: 0 2rem;
    text-transform: uppercase;
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
}

.waves-effect.waves-green .waves-ripple {
    background-color: rgba(76, 175, 80, 0.7);
}

.dropdown-content {
    background-color: #fff;
    margin: 0;
    display: none;
    min-width: 100px;
    max-height: 650px;
    overflow-y: auto;
    opacity: 0;
    position: absolute;
    z-index: 999;
    will-change: width, height;
}

.dropdown-content li {
    clear: both;
    color: rgba(0, 0, 0, 0.87);
    cursor: pointer;
    min-height: 50px;
    line-height: 1.5rem;
    width: 100%;
    text-align: left;
    text-transform: none;
}

.dropdown-content li:hover,
.dropdown-content li.active,
.dropdown-content li.selected {
    background-color: #eee;
}

.dropdown-content li.active.selected {
    background-color: #e1e1e1;
}

.dropdown-content li.divider {
    min-height: 0;
    height: 1px;
}

.dropdown-content li > a,
.dropdown-content li > span {
    font-size: 16px;
    color: #26a69a;
    display: block;
    line-height: 22px;
    padding: 14px 16px;
}

.dropdown-content li > span > label {
    top: 1px;
    left: 3px;
    height: 18px;
}

.dropdown-content li > a > i {
    height: inherit;
    line-height: inherit;
}

footer.page-footer {
    margin-top: 20px;
    padding-top: 20px;
    background-color: rgba(0, 204, 204, 0.77);
    margin-top: 10%;
    left: 0;
    bottom: 0;
    width: 100%;
}

footer.page-footer .footer-copyright {
    overflow: hidden;
    height: 50px;
    line-height: 50px;
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(51, 51, 51, 0.08);
}

footer.page-footer .footer-copyright {
    font-weight: 300;

    /* full color animation */
    .fullcolordancing {
        margin: 0;
        width: 100%;
        height: 100vh;
        font-family: "Exo", sans-serif;
        color: #fff;
        background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
        background-size: 400% 400%;
        animation: gradientBG 15s ease infinite;
    }

    @keyframes gradientBG {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    /* row and col */
    .container .row {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }

    .section {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .section.no-pad {
        padding: 0;
    }

    .section.no-pad-bot {
        padding-bottom: 0;
    }

    .section.no-pad-top {
        padding-top: 0;
    }

    .row {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }

    .row:after {
        content: "";
        display: table;
        clear: both;
    }

    .row .col {
        float: left;
        box-sizing: border-box;
        padding: 0 0.75rem;
    }

    .row .col[class*="push-"],
    .row .col[class*="pull-"] {
        position: relative;
    }

    .row .col.s1 {
        width: 8.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }

    .row .col.s2 {
        width: 16.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }

    .row .col.s3 {
        width: 25%;
        margin-left: auto;
        left: auto;
        right: auto;
    }

    .row .col.s4 {
        width: 33.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }

    .row .col.s5 {
        width: 41.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }

    .row .col.s6 {
        width: 50%;
        margin-left: auto;
        left: auto;
        right: auto;
        color: #000000;
        background-color: #1ae0cd;
    }

    .row .col.s7 {
        width: 58.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }

    .row .col.s8 {
        width: 66.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }

    .row .col.s9 {
        width: 75%;
        margin-left: auto;
        left: auto;
        right: auto;
    }

    .row .col.s10 {
        width: 83.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }

    .row .col.s11 {
        width: 91.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }

    .row .col.s12 {
        width: 100%;
        margin-left: auto;
        left: auto;
        right: auto;
    }

    .row .col.offset-s1 {
        margin-left: 8.3333333333%;
    }

    .row .col.pull-s1 {
        right: 8.3333333333%;
    }

    .row .col.push-s1 {
        left: 8.3333333333%;
    }

    .row .col.offset-s2 {
        margin-left: 16.6666666667%;
    }

    .row .col.pull-s2 {
        right: 16.6666666667%;
    }

    .row .col.push-s2 {
        left: 16.6666666667%;
    }

    .row .col.offset-s3 {
        margin-left: 25%;
    }

    .row .col.pull-s3 {
        right: 25%;
    }

    .row .col.push-s3 {
        left: 25%;
    }

    .row .col.offset-s4 {
        margin-left: 33.3333333333%;
    }

    .row .col.pull-s4 {
        right: 33.3333333333%;
    }

    .row .col.push-s4 {
        left: 33.3333333333%;
    }

    .row .col.offset-s5 {
        margin-left: 41.6666666667%;
    }

    .row .col.pull-s5 {
        right: 41.6666666667%;
    }

    .row .col.push-s5 {
        left: 41.6666666667%;
    }

    .row .col.offset-s6 {
        margin-left: 50%;
    }

    .row .col.pull-s6 {
        right: 50%;
    }

    .row .col.push-s6 {
        left: 50%;
    }

    .row .col.offset-s7 {
        margin-left: 58.3333333333%;
    }

    .row .col.pull-s7 {
        right: 58.3333333333%;
    }

    .row .col.push-s7 {
        left: 58.3333333333%;
    }

    .row .col.offset-s8 {
        margin-left: 66.6666666667%;
    }

    .row .col.pull-s8 {
        right: 66.6666666667%;
    }

    .row .col.push-s8 {
        left: 66.6666666667%;
    }

    .row .col.offset-s9 {
        margin-left: 75%;
    }

    .row .col.pull-s9 {
        right: 75%;
    }

    .row .col.push-s9 {
        left: 75%;
    }

    .row .col.offset-s10 {
        margin-left: 83.3333333333%;
    }

    .row .col.pull-s10 {
        right: 83.3333333333%;
    }

    .row .col.push-s10 {
        left: 83.3333333333%;
    }

    .row .col.offset-s11 {
        margin-left: 91.6666666667%;
    }

    .row .col.pull-s11 {
        right: 91.6666666667%;
    }

    .row .col.push-s11 {
        left: 91.6666666667%;
    }

    .row .col.offset-s12 {
        margin-left: 100%;
    }

    .row .col.pull-s12 {
        right: 100%;
    }

    .row .col.push-s12 {
        left: 100%;
    }

    @media only screen and (min-width: 601px) {
        .row .col.m1 {
            width: 8.3333333333%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.m2 {
            width: 16.6666666667%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.m3 {
            width: 25%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.m4 {
            width: 33.3333333333%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.m5 {
            width: 41.6666666667%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.m6 {
            width: 50%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.m7 {
            width: 58.3333333333%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.m8 {
            width: 66.6666666667%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.m9 {
            width: 75%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.m10 {
            width: 83.3333333333%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.m11 {
            width: 91.6666666667%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.m12 {
            width: 100%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.offset-m1 {
            margin-left: 8.3333333333%;
        }

        .row .col.pull-m1 {
            right: 8.3333333333%;
        }

        .row .col.push-m1 {
            left: 8.3333333333%;
        }

        .row .col.offset-m2 {
            margin-left: 16.6666666667%;
        }

        .row .col.pull-m2 {
            right: 16.6666666667%;
        }

        .row .col.push-m2 {
            left: 16.6666666667%;
        }

        .row .col.offset-m3 {
            margin-left: 25%;
        }

        .row .col.pull-m3 {
            right: 25%;
        }

        .row .col.push-m3 {
            left: 25%;
        }

        .row .col.offset-m4 {
            margin-left: 33.3333333333%;
        }

        .row .col.pull-m4 {
            right: 33.3333333333%;
        }

        .row .col.push-m4 {
            left: 33.3333333333%;
        }

        .row .col.offset-m5 {
            margin-left: 41.6666666667%;
        }

        .row .col.pull-m5 {
            right: 41.6666666667%;
        }

        .row .col.push-m5 {
            left: 41.6666666667%;
        }

        .row .col.offset-m6 {
            margin-left: 50%;
        }

        .row .col.pull-m6 {
            right: 50%;
        }

        .row .col.push-m6 {
            left: 50%;
        }

        .row .col.offset-m7 {
            margin-left: 58.3333333333%;
        }

        .row .col.pull-m7 {
            right: 58.3333333333%;
        }

        .row .col.push-m7 {
            left: 58.3333333333%;
        }

        .row .col.offset-m8 {
            margin-left: 66.6666666667%;
        }

        .row .col.pull-m8 {
            right: 66.6666666667%;
        }

        .row .col.push-m8 {
            left: 66.6666666667%;
        }

        .row .col.offset-m9 {
            margin-left: 75%;
        }

        .row .col.pull-m9 {
            right: 75%;
        }

        .row .col.push-m9 {
            left: 75%;
        }

        .row .col.offset-m10 {
            margin-left: 83.3333333333%;
        }

        .row .col.pull-m10 {
            right: 83.3333333333%;
        }

        .row .col.push-m10 {
            left: 83.3333333333%;
        }

        .row .col.offset-m11 {
            margin-left: 91.6666666667%;
        }

        .row .col.pull-m11 {
            right: 91.6666666667%;
        }

        .row .col.push-m11 {
            left: 91.6666666667%;
        }

        .row .col.offset-m12 {
            margin-left: 100%;
        }

        .row .col.pull-m12 {
            right: 100%;
        }

        .row .col.push-m12 {
            left: 100%;
        }
    }

    @media only screen and (min-width: 993px) {
        .row .col.l1 {
            width: 8.3333333333%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.l2 {
            width: 16.6666666667%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.l3 {
            width: 25%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.l4 {
            width: 33.3333333333%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.l5 {
            width: 41.6666666667%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.l6 {
            width: 50%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.l7 {
            width: 58.3333333333%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.l8 {
            width: 66.6666666667%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.l9 {
            width: 75%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.l10 {
            width: 83.3333333333%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.l11 {
            width: 91.6666666667%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.l12 {
            width: 100%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.offset-l1 {
            margin-left: 8.3333333333%;
        }

        .row .col.pull-l1 {
            right: 8.3333333333%;
        }

        .row .col.push-l1 {
            left: 8.3333333333%;
        }

        .row .col.offset-l2 {
            margin-left: 16.6666666667%;
            color: #302020;
        }

        .row .col.pull-l2 {
            right: 16.6666666667%;
        }

        .row .col.push-l2 {
            left: 16.6666666667%;
        }

        .row .col.offset-l3 {
            margin-left: 25%;
        }

        .row .col.pull-l3 {
            right: 25%;
        }

        .row .col.push-l3 {
            left: 25%;
        }

        .row .col.offset-l4 {
            margin-left: 33.3333333333%;
        }

        .row .col.pull-l4 {
            right: 33.3333333333%;
        }

        .row .col.push-l4 {
            left: 33.3333333333%;
        }

        .row .col.offset-l5 {
            margin-left: 41.6666666667%;
        }

        .row .col.pull-l5 {
            right: 41.6666666667%;
        }

        .row .col.push-l5 {
            left: 41.6666666667%;
        }

        .row .col.offset-l6 {
            margin-left: 50%;
        }

        .row .col.pull-l6 {
            right: 50%;
        }

        .row .col.push-l6 {
            left: 50%;
        }

        .row .col.offset-l7 {
            margin-left: 58.3333333333%;
        }

        .row .col.pull-l7 {
            right: 58.3333333333%;
        }

        .row .col.push-l7 {
            left: 58.3333333333%;
        }

        .row .col.offset-l8 {
            margin-left: 66.6666666667%;
        }

        .row .col.pull-l8 {
            right: 66.6666666667%;
        }

        .row .col.push-l8 {
            left: 66.6666666667%;
        }

        .row .col.offset-l9 {
            margin-left: 75%;
        }

        .row .col.pull-l9 {
            right: 75%;
        }

        .row .col.push-l9 {
            left: 75%;
        }

        .row .col.offset-l10 {
            margin-left: 83.3333333333%;
        }

        .row .col.pull-l10 {
            right: 83.3333333333%;
        }

        .row .col.push-l10 {
            left: 83.3333333333%;
        }

        .row .col.offset-l11 {
            margin-left: 91.6666666667%;
        }

        .row .col.pull-l11 {
            right: 91.6666666667%;
        }

        .row .col.push-l11 {
            left: 91.6666666667%;
        }

        .row .col.offset-l12 {
            margin-left: 100%;
        }

        .row .col.pull-l12 {
            right: 100%;
        }

        .row .col.push-l12 {
            left: 100%;
        }
    }
}

.center {
    width: 600px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}



 /* register button */
@import url('https://fonts.googleapis.com/css?family=Mukta:700');
 * { box-sizing: border-box; } *::before, *::after { box-sizing: border-box; } button { position: relative; display: inline-block; cursor: pointer; outline: none; border: 0; vertical-align: middle; text-decoration: none; background: transparent; padding: 0; font-size: inherit; font-family: inherit; } button.Registerit { width: 12rem; height: auto; } button.Registerit .circle { transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1); position: relative; display: block; margin: 0; width: 3rem; height: 3rem; background: #52ffee;  /* #282936; */ border-radius: 1.625rem; } button.Registerit .circle .icon { transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1); position: absolute; top: 0; bottom: 0; margin: auto; background: #fff; } button.Registerit .circle .icon.arrow { transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1); left: 0.625rem; width: 1.125rem; height: 0.125rem; background: none; } button.Registerit .circle .icon.arrow::before { position: absolute; content: ''; top: -0.25rem; right: 0.0625rem; width: 0.625rem; height: 0.625rem; border-top: 0.125rem solid #fff; border-right: 0.125rem solid #fff; transform: rotate(45deg); } button.Registerit .button-text { transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1); position: absolute; top: 0; left: 0; right: 0; bottom: 0; padding: 0.75rem 0; margin: 0 0 0 1.85rem; color: #1bdbf8; font-weight: 700; line-height: 1.6; text-align: center; text-transform: uppercase; } button:hover .circle { width: 100%; } button:hover .circle .icon.arrow { background: #fff; transform: translate(1rem, 0); } button:hover .button-text { color: #fff; } @supports (display: grid) { #Registerbtn {  font-family: 'Mukta', sans-serif;  font-size: 1rem;  line-height: 1.5;  display: flex;  grid-area: main;  align-self: center;  justify-self: center; } }