/*
font-family: 'Rubik', sans-serif;
font-family: 'Titillium Web', sans-serif;
font-family: 'Heebo', sans-serif;
font-family: 'Open Sans', sans-serif;

light - 300
regular - 400
medium - 500
semi-bold  - 600
bold - 700
extra-bold - 800
black - 900
*/

body {
    font-family: 'Roboto', sans-serif !important;
    color: #000 !important;
    font-size: 14px;
    font-weight: 400;
    background: #fff no-repeat top center !important;
    background-size: cover;
    background-attachment: fixed;
}

a {
    cursor: pointer !important;
    text-decoration: none !important;
}

@-webkit-keyframes blinker {
    from {
        opacity: 1.0;
    }
    to {
        opacity: 0.0;
    }
}

.blinker {
    -webkit-animation: blinker infinite 4s ease-in-out;
    -moz-animation: blinker infinite 4s ease-in-out;
    animation: blinker infinite 4s ease-in-out;
    animation-fill-mode: forwards;
}

.floater-2 {
    -webkit-animation: floater-2 infinite 4s ease-in-out;
    -moz-animation: floater-2 infinite 4s ease-in-out;
    animation: floater-2 infinite 4s ease-in-out;
    animation-fill-mode: forwards;
}

@-webkit-keyframes floater {
    0% {
        transform: translate3d(0px, 0px, 0px);
    }
    50% {
        transform: translate3d(0px, -20px, 0px);
    }
    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}

@keyframes floater {
    0% {
        transform: translate3d(0px, 0px, 0px);
    }
    50% {
        transform: translate3d(0px, -20px, 0px);
    }
    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}

@-webkit-keyframes floater-2 {
    0% {
        transform: translate3d(0px, 0px, 0px);
    }
    80% {
        transform: translate3d(0px, -10px, 0px);
    }
    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}

@keyframes floater-2 {
    0% {
        transform: translate3d(0px, 0px, 0px);
    }
    50% {
        transform: translate3d(0px, -10px, 0px);
    }
    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}

@keyframes blinker {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}

.heartbeat {
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
    animation: heartbeat 1.5s ease-in-out infinite both;
}

@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

.rotating {
    -webkit-animation: rotating 6s linear infinite;
    animation: rotating 6s linear infinite;
}

.rotating.fast {
    -webkit-animation: rotating 0.5s linear infinite;
    animation: rotating 0.5s linear infinite;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotating {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

@keyframes zigZag {
    0% {
        -webkit-transform: rotate(0deg) translate(-10px, -10px);
        -ms-transform: rotate(0deg) translate(-10px, -10px);
        transform: rotate(0deg) translate(-10px, -10px);
    }
    20% {
        -webkit-transform: rotate(360deg) translate(-100px, -100px);
        -ms-transform: rotate(360deg) translate(-100px, -100px);
        transform: rotate(360deg) translate(-100px, -100px);
    }
    40% {
        -webkit-transform: rotate(0deg) translate(100px, 100px);
        -ms-transform: rotate(0deg) translate(100px, 100px);
        transform: rotate(0deg) translate(100px, 100px);
    }
    60% {
        -webkit-transform: rotate(360deg) translate(10px, 10px);
        -ms-transform: rotate(360deg) translate(10px, 10px);
        transform: rotate(360deg) translate(10px, 10px);
    }
    80% {
        -webkit-transform: rotate(0deg) translate(70px, 70px);
        -ms-transform: rotate(0deg) translate(70px, 70px);
        transform: rotate(0deg) translate(70px, 70px);
    }
    100% {
        -webkit-transform: rotate(360deg) translate(-10px, -10px);
        -ms-transform: rotate(360deg) translate(-10px, -10px);
        transform: rotate(360deg) translate(-10px, -10px);
    }
}

@keyframes zigZag2 {
    0% {
        -webkit-transform: rotate(0deg) translate(-10px, -10px);
        -ms-transform: rotate(0deg) translate(-10px, -10px);
        transform: rotate(0deg) translate(-10px, -10px);
    }
    20% {
        -webkit-transform: rotate(360deg) translate(-10px, -10px);
        -ms-transform: rotate(360deg) translate(-10px, -10px);
        transform: rotate(360deg) translate(-10px, -10px);
    }
    40% {
        -webkit-transform: rotate(0deg) translate(10px, 10px);
        -ms-transform: rotate(0deg) translate(10px, 10px);
        transform: rotate(0deg) translate(10px, 10px);
    }
    60% {
        -webkit-transform: rotate(360deg) translate(10px, 10px);
        -ms-transform: rotate(360deg) translate(10px, 10px);
        transform: rotate(360deg) translate(10px, 10px);
    }
    80% {
        -webkit-transform: rotate(0deg) translate(10px, 10px);
        -ms-transform: rotate(0deg) translate(10px, 10px);
        transform: rotate(0deg) translate(10px, 10px);
    }
    100% {
        -webkit-transform: rotate(360deg) translate(-10px, -10px);
        -ms-transform: rotate(360deg) translate(-10px, -10px);
        transform: rotate(360deg) translate(-10px, -10px);
    }
}

@keyframes rotate2 {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(1440deg);
        -ms-transform: translate(-50%, -50%) rotate(1440deg);
        transform: translate(-50%, -50%) rotate(1440deg);
    }
}

@keyframes rev-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@-webkit-keyframes rev-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@-moz-keyframes rev-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes move {
    0% {
        left: 0;
        opacity: 0;
    }
    5% {
        opacity: 0.0
    }
    48% {
        opacity: 0.2
    }
    80% {
        opacity: 0.0
    }
    100% {
        left: 82%
    }
}

@keyframes shrink {
    0% {
        background-size: 100% 100%;
    }
    100% {
        background-size: 110% 110%;
    }
}

.shrink {
    -webkit-animation: shrink infinite 4s ease-in-out;
    -moz-animation: shrink infinite 4s ease-in-out;
    animation: shrink infinite 4s ease-in-out;
    animation-fill-mode: forwards;
}

/*============== BANNER CSS START ==============*/

.banner-bg {
    background: url(../images/banner-bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 10px 0px 70px;
}

header {
    width: 100%;
    background-size: cover;
    padding: 0px 0px 0px 0px;
    background: transparent;
}

header .navbar-inverse {
    margin: 0;
    min-height: auto;
    border-radius: 0;
    border: 0;
    background: none;
}

header .navbar-collapse {
    padding: 0;
}

header .navbar-right {
    margin: 0;
    margin-right: 0px;
    position: relative;
    top: 0px;
}

header .navbar-inverse .navbar-nav>li {
    padding: 10px 13px;
    display: inline-block;
    vertical-align: middle;
    float: none;
}

header .navbar-inverse .navbar-nav>li>a {
    font-size: 16px;
    color: #1c1d3e;
    text-transform: capitalize;
    transition: .3s;
    vertical-align: middle;
    padding: 10px 0px 8px 0px;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    border-bottom: 2px solid transparent;
}

header .navbar-inverse .navbar-nav>li>a:hover {
    transition: .3s;
    color: #d9318c;
    border-bottom: 2px solid #d9318c;
}

header .navbar-inverse .navbar-nav>li .btn {
    height: 43px;
    line-height: 40px;
    padding: 0 20px !important;
}

header .navbar-inverse .navbar-header {
    padding: 0;
}

header .navbar-inverse .navbar-header a {
    display: inline-block;
    padding: 30px 0px 0px 0px;
}

header .navbar-inverse .navbar-header a img {
    display: inline-block;
    transform-origin: 100% 0;
}

header .navbar-inverse .navbar-header a img:hover {
    animation-name: pulse;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

header .navbar-inverse .navbar-nav>li.btn_menu {
    padding: 17px 3px;
}

header .navbar-inverse .navbar-nav>li a.btn.btn-primary {
    min-width: 128px;
    height: 43px;
    line-height: 43px;
    box-shadow: none;
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
    border-color: #eb3389 !important;
}

header .head-but {
    font-family: 'Rubik', sans-serif;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #fff !important;
    line-height: 43px !important;
    background: linear-gradient( 90deg, #eb3389 0%, #eb3389 72%) !important;
    outline: none;
    display: inline-block !important;
    box-shadow: inset 0 0 0 0 #481ea7;
    transition: 0.7s;
    text-transform: capitalize !important;
    padding: 2px 35px !important;
    border-radius: 5px;
}

header .head-but i {
    position: absolute;
    opacity: 0;
    top: -1px;
    left: 0;
    background: #fff;
    width: 12%;
    height: 103%;
    transform: skew(-30deg, 0deg);
    animation: move 3s;
    animation-iteration-count: infinite;
    animation-delay: 1s;
}

header .head-but:hover {
    color: #ebebeb !important;
    background: #ebebeb !important;
    box-shadow: inset 0 0 0 50px #603cb3 !important;
    border-bottom: 2px solid #ebebeb !important;
}

header .head-but1 {
    font-family: 'Rubik', sans-serif;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #1c1d3e !important;
    line-height: 43px !important;
    background: transparent !important;
    outline: none;
    display: inline-block !important;
    transition: 0.7s;
    text-transform: capitalize !important;
    box-shadow: inset 0 0 0 0 #cf2f8e;
    padding: 2px 35px !important;
    border-radius: 5px;
    border: 2px solid #5920a4 !important;
}

header .head-but1 i {
    position: absolute;
    opacity: 0;
    top: -1px;
    left: 0;
    background: #fff;
    width: 12%;
    height: 103%;
    transform: skew(-30deg, 0deg);
    animation: move 3s;
    animation-iteration-count: infinite;
    animation-delay: 1s;
}

header .head-but1:hover {
    color: #fafafa !important;
    background: #111d2d !important;
    box-shadow: inset 0 0 0 50px #481ea7 !important;
    border: 2px solid #cb2f8f !important;
}

.banner-bg .banner {
    text-align: right;
}

.banner-bg .banner .banner-left {}

.banner-bg .banner .banner-left img {
    position: relative;
    left: -96px;
    top: -25px;
}

.banner-bg .banner .banner-text {
    padding: 100px 0px 0px 0px;
}

.banner-bg .banner .banner-text h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 60px;
    font-weight: 600;
    color: #e93389;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.banner-bg .banner .banner-text p {
    font-family: 'Titillium Web', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    line-height: 26px;
    padding: 30px 0px 30px 0px;
    margin: 0px 0px 0px 0px;
    width: 400px;
    display: inline-block;
    text-align: right;
}

.banner-bg .banner .banner-but {
    padding: 30px 0px 0px 0px;
}

.banner-bg .banner .banner-but .banner-but1 {
    width: 200px;
    text-align: center;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(90deg, #eb3389 0%, #eb3389 72%);
    border: 1px solid #eb3389;
    padding: 16px 18px;
    margin: 0px 10px 25px 10px;
    transition: 0.7s;
    text-transform: capitalize;
    display: inline-block;
    transition-duration: .5s;
    transition-property: transform;
    position: relative;
    border-radius: 5px;
}

.banner-bg .banner .banner-but .banner-but1:hover {
    color: #eb3389;
    background: transparent;
    border: 1px solid #1c1d3e;
    transition: 0.7s;
    box-shadow: 0px 0px 10px #1c1d3e;
    transform: translateY(10px);
}

.banner-bg .banner .banner-but .banner-but1 i {
    position: absolute;
    opacity: 0;
    top: -1px;
    left: 0;
    background: #fff;
    width: 12%;
    height: 103%;
    transform: skew(-30deg, 0deg);
    animation: move 3s;
    animation-iteration-count: infinite;
    animation-delay: 1s;
}

.banner-bg .banner .banner-but .banner-but2 {
    width: 200px;
    text-align: center;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient( 90deg, #1c1d3e 0%, #1c1d3e 72%);
    border: 1px solid #1c1d3e;
    padding: 16px 18px;
    margin: 0px 10px 25px 10px;
    transition: 0.7s;
    text-transform: capitalize;
    display: inline-block;
    transition-duration: .5s;
    transition-property: transform;
    position: relative;
    border-radius: 5px;
}

.banner-bg .banner .banner-but .banner-but2:hover {
    color: #eb3389;
    background: transparent;
    border: 1px solid #eb3389;
    transition: 0.7s;
    box-shadow: 0px 0px 10px #eb3389;
    transform: translateY(10px);
}

.banner-bg .banner .banner-but .banner-but2 i {
    position: absolute;
    opacity: 0;
    top: -1px;
    left: 0;
    background: #fff;
    width: 12%;
    height: 103%;
    transform: skew(-30deg, 0deg);
    animation: move 3s;
    animation-iteration-count: infinite;
    animation-delay: 1s;
}

/*============== BANNER CSS END ==============*/

/*============== ABOUT CSS START ==============*/

.about-bg {
    background: url(../images/about-bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 0px 0px 30px;
}

.about-bg .stat .stat-back {
    position: relative;
    margin: -131px 0px 0px 0px;
}

.about-bg .stat .stat-back .pro {
    position: relative;
    padding: 0px 0px 0px 0px;
}

.about-bg .stat .stat-back .pro ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    text-align: center;
}

.about-bg .stat .stat-back .pro ul li {
    display: inline-block;
    padding: 20px 5px;
}

.about-bg .stat .stat-back .pro ul li .static {
    width: 215px;
    min-height: 168px;
    background: url(../images/stat-back1.png) no-repeat top center;
    background-size: cover;
    transition: 0.7s;
    text-align: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 10px;
    padding: 0px 0px 0px 0px;
    box-shadow: 0px 0px 27px #e4dbfb;
    margin: 20px auto 20px;
}

.about-bg .stat .stat-back .pro ul li .static1 {
    width: 215px;
    min-height: 168px;
    background: url(../images/stat-back2.png) no-repeat top center;
    background-size: cover;
    transition: 0.7s;
    text-align: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 10px;
    padding: 0px 0px 0px 0px;
    box-shadow: 0px 0px 27px #e4dbfb;
    margin: 20px auto 20px;
}

.about-bg .stat .stat-back .pro ul li .static2 {
    width: 215px;
    min-height: 168px;
    background: url(../images/stat-back3.png) no-repeat top center;
    background-size: cover;
    transition: 0.7s;
    text-align: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 10px;
    padding: 0px 0px 0px 0px;
    box-shadow: 0px 0px 27px #e4dbfb;
    margin: 20px auto 20px;
}

.about-bg .stat .stat-back .pro ul li .static3 {
    width: 215px;
    min-height: 168px;
    background: url(../images/stat-back4.png) no-repeat top center;
    background-size: cover;
    transition: 0.7s;
    text-align: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 10px;
    padding: 0px 0px 0px 0px;
    box-shadow: 0px 0px 27px #e4dbfb;
    margin: 20px auto 20px;
}

.about-bg .stat .stat-back .pro ul li .static .pro-invest1 {
    background: transparent !important;
    text-align: center;
}

.about-bg .stat .stat-back .pro ul li .static .pro-invest1 img {
    padding: 20px 0px 7px 0px;
}

.about-bg .stat .stat-back .pro ul li .static .pro-invest1 p {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
    text-transform: capitalize;
}

.about-bg .stat .stat-back .pro ul li .static .pro-invest1 h1 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 28px;
    color: #e9328b;
    background: transparent;
    outline: none;
    font-weight: 700;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.about-bg .stat .stat-back .pro ul li .static:hover {
    position: relative;
    animation: shrink 5s infinite alternate;
}

.about-bg .about {}

.about-bg .about .about-head {
    margin: 30px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}

.about-bg .about .about-head p {
    font-family: 'Titillium Web', sans-serif;
    font-size: 18px;
    color: #481ea7;
    font-weight: 500;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
    text-transform: uppercase;
}

.about-bg .about .about-head img {
    position: absolute;
    /* bottom: 65px; */
    top: 27px;
}

.about-bg .about .about-head h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 48px;
    color: #e9328b;
    font-weight: 700;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
}

.about-bg .about .about-para {
    margin: 30px 0px 20px 0px;
    padding: 0px 0px 0px 0px;
}

.about-bg .about .about-para p {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    color: #7a7a7a;
    font-weight: 500;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
    line-height: 26px;
}

.about-bg .about .cert-com {
    background: #ece8f6;
    border-radius: 10px;
    margin: 20px 0px 20px 0px;
    padding: 15px 15px 15px 15px;
    display: inline-block;
    width: 447px;
}

.about-bg .about .cert-com img {
    float: left;
    margin: 0px 20px 0px 0px;
}

.about-bg .about .cert-com h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 16px;
    color: #0b012f;
    font-weight: 500;
    padding: 0px 49px 10px 0px;
    margin: 0px 0px 0px 0px;
}

.about-bg .about .cert-com a {
    font-family: 'Titillium Web', sans-serif;
    font-size: 30px;
    color: #eb3389;
    font-weight: 700;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
}

.about-bg .about .cert-com a:hover {}

.about-bg .about .cert-com .cert-but {}

.about-bg .about .cert-com .cert-but .cert-but1 {
    width: 225px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(90deg, #eb3389 0%, #eb3389 72%);
    border: 1px solid #eb3389;
    padding: 16px 8px;
    margin: 15px 0px 0px 0px;
    transition: 0.7s;
    text-transform: capitalize;
    display: inline-block;
    transition-duration: .5s;
    transition-property: transform;
    position: relative;
    border-radius: 5px;
}

.about-bg .about .cert-com .cert-but .cert-but1:hover {
    color: #eb3389;
    background: transparent;
    border: 1px solid #eb3389;
    transition: 0.7s;
    box-shadow: 0px 0px 10px #eb3389;
    transform: translateY(10px);
}

.about-bg .about .about-right {
    margin: 89px 0px 0px 0px;
}

.about-bg .about .about-right img {
    display: block;
    max-width: 100%;
    height: auto;
}

/*============== ABOUT CSS END ==============*/

/*============== STEP CSS END ==============*/

.step-bg {
    background: #02060b no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
}

.step-bg .step {
    text-align: center;
}

.step-bg .step .step-head {
    margin: 30px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}

.step-bg .step .step-head h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 48px;
    color: #fff;
    font-weight: 600;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
}

.step-bg .step .step-com {
    margin: 40px 0px 0px 0px;
}

.step-bg .step .step-img1 {
    width: 147px;
    min-height: 138px;
    background: url(../images/step1.png) no-repeat top center;
    background-size: cover;
    transition: 0.7s;
    text-align: center;
    position: relative;
    margin: auto;
    padding: 45px 0px 0px 0px;
}

.step-bg .step .step-img1 h3 {
    width: 48px;
    min-height: 48px;
    background: url(../images/st1.png) no-repeat top center;
    background-size: cover;
    transition: 0.7s;
    text-align: center;
    position: relative;
    margin: auto;
}

.step-bg .step .step-img2 {
    width: 147px;
    min-height: 138px;
    background: url(../images/step2.png) no-repeat top center;
    background-size: cover;
    transition: 0.7s;
    text-align: center;
    position: relative;
    margin: auto;
    padding: 45px 0px 0px 0px;
}

.step-bg .step .step-img2 h3 {
    width: 48px;
    min-height: 48px;
    background: url(../images/st2.png) no-repeat top center;
    background-size: cover;
    transition: 0.7s;
    text-align: center;
    position: relative;
    margin: auto;
}

.step-bg .step .step-img3 {
    width: 147px;
    min-height: 138px;
    background: url(../images/step3.png) no-repeat top center;
    background-size: cover;
    transition: 0.7s;
    text-align: center;
    position: relative;
    margin: auto;
    padding: 45px 0px 0px 0px;
}

.step-bg .step .step-img3 h3 {
    width: 48px;
    min-height: 48px;
    background: url(../images/st3.png) no-repeat top center;
    background-size: cover;
    transition: 0.7s;
    text-align: center;
    position: relative;
    margin: auto;
}

.step-bg .step .step-com h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 24px;
    color: #eb328a;
    font-weight: 500;
    padding: 15px 0px 15px 0px;
    margin: 0px 0px 0px 0px;
}

.step-bg .step .step-com p {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    color: #e4def2;
    font-weight: 600;
    padding: 0px 0px 20px 0px;
    margin: 0px 0px 0px 0px;
}

.step-bg .step .step-com:hover {}

.step-bg .step .step-com:hover .step-img1,
.step-bg .step .step-img1:hover {
    transform: translateY(-10px);
}

.step-bg .step .step-com:hover .step-img1 h3,
.step-bg .step .step-img1 h3:hover {
    background: url(../images/st1hover.png) no-repeat top center;
}

.step-bg .step .step-com:hover .step-img2,
.step-bg .step .step-img2:hover {
    transform: translateY(-10px);
}

.step-bg .step .step-com:hover .step-img2 h3,
.step-bg .step .step-img2 h3:hover {
    background: url(../images/st2hover.png) no-repeat top center;
}

.step-bg .step .step-com:hover .step-img3,
.step-bg .step .step-img3:hover {
    transform: translateY(-10px);
}

.step-bg .step .step-com:hover .step-img3 h3,
.step-bg .step .step-img3 h3:hover {
    background: url(../images/st3hover.png) no-repeat top center;
}

.step-bg .step .step-circle img {
    position: absolute;
    top: 97px;
    left: 365px;
}

/*============== STEP CSS END ==============*/

/*============== PLAN CSS END ==============*/

.plan-bg {
    background: url(../images/plan-bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 30px 0px 50px;
}

.plan-bg .plan {
    text-align: center;
}

.plan-bg .plan .plan-head {
    margin: 30px 0px 30px 0px;
    padding: 0px 0px 0px 0px;
    text-align: center;
}

.plan-bg .plan .plan-head h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 48px;
    color: #eb328a;
    font-weight: 700;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
}

.plan-bg .plan .plan-head img {
    position: absolute;
    /* bottom: 65px; */
    top: 42px;
}

.plan-bg .plan .plan-head p {
    font-family: 'Titillium Web', sans-serif;
    font-size: 18px;
    color: #7a7a7a;
    font-weight: 500;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
}

.plan-bg .plan .planbg {
    background: linear-gradient(180deg, #fff 0%, #fff 40%, #fff 40%, #fff 100%);
    background-size: cover;
    width: 360px;
    min-height: 530px;
    margin: 20px auto 20px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 0px 20px #d7d3e3;
}

.plan-bg .plan .planbg .plan-top {
    padding: 30px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.plan-bg .plan .planbg .plan-top h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 60px;
    color: #1c1d3e;
    font-weight: 800;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
}

.plan-bg .plan .planbg .plan-top h2 sup {
    font-family: 'Heebo', sans-serif;
    font-size: 37px;
    color: #1c1d3e;
    font-weight: 500;
}

.plan-bg .plan .planbg .plan-top h3 {
    font-family: 'Heebo', sans-serif;
    font-size: 24px;
    color: #7a7a7a;
    font-weight: 500;
    padding: 0px 0px 20px 0px;
    margin: 0px 0px 0px 0px;
}

.plan-bg .plan .planbg .plan-top h4 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 30px;
    color: #eb3389;
    font-weight: 700;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
    text-transform: uppercase;
}

.plan-bg .plan .planbg .plan-title {}

.plan-bg .plan .planbg .plan-title h2 {
    float: left;
    transform: rotate(-90deg);
    transform-origin: left top 0;
    margin-left: 272px;
    padding: 11px;
    opacity: 0.9;
    color: #e7e7e7;
    text-transform: capitalize;
    position: absolute;
    bottom: 0px;
    font-family: 'Heebo', sans-serif;
    font-size: 72px;
    font-weight: 800;
}

.plan-bg .plan .planbg .plan-bot {
    padding: 0px 0px 20px 0px;
}

.plan-bg .plan .planbg .plan-bot p {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    color: #7a7a7a;
    font-weight: 500;
    padding: 20px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
    text-align: center;
}

.plan-bg .plan .planbg .plan-but {}

.plan-bg .plan .planbg .plan-but .plan-but1 {
    width: 216px;
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(90deg, #eb3389 0%, #eb3389 72%);
    padding: 13px 55px;
    line-height: 24px;
    margin: 10px 10px 0px 10px;
    transition: 0.7s;
    text-transform: uppercase;
    display: inline-block;
    transition-duration: .5s;
    transition-property: transform;
    position: relative;
    border-radius: 5px;
    text-align: center;
}

.plan-bg .plan .planbg:hover {
    background: linear-gradient(180deg, #491fb2 0%, #491fb2 40%, #491fb2 40%, #491fb2 100%);
}

.plan-bg .plan .planbg:hover .plan-top h2,
.plan-bg .plan .planbg .plan-top h2:hover {
    color: #fff;
}

.plan-bg .plan .planbg:hover .plan-top h2 sup,
.plan-bg .plan .planbg .plan-top h2 sup:hover {
    color: #fff;
}

.plan-bg .plan .planbg:hover .plan-top h3,
.plan-bg .plan .planbg .plan-top h3:hover {
    color: #fff;
}

.plan-bg .plan .planbg:hover .plan-bot p,
.plan-bg .plan .planbg .plan-bot p:hover {
    color: #fff;
}

.plan-bg .plan .planbg:hover .plan-but1,
.plan-bg .plan .planbg .plan-but .plan-but1:hover {
    color: #eb3389;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 72%) !important;
    transition: 0.7s;
    box-shadow: 0px 0px 10px #ffffff;
    transform: translateY(10px);
}

/*============== PLAN CSS END ==============*/

/*============== FEA CSS START ==============*/

.fea-bg {
    background: url(../images/fea-bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 30px 0px 50px;
}

.fea-bg .fea {}

.fea-bg .fea .fea-head {
    margin: 30px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    text-align: left;
}

.fea-bg .fea .fea-head h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 48px;
    color: #eb328a;
    font-weight: 700;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
}

.fea-bg .fea .fea-head img {
    position: absolute;
    /* bottom: 65px; */
    top: 26px;
}

.fea-bg .fea .fea-head p {
    font-family: 'Titillium Web', sans-serif;
    font-size: 18px;
    color: #7a7a7a;
    font-weight: 500;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
    line-height: 29px;
}

.fea-bg .fea .fea-com {
    padding: 0px 0px 0px 0px;
}

.fea-bg .fea .fea-com .feature {
    width: 330px;
    min-height: 300px;
    background: url(../images/fea-back.png) no-repeat top center;
    background-size: cover;
    transition: 0.7s;
    text-align: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 10px;
    padding: 0px 15px 0px 15px;
    margin: 20px auto 20px;
}

.fea-bg .fea .fea-com .feature:hover {}

.fea-bg .fea .fea-com .feature img {
    margin: auto;
    padding: 30px 0px 0px 0px;
    width: 100px;
}

.fea-bg .fea .fea-com .feature h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 24px;
    color: #121338;
    font-weight: 700;
    padding: 10px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
}

.fea-bg .fea .fea-com .feature p {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    color: #7a7a7a;
    font-weight: 500;
    padding: 10px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
}

.fea-bg .fea .fea-com .feature p a {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    color: #7a7a7a;
    font-weight: 500;
    padding: 10px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
}

.fea-bg .fea .fea-com .feature p a:hover {
    color: #000;
}

/*============== FEA CSS END ==============*/

/*============== REF CSS START ==============*/

.ref-bg {
    background: #ffffff no-repeat top center;
    background-size: cover;
    padding: 30px 0px 50px;
}

.ref-bg .ref {}

.ref-bg .ref-left {}

.ref-bg .ref-left img {
    display: block;
    max-width: 100%;
    height: auto;
}

.ref-bg .ref .ref-head {
    margin: 40px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    text-align: left;
}

.ref-bg .ref .ref-head h1 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 24px;
    color: #02060b;
    font-weight: 600;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
    text-transform: uppercase;
}

.ref-bg .ref .ref-head h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 48px;
    color: #eb328a;
    font-weight: 700;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
}

.ref-bg .ref .ref-head img {
    position: absolute;
    /* bottom: 65px; */
    top: 26px;
}

.ref-bg .ref .ref-head p {
    font-family: 'Titillium Web', sans-serif;
    font-size: 18px;
    color: #7a7a7a;
    font-weight: 500;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
    line-height: 29px;
}

.ref-bg .ref .refs {
    margin: 20px 0px 0px 0px;
}

.ref-bg .ref .refs ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

.ref-bg .ref .refs ul li {
    display: inline-block;
    padding: 0px 4px;
}

.ref-bg .ref .refs ul li .refs1 {
    background: #491fb2 no-repeat bottom center;
    background-size: contain;
    position: relative;
    z-index: 1;
    width: 140px;
    text-align: center;
    margin: 20px auto;
    padding: 20px;
    border-radius: 40px 0px 0px 0px;
}

.ref-bg .ref .refs ul li .refs1 h1 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #eb3389;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.ref-bg .ref .refs ul li .refs1 h1 span {
    font-size: 40px;
    font-weight: 500;
}

.ref-bg .ref .refs ul li .refs1 h2 {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.ref-bg .ref .refs ul li .refs1 h3 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #eb3389;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.ref-bg .ref .refs ul li .refs1 h3 span {
    font-size: 28px;
    font-weight: 500;
}

.ref-bg .ref .refs ul li .refs1 h4 {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.ref-bg .ref .refs ul li .refs1 h5 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #eb3389;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.ref-bg .ref .refs ul li .refs1 h5 span {
    font-size: 22px;
    font-weight: 500;
}

.ref-bg .ref .refs ul li .refs1 h6 {
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

/*============== REF CSS END ==============*/

/*============== TEST CSS START ==============*/

.test-bg {
    background: url(../images/testi-bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 30px 0px 50px;
}

.test-bg .test {}

.test-bg .test .test-head {
    margin: 40px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    text-align: center;
}

.test-bg .test .test-head h1 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 24px;
    color: #02060b;
    font-weight: 600;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
    text-transform: uppercase;
}

.test-bg .test .test-head h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 48px;
    color: #eb328a;
    font-weight: 700;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
}

.test-bg .test .test-head img {
    position: absolute;
    /* bottom: 65px; */
    top: 26px;
}

.test-bg .test .test-head p {
    font-family: 'Titillium Web', sans-serif;
    font-size: 18px;
    color: #7a7a7a;
    font-weight: 500;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
    line-height: 29px;
}

.test-bg .test .test-main {
    padding: 0px 0px 0px;
}

.test-bg .test .test-main .test-middle {
    padding: 0px 0px 30px;
    text-align: center;
}

.test-bg .test .test-main .test-middle .nav-tabs {
    background: transparent;
    border-radius: 0px;
    text-align: center;
    border: transparent;
    padding: 10px 0px 0px;
}

.test-bg .test .test-main .test-middle .nav-tabs>li>a {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    background: transparent;
    background-size: cover;
    margin: 0px 10px 0px 10px;
    border: transparent;
    border-radius: 5px;
    padding: 0px 0px;
    transition: 0.7s;
    cursor: pointer;
}

.test-bg .test .test-main .test-middle .nav-tabs>li>a span {}

.test-bg .test .test-main .test-middle .nav-tabs>li>a span img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.5s ease-in-out 0s;
    box-shadow: 0px 0px 7px #fef5f8 !important;
    border: 2px solid #fef5f8 !important;
}

.test-bg .test .test-main .test-middle .nav>li {
    padding: 0 0px;
    margin: 0px 0;
    float: none;
    display: inline-block;
}

.test-bg .test .test-main .test-middle .nav-tabs>li.active>a,
.test-bg .test .test-main .test-middle .nav-tabs>li.active>a:hover,
.test-bg .test .test-main .test-middle .nav-tabs>li>a span img,
.test-bg .test .test-main .test-middle .nav-tabs>li.active>a:focus {
    color: #fff;
    background: transparent;
    background-size: cover;
    border: transparent;
    cursor: default;
    transition: 0.7s;
    box-shadow: 0px 0px 7px #eb3389;
    opacity: 10;
    border-radius: 50%;
    border: 2px solid #e73287;
    padding: 0px 0px;
}

.test-bg .test .test-main .test-middle .nav-tabs>li>a:hover,
.test-bg .test .test-main .test-middle .nav-tabs>li:hover>a {
    border-radius: 5px;
    color: #fff;
}

.test-bg .test .test-main .test-middle .tab-content {
    padding: 0px 0px 0px;
}

.test-bg .test .test-main .test-middle .tab-content>.tab-pane {
    padding: 20px 0 0 0;
}

.test-bg .test .test-main .test-center {
    width: 634px;
    min-height: 403px;
    background: url(../images/test-back.png) no-repeat top center;
    background-size: cover;
    transition: 0.7s;
    position: relative;
    border-radius: 10px;
    padding: 63px 15px 0px 30px;
    margin: 20px auto 20px;
}

.test-bg .test .test-main .test-center h2 {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #7a7a7a;
    margin: 10px 30px 10px 30px;
    line-height: 28px;
    text-align: justify;
    min-height: 188px;
}

.test-bg .test .test-main .test-center h3 {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #5d20a3;
    margin: 10px 30px 10px 30px;
}

.test-bg .test .test-main .test-center h4 {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #02060b;
    margin: 10px 30px 10px 30px;
}

.test1 {
    position: relative;
    top: 0px;
    left: 67px;
}

.test2 {
    top: 219px;
    left: 0px;
}

.test3 {
    position: relative;
    top: 0px;
    left: 0px;
}

/*============== TEST CSS END ==============*/

/*============== LAST CSS START ==============*/

.last-bg {
    background: url(../images/last-bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 30px 0px 0px;
}

.last-bg .last {}

.last-bg .last .last-head {
    margin: 40px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    text-align: left;
}

.last-bg .last .last-head h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 30px;
    color: #eb3389;
    font-weight: 700;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
}

.last-bg .last .last-head img {
    position: relative;
    /* bottom: 65px; */
    top: -38px;
}

.last-bg .last {
    padding: 0px 0px 0px;
    text-align: center;
}

.last-bg .last .last-carousel {
    padding: 0;
    margin: 0;
    list-style: none;
}

.last-bg .last .last-carousel img {
    transition: 0.7s;
    cursor: pointer;
}

.last-bg .last .last-tab {
    background-color: #02060b;
    background-size: cover;
    width: 250px;
    margin: 20px auto 20px;
    text-align: center;
    border-radius: 5px;
}

.last-bg .last .last-tab .tabl1 {
    padding: 10px 10px 0px 10px;
    border-bottom: 6px solid #eb3389;
}

.last-bg .last .last-tab .tabl1 h2 {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
    text-align: left;
}

.last-bg .last .last-tab .tabl1 h2 span {
    font-family: 'Heebo', sans-serif;
    font-size: 8px;
    color: #fff;
    font-weight: 500;
    padding: 5px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    float: right;
}

.last-bg .last .last-tab .tabl2 {
    padding: 20px 10px 20px 10px;
}

.last-bg .last .last-tab .tabl2 h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 30px;
    color: #eb3389;
    font-weight: 700;
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
    text-align: left;
}

.last-bg .last .last-tab .tabl2 h2 span {
    float: right;
    margin: 5px 0px 0px 0px;
}

/*============== LAST CSS END ==============*/

/*============== FOOT CSS START ==============*/

.foot-bg {
    background: url(../images/foot-bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 0px 0px 40px;
}

.foot-bg .pay {
    padding: 30px 0px 30px;
    text-align: center;
}

.foot-bg .pay .payment {
    background-color: #fff;
    box-shadow: 0px 0px 9px #e0e0e0;
    padding: 30px 0px 30px 0px;
    border-radius: 5px;
}

.foot-bg .pay .payment-carousel {
    padding: 0;
    margin: 0;
    list-style: none;
}

.foot-bg .pay .payment-carousel img {
    transition: 0.7s;
    cursor: pointer;
    margin: auto;
}

.foot-bg .foot .foot-logo {
    padding: 30px 0px 30px;
}

.foot-bg .foot .foot-logo img {
    margin: 0px 0px 0px 0px;
}

.foot-bg .foot .foot-logo img:hover {
    animation-name: pulse;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

.foot-bg .foot .foot-logo p {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 33px 0px 0px 0px;
    line-height: 26px;
}

.foot-bg .foot .foot-links {
    padding: 55px 0px 30px 30px;
}

.foot-bg .foot .foot-links a {
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    transition: 0.7s;
    display: block;
    padding: 11px 0px 0px 0px;
}

.foot-bg .foot .foot-links a:hover {
    color: #eb3389;
    letter-spacing: 1px;
    transition: 0.7s;
}

.foot-bg .foot .foot-cont {
    padding: 55px 0px 0px 0px;
}

.foot-bg .foot .foot-cont p {
    font-family: 'Heebo', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    margin: 0px 0px 0px 0px;
    padding: 10px 0px 0px 0px;
}

.foot-bg .foot .foot-cont p span {
    color: #eb3389;
}

.foot-bg .foot .foot-cont h2 {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #eb3389;
    margin: 0px 0px 0px 0px;
    padding: 10px 0px 0px 0px;
}

/*============== FOOT CSS END ==============*/

/******************************************************************/

@media only screen and (max-width: 1200px) {
    header .navbar-inverse .navbar-header a {
        width: 200px;
        padding: 0px 0px 0px 0px;
    }
    header .navbar-inverse .navbar-nav>li.btn_menu {
        padding: 17px 0;
    }
    header .navbar-inverse .navbar-nav>li {
        padding: 0 6px;
    }
    header .navbar-inverse .navbar-header {
        padding: 9px 0;
    }
    header .navbar-inverse .navbar-header {
        margin-left: 0;
    }
    header .navbar-inverse .navbar-header {
        margin-left: 0;
    }
    header .navbar-right {
        margin-right: 0;
    }
    .test3 {
        position: relative;
        top: -50px;
        left: 124px;
    }
}

@media only screen and (max-width: 1199px) {
    header .navbar-inverse .navbar-nav>li {
        padding: 14px 8px;
    }
    header .navbar-inverse .navbar-nav>li>a {
        font-size: 16px;
    }
    header .navbar-inverse .navbar-nav>li .btn {
        min-width: 115px;
    }
    header .navbar-inverse .navbar-nav>li a.btn.btn-primary {
        min-width: 110px;
    }
}

@media only screen and (max-width: 991px) {
    header .navbar-inverse {
        text-align: center;
    }
    header .navbar-inverse .navbar-header {
        width: 100%;
    }
    header .navbar-inverse .navbar-nav>li.btn_menu {
        padding: 4px 0;
    }
    header .navbar-inverse .navbar-nav>li>a {
        padding: 0px 0px 8px 0px;
    }
    header .navbar-right {
        position: unset;
        top: 0px;
    }
    .banner-bg .banner {
        text-align: center;
    }
    .banner-bg .banner .banner-text {
        padding: 30px 0px 0px 0px;
    }
    .banner-bg .banner .banner-text p {
        color: #4378a1;
        line-height: 26px;
        padding: 20px 0px 20px 0px;
        margin: 0px 0px 0px 0px;
        width: auto;
        display: inline-block;
        text-align: center;
    }
    .about-bg .stat .stat-back {
        position: relative;
        margin: -70px 0px 0px 0px;
    }
    .about-bg .stat .stat-back .pro ul li {
        display: inline-block;
        padding: 0px 5px;
    }
    .about-bg .about {
        text-align: center;
    }
    .about-bg .about .cert-com img {
        float: unset;
        margin: 0px 0px 15px 0px;
    }
    .about-bg .about .cert-com h2 {
        padding: 0px 0px 10px 0px;
    }
    .about-bg .about .about-right img {
        display: none;
    }
    .step-bg .step .step-circle img {
        display: none;
    }
    .fea-bg .fea .fea-head {
        text-align: center;
    }
    .ref-bg .ref {
        text-align: center;
    }
    .ref-bg .ref .ref-head {
        text-align: center;
    }
    .test-bg .test .test-main .test-center {
        padding: 10px 0px 10px 0px;
        text-align: center;
        background-color: #fff;
        background: #fff;
        box-shadow: 0px 0px 6px #d7d3d3;
        margin: 20px auto;
        width: 100%;
        min-height: 225px;
    }
    .test-bg .test .test-main .test-center h2 {
        text-align: justify;
        min-height: 121px;
    }
    .test1 {
        position: relative;
        top: 0px;
        left: 0px;
    }
    .test2 {
        position: relative;
        top: 0px;
        left: 0px;
    }
    .test3 {
        position: relative;
        top: 0px;
        left: 0px;
    }
    .last-bg .last .last-head {
        margin: 20px 0px 0px 0px;
        padding: 0px 0px 0px 0px;
        text-align: center;
    }
    .foot-bg .foot {
        text-align: center;
    }
    .foot-bg .foot .foot-logo img {
        margin: auto;
    }
    .foot-bg .foot .foot-links {
        padding: 20px 0px 20px 0px;
    }
    .foot-bg .foot .foot-cont {
        padding: 20px 0px 0px 0px;
    }
}

@media only screen and (max-width: 767px) {
    header {
        width: 100%;
        background: #ebebeb no-repeat top center fixed;
        background-size: cover;
        background-attachment: fixed;
        padding: 0px 0px 15px 0px;
        position: fixed;
        top: 0;
        z-index: 11111;
        border-bottom: 1px solid #eb3389;
    }
    header .navbar-inverse {
        text-align: left;
    }
    header .navbar-toggle {
        margin: 28px 0 0px;
        border: 0;
        background: #eb3389;
        border-radius: 0;
    }
    header .navbar-inverse .navbar-toggle:hover,
    header .navbar-inverse .navbar-toggle:focus {
        background: #111d2d;
    }
    header .navbar-inverse .navbar-toggle:hover .icon-bar,
    header .navbar-inverse .navbar-toggle:focus .icon-bar {
        background-color: #f5f5f5;
    }
    header .navbar-inverse .navbar-nav>li {
        padding: 6px;
        width: 100%;
        text-align: center;
    }
    header .navbar-inverse .navbar-nav>li>a:hover {
        border-bottom: 2px solid transparent;
    }
    header .navbar-inverse .navbar-header a {
        width: 200px;
        padding: 0px 0px 0px 0px;
    }
    .banner-bg .banner .banner-text {
        padding: 110px 0px 0px 0px;
    }
    .banner-bg .banner .banner-text h2 {
        font-size: 45px;
    }
    .about-bg .about .cert-com {
        width: 330px;
    }
    .plan-bg .plan .planbg {
        width: 330px;
    }
    .plan-bg .plan .planbg .plan-title h2 {
        margin-left: 235px;
    }
    .foot-bg .foot .foot-links {
        display: none;
    }
}

@media only screen and (max-width: 560px) {}

@media only screen and (max-width: 420px) {}

/**

* Cart Page Table responsive css Styles.

**/

/*********faq-bg*********/

.faq-bg {
    background: transparent;
    background-size: cover;
    background-attachment: fixed;
    padding: 50px 0px 50px 0px;
    font-family: 'Roboto', sans-serif;
}

.faq_accordian {
    width: 100%;
}

.faq_accordian .accordion-toggle {
    cursor: pointer;
    margin: 10px 0 0 0;
}

.faq_accordian .accordion-toggle.active {
    background: url(../images/accordian_arrow_down.png) no-repeat center right, linear-gradient(90deg, #481ea8 0%, #476da6 72%);
    color: #f1f1f1;
}

.faq_accordian .accordion h4 {
    background: url(../images/accordian_arrow_down.png) no-repeat center right, linear-gradient(45deg, #481ea8 39%, #cf2f8e 73%);
    font-size: 15px;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    width: 100%;
    font-weight: normal;
    padding: 15px 45px 15px 10px;
    font-family: 'Roboto', sans-serif;
}

.faq_accordian .accordion-content {
    display: none;
}

.faq_accordian .accordion-content p {
    width: 100%;
    display: inline-block;
    font-size: 14px;
    color: #323d51;
    line-height: 26px;
    background: #fff;
    border: 1px solid #4944a6;
    padding: 20px 30px;
}

.faq_accordian .accordion-content p a {
    color: #e91d54;
}

.faq_accordian .accordion-content p a:hover {
    color: #344796;
}

.faq_accordian .accordion .open {
    display: block;
}

/*********faq-bg*********/

@media only screen and (max-width: 991px) {
    /* Force table to not be like tables anymore */
    .cart-page table,
    .cart-page thead,
    .cart-page tbody,
    .cart-page th,
    .cart-page td,
    .cart-page tr {
        display: block;
    }
    /* Hide table headers (but not display: none;, for accessibility) */
    .cart-page thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    .cart-page tr {
        border: 1px solid #ccc;
    }
    .cart-page td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }
    .cart-page td:before {
        /* Now like a table header */
        /* Top/left values mimic padding */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding-left: 40px;
        white-space: nowrap;
        font-size: 16px;
        color: #000;
        font-weight: 500;
        background-color: #F9F9F9;
        line-height: 60px;
        text-align: left;
    }
    .cart-page .table>tbody>tr>td.preview {
        padding: 85px 50px 25px;
    }
    .cart-page .table>tbody>tr>td {
        padding: 80px 40px 25px;
    }
    .cart-page .table>tbody>tr>td.del-item {
        text-align: left;
    }
    /*

  Label the data

  */
    .cart-page td:nth-of-type(1):before {
        content: "Preview";
    }
    .cart-page td:nth-of-type(2):before {
        content: "Product";
    }
    .cart-page td:nth-of-type(3):before {
        content: "Price";
    }
    .cart-page td:nth-of-type(4):before {
        content: "Quantity";
    }
    .cart-page td:nth-of-type(5):before {
        content: "Total";
    }
    .cart-page td:nth-of-type(6):before {
        content: "Delete Item";
    }
}

/******* edited style ******/

/******* edited style ******/

/*represent start*/

.represent {
    font-family: 'Roboto', sans-serif;
    position: relative;
    width: 100%;
    margin: 0;
}

.represent .title {
    padding-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: #363636;
}

.represent .sub_title {
    max-width: 600px;
    padding-bottom: 20px;
    text-align: center;
    color: #959595;
    position: relative;
    margin-bottom: 30px;
}

.represent .sub_title:after {
    content: "";
    width: 30%;
    height: 2px;
    background: #363636;
    position: absolute;
    bottom: 0;
    left: 35%;
}

.represent .content {
    min-width: 300px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.represent .content .tie {
    font-size: 21px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px 0 6px;
}

.represent .content .cont {
    color: #959595;
    font-size: 15px;
    padding-bottom: 10px;
    text-align: justify;
}

.represent .content .cont:before {
    content: "";
    width: 30%;
    height: 2px;
    background: #e5493a;
    position: absolute;
    bottom: 15px;
    left: 35%;
}

@media (min-width:992px) {
    .represent .title {
        font-size: 30px;
    }
    .represent .sub_title {
        font-size: 18px;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .represent .title {
        font-size: 24px;
    }
    .represent .sub_title {
        font-size: 16px;
    }
}

@media (max-width:767px) {
    .represent .title {
        font-size: 20px;
    }
    .represent .sub_title {
        font-size: 14px;
    }
}

/*represent ends*/

/*register start*/

.refer_link {
    line-height: 60px;
    border-radius: 3px;
    font-size: 18px;
    background-color: #3e3343;
    padding: 0 15px;
    display: inline-block;
    box-sizing: border-box;
    color: #16c9f6;
    margin-bottom: 30px;
}

@media (max-width:768px) {
    .refer_link,
    .dash_reflink a {
        font-size: 14px !important;
        line-height: 24px;
    }
}

.dash_upline,
.dash_reflink {
    font-size: 18px;
    color: #000;
}

.dash_upline a,
.dash_reflink a {
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
    color: #111930;
}

.dash_upline a:hover,
.dash_reflink a:hover {
    text-decoration: none;
}

.dash_referral {
    padding: 30px 0 0;
    border-top: 2px solid #111930;
}

.dash_security .title {
    font-size: 21px;
    font-weight: 600;
    padding: 10px 0;
}

.dash_security .content {
    position: relative;
    display: inline-flex;
    margin-right: 30px;
    width: 150px;
}

.dash_security input[type=radio] {
    opacity: 0;
    position: relative;
    width: 32px;
    height: 32px;
    line-height: 32px;
    z-index: 1;
    cursor: pointer;
}

.dash_security p {
    display: inline-block;
    font-size: 18px;
    line-height: 36px;
    padding-left: 15px;
}

.dash_security input[type=radio]+span {
    display: inline-block;
    position: absolute;
    top: 3px;
    left: 0;
}

.dash_security input[type=radio]+span:before {
    content: url(../images/disabled.png);
    width: 32px;
    height: 32px;
}

.dash_security input[type=radio]:checked+span:before {
    content: url(../images/enabled.png);
}

.dash_security .dash_btn {
    margin-top: 30px;
}

.dash_edit {
    position: relative;
    margin: 0;
}

.dash_edit .dash_acc_detail {
    background-color: #1498dc;
    color: #fff;
    padding: 30px 0;
}

.dash_edit .dash_acc_detail .cont {
    display: inline-flex;
    width: 100%;
    align-items: center;
}

.dash_edit .dash_acc_detail .tie {
    width: 50%;
    padding: 6px 0;
    font-size: 18px;
}

.dash_edit .dash_acc_detail .form-control {
    display: block;
    width: 100%;
    height: 36px;
    padding: 0 0 0 12px;
    font-size: 18px;
    line-height: inherit;
    color: #fff;
    margin: 0;
    background-color: transparent;
    background-image: none;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: inset 0px 0px 6px rgba(255, 255, 255, 0.30);
    box-shadow: inset 0px 0px 6px rgba(255, 255, 255, 0.30);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.dash_edit .dash_acc_detail .form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}

/*register ends*/

/***************** login starts ************/

.innerpage_banner1 {
    min-height: 150px;
    width: 100%;
    background: #18003a url(../images/banner-bg.jpg) no-repeat top center;
    background-attachment: fixed;
    background-size: cover;
}

.inner_page_infos {
    margin-top: 40px;
    width: auto;
    padding-left: 35px;
    background: transparent;
    padding-right: 35px;
    padding-bottom: 40px;
    display: inline-block;
}

.inner_page_infos h3 {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    margin: 0px 0px 30px 0px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}

@media only screen and (max-width: 1199px) {
    .inner_page_infos h3 {
        font-size: 30px;
        color: #fff;
        font-weight: 700;
        margin: 0px 0px 30px 0px;
        line-height: normal;
        font-family: 'Roboto', sans-serif;
        text-transform: uppercase;
    }
}

@media only screen and (max-width: 991px) {
    .section-table.table-statistic td:last-child,
    .section-table.table-statistic th:last-child {
        width: 100%;
    }
    table.responsive.table-vip tr:first-child,
    table.responsive.table-statistic tr:first-child,
    table.responsive.history-table tr:first-child {
        display: none;
    }
    .section-table.table-vip td {
        font-size: 0.8em;
    }
    .section-table td {
        font-size: 0.8em;
    }
    .section-table th:first-child,
    .section-table td:first-child {
        padding-left: 5%;
    }
    .section-table.table-vip td:last-child,
    .section-table.table-vip th:last-child {
        width: 100%;
    }
    .section-table-block .el-table {
        display: none;
    }
    .section-table.table-statistic td:first-child,
    .section-table.table-statistic th:first-child {
        width: 100%;
        padding: 4px 1%;
    }
    .section-table.table-statistic td:last-child,
    .section-table.table-statistic th:last-child {
        width: 100%;
    }
    table.responsive,
    table.responsive thead,
    table.responsive tbody,
    table.responsive th,
    table.responsive td,
    table.responsive tr {
        display: block;
    }
    table.responsive thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    table.responsive tr {
        border: 1px solid #ccc;
        margin-bottom: 20px;
    }
    table.responsive td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding: 4px 1%;
        width: 100%;
        font-size: 13px;
    }
    table.responsive td::before,
    table.responsive td .td-text {
        width: 100%;
        font-size: 13px;
    }
    table.responsive td::before {
        width: 50%;
        padding-right: 15px;
        text-align: left;
        content: attr(data-content);
        display: block;
        text-transform: uppercase;
    }
    table.responsive td::after {
        content: "";
        display: table;
        clear: both;
    }
}

@media only screen and (max-width: 440px) {
    .section-table .table-link {
        font-size: 10px;
    }
}

.inner_page_infos h4 {
    font-size: 20px;
    font-weight: 500;
    color: #ccc;
    margin: 0px 0px 30px 0px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}

.inner_page_infos p {
    font-size: 18px;
    font-weight: 400;
    color: #ccc;
    margin: 0px 0px 0px 0px;
    font-family: 'Roboto', sans-serif;
}

.card_content-text {
    padding: 0;
    line-height: 20px;
}

.card_content-text--list {
    margin-top: 25px;
    border-top: 1px solid #c6c2c2;
    padding-top: 25px;
}

.card_content-text--list p {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: #444 !important;
    font-size: 18px !important;
    margin: 0px 0px 10px 0px;
}

.card_content-text--list ul {
    padding: 0;
}

.card_content-text--list ul li {
    list-style: none;
    padding: 2px 0px !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #444;
}

.card_content-text--list1 {
    padding-top: 15px;
}

.card_content-text--list1 p {
    margin: 2px 0px 0px 0px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #444;
    font-size: 14px;
}

.card_content-text--list1 p span {
    color: #9636de;
}

.card_content-text--list1 p span:hover {
    color: #444;
}

.innerpage_banner {
    min-height: 100px;
    width: 100%;
    background: transparent;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    margin: -102px 0px 0px 0px;
}

.inner_page_info {
    margin-top: 20px;
    width: auto;
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 15px;
    padding-top: 10px;
    display: inline-block;
    background: url(../images/line-2.png) no-repeat bottom center;
}

.inner_page_info h3 {
    font-size: 28px;
    color: #1d1736;
    font-weight: 600;
    margin: 0px 0px 0px 0px;
    line-height: normal;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    border-bottom: 6px solid #bf2d91;
}

.inner_page_info h3 span {
    color: #e344a4;
}

.inner_page_info img {
    margin: 10px auto;
}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 767px) {
    .innerpage_banner {
        margin: -74px 0px 0px 0px;
    }
    .inner_page_info h3 {
        font-size: 24px;
        margin: 10px 0px 0px 0px;
    }
}

.full {
    /* width: 100%;
     float: left;
     margin: 0;
     padding: 0;*/
    text-align: center;
}

.heading_main {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
    /*margin-top: 30px;*/
}

.heading-main h2 {
    font-size: 45px;
    color: #222;
    line-height: 36px;
    font-weight: 400;
    text-transform: none;
    line-height: normal;
    letter-spacing: -0.5px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}

.heading_main span {
    color: #550ae7;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 38px;
    text-transform: uppercase;
}

.heading_main span::after {
    border-bottom: solid #ff7300 4px;
    color: #fff;
    padding-bottom: 15px;
    content: "";
    display: block;
    width: 120px;
    margin: 0 auto -10px;
}

.main_title {
    width: 100%;
    margin-bottom: 30px;
}

.main_title h2 {
    font-size: 33px;
    font-family: 'Roboto', sans-serif;
}

.main_title span {
    font-size: 33px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    padding-top: 20px;
    display: inline-block;
    width: 100%;
    color: #6f8ef3;
}

.form_block {
    width: 100%;
    display: inline-block;
    margin-bottom: 30px;
}

.form_block span {
    width: 100%;
    display: inline-block;
    position: relative;
}

.back {
    /*	background-color: #32487a54;
    padding: 20px 20px 30px 20px;
    border-radius: 0px;*/
}

.loginheads {}

.loginheads h2 {
    width: 100%;
    padding: 12px 20px 20px 0;
    color: #481ea7 !important;
    font-size: 30px;
    text-transform: uppercase;
    float: left;
    font-weight: 600;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    margin: 0px 0px 0px 0px;
}

.loginheads h2 span {
    font-weight: 600;
    color: #de42a7;
}

.loginheads img {
    margin: 10px auto 30px;
}

.loginaction {
    padding: 10px;
    text-align: center;
    background: -moz-linear-gradient(top, rgba(23, 58, 234, 1) 0%, rgba(28, 55, 206, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(23, 58, 234, 1) 0%, rgb(77, 22, 140) 100%);
    background: linear-gradient(to bottom, rgb(11 9 32) 0%, #02060b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#173aea', endColorstr='#1c37ce', GradientType=0);
    border-radius: 0px;
    overflow: hidden;
    margin: 20px 20px 0px 20px;
}

.loginaction h4 {
    text-transform: uppercase;
    margin: 0px;
    font-weight: 400;
    font-size: 17px;
    float: left;
    line-height: 48px;
    padding-left: 20px;
    font-family: 'Roboto', sans-serif;
    color: #fff;
}

.loginaction .signup {
    color: #fff;
    background: -moz-linear-gradient(top, rgba(252, 179, 43, 1) 0%, rgba(209, 143, 20, 1) 100%);
    background: linear-gradient(to bottom, rgb(169 64 162) 0%, rgb(80 33 166) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcb32b', endColorstr='#d18f14', GradientType=0);
    border-radius: 5px;
    padding: 13px 14px;
    text-transform: uppercase;
    line-height: 50px;
    display: initial;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
}

.loginaction .signup:hover {
    background: #fff;
    color: #eb3389;
}

.headerLevelTwo1 {}

.headerLevelTwo1 .foot-logo {
    display: inline-block;
    transform-origin: 100% 0;
    padding: 0px 0px 15px;
    text-align: center;
    display: block;
}

.headerLevelTwo1 .foot-logo img {
    display: inline-block;
    transform-origin: 100% 0;
}

.headerLevelTwo1 .foot-logo img:hover {
    animation-name: bounce;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@media (max-width:1199px) {
    .loginaction h4 {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .box6 {
        padding: 0px 0 !important;
    }
    .box6,
    .box6 p,
    .box6 a {
        width: 100%;
        font-family: 'Roboto', sans-serif;
        font-size: 100%;
        line-height: 24px;
        color: #000;
        padding: 15px 11px;
        border: none;
    }
}

.content__title .actions {
    margin-left: auto;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-left: 2rem;
}

.content__title {
    margin-bottom: 1.5rem;
    padding: .75rem 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: inline-block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: unset;
    float: unset;
    position: absolute;
    right: 20px;
    top: 0px;
}

.actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.actions__item {
    font-size: 1.5rem;
    cursor: pointer;
    color: #de42a7 !important;
    background: #ece8f6;
    -webkit-transition: background-color .3s, color .3s;
    transition: background-color .3s, color .3s;
    width: 35px !important;
    height: 35px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 5px 5px 5px 4px;
}

.actions__item a i {
    font-size: 17px;
}

.actions__item.show,
.actions__item:hover {
    background-color: #481ea7;
    color: #fff !important;
}

.actions__item--active {
    background-color: #2d1656;
}

.icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon-list>li {
    position: relative;
    padding: .3rem 0;
}

.icon-list>li address {
    display: inline-block;
    vertical-align: top;
    margin-top: .25rem;
}

.icon-list>li>i {
    width: 2.5rem;
    text-align: center;
    font-size: 1.25rem;
    top: .12rem;
    position: relative;
    font-style: normal;
    display: inline-block;
}

.form_block span a {
    color: #5222a6;
    font-size: 16px;
    font-weight: bold;
    transition: 0.7s;
}

.form_block span a:hover {
    color: #e948a1;
    transition: 0.7s;
    font-size: 16px;
    font-weight: bold;
}

.form_block span [type="text"],
.form_block span [type="email"],
.form_block span [type="password"],
.form_block span [type="number"],
.form_block span textarea {
    padding: 0 60px 0 0;
}

.form_block.dark span [type="text"],
.form_block.dark span [type="email"],
.form_block.dark span [type="password"],
.form_block span.dark [type="number"],
.form_block span.dark textarea {
    color: #000000;
}

/*.form_box {
    width: 100%;
    display: inline-block;
    padding: 10px 20px 30px 20px;
    border-radius: 5px;
    margin: 30px 0px 30px 0px;
    background: #ffffff70;
    box-shadow: 0 0px 10px 0px #a0a2a5;
    background-size: cover;
}*/

.form_box h2 {
    text-align: center;
    padding: 15px 0;
    color: #131732;
}

.forgot_pwd span {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
}

.forgot_pwd span a {
    font-size: 15px;
    color: #481ea7;
}

.inner-bg {
    background: url(../images/plan-bg.jpg) no-repeat top center fixed;
    background-size: cover;
    padding: 30px 0px 30px 0px;
}

.cont-add {
    font-family: 'Roboto', sans-serif;
    padding: 0px 0px 30px 0px;
}

.cont-add h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #131732;
    margin: 0px 0px 30px 0px;
}

.cont-add p {
    font-size: 16px;
    font-weight: 400;
    color: #131732;
    margin: 0px 0px 0px 0px;
}

.cont-add1 {
    font-family: 'Roboto', sans-serif;
    padding: 0px 0px 30px 0px;
}

.cont-add1 h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #131732;
    margin: 0px 0px 10px 0px;
}

.cont-add1 h4 i {
    color: #3b3679;
}

.cont-add1 p {
    font-size: 16px;
    font-weight: 400;
    color: #131732;
    margin: 0px 0px 0px 0px;
}

.success {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(1deg, #171858, #2b792b);
    background-size: 400% 400%;
    -webkit-animation: AnimationName 5s ease infinite;
    -moz-animation: AnimationName 5s ease infinite;
    animation: AnimationName 5s ease infinite;
    border-radius: 0;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15) inset;
    color: #fff;
    font-size: 16px;
    padding: 1px 10px;
    opacity: 0.7;
    display: inline-block;
}

.msg {
    color: #000;
    font-size: 13px;
    margin: 10px 0;
    text-align: center;
}

.msg.black {
    color: #fff;
}

.frmcont.textarea span i {
    bottom: inherit;
    top: 0;
}

.error {
    background: linear-gradient(1deg, #171858, #b93b37);
    font-family: 'Roboto', sans-serif;
    background-size: 400% 400%;
    -webkit-animation: AnimationName 5s ease infinite;
    -moz-animation: AnimationName 5s ease infinite;
    animation: AnimationName 5s ease infinite;
    border-radius: 0;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15) inset;
    color: #fff;
    font-size: 12px;
    padding: 1px 10px;
    opacity: 0.7;
    display: inline-block;
}

.msg li {
    display: inline-block;
    list-style-type: none;
    margin: 5px 0;
}

.after_reg {
    color: #000;
}

.after_reg h3 {
    color: #000;
    font-size: 23px;
}

.after_reg p {
    margin-bottom: 10px;
}

.after_reg b {
    color: #e344a4;
    font-size: 18px;
}

.msg .error i {
    background-color: #b93b37;
    color: #fff;
}

.msg .success i {
    background-color: #2b792b;
    color: #fff;
}

.msg i {
    margin-right: 5px;
    padding: 10px;
}

@-webkit-keyframes AnimationName {
    0% {
        background-position: 63% 0%
    }
    50% {
        background-position: 38% 100%
    }
    100% {
        background-position: 63% 0%
    }
}

@-moz-keyframes AnimationName {
    0% {
        background-position: 63% 0%
    }
    50% {
        background-position: 38% 100%
    }
    100% {
        background-position: 63% 0%
    }
}

@keyframes AnimationName {
    0% {
        background-position: 63% 0%
    }
    50% {
        background-position: 38% 100%
    }
    100% {
        background-position: 63% 0%
    }
}

/***************** login ends ************/

/***************** signup starts ************/

.sign_bg {
    /*background-color: #e9e9e9;*/
}

.regpage {
    position: relative;
    width: 100%;
    min-width: 300px;
    max-width: 450px;
    box-sizing: border-box;
    padding: 30px;
    box-shadow: 0px 1px 12px 6px;
    background-color: #ff671e66;
    border: 5px solid #f54801;
    border-radius: 20px;
}

.regpage .main_tie {
    font-family: 'Roboto', sans-serif;
    padding-bottom: 30px;
    font-size: 30px;
    font-weight: bold;
    color: #000;
}

.regpage table tr td {
    border-bottom: 20px solid transparent;
    color: #3e3343;
}

.regpage table {
    width: 100%;
}

.regpage .table-responsive {
    border: none;
}

.regpage table .inpts,
.regpage table textarea {
    position: relative;
    max-width: 300px;
    height: 39px;
    width: 100%;
}

.regpage table tr td,
.regpage table tr td a,
.regpage table .sbmt {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

/***************** signup ends ************/

/***************** support starts ************/

.sup_bg {}

.supage .supageright {
    width: 100%;
    min-width: 300px;
    max-width: 450px;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0px 0px 12px 6px rgba(0, 0, 0, 0.3);
    background-color: #ff671e66;
    border: 5px solid #f54801;
    box-shadow: 0px 1px 12px 6px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.supage .supageright img {
    max-width: 100%;
    padding-bottom: 18px;
}

.supage .supageright .sup-head {
    padding-top: 13px;
    line-height: 50px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #6b1d0b;
}

.supage .supageleft {
    width: 100%;
    min-width: 300px;
    max-width: 450px;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0px 0px 12px 6px rgba(0, 0, 0, 0.3);
    background-color: #ff671e66;
    border: 5px solid #f54801;
    box-shadow: 0px 1px 12px 6px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.supage .main_tie {
    font-family: 'Roboto', sans-serif;
    padding-bottom: 30px;
    font-size: 30px;
    font-weight: bold;
    color: #000;
}

.supage .supageleft .table-responsive {
    border: none;
}

.supage .supageleft table {
    width: 100%;
}

.supage .supageleft table tr td {
    border-bottom: 20px solid transparent;
    color: #3e3343;
}

.supage .supageleft .inpts,
.supage .supageleft table textarea {
    position: relative;
    max-width: 300px;
    width: 100%;
}

.supage .supageleft .inpts {
    height: 39px;
}

.supage .supageleft table tr td,
.supage .supageleft table tr td a,
.supage .supageleft table .sbmt {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

.sup_bg .table-responsive {
    /*border:none;*/
}

/***************** support ends ************/

/***************** Dashboard starts ************/

.user_page {
    width: 100%;
    position: relative;
    border: none;
    overflow-x: hidden;
    background-color: #fff;
    padding: 30px;
    box-sizing: border-box;
}

@media screen and (max-width: 420px) {
    .user_page {
        padding: 30px 10px;
    }
}

.user_page .list {
    width: 100%;
    height: 180px;
    margin-bottom: 30px;
    padding: 15px;
    color: #fff;
    border: 1px solid #131732;
    background: #323254;
}

.user_page .list:first-child {
    /*margin-right:20px;*/
}

.user_page .list p {
    font-size: 21px;
    line-height: 36px;
}

.user_page .list span,
.dash_title {
    font-size: 24px;
    display: block;
    font-weight: bold;
}

.dash_cont {
    font-size: 16px;
    display: block;
    color: #9c9c9c;
}

.user_page .content,
.dash_referral .content {
    display: inline-block;
    float: none;
    min-width: 245px;
    max-width: 315px;
    padding: 15px 0 15px 6%;
    margin-bottom: 15px;
    margin-right: 15px;
    box-sizing: border-box;
    background-color: #e2e2e2;
    text-align: left;
    background-image: url(../images/chart.png);
    background-repeat: no-repeat;
    background-position-x: 93%;
    background-position-y: 69%;
}

.user_page .content .tie,
.dash_referral .content .tie {
    font-size: 18px;
}

.user_page .content .num,
.dash_referral .content .num {
    font-family: 'Roboto', sans-serif;
    font-size: 27px;
    font-weight: 600;
    color: #111930;
    ;
}

.inner-content {
    padding: 45px 0 100px 0px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #808080;
}

.innerContentTitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 30px;
    color: #1e1e1e;
    margin-bottom: 27px;
}

.innerContentTitle span {
    font-weight: 300;
}

.innerContentSubTitle {
    background: #101010;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    font-size: 18px;
    text-transform: uppercase;
    padding: 10px 0px 10px 20px;
    margin: 0px;
    overflow: hidden;
}

.innerContentSubTitle label {
    float: right;
    text-align: right;
    font-weight: normal;
    padding-right: 20px;
}

.statusDis {
    max-width: 280px;
    height: 150px;
    width: 100%;
    margin-right: 15px;
    background-color: #f85c37;
    text-align: center;
    color: #fff;
    float: left;
    padding-top: 27px;
}

.adminStatusDisplay .statusDis h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    margin: 20px 0px;
}

.adminStatusDisplay .statusDis h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    margin: 5px 0px;
    text-transform: uppercase;
}

h3.depositWithdrwaInfo {
    background: #f54801;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    font-size: 18px;
    text-transform: uppercase;
    padding: 17px 10px 17px 10px;
    margin: 0px;
    overflow: hidden;
    text-align: center;
}

h5.affiliateLink {
    background: #000;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 18px;
    padding: 25px 10px 30px 10px;
    margin: 0px;
    overflow: hidden;
    text-align: center;
    margin-bottom: 10px;
}

h5.affiliateLink a {
    color: #f2730b;
}

.amtDetails {
    padding: 20px 0px;
}

.amtDetails .amtDis {
    width: 100%;
    height: 62px;
    border: 1px solid #969696;
    padding: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.amtDetails .amtDis .nAme {
    width: 60%;
    height: 40px;
    float: left;
    background-color: #0d0625;
    color: #ef9043;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 38px;
    text-transform: uppercase;
    padding-left: 20px;
}

.amtDetails .amtDis .aMt {
    width: 40%;
    height: 40px;
    float: left;
    background-color: #c8c8c8;
    color: #06123c;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 38px;
    padding-left: 20px;
}

.inner-content h5.affiliateLink a {
    color: #ffffff;
    text-decoration: none;
}

.inner-content h5.affiliateLink a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.adminStatusDisplay .statusDis:last-child {
    margin-right: 0px;
}

.adminStatusDisplay .statusDis {
    max-width: 280px;
    height: 150px;
    width: 100%;
    margin-right: 15px;
    background-color: orange;
    text-align: center;
    color: #101010;
    float: left;
    padding-top: 27px;
}

.adminStatusDisplay {
    padding: 20px 0px 20px 0px;
}

.amountDeposit {
    padding: 12px 0px 18px;
}

.amountDeposit .dollar {
    width: 77px;
    height: 52px;
    float: left;
    padding-left: 22px;
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    color: #18428c;
    line-height: 48px;
}

.amountDeposit .amt {
    width: 270px;
    height: 50px;
    float: left;
    /*background-color: #c8c8c8;*/
    padding-left: 22px;
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    color: #18428c;
    line-height: 48px;
}

.depositFunds {
    padding: 8px 0px;
}

.depositFunds .fundsFrom {
    width: 290px;
    height: 40px;
    background: url("../images/fundsFromBg.jpg") no-repeat 0 4px;
    border: 1px solid #c8c8c8;
    margin: 10px 0px;
    padding-left: 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 38px;
    color: #555555;
}

.clearfix {
    clear: both;
}

.spendBut {
    width: 170px;
    height: 50px;
    background-color: #18428c;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    text-align: center;
    line-height: 49px;
    color: #f7c524;
    text-transform: uppercase;
    border: none;
}

.spendBut:hover {
    background-color: #2554a8;
}

.adminPlans {
    padding: 30px 0px 40px 0px;
}

.adminPlans .plan {
    width: 190px;
    height: 120px;
    float: left;
    background: url("../images/planBg.jpg") no-repeat 0 0;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
}

.adminPlans .plan h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 50px;
    color: #18428c;
    padding: 0px;
    margin: 0px;
    text-align: center;
}

.adminPlans .plan h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #01182b;
    margin: 0px;
    padding: 4px 0 7px;
    text-align: center;
}

.adminPlans .plan h4 {
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    font-size: 17px;
    color: #ebebeb;
    margin: -13px;
    padding: 6px 0;
    text-align: center;
}

.dash_tie span {
    line-height: 36px;
    font-size: 24px;
    color: #3e3343;
    font-weight: bold;
    display: block;
    border-bottom: 2px solid #111930;
    margin-bottom: 20px;
    text-align: left;
}

.dash_detail {
    position: relative;
    min-width: 300px;
    border: 3px solid #16c9f6;
    max-width: 480px;
    display: inline-table;
    min-height: 120px;
    margin-right: 6%;
    box-sizing: border-box;
    padding: 10px 15px;
    padding-left: 50px;
    background-image: url(../images/banner-3.jpg);
    background-position: center;
    margin-bottom: 30px;
}

.dash_detail .dash_pic {
    position: absolute;
    left: -15%;
    width: 90px;
    height: 90px;
    top: 15px;
}

.dash_detail .dash_pic img {
    max-width: 100%;
    border: 3px solid #16c9f6;
    border-radius: 50%;
    background-color: #324a5e;
}

.dash_detail .dash_text p {
    text-transform: inherit;
    color: #000;
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    text-align: left;
}

.dash_detail .dash_text p span {
    float: right;
}

/***************** Dashboard end ************/

/********** registration part Media query **********/

@media (min-width:1200px) {
    .mega_tourch {
        height: 28%;
    }
    .mega_tourch .touch {
        left: 12%;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .mega_tourch {
        height: 20%;
    }
    .mega_tourch .touch {
        left: 12%;
    }
}

@media (min-width:600px) and (max-width:991px) {
    .mega_tourch {
        height: 15%;
    }
    .mega_tourch .touch {
        left: 9%;
    }
}

@media (max-width:600px) {
    .mega_tourch {
        height: 9%;
    }
    .mega_tourch .touch {
        left: 6%;
    }
}

@media (max-width:992px) {
    .box6 p,
    .box6 a {
        width: 100%;
        font-family: 'Roboto', sans-serif;
        /*color: #000;*/
        padding: 0px 0;
        border: none;
    }
    input,
    textarea {
        width: auto;
        height: auto;
    }
    input[type=submit] {
        width: auto;
        /*	background: #131732;
	border: 1px solid #131732;
	color: #fff;*/
    }
    input[type=submit] {
        width: auto;
        /*	background: #131732;
	border: 1px solid #131732;
	color: #fff;*/
    }
    input[type=submit]:hover {
        /*	background: #fff;
	color: #131732;
	border: 1px solid #131732;*/
    }
}

/********** account-main page **********/

@media (max-width:420px) {
    .member_detail,
    .member_detail table {
        font-size: 100%;
    }
}

/*.menu ul li a {

padding:20px;

}*/

.tik,
.users {
    width: 100%;
}

.tik .contents1 p {
    position: relative;
    width: 100%;
    color: #202223;
}

.tik .contents1 span {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background-color: #242e35;
    position: absolute;
    left: 40px;
}

.tik .contents1 span img {
    padding: 15px 0;
}

.tik .contents1 {
    padding: 20px 0px;
    text-align: center;
    line-height: 45px;
    position: relative;
    background-color: #f3af27;
    width: 180px;
    margin: 10px;
    display: inline-block;
}

.member_detail {
    font-family: 'Roboto', sans-serif;
    /* background: #212424; */
    border-radius: 5px;
}

.member_detail .left,
.member_detail .rightmembox {
    height: auto;
    background: rgba(255, 255, 255, 0.25);
    margin-bottom: 30px;
}

.member_detail .left .boxcontent,
.member_detail .rightmembox .boxcontent {
    border: 2px solid #192134;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 5px;
    width: 100%;
}

.member_detail .left .memtitlebox,
.member_detail .rightmembox .memtitlebox {
    background: #00bff3;
    color: #FFFFFF;
    padding: 13px 20px;
    text-align: center;
    font-size: 16px;
    border-radius: 5px;
    text-transform: uppercase;
}

.member_detail .left .boxcontent .usimg {
    text-align: center;
    width: 100%;
    margin: 10px 0px 10px 0px;
}

.member_detail table tr td {
    border-bottom: 1px solid #012670;
    /* border-left: 1px solid #ffcc00; */
    color: #012670;
    line-height: 30px;
}

/********** registration part **********/

.navigation .menutxt:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #3e3343;
    left: 0;
    top: -53px;
    transition: 0.8s;
    z-index: -1;
}

.navigation .menutxt:hover:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #3e3343;
    left: 0;
    top: 0px;
    transition: 0.8s;
}

.navigation .menutxt {
    position: relative;
    overflow: hidden;
}

.navigation .menutxt {
    font-size: 16px;
    width: 240px;
    display: inline-block;
    text-align: left;
    text-decoration: none;
    line-height: 50px;
    color: #101010;
    font-weight: 600;
    border: 1px solid #f54801;
    margin-bottom: 5px;
    background-color: #f54801;
}

.navigation .menutxt:hover {
    color: #f54801;
    text-decoration: none;
    border: 1px solid #101010;
    background-color: #101010;
    transition: 0.8s;
}

@media (min-width:993px) {
    /*.sidebar {

display:none;

}*/
    .dash_head {
        background-image: url(../images/dash.png);
        background-position: 10px;
        background-repeat: no-repeat;
        background-color: #790b57;
        padding: 30px 15px;
        width: 240px;
        border-bottom: 1px solid #fff;
    }
    .dash_head p {
        color: #fff;
        font-size: 24px;
        padding-left: 64px;
    }
}

@media (max-width:993px) {
    .left-navigation .fullnav li {
        display: inline-block;
    }
    .right-navigation .table-responsive {
        border: none;
    }
    .right-navigation {
        width: 96%;
        position: relative;
        left: 0px;
        padding-right: 0;
    }
    /*.sidebar .menutxt

{

    font-size: 16px;

    width: 270px;

    float: left;

    text-decoration: none;

    line-height: 50px;

    color:#fff;

background-color: #790b57;



}

.sidebar .menutxt:hover

{

color:#202223;

text-decoration:underline;

background-color: #16c9f6;

}

.sidebar .full_menu ul li a {

display:block;



color:#fff;

font-family: 'Roboto', sans-serif;

text-transform:uppercase;

font-size:15px;

line-height:50px;

text-align:left;

}









 

.sidebar .dash_head {

display:block;

background-image:url(../images/dash.png); 

background-position:10px; 

background-repeat:no-repeat; 

background-color:#790b57; 

padding:30px 15px; 

width:100%; 

border-bottom: 1px solid #fff;

}



.sidebar .dash_head p {

color:#fff; 

font-size:24px; 

padding-left: 64px;

}



.sidebar ul {

margin:0;

}



.sidebar  {

  min-height: 758px;

  z-index:5;

  position:absolute;

  top: 15%;

  left: 0;

  bottom: 0;

  width: 270px;

  background: #000;

  text-align: center;

  color: #fff;

  -webkit-transform: translate3d(-270px, 0, 0);

  -moz-transform: translate3d(-270px, 0, 0);

  -ms-transform: translate3d(-270px, 0, 0);

  -o-transform: translate3d(-270px, 0, 0);

  transform: translate3d(-270px, 0, 0);

}*/
    /*.show {

  -webkit-transform: translate3d(0, 0, 0);

  -moz-transform: translate3d(0, 0, 0);

  -ms-transform: translate3d(0, 0, 0);

  -o-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

  -webkit-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);


  -webkit-transition: all 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  -moz-transition: all 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  -o-transition: all 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  transition: all 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);


}*/
    .animate {
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }
    /*.fixed_menu {

    width: 30px;

    height: 100%;

    background: #3e3343;

    position: absolute;

    right: -30px;

    top: 0px;

    font-size: 18px;

    box-sizing: border-box;

    padding: 10px 3px;

	cursor: pointer;

}



.fixed_menu .text_title {

position: absolute;

    right: -100px;

    top: 150px;

    color: #fff;

    width: 233px;

    text-align: right;

    -webkit-transform: rotate(-90deg);

    -moz-transform: rotate(-90deg);

    -ms-transform: rotate(-90deg);

    -o-transform: rotate(-90deg);

    transform: rotate(-90deg);

}

  .animate span {

    display: block;

    width: 100%;

    height: 4px;

    background-color: #fff;

}

.animate span + span {

    margin-top: 4px;

}
*/
}

#formname_main {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #342f72;
    padding: 0px 0px 16px 0px;
    margin: 0px 0px 20px 0px;
    background: url(../css/line-2.png) no-repeat bottom center;
    text-transform: uppercase;
}

@media (min-width:992px) {
    .box6 {
        width: 100%;
        font-family: 'Roboto', sans-serif;
        font-size: 15px;
        line-height: 24px;
        /*color: #000;*/
        padding: 30px 0;
        border: none;
    }
    #formname {
        text-align: center;
        text-transform: uppercase;
        color: #fff;
        font-size: 21px;
        border: 3px solid #09b719;
    }
}

.btn-default.active.focus,
.btn-default.active:focus,
.btn-default.active:hover,
.btn-default:active.focus,
.btn-default:active:focus,
.btn-default:active:hover,
.open>.dropdown-toggle.btn-default.focus,
.open>.dropdown-toggle.btn-default:focus,
.open>.dropdown-toggle.btn-default:hover {
    background: #fff;
    color: #e05057;
    border: 1px solid #e05057;
}

input.sbmt {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(90deg, #eb3389 0%, #eb3389 72%);
    padding: 14px 32px;
    margin: 0px 10px 25px 10px;
    transition: 0.7s;
    text-transform: capitalize;
    display: inline-block;
    transition-duration: .5s;
    transition-property: transform;
    position: relative;
    border-radius: 10px;
    box-shadow: none;
    border: none;
}

input.sbmt:hover {
    color: #eb3389;
    background: transparent;
    transition: 0.7s;
    box-shadow: 0px 0px 10px #eb3389;
    transform: translateY(10px);
}

.com-page input[type="text"],
.com-page input[type="passowrd"],
.com-page input[type="email"],
.com-page input[type="number"] {
    color: #000;
}

.form-control {
    display: block;
    width: 96%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    margin: 0 auto;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

#formname_sub {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    text-align: center;
    /*background:#D1A703;*/
    padding: 10px;
    width: 400px;
    border-bottom: 5px solid #222;
    margin: 5px 0px;
    font-family: 'Roboto', sans-serif;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #281262;
    border-color: #281262;
}

.pagination>li>a,
.pagination>li>span {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #281262;
    float: left;
    line-height: 1.42857;
    margin-left: -1px;
    padding: 6px 12px;
    position: relative;
    text-decoration: none;
}

.alls {
    height: auto !important;
}

span#menu-icon {
    height: 51px;
    float: left;
    width: 55px;
    /*border-right: 5px solid #FFFFFF;*/
    margin-right: 10px;
}

table.account_table {
    font-size: 16px;
    width: 100%;
    float: left;
    text-decoration: none;
    line-height: 50px;
    font-weight: bold;
    color: white;
    padding: 0;
    margin-left: 6px;
    margin-top: 6px;
}

table.account_table img {
    max-width: 100%;
    border-radius: 7px;
}

table.account_table img a {
    opacity: 0.4;
    filter: alpha(opacity=40);
}

table.account_table img a:hover {
    opacity: 1.0;
    filter: alpha(opacity=100);
    text-decoration: none;
}

.account_table img {
    max-width: 100%;
}

.account_table img:hover {
    transform: scale(1.1);
    transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
}

table.make_deposit td.second {
    background: #242e35;
    color: #fff;
    padding: 10px;
}

table.make_deposit td.first {
    background: #242e35;
    color: #fff;
    padding: 10px;
    font-family: 'Roboto', sans-serif;
}

.memberuser {
    float: left;
    width: 100%;
    /*  background: #D1A703;*/
    height: 100px;
}

.memberuser table tr td {
    color: #FF0000;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.left-navigation .navigation ul {
    background-color: #10101059;
    box-sizing: border-box;
    padding: 20px 0;
    list-style: none;
}

.left-navigation .navigation,
.right-navigation .navigation {
    margin: 0;
}

.right-navigation {
    padding: 30px 0;
}

.register {
    padding: 30px;
    /*background-color: #fff;*/
    box-sizing: border-box;
    /*border-radius: 15px;*/
}

@media screen and (min-width: 992px) {
    .left-navigation {
        min-width: 270px;
        max-width: 315px;
    }
}

@media screen and (max-width: 991px) {
    .right-navigation {
        padding: 30px 0 30px 15px;
    }
}

.navigation {
    opacity: 1;
    margin-top: 0px;
    padding: 0;
}

.navigations td {
    font-family: 'Roboto', sans-serif;
    color: #E7BA04;
    font-size: 18px;
    border: 1px solid;
    border-color: #fff;
    padding: 0;
    background-color: #1f1f1f;
    /* box-shadow: inset 0 0 0 0 #003399;*/
    -webkit-transition: all ease 0.8s;
    -moz-transition: all ease 0.8s;
    transition: all ease 0.8s;
    /*    border-radius: 7px;*/
}

.navigations th {
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
    font-size: 20px;
    border-color: #666a6b;
    background-color: #7545b4;
}

.navigations td:hover {
    font-family: 'Roboto', sans-serif;
    color: #E7BA04;
    font-style: Narrow;
    font-size: 18px;
    padding-left: 20px;
    border: 1px solid #fff;
    /*border-color:#666a6b;*/
    color: #08072b;
    /* box-shadow: inset 0 0 0 0 #003399;*/
    background-color: #eaa22f;
}

.register table {
    background-image: url(../images/banner_10.jpg);
    background-position: center;
    background-size: cover;
}

.register table tr th {
    color: #fff;
    padding: 15px;
    text-align: left;
    /* border: 1px solid #f1a52d; */
    /* background-color: #f1a52d; */
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.register table tr td {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    /* background: #00a085; */
    color: #000;
    line-height: 18px;
    border-radius: 3px;
    padding: 15px;
    border: 1px solid transparent;
    text-align: left;
    /*background: linear-gradient( to bottom , #ffffff, #dfdfdf);*/
}

/*

.inheader{

    background: #E4B704;	

}

.item {

    background: #F5F2DC;

	}*/

.table_r {
    width: 100%;
    height: auto;
}

.table_r .table_r1 {
    width: 64.5%;
    height: 200px;
    background: #fff;
    float: left;
    font-family: 'Roboto', sans-serif;
    border-radius: 0px;
    margin: 0px 0px 0px 0px;
}

.table_r .table_r1 .left {
    float: left;
    width: 44%;
    margin: 10px 0px 0px 0px;
}

.table_r .table_r1 .left img {
    max-width: 100%;
}

.table_r .table_r1 .right {
    float: left;
    width: 50%;
    margin: 0px 0px 0px 0px;
}

.table_r .table_r1 .right .text1 {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    text-transform: uppercase;
    padding: 55px 0px 0px 0px;
    font-weight: bold;
}

.table_r .table_r1 .right .text2 {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    font-weight: 600;
    text-transform: inherit;
    padding: 13px 0px 0px 20px;
    font-weight: bold;
}

.table_r .table_r1 .reg {
    float: left;
    width: 50%;
    background: #3f78ea;
    height: 75px;
    border-radius: 0px 0px 0px 0px;
    margin: 20px 0px 0px 0px;
}

.table_r .table_r1 .reg .title {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    text-transform: inherit;
    color: #fff;
    font-weight: 500;
    text-align: center;
    margin: 16px 0px 0px 0px;
}

.table_r .table_r1 .reg .subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    text-transform: inherit;
    color: #fff;
    font-weight: 500;
    text-align: center;
    margin: 2px 0px 0px 0px;
}

.table_r .table_r1 .last {
    float: left;
    width: 50%;
    background: #003399;
    height: 75px;
    border-radius: 0px 0px 0px 0px;
    margin: 20px 0px 0px 0px;
}

.table_r .table_r1 .last .title {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    text-transform: inherit;
    color: #fff;
    font-weight: 500;
    text-align: center;
    margin: 16px 0px 0px 0px;
}

.table_r .table_r1 .last .subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    text-transform: inherit;
    color: #fff;
    font-weight: 500;
    text-align: center;
    margin: 2px 0px 0px 0px;
}

.table_r .table_center {
    float: left;
    width: 20%;
}

.table_r .table_r2 {
    width: 30%;
    /*height: 235px;

background: #212424;*/
    float: left;
    font-family: 'Roboto', sans-serif;
    border-radius: 5px;
    margin: -10px 0px 0px 7px;
}

.table_r .table_r2 .button {
    float: left;
    width: 100%;
}

.table_r .table_r2 .button .but1 {
    text-align: center;
    width: 100%;
    margin: 0px 0px 0px 0px;
}

.table_r .table_r2 .button .but1 a {
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: #fff;
    background: #3f78ea;
    padding: 5px 29px;
    text-transform: inherit;
    font-weight: 500;
    box-shadow: inset 0 0 0 0 #003399;
    -webkit-transition: all ease 0.8s;
    -moz-transition: all ease 0.8s;
    transition: all ease 0.8s;
}

.table_r .table_r2 .button .but1 a:hover {
    color: #fff;
    box-shadow: inset 0px 100px 0px 0px #003399;
}

.table_r .table_r2 .button .but2 {
    text-align: center;
    width: 100%;
    margin: 71px 0px 0px 0px;
}

.table_r .table_r2 .button .but2 a {
    text-decoration: none;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: #ffffff;
    background: #003399;
    padding: 5px 29px;
    text-transform: inherit;
    font-weight: 500;
    box-shadow: inset 0 0 0 0 #3f78ea;
    -webkit-transition: all ease 0.8s;
    -moz-transition: all ease 0.8s;
    transition: all ease 0.8s;
}

.table_r .table_r2 .button .but2 a:hover {
    color: #fff;
    box-shadow: inset 0px 100px 0px 0px #3f78ea;
}

.table_r .table_r2 .button .but3 {
    text-align: center;
    width: 100%;
    margin: 141px 0px 0px 0px;
}

.table_r .table_r2 .button .but3 a {
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: #fff;
    background: #3f78ea;
    padding: 5px 29px;
    text-transform: inherit;
    font-weight: 500;
    box-shadow: inset 0 0 0 0 #003399;
    -webkit-transition: all ease 0.8s;
    -moz-transition: all ease 0.8s;
    transition: all ease 0.8s;
}

.table_r .table_r2 .button .but3 a:hover {
    color: #fff;
    box-shadow: inset 0px 100px 0px 0px #003399;
}

.table_r .table_r2 .button .but4 {
    text-align: center;
    width: 100%;
    margin: 213px 0px 0px 0px;
}

.table_r .table_r2 .button .but4 a {
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: #fff;
    background: #003399;
    padding: 5px 29px;
    text-transform: inherit;
    font-weight: 500;
    box-shadow: inset 0 0 0 0 #3f78ea;
    -webkit-transition: all ease 0.8s;
    -moz-transition: all ease 0.8s;
    transition: all ease 0.8s;
}

.table_r .table_r2 .button .but4 a:hover {
    color: #fff;
    box-shadow: inset 0px 100px 0px 0px #3f78ea;
}

.table_r .table_r3 {
    width: 30%;
    height: 235px;
    background: #212424;
    float: left;
    font-family: 'Roboto', sans-serif;
    border-radius: 5px;
    margin: 0px 0px 0px 7px;
}

.table_rr1 {
    width: 100%;
    float: left;
    height: auto;
}

.valids td {
    font-family: Arial, Helvetica, sans-serif;
    color: #606362;
    font-style: Narrow;
    /*border:1px solid;*/
    font-size: 20px;
    padding-left: 17px;
    /*border-color:#000000;*/
    /*border-radius:10px;*/
    /*	background:#18BD9B;*/
}

.valids td.plan {
    background: url('../images/plan_bg.png') no-repeat;
    height: 93px;
}

.valids td.plan1 {
    background: #CFD6E6;
    height: 50px;
}

.valids td.plan b {
    font-size: 20px;
    color: #1B1B1B;
    text-transform: uppercase;
}

.valids b {
    font-family: Arial, Helvetica, sans-serif;
    font-style: Narrow;
    font-size: 18px;
    color: #2BB8DA;
}

.valids a {
    color: :#2BB8DA;
    font-family: Arial, Helvetica, sans-serif;
    font-style: Narrow;
    font-size: 16px;
    text-decoration: none;
}

.maketb {
    float: left;
    width: 100%;
}

.maketb .tb1 {
    width: 50%;
    float: left;
}

.maketb .tb1 {
    width: 50%;
    float: right;
}

.icon {
    position: relative;
    float: left;
    width: 40px;
    height: 40px;
    background: #e82b25;
    border-radius: 0px 0 0 0px;
}

.box {
    width: 40%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    padding: 35px;
    border: 2px solid #fff;
    border-radius: 20px/50px;
    background-clip: padding-box;
    text-align: center;
}

.button {
    font-size: 1em;
    padding: 10px;
    color: #fff;
    border-radius: 20px/50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
}

.overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 30%;
    position: relative;
    transition: all 5s ease-in-out;
}

.popup h2 {
    margin-top: 0;
    color: #333;
    font-family: Tahoma, Arial, sans-serif;
}

.popup .close {
    position: absolute;
    top: -1px;
    right: 13px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.popup .close:hover {
    color: #10e1d5;
}

.popup .content {
    max-height: 100%;
    overflow: auto;
}

@media screen and (max-width: 700px) {
    .box {
        width: 70%;
    }
    .popup {
        width: 70%;
    }
    .bounceInDown {
        -webkit-animation-name: bounceInDown;
        animation-name: bounceInDown;
    }
    .animated {
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }
    .signupalign {
        width: 100%;
    }
    .signupalign .tab1 {
        float: left;
        width: 50%;
    }
    .signupalign .tab2 {
        float: right;
        width: 40%;
    }
    .supportcon {
        float: left;
        width: 100%;
    }
    .supportcon .sup1 {
        float: left;
        width: 50%;
    }
    .supportcon .sup2 {
        float: left;
        width: 45%;
    }
    /*************login redirect style **************/
    .loginrebg {
        background: #000000;
        height: 700px;
    }
    .loginrecontainer {
        float: left;
        width: 100%;
    }
    /*************login redirect style **************/
    /*****poput calc***********************/
    .box {
        width: 40%;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.2);
        padding: 35px;
        border: 2px solid #fff;
        border-radius: 20px/50px;
        background-clip: padding-box;
        text-align: center;
    }
    .button {
        font-size: 1em;
        padding: 10px;
        color: #fff;
        border-radius: 20px/50px;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s ease-out;
    }
    /*.button:hover {

  background: #06D85F;

}

*/
    .overlay {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.7);
        transition: opacity 500ms;
        visibility: hidden;
        opacity: 0;
    }
    .overlay:target {
        visibility: visible;
        opacity: 1;
    }
    .popup {
        margin: 70px auto;
        padding: 20px;
        background: #000;
        border-radius: 5px;
        width: 30%;
        position: relative;
        transition: all 5s ease-in-out;
        opacity: 0.8;
    }
    .popup h2 {
        margin-top: 0;
        color: #333;
        font-family: Tahoma, Arial, sans-serif;
    }
    .popup .close {
        position: absolute;
        top: -1px;
        right: 13px;
        transition: all 200ms;
        font-size: 30px;
        font-weight: bold;
        text-decoration: none;
        color: #369223;
    }
    .popup .close:hover {
        color: #000;
    }
    .popup .content {
        max-height: 100%;
        overflow: auto;
    }
    @media screen and (max-width: 700px) {
        .box {
            width: 70%;
        }
        .popup {
            width: 70%;
        }
        .bounceInDown {
            -webkit-animation-name: bounceInDown;
            animation-name: bounceInDown;
        }
        .animated {
            -webkit-animation-duration: 1s;
            animation-duration: 1s;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
        }
        /*****poput calc***********************/
        @-webkit-keyframes zoomIn {
            0% {
                opacity: 0;
                -webkit-transform: scale3d(.3, .3, .3);
                transform: scale3d(.3, .3, .3);
            }
            50% {
                opacity: 1;
            }
        }
        @keyframes zoomIn {
            0% {
                opacity: 0;
                -webkit-transform: scale3d(.3, .3, .3);
                transform: scale3d(.3, .3, .3);
            }
            50% {
                opacity: 1;
            }
        }