/*
font-family: 'Poppins', sans-serif;
font-family: 'Heebo', sans-serif;
font-family: 'Oxanium', cursive;
font-family: 'Barlow', sans-serif;
font-family: 'Barlow Semi Condensed', sans-serif;

light - 300
regular - 400
medium - 500
semi-bold  - 600
bold - 700
extra-bold - 800
black - 900
plan
https://codepen.io/md-aqil/pen/pMgmGw

image
https://codepen.io/lvdesign2016/pen/VjVmAW

service
https://codepen.io/JavaScriptJunkie/pen/WgRBxw

twit
https://codepen.io/dnjstlr555/pen/qpwRyG
*/

body {
    font-family: 'Heebo', sans-serif !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    background: #0d120f no-repeat top center !important;
    background-size: cover;
    background-attachment: fixed;
}

a {
    cursor: pointer !important;
    text-decoration: none !important;
}

.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 3s linear infinite;
    animation: rotating 3s linear infinite;
}

.rotating.fast {
    -webkit-animation: rotating 0.5s linear infinite;
    animation: rotating 0.5s linear infinite;
}

@-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);
    }
}

/*============== BANNER CSS START ==============*/

.telegram-foot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    color: white;
    line-height: 60px;
    background: #009CFF;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: telegram 2s ease infinite;
    animation: telegram 2s ease infinite;
    -webkit-box-shadow: 0 0 0 7px rgb(42 182 246 / 15%);
    box-shadow: 0 0 0 7px rgb(42 182 246 / 15%);
    border-radius: 100%;
    text-align: center;
    font-size: 32px;
    z-index: 100000000;
}

@keyframes telegram {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        -webkit-transform: translateY(0) scaleY(0.95);
        transform: translateY(0) scaleY(0.95);
    }
    50% {
        -webkit-transform: translateY(-20px) scaleY(1.1);
        transform: translateY(-20px) scaleY(1.1);
    }
    75% {
        -webkit-transform: translateY(0) scaleY(0.95);
        transform: translateY(0) scaleY(0.95);
    }
    85% {
        -webkit-transform: translateY(0) scaleY(1);
        transform: translateY(0) scaleY(1);
    }
    100% {
        -webkit-transform: translateY(0) scaleY(1);
        transform: translateY(0) scaleY(1);
    }
}

.lni {
    display: inline-block;
    /* font: normal normal normal 1em/1 'LineIcons'; */
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 13px 0px;
}

.banner-bg {
    background: #151a1d url(../images/banner-bg1.jpg) no-repeat top center;
    background-size: cover;
    padding: 0px 0px 0px;
    position: relative;
    overflow: hidden;
    min-height: 1100px;
}

.banner-bg1 {
    background: #151a1d url(../images/banner-bg1.jpg) no-repeat top center;
    background-size: cover;
    padding: 0px 0px 30px;
    position: relative;
    overflow: hidden;
    min-height: 00px;
}

header {
    width: 100%;
    background-size: cover;
    padding: 35px 0px 0px 0px !important;
    background: transparent;
    -webkit-backface-visibility: hidden;
}

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;
}

header .navbar-inverse .navbar-nav>li {
    padding: 16px 16px;
    display: inline-block;
    vertical-align: middle;
    float: none;
}

header .navbar-inverse .navbar-nav>li>a {
    font-size: 16px;
    color: #fffefe;
    text-transform: capitalize;
    transition: .3s;
    vertical-align: middle;
    padding: 10px 0px 8px 0px;
    font-family: 'Heebo', sans-serif;
    font-weight: 400;
    border-bottom: 2px solid transparent;
    position: relative;
    z-index: 1;
}

header .navbar-inverse .navbar-nav>li>a:hover {
    transition: .3s;
    color: #2ed94f;
    border-bottom: 2px solid #2ed94f;
}

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;
    margin: 13px 0px 0px 0px;
}

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: #4ccb70 !important;
}

.img-class {
    position: relative;
    top: 5px;
}

header .head-but {
    font-family: 'Heebo', sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #fff !important;
    line-height: 40px !important;
    background: transparent;
    outline: none;
    display: inline-block !important;
    box-shadow: inset 0 0 0 0 #ffffff;
    text-transform: uppercase !important;
    padding: 0px 18px !important;
    border: double 2px transparent;
    border-radius: 10px;
    background-image: linear-gradient(#24251f, #24251f), radial-gradient(circle at top left, #addd3c, #85eaa1);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    text-align: center;
}

header .head-but:hover {
    color: #ffffff !important;
    background: #437c53 !important;
    box-shadow: inset 0 40px 0 0 #437c53;
    overflow: hidden;
    border-bottom: none !important;
}

header .head-but1 {
    font-family: 'Heebo', sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #fff !important;
    line-height: 40px !important;
    background: transparent;
    outline: none;
    display: inline-block !important;
    box-shadow: inset 0 0 0 0 #ffffff;
    text-transform: uppercase !important;
    padding: 0px 18px !important;
    border: double 2px transparent;
    border-radius: 10px;
    background-image: linear-gradient(#24251f, #24251f), radial-gradient(circle at top left, #addd3c, #85eaa1);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    text-align: center;
}

header .head-but1:hover {
    color: #ffffff !important;
    background: #2b4230 !important;
    box-shadow: inset 0 40px 0 0 #2b4230;
    overflow: hidden;
    border-bottom: none !important;
}

.banner-bg .banner {
    padding: 30px 0px 60px;
    position: relative;
    z-index: 11;
    -webkit-backface-visibility: hidden;
}

.banner-bg .banner .banner-text {
    padding: 150px 0px 30px;
}

.banner-bg .banner .banner-text h1 {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin: 0px 0px 20px 0px;
    text-transform: capitalize;
}

.banner-bg .banner .banner-text h2 {
    font-family: 'Oxanium', cursive;
    font-size: 60px;
    font-weight: 700;
    color: #fcfcfd;
    margin: 0px 0px 0px 0px;
    text-transform: capitalize;
}

.banner-bg .banner .banner-text p {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin: 20px 0px 0px 0px;
}

.banner-bg .banner .banner-but {
    padding: 30px 0px 30px;
}

.banner-bg .banner .banner-but .theme-btn {
    font-family: 'Oxanium', cursive;
    font-size: 16px;
    font-weight: 400;
    color: #1d271f;
    padding: 12px 36px;
    text-transform: capitalize;
    margin: 0px 0px 0px 10px;
    display: inline-block;
    position: relative;
    border-radius: 50px;
    background: transparent;
    background-size: 200% auto;
    text-align: center;
    border: 1px solid #ff363a;
    z-index: 1;
    transition: all 500ms ease;
}

.banner-bg .banner .banner-but .theme-btn:hover {
    color: #ffffff;
    border: 1px solid #ff363a;
    background-position: right center;
}

.banner-bg .banner .banner-but .theme-btn.style-one {
    font-family: 'Oxanium', cursive;
    font-size: 16px;
    font-weight: 400;
    color: #1d271f;
    padding: 12px 36px;
    text-transform: capitalize;
    margin: 0px 0px 10px 10px;
    display: inline-block;
    position: relative;
    border-radius: 5px;
    background: -webkit-linear-gradient(-65deg, #2ed94f 0%, #2ed94f 100%);
    border: 1px solid #2ed94f;
    transition: 0.7s;
}

.banner-bg .banner .banner-but .theme-btn.style-one:hover {
    color: #fff;
}

.banner-bg .banner .banner-but .theme-btn.style-one:before {
    background: -webkit-linear-gradient(-65deg, #0a0f13 0%, #0a0f13 100%);
}

.banner-bg .banner .banner-but .theme-btn.style-one:before {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    top: 0px;
    right: 0px;
    border-radius: 5px;
    z-index: -1;
    transition: all 500ms ease;
}

.banner-bg .banner .banner-but .theme-btn.style-one:hover:before {
    width: 100%;
    left: 0px;
}

.bit-coin-shapes .sp1 {
    left: 10% !important;
    top: 30% !important;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.bit-coin-shapes .sp2 {
    left: 40% !important;
    top: 50% !important;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.bit-coin-shapes .sp3 {
    right: 10% !important;
    top: 20% !important;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.bit-coin-shapes .sp4 {
    left: 50% !important;
    top: 70% !important;
    -webkit-animation-delay: .7s;
    animation-delay: .7s;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.bit-coin-shapes .sp5 {
    right: 40% !important;
    top: 20% !important;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .7s;
    animation-delay: .7s;
}

.bit-coin-shapes .sp6 {
    left: 35% !important;
    top: 85% !important;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.bit-coin-shapes .sp7 {
    right: 35% !important;
    top: 95% !important;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.bit-coin-shapes .sp8 {
    left: 35% !important;
    top: 25% !important;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.bit-coin-shapes .sp9 {
    right: 10% !important;
    top: 60% !important;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}

.bit-coin-shapes .sp10 {
    left: 10% !important;
    top: 70% !important;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
}

.bit-coin-shapes .sp11 {
    right: 25% !important;
    top: 65% !important;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.cmn-shapes {
    position: absolute !important;
}

@keyframes spin {
    0% {
        transform: rotateZ(0);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

.spin {
    -webkit-animation: spin 2s linear infinite;
    animation: spin 1s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotate {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 1s linear infinite;
}

.banner-bg .banner .banner-right {
    position: relative;
    left: 71px;
    top: 50px;
}

@media only screen and (max-width: 767px) {
    .modal-content {
        margin: 160px 0px 0px 0px;
    }
}

/*============== BANNER CSS END ==============*/

/*============== ABOUT CSS START ==============*/

.about-bg {
    background: #0d110f no-repeat top center;
    background-size: cover;
    padding: 0px 0px 0px;
    position: relative;
}

.cryptonatorwidget {
    border-radius: 4px;
    padding: 0 !important;
    background: transparent;
    border: 0px solid transparent;
    font-family: Sans-Serif;
    font-size: 100% !important;
    color: #fff !important;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    position: relative;
    font-family: 'Heebo', sans-serif !important;
}

.cryptonatorwidget div:last-child {
    display: none;
}

.cryptonatorwidget div font {
    display: none;
    color: #fff;
}

.cryptonatorwidget div b font {
    display: inline-block;
    color: #fff;
}

.cryptonatorwidget div b {
    font-family: 'Heebo', sans-serif;
    font-size: 19px;
    color: #fff;
    font-weight: bold;
    margin: 3px 0px 3px 0px;
}

.about-bg .excs {
    margin: -150px 0px 0px 0px;
    text-align: center;
    -webkit-backface-visibility: hidden;
    position: relative;
}

.about-bg .excs .excs-com {}

.about-bg .excs .excs-com ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

.about-bg .excs .excs-com ul li {
    display: inline-block;
    padding: 10px 8px;
}

.about-bg .excs .excs-com ul li .excs1 {
    border: double 2px transparent;
    border-radius: 10px;
    background-image: linear-gradient(#0e1210, #0e1210), radial-gradient(circle at top left, #384531, #6ed38b);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    width: 260px;
    text-align: left;
    padding: 20px;
    position: relative;
    z-index: 111;
}

.about-bg .excs .excs-com ul li .excs1 .excs2 {
    padding: 0px 0px 0px 0px;
}

.about-bg .excs .excs-com ul li .excs1 .excs2 img {
    position: relative;
    z-index: 1;
    padding: 0px 10px 13px 0px;
    float: left;
}

.about-bg .excs .excs-com ul li .excs1 .excs2 h1 {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    color: #a7a7aa;
    font-weight: 500;
    padding: 16px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.about-bg .excs .excs-com ul li .excs1 .excs2 h1 span {
    color: #fefefe;
    text-transform: uppercase;
}

.about-bg .excs .excs-com ul li .excs1 .excs3 {
    display: inline-block;
}

.about-bg .excs .excs-com ul li .excs1 .excs3 p {
    font-family: 'Heebo', sans-serif;
    font-size: 22px;
    color: #fefefe;
    font-weight: 500;
    margin: 3px 0px 3px 0px;
}

.about-bg .about {
    -webkit-backface-visibility: hidden;
}

.about-bg .about .about-img {}

.about-bg .about .about-img img {
    position: relative;
   /* margin: -126px 0px 0px -386px;*/
    z-index: 1;
}

.about-bg .about .about-head {
    padding: 80px 0px 30px 0px;
    margin: 0px 0px 0px 0px;
    position: relative;
    z-index: 11;
}

.about-bg .about .about-head h2 {
    font-family: 'Oxanium', cursive;
    font-size: 50px;
    color: #b4ee98;
    font-weight: 700;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.about-bg .about .about-para {
    padding: 0px 0px 30px 0px;
    margin: 0px 0px 0px 0px;
    position: relative;
    z-index: 11;
}

.about-bg .about .about-para p {
    font-family: 'Heebo', sans-serif;
    font-size: 17px;
    color: #c7c7c7;
    font-weight: 400;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    text-align: justify;
    line-height: 26px;
}

.about-bg .about .about-para1 {
    padding: 0px 0px 30px 0px;
    margin: 0px 0px 0px 0px;
    position: relative;
    z-index: 2;
    border: double 2px transparent;
    border-radius: 10px;
    background-image: linear-gradient(90deg, #172e1e, #0e1511), radial-gradient(circle at top left, #20251e00, #41b16000);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    text-align: left;
    padding: 20px;
    width: 100%;
    display: inline-block;
    margin: 30px 0px 40px 0px;
}

.about-bg .about .about-para1 p {
    font-family: 'Heebo', sans-serif;
    font-size: 17px;
    color: #c7c7c7;
    font-weight: 400;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    text-align: justify;
    line-height: 26px;
}

.about-bg .about .about-but {
    padding: 30px 0px 30px;
    text-align: right;
}

.about-bg .about .about-but .theme-btn1 {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #b4ee99;
    padding: 16px 36px;
    text-transform: uppercase;
    margin: 0px 0px 0px 10px;
    display: inline-block;
    position: relative;
    border-radius: 5px;
    background: transparent;
    background-size: 200% auto;
    text-align: center;
    border: 1px solid #2a3033;
    z-index: 1;
    transition: all 500ms ease;
}

.about-bg .about .about-but .theme-btn1:hover {
    color: #000;
    border: 1px solid #2a3033;
    background-position: right center;
}

.about-bg .about .about-but .theme-btn1.style-two:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    z-index: -1;
    border-radius: 5px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.about-bg .about .about-but .theme-btn1.style-two:hover:after {
    left: 0px;
    width: 100%;
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.about-bg .about .about-but .theme-btn1.style-two:after {
    background-image: -webkit-linear-gradient(-65deg, #addd3c 0%, #85eaa1 100%);
}

/*.about-bg .about .video-img {
	padding: 20px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	min-height: 0px;
}
.about-bg .about .video-img img {
	margin: auto;
}
.about-bg .about .video-img .video-play-btn i {
	top: 38px;
	position: relative;
	color: #1f9fe7;
}
.about-bg .about .video-img .video-play-btn {
	display: inline-block;
	width: 100px;
	height: 100px;
	line-height: 70px;
	text-align: center;
	font-size: 28px;
	background-color: transparent;
	border-radius: 50%;
	color: #000942;
	position: absolute;
	z-index: 1;
}
.about-bg .about .video-img .video-play-btn:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	-ms-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 120px;
	height: 120px;
	background: rgb(255 226 122 / 55%);
	border-radius: 50%;
	-webkit-animation: pulse-border 1500ms ease-out infinite;
	animation: pulse-border 1500ms ease-out infinite;
	z-index: -1;
}
.about-bg .about .video-img .video-play-btn:hover {
	color: #313131;
}
.about-bg .about .video-img .m-video__play {
    position: absolute;
    left: 55%;
}*/

.about-bot {
    position: relative;
    margin-top: -182px;
    z-index: 11;
}

/*============== ABOUT CSS END ==============*/

/*============== PLAN CSS START ==============*/

.plan-bg {
    background: #151a1d url(../images/plan-bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 0px 0px 0px;
    position: relative;
    margin: -120px 0px 0px 0px;
}

.plan-bg .plan-head {
    padding: 80px 0px 30px 0px;
    margin: 0px 0px 0px 0px;
    text-align: left;
}

.plan-bg .plan-head h2 {
    font-family: 'Oxanium', cursive;
    font-size: 50px;
    color: #b4ee99;
    font-weight: 700;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.plan-bg .calcu {}

.plan-bg .calculator-bg {
    border: double 2px transparent;
    border-radius: 10px;
    background-image: linear-gradient(90deg, #172e1e, #0e1511), radial-gradient(circle at top left, #20251e, #41b160);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    text-align: left;
    padding: 20px;
    width: 100%;
    display: none;
    margin: 30px 0px 40px 0px;
    min-height: 545px;
}

.plan-bg .calculator-bg .calculator-head {
    padding: 20px 0px 20px;
    text-align: center;
}

.plan-bg .calculator-bg .calculator-head h2 {
    font-family: 'Oxanium', cursive;
    font-size: 30px;
    color: #b3ef99;
    font-weight: 400;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.plan-bg .calculator {
    padding: 10px 0px 0px;
}

.plan-bg .calculator .calculator-sub {
    padding: 0px 0px 20px;
    text-align: center;
}

.plan-bg .calculator-bg .calculator-sub h4 {
    font-family: 'Heebo', sans-serif;
    font-size: 20px;
    color: #8ea3a5;
    font-weight: bold;
    background: transparent;
    text-transform: uppercase;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.plan-bg .calculator-main {
    padding: 0px 0px 0px;
}

.plan-bg .calculator-main .calculator-middle {
    padding: 0px 0px 30px;
    text-align: center;
}

.plan-bg .calculator-main .calculator-middle .nav-tabs {
    background: transparent;
    border-radius: 0px;
    text-align: center;
    border: transparent;
    padding: 10px 0px 0px;
}

.plan-bg .calculator-main .calculator-middle .nav-tabs>li>a {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(-19deg, #101712 10%, #101712);
    background-size: cover;
    margin: 10px 7px 0px 7px;
    border: transparent;
    border-radius: 5px;
    padding: 12px 10px;
}

.plan-bg .calculator-main .calculator-middle .nav>li {
    padding: 0 0px;
    margin: 0px 0;
    float: none;
    display: inline-block;
}

.plan-bg .calculator-main .calculator-middle .nav-tabs>li.active>a,
.plan-bg .calculator-main .calculator-middle .nav-tabs>li.active>a:hover,
.plan-bg .calculator-main .calculator-middle .nav-tabs>li.active>a:focus {
    color: #fff;
    text-shadow: 0px 0px 5px #000;
    background: linear-gradient(-19deg, #abde43 10%, #87e99e);
    background-size: cover;
    border: transparent;
    cursor: default;
    transition: 0.7s;
}

.plan-bg .calculator-main .calculator-middle .nav-tabs>li>a:hover,
.plan-bg .calculator-main .calculator-middle .nav-tabs>li:hover>a {
    border-radius: 5px;
    color: #fff;
}

.plan-bg .calculator-main .calculator-middle .tab-content {
    padding: 0px 0px 0px;
}

.plan-bg .calculator-main .calculator-middle .tab-content>.tab-pane {
    padding: 20px 0 0 0;
}

.plan-bg .calculator-main .calculator-center {
    padding: 20px 0px 0px 0px;
    text-align: center;
}

.plan-bg .calculator-main .calculator-center .calculator-input {
    padding: 0px 0px 0px 0px;
}

.plan-bg .calculator-main .calculator-center .calculator-input h4 {
    font-family: 'Heebo', sans-serif;
    font-size: 20px;
    color: #8ea3a5;
    font-weight: bold;
    background: transparent;
    text-transform: uppercase;
    padding: 0px 0px 15px 0px;
    margin: 0px 0px 0px 0px;
}

.plan-bg .calculator-main .calculator-center .calculator-input p {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 10px 0px 0px 0px;
}

.plan-bg .calculator-main .calculator-center .calculator-input p span {
    font-size: 30px;
    color: #b4ee94;
    position: relative;
    top: 8px;
}

.plan-bg .calculator-main .calculator-center .calculator-input p input {
    ` font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #b4ee99;
    background: #101712;
    border: 1px solid #dbd3d07a;
    box-shadow: 0px 0px 2px #b4ee99;
    border-radius: 5px;
    text-align: left;
    padding: 5px 20px;
    width: 230px;
    height: 50px;
    outline: none;
    margin: 0px 0px 0px 10px;
}

.plan-bg .calculator-main .calculator-details {
    padding: 10px 0px 10px 0px;
    text-align: center;
}

.plan-bg .calculator-main .calculator-details ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.plan-bg .calculator-main .calculator-details ul li {
    padding: 10px 20px;
    display: inline-block;
}

.plan-bg .calculator-main .calculator-details ul li .calculator-box {
    width: 200px;
    margin: 10px auto 10px;
    background: #10171200;
    border-radius: 5px;
    border: 1px solid #dbd3d07a;
    box-shadow: 0px 0px 5px #7de194;
}

.plan-bg .calculator-main .calculator-details ul li p {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin: 16px 0px 10px 0px;
}

.plan-bg .calculator-main .calculator-details ul li h4 {
    font-family: 'Heebo', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #b4ee94;
    background: #101712;
    border-radius: 0px 0px 5px 5px;
    padding: 14px 0px 14px 0px;
    margin: 0px 0px 0px 0px;
}

.plan-bg .plan {
    margin: 0px 0px 0px 0px;
}

.plan-bg .plan .plan-com {
    /*	background: #101712 no-repeat top center;
	background-size: cover;
	width: 445px;
	
	margin: 0px auto 40px;
	transition: 0.7s;
	padding: 0px 0px 0px 0px;
	border-radius: 0px 0px 10px 10px;*/
    min-height: 650px;
}

.plan-bg .plan .plan-com .plan-bg {
    background: #101712 no-repeat top center;
    background-size: cover;
    width: 290px;
    min-height: 530px;
    margin: 20px auto 0px;
    transition: 0.7s;
    border: 1px solid #2a3033;
    padding: 15px 25px 15px 25px;
    border-radius: 20px;
    text-align: center;
    font: initial;
}

.plan-bg .plan .plan-com .plan-bg .plan-top {}

.plan-bg .plan .plan-com .plan-bg .plan-top h2 {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    color: #c1c2c2;
    font-weight: 400;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.plan-bg .plan .plan-com .plan-bg .plan-top h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 50px;
    color: #6fe978;
    font-weight: 700;
    padding: 10px 0px 10px 0px;
    margin: 10px 0px 10px 0px;
    border-top: 1px solid #9d9e9d;
    border-bottom: 1px solid #9d9e9d;
}

.plan-bg .plan .plan-com .plan-bg .plan-top h3 span {
    font-weight: 300;
    font-family: 'Barlow Semi Condensed', sans-serif;
}

.plan-bg .plan .plan-com .plan-bg .plan-top h4 {
    font-family: 'Oxanium', cursive;
    font-size: 24px;
    color: #b9baba;
    font-weight: 500;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.plan-bg .plan .plan-com .plan-bg .plan-top h4 span {
    font-size: 14px;
}

.plan-bg .plan .plan-com .plan-bg .plan-top img {
    padding: 20px 0px 20px;
}

.plan-bg .plan .plan-com .plan-bg .plan-mid {
    padding: 10px 0px 15px 0px;
    text-align: left;
}

.plan-bg .plan .plan-com .plan-bg .plan-mid img {
    float: left;
    margin: 0px 20px 0px 0px;
}

.plan-bg .plan .plan-com .plan-bg .plan-mid p {
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    color: #b9baba;
    font-weight: 500;
    padding: 0px 0px 5px 0px;
    margin: 0px 0px 0px 0px;
}

.plan-bg .plan .plan-com .plan-bg .plan-mid span {
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    color: #6fe978;
    font-weight: 500;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.plan-bg .plan .plan-com .plan-bg .plan-but {
    padding: 20px 0px 0px;
    text-align: center;
}

.plan-bg .plan .plan-com .plan-bg .plan-but .theme-btn5 {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #0d110f;
    padding: 12px 36px;
    text-transform: capitalize;
    margin: 0px 0px 0px 10px;
    display: inline-block;
    position: relative;
    border-radius: 50px;
    background: transparent;
    background-size: 200% auto;
    text-align: center;
    border: 1px solid #2ed94f;
    z-index: 1;
    transition: all 500ms ease;
}

.plan-bg .plan .plan-com .plan-bg .plan-but .theme-btn5:hover {
    color: #ffffff;
    border: 1px solid #ff363a;
    background-position: right center;
}

.plan-bg .plan .plan-com .plan-bg .plan-but .theme-btn5.style-six {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #0d110f;
    padding: 12px 36px;
    text-transform: capitalize;
    margin: 0px 0px 10px 10px;
    display: inline-block;
    position: relative;
    border-radius: 5px;
    background: -webkit-linear-gradient(-65deg, #4ed070 0%, #4ed070 100%);
    border: 1px solid #2ed94f;
    transition: 0.7s;
}

.plan-bg .plan .plan-com .plan-bg .plan-but .theme-btn5.style-six:hover {
    color: #fff;
}

.plan-bg .plan .plan-com .plan-bg .plan-but .theme-btn5.style-six:before {
    background: -webkit-linear-gradient(-65deg, #0a0f13 0%, #0a0f13 100%);
}

.plan-bg .plan .plan-com .plan-bg .plan-but .theme-btn5.style-six:before {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    top: 0px;
    right: 0px;
    border-radius: 5px;
    z-index: -1;
    transition: all 500ms ease;
}

.plan-bg .plan .plan-com .plan-bg .plan-but .theme-btn5.style-six:hover:before {
    width: 100%;
    left: 0px;
}

/*============== PLAN CSS END ==============*/

/*============== OFFICE CSS START ==============*/

.office-bg {
    background: #0d110f no-repeat top center;
    background-size: cover;
    padding: 0px 0px 0px;
    position: relative;
    z-index: 1;
}

.office-bg .office {
    -webkit-backface-visibility: hidden;
}

.office-bg .office .office-head {
    padding: 0px 0px 30px 0px;
    margin: 0px 0px 0px 0px;
    text-align: center;
}

.office-bg .office .office-head h2 {
    font-family: 'Oxanium', cursive;
    font-size: 50px;
    color: #b4ee99;
    font-weight: 700;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

/*.slides1 {
    padding: 0;
    width: 609px;
    min-height: 407px;
    display: block;
    margin: 30px auto 80px;
    position: relative;
    box-shadow: 0px 0px 7px #8dff43;
    border-radius: 5px;
	overflow: hidden;
}

.slides1 * {
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.slides1 input { display: none; }

.slide-container1 { display: block; }

.slide1 {
    top: 0;
    opacity: 0;
    width: 609px;
    min-height: 420px;
    display: block;
    position: absolute;

    transform: scale(0);

    transition: all .7s ease-in-out;
}

.slide1 img {
    width: 100%;
    height: 100%;
}

.nav1 label {
    width: 200px;
    height: 100%;
    display: none;
    position: absolute;
    opacity: 0;
    z-index: 9;
    cursor: pointer;
    transition: opacity .2s;
    color: #b4ee99;
    font-size: 156pt;
    text-align: center;
    line-height: 380px;
    font-family: "Varela Round", sans-serif;

    text-shadow: 0px 0px 15px rgb(13 17 15);
}


.slide1:hover + .nav1 label { opacity: 0.5; }

.nav1 label:hover { opacity: 1; }

.nav1 .next { right: 0; }

input:checked + .slide-container1  .slide1 {
    opacity: 1;

    transform: scale(1);

    transition: opacity 1s ease-in-out;
}

input:checked + .slide-container1 .nav1 label { display: block; }

.nav-dots1 {
	width: 100%;
	bottom: 9px;
	height: 11px;
	display: block;
	position: absolute;
	text-align: center;
}

.nav-dots1 .nav-dot {
	top: -5px;
	width: 11px;
	height: 11px;
	margin: 0 4px;
	position: relative;
	border-radius: 100%;
	display: inline-block;
	background-color: rgb(246 246 246);
}

.nav-dots1 .nav-dot:hover {
	cursor: pointer;
	background-color: rgb(180 238 153);
}

input#img-1:checked ~ .nav-dots1 label#img-dot-1,
input#img-2:checked ~ .nav-dots1 label#img-dot-2,
input#img-3:checked ~ .nav-dots1 label#img-dot-3,
input#img-4:checked ~ .nav-dots1 label#img-dot-4,
input#img-5:checked ~ .nav-dots1 label#img-dot-5,
input#img-6:checked ~ .nav-dots1 label#img-dot-6 {
	background: rgb(168 223 74);
    box-shadow: 0px 0px 15px rgb(13 17 15);
}*/

.office-img {
    min-height: 280px !important;
    margin: 20px auto 40px;
}

.image1 {
    min-height: 280px;
    box-shadow: 0px 0px 6px #b4ee99;
}

.office-img .office-middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    bottom: 0%;
    left: 30%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: left;
}

.office-img:hover,
.image1,
.office-img .image1:hover {}

.office-img:hover .office-middle {
    opacity: 1;
}

.office-img .office-middle .office-text {
    background-color: #0d0d0da8;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding: 24px 61px;
    font-family: 'Roboto', sans-serif;
}

@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
}

/*============== OFFICE CSS END ==============*/

/*============== SERVICE CSS START ==============*/

.service-bg {
    background: #0d110f no-repeat top center;
    background-size: cover;
    padding: 0px 0px 0px;
    position: relative;
}

.service-bg .security {
    margin: 0px 0px 30px 0px;
}

.service-bg .security .sec {
    border: double 2px transparent;
    border-radius: 10px;
    background-image: linear-gradient(#0d110f, #0d110f), radial-gradient(circle at top left, #384531, #6ed38b);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    width: 100%;
    text-align: left;
    padding: 20px;
}

.service-bg .security .sec ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    text-align: center;
}

.service-bg .security .sec ul li {
    display: inline-block;
    padding: 10px 8px;
}

.service-bg .security .sec ul li img {
    width: 168px;
}

.service-bg .security .sec-head {
    padding: 80px 0px 80px 0px;
    margin: 0px 0px 0px 0px;
    text-align: center;
}

.service-bg .security .sec-head h2 {
    font-family: 'Oxanium', cursive;
    font-size: 50px;
    color: #b4ee99;
    font-weight: 700;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.service-bg .security .service-img {
    text-align: center;
}

.service-bg .security .service-img img {
    position: relative;
    margin: auto;
    left: -217px;
    top: 64px;
}

.service-bg .security .service-img1 {
    padding: 185px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    min-height: 390px;
}

.service-bg .security .service-img1 img {
    margin: auto;
}

.m-video__video1 {
    position: relative;
}

.m-video__video1 img {
    -o-object-fit: contain;
    object-fit: contain;
    margin: auto;
}

.m-video__play1 {
    position: absolute;
    left: 50%;
    top: 60%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background-image: url(../images/play1.png);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

/*.card-bg .certificate .video-img:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	-ms-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	-webkit-animation: pulse-border 1500ms ease-out infinite;
	animation: pulse-border 1500ms ease-out infinite;
	z-index: -1;
}*/

.service-bg .security .service-img1 .video-play-btn i {
    top: 38px;
    position: relative;
    color: #1f9fe7;
}

.service-bg .security .service-img1 .video-play-btn {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 70px;
    text-align: center;
    font-size: 28px;
    background-color: transparent;
    border-radius: 50%;
    color: #000942;
    position: absolute;
    z-index: 1;
}

.service-bg .security .service-img1 .video-play-btn:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: rgb(88 147 71);
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
    z-index: -1;
}

.service-bg .security .service-img1 .video-play-btn:hover {
    color: #313131;
}

.service-bg .security .slider {
    width: 100%;
    margin: 0px auto;
}

.service-bg .security .slick-slide {
    margin: 0px 20px;
}

.service-bg .security .slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
    transition: 0.7s;
}

.service-bg .security.slick-active {
    opacity: .5;
}

.service-bg .security .slick-current {
    opacity: 1;
    /*transform: scale(1.1);*/
    transition: 0.7s;
}

.service-bg .security .fea-com {
    margin: 5px 0px 0px 0px;
}

.service-bg .security .fea-com .fea {
    background-color: #05040e;
    padding: 20px;
    display: inline-block;
    border-radius: 10px;
}

.service-bg .security .fea-com .fea1 {
    margin: 0px 0px 20px 0px;
    text-align: center;
}

.service-bg .security .fea-com .fea1 h2 {
    font-family: 'Oxanium', cursive;
    font-size: 24px;
    color: #fff;
    font-weight: 500;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.service-bg .security .fea-com .fea2 {
    border-top: 1px solid #585858;
    padding: 20px 0px 0px 0px;
}

.service-bg .security .fea-com .fea2 img {
    float: left;
    margin: 0px 26px 0px 0px;
    padding: 15px;
    border: 1px solid #29342a;
    border-radius: 10px;
}

.service-bg .security .fea-com .fea2 p {
    font-family: 'Oxanium', cursive;
    font-size: 14px;
    color: #b9baba;
    font-weight: 400;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    line-height: 25px;
}

/*============== SERVICE CSS END ==============*/

/*============== TEAM CSS START ==============*/

.team-bg {
    background: #0d110f no-repeat top center;
    background-size: cover;
    padding: 0px 0px 0px;
    position: relative;
    z-index: 1;
}

.team-bg .team {
    -webkit-backface-visibility: hidden;
}

.team-bg .team .team-head {
    padding: 80px 0px 30px 0px;
    margin: 0px 0px 0px 0px;
}

.team-bg .team .team-head h2 {
    font-family: 'Oxanium', cursive;
    font-size: 50px;
    color: #b4ee99;
    font-weight: 700;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.team__section {
    width: 100%;
    margin: auto;
    text-align: center;
}

.team__sec1 {
    margin: 20px auto 20px;
}

.team__section .team__slot {
    width: 275px;
    box-sizing: border-box;
    background-color: #0f2015;
    border-right: none;
    border-top: none;
    min-height: 305px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    cursor: pointer;
    position: relative;
    background-size: 0% auto;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.team__slot .bioText {
    opacity: 0;
    color: rgba(242, 242, 242, 0);
    pointer-events: none;
    position: absolute;
    top: 350px;
    left: 0;
    right: 0;
    padding: 10%;
    ;
    padding-top: 25px;
    padding-bottom: 25px;
    width: 80%;
    height: 0;
    -webkit-transition: all 0.3s linear;
    margin: auto;
}

.team__slot.bio .team__info {
    top: 0px;
    bottom: 224px;
    background-color: rgba(0, 0, 0, 0.42);
    box-shadow: inset 0px -5px 10px 0 rgb(0 0 0);
    padding: 13px 0px 0px 0px;
}

.team__slot.bio .bioText {
    opacity: 1;
    border-radius: 0;
    position: absolute;
    top: 100px;
    padding-top: 30px;
    left: 0;
    right: 0;
    font-size: 16px;
    bottom: 0;
    width: 100%;
    min-height: 181px;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(42, 42, 42, 0.7);
    z-index: 8;
    margin: auto;
    font-family: 'Oxanium', cursive;
    overflow: auto;
    line-height: 20px;
}

.team__slot .team__info {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 215px;
    padding: 15px 0px 0px 0px;
    right: 0;
    pointer-events: none;
    z-index: 9;
    -webkit-transition: all 0.3s linear;
}

.team__slot .headshot {
    margin: auto;
    margin-top: 19px;
    width: 172px;
    height: 172px;
    /*border:10px double #424242;*/
    background-size: 200px 200px;
    background-position: center 15%;
    border-radius: 100%;
    box-shadow: 0px 2px 10px 2px rgb(180 238 153);
    -webkit-transition: all 0.1s ease-in-out;
}

.team__slot.bio .headshot {
    -webkit-filter: blur(3px);
    opacity: 1;
    width: 100%;
    height: 300px;
    border-radius: 0;
    margin-top: 0;
    background-size: 375px 375px !important;
    border: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.team__slot .name {
    font-family: 'Oxanium', cursive;
    font-size: 20px;
    font-weight: 800;
    color: #b4ee99 !important;
    margin-bottom: 0px;
    -webkit-transition: all 0.3s linear;
}

.team__slot .title {
    font-family: 'Oxanium', cursive;
    font-size: 16px;
    font-weight: 300;
    margin-top: 5px;
    color: #ccc;
    -webkit-transition: all 0.3s linear;
}

.team__slot.bio .name {
    color: #f5f5f5;
}

.team__section .team__slot:hover .headshot {
    opacity: 1;
    width: 100%;
    height: 300px;
    border-radius: 0;
    margin-top: 0;
    background-size: 325px 325px;
    border: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.team__section .team__slot:hover .name {
    color: #b4ee99 !important;
}

.team__section .team__slot:hover .team__info {
    background-color: rgba(0, 0, 0, 0.42);
}

/*============== TEAM CSS END ==============*/

/*============== INS CSS END ==============*/

.ins-bg {
    background: #0d110f no-repeat top center;
    background-size: cover;
    padding: 0px 0px 0px;
    position: relative;
    z-index: 1;
}

.ins-bg .ins {
    -webkit-backface-visibility: hidden;
}

.ins-bg .ins .ins-head {
    padding: 50px 0px 30px 0px;
    margin: 0px 0px 0px 0px;
    text-align: center;
}

.ins-bg .ins .ins-head h2 {
    font-family: 'Oxanium', cursive;
    font-size: 50px;
    color: #b4ee99;
    font-weight: 700;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.ins-bg .ins .ins-com {
    border: double 2px transparent;
    border-radius: 10px;
    /* background-image: linear-gradient(#0e1210, #0e1210), radial-gradient(circle at top left, #384531, #6ed38b);*/
    background-origin: border-box;
    background-clip: padding-box, border-box;
    width: 100%;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 111;
    margin: auto;
}

.ins-bg .ins .ins-com .ins1 {}

.ins-bg .ins .ins-com .ins1-img {}

.ins-bg .ins .ins-com .ins1-img img {}

.ins-bg .ins .ins-com .ins1 h2 {
    font-family: 'Oxanium', cursive;
    font-size: 30px;
    color: #b3ef99;
    font-weight: 400;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 15px 0px;
}

.ins-bg .ins .ins-com .ins1 p {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    color: #b9baba;
    font-weight: 400;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    text-align: justify;
    line-height: 26px;
}

.ins-bg .ins .ins-com .fea-com1 {
    margin: 30px 0px 20px 0px;
}

.ins-bg .ins .ins-com .fea-com1 .fea {
    background-color: #05040e;
    padding: 20px;
    display: inline-block;
    border-radius: 10px;
}

.ins-bg .ins .ins-com .fea-com1 .fea1 {
    margin: 0px 0px 20px 0px;
    text-align: center;
}

.ins-bg .ins .ins-com .fea-com1 .fea1 h2 {
    font-family: 'Oxanium', cursive;
    font-size: 24px;
    color: #fff;
    font-weight: 500;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.ins-bg .ins .ins-com .fea-com1 .fea2 {
    border-top: 1px solid #585858;
    padding: 20px 0px 0px 0px;
}

.ins-bg .ins .ins-com .fea-com1 .fea2 img {
    float: left;
    margin: 0px 26px 0px 0px;
    padding: 15px;
    border: 1px solid #29342a;
    border-radius: 10px;
}

.ins-bg .ins .ins-com .fea-com1 .fea2 p {
    font-family: 'Oxanium', cursive;
    font-size: 14px;
    color: #b9baba;
    font-weight: 400;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    line-height: 25px;
}

.ins-bg .ins .ins-com .ins-but2 {
    padding: 20px 0px 30px;
    text-align: center;
}

.ins-bg .ins .ins-com .ins-but2 .theme-btn9 {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #101b14;
    padding: 12px 36px;
    text-transform: capitalize;
    margin: 0px 0px 0px 10px;
    display: inline-block;
    position: relative;
    border-radius: 50px;
    background: transparent;
    background-size: 200% auto;
    text-align: center;
    border: 1px solid #2ed94f;
    z-index: 1;
    transition: all 500ms ease;
}

.ins-bg .ins .ins-com .ins-but2 .theme-btn9:hover {
    color: #ffffff;
    border: 1px solid #ff363a;
    background-position: right center;
}

.ins-bg .ins .ins-com .ins-but2 .theme-btn9.style-eight {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #101b14;
    padding: 12px 36px;
    text-transform: capitalize;
    margin: 0px 0px 10px 10px;
    display: inline-block;
    position: relative;
    border-radius: 5px;
    background: -webkit-linear-gradient(-65deg, #2ed94f 0%, #2ed94f 100%);
    border: 1px solid #2ed94f;
    transition: 0.7s;
}

.ins-bg .ins .ins-com .ins-but2 .theme-btn9.style-eight:hover {
    color: #fff;
}

.ins-bg .ins .ins-com .ins-but2 .theme-btn9.style-eight:before {
    background: -webkit-linear-gradient(-65deg, #0a0f13 0%, #0a0f13 100%);
}

.ins-bg .ins .ins-com .ins-but2 .theme-btn9.style-eight:before {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    top: 0px;
    right: 0px;
    border-radius: 5px;
    z-index: -1;
    transition: all 500ms ease;
}

.ins-bg .ins .ins-com .ins-but2 .theme-btn9.style-eight:hover:before {
    width: 100%;
    left: 0px;
}

/*============== INS CSS END ==============*/

/*============== CARD CSS START ==============*/

.card-bg {
   /* background: #151a1d url(../images/about-bg1.jpg) no-repeat top center;*/
        background: #151a1d url(../../forkast.news/wp-content/uploads/2023/04/bitcoin2-1260x946.jpg) no-repeat top center;
    background-size: cover;
    padding: 0px 0px 0px;
    position: relative;
    min-height: 1000px;
    z-index: 1;
}

.card-bg .card {
    -webkit-backface-visibility: hidden;
}

.card-bg .card .card-head {
    padding: 80px 0px 30px 0px;
    margin: 0px 0px 0px 0px;
}

.card-bg .card .card-head p {
    font-family: 'Oxanium', cursive;
    font-size: 24px;
    color: #8ea3a5;
    font-weight: 700;
    padding: 0px 0px 20px 0px;
    margin: 0px 0px 0px 0px;
}

.card-bg .card .card-head h2 {
    font-family: 'Oxanium', cursive;
    font-size: 40px;
    color: #b4ee99;
    font-weight: 700;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.card-bg .card .card-head h2 span {
    background: linear-gradient(90deg, #a5e050, #86e99d);
    border-radius: 8px;
    display: inline-block;
    line-height: 58px;
    padding: 6px 16px;
    color: #000;
}

.card-bg .card .card-para {
    padding: 0px 0px 30px 0px;
    margin: 0px 0px 0px 0px;
}

.card-bg .card .card-para p {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    color: #b9baba;
    font-weight: 400;
    padding: 0px 0px 20px 0px;
    margin: 0px 0px 0px 0px;
    text-align: justify;
    line-height: 26px;
}

.card-bg .card .card-para h2 {
    font-family: 'Heebo', sans-serif;
    font-size: 20px;
    color: #b9baba;
    font-weight: 500;
    padding: 0px 0px 20px 0px;
    margin: 0px 0px 0px 0px;
    text-align: justify;
    line-height: 26px;
}

.card-bg .card .card-but2 {
    padding: 0px 0px 30px;
    text-align: left;
}

.card-bg .card .card-but2 .theme-btn10 {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #101b14;
    padding: 12px 36px;
    text-transform: capitalize;
    margin: 0px 0px 0px 10px;
    display: inline-block;
    position: relative;
    border-radius: 50px;
    background: transparent;
    background-size: 200% auto;
    text-align: center;
    border: 1px solid #2ed94f;
    z-index: 1;
    transition: all 500ms ease;
}

.card-bg .card .card-but2 .theme-btn10:hover {
    color: #ffffff;
    border: 1px solid #ff363a;
    background-position: right center;
}

.card-bg .card .card-but2 .theme-btn10.style-nine {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #101b14;
    padding: 12px 36px;
    text-transform: capitalize;
    margin: 0px 0px 10px 10px;
    display: inline-block;
    position: relative;
    border-radius: 5px;
    background: -webkit-linear-gradient(-65deg, #2ed94f 0%, #2ed94f 100%);
    border: 1px solid #2ed94f;
    transition: 0.7s;
}

.card-bg .card .card-but2 .theme-btn10.style-nine:hover {
    color: #fff;
}

.card-bg .card .card-but2 .theme-btn10.style-nine:before {
    background: -webkit-linear-gradient(-65deg, #0a0f13 0%, #0a0f13 100%);
}

.card-bg .card .card-but2 .theme-btn10.style-nine:before {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    top: 0px;
    right: 0px;
    border-radius: 5px;
    z-index: -1;
    transition: all 500ms ease;
}

.card-bg .card .card-but2 .theme-btn10.style-nine:hover:before {
    width: 100%;
    left: 0px;
}

.card-bg .card card-img {}

.card-bg .card card-img img {}

.card-bg .certificate {
    -webkit-backface-visibility: hidden;
}

.card-bg .certificate .cert-head {
    padding: 20px 0px 30px 0px;
    margin: 0px 0px 0px 0px;
}

.card-bg .certificate .cert-head h2 {
    font-family: 'Oxanium', cursive;
    font-size: 40px;
    color: #b4ee99;
    font-weight: 700;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.card-bg .certificate .cert-para {
    padding: 0px 0px 30px 0px;
    margin: 0px 0px 0px 0px;
}

.card-bg .certificate .cert-para p {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    color: #b9baba;
    font-weight: 400;
    padding: 0px 0px 20px 0px;
    margin: 0px 0px 0px 0px;
    text-align: justify;
    line-height: 26px;
}

.card-bg .certificate .cert-com {}

.card-bg .certificate .cert-com .cert-back {
 /*   background: url(../images/cert-back.png) no-repeat top center;*/
    background-size: cover;
    width: 590px;
   min-height: 690px;
    margin: 0px auto 0px;
    transition: 0.7s;
    padding: 0px 0px 0px 0px;
}

.card-bg .certificate .cert-com .cert-back .cert1 {}

.card-bg .certificate .cert-com .cert-back .cert1 img {
    margin: 115px 0px 0px 0px;
}

.card-bg .certificate .cert-com .cert-back .cert1 .cert-but1 {
    padding: 0px 0px 30px;
}

.card-bg .certificate .cert-com .cert-back .cert1 .cert-but1 .theme-btn2 {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #101b14;
    padding: 12px 36px;
    text-transform: capitalize;
    margin: 0px 0px 0px 10px;
    display: inline-block;
    position: relative;
    border-radius: 50px;
    background: transparent;
    background-size: 200% auto;
    text-align: center;
    border: 1px solid #2ed94f;
    z-index: 1;
    transition: all 500ms ease;
}

.card-bg .certificate .cert-com .cert-back .cert1 .cert-but1 .theme-btn2:hover {
    color: #ffffff;
    border: 1px solid #ff363a;
    background-position: right center;
}

.card-bg .certificate .cert-com .cert-back .cert1 .cert-but1 .theme-btn2.style-three {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #101b14;
    padding: 12px 36px;
    text-transform: capitalize;
    margin: 0px 0px 10px 10px;
    display: inline-block;
    position: relative;
    border-radius: 5px;
    background: -webkit-linear-gradient(-65deg, #2ed94f 0%, #2ed94f 100%);
    border: 1px solid #2ed94f;
    transition: 0.7s;
}

.card-bg .certificate .cert-com .cert-back .cert1 .cert-but1 .theme-btn2.style-three:hover {
    color: #fff;
}

.card-bg .certificate .cert-com .cert-back .cert1 .cert-but1 .theme-btn2.style-three:before {
    background: -webkit-linear-gradient(-65deg, #0a0f13 0%, #0a0f13 100%);
}

.card-bg .certificate .cert-com .cert-back .cert1 .cert-but1 .theme-btn2.style-three:before {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    top: 0px;
    right: 0px;
    border-radius: 5px;
    z-index: -1;
    transition: all 500ms ease;
}

.card-bg .certificate .cert-com .cert-back .cert1 .cert-but1 .theme-btn2.style-three:hover:before {
    width: 100%;
    left: 0px;
}

.card-bg .certificate .cert-com .cert-back .cert2 {}

.card-bg .certificate .cert-com .cert-back .cert2 img {
    margin: 47px 0px 0px -34px;
}

.ad-2 {
    animation-duration: 2.5s !important;
}

.card-bg .certificate .cert-com .cert-back .cert2 .cert-but2 {
    padding: 20px 0px 30px;
    text-align: center;
}

.card-bg .certificate .cert-com .cert-back .cert2 .cert-but2 .theme-btn3 {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #101b14;
    padding: 12px 36px;
    text-transform: capitalize;
    margin: 0px 0px 0px 10px;
    display: inline-block;
    position: relative;
    border-radius: 50px;
    background: transparent;
    background-size: 200% auto;
    text-align: center;
    border: 1px solid #2ed94f;
    z-index: 1;
    transition: all 500ms ease;
}

.card-bg .certificate .cert-com .cert-back .cert2 .cert-but2 .theme-btn3:hover {
    color: #ffffff;
    border: 1px solid #ff363a;
    background-position: right center;
}

.card-bg .certificate .cert-com .cert-back .cert2 .cert-but2 .theme-btn3.style-four {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #101b14;
    padding: 12px 36px;
    text-transform: capitalize;
    margin: 0px 0px 10px 10px;
    display: inline-block;
    position: relative;
    border-radius: 5px;
    background: -webkit-linear-gradient(-65deg, #2ed94f 0%, #2ed94f 100%);
    border: 1px solid #2ed94f;
    transition: 0.7s;
}

.card-bg .certificate .cert-com .cert-back .cert2 .cert-but2 .theme-btn3.style-four:hover {
    color: #fff;
}

.card-bg .certificate .cert-com .cert-back .cert2 .cert-but2 .theme-btn3.style-four:before {
    background: -webkit-linear-gradient(-65deg, #0a0f13 0%, #0a0f13 100%);
}

.card-bg .certificate .cert-com .cert-back .cert2 .cert-but2 .theme-btn3.style-four:before {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    top: 0px;
    right: 0px;
    border-radius: 5px;
    z-index: -1;
    transition: all 500ms ease;
}

.card-bg .certificate .cert-com .cert-back .cert2 .cert-but2 .theme-btn3.style-four:hover:before {
    width: 100%;
    left: 0px;
}

.card-bg .certificate .video-img {
    padding: 20px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    min-height: 700px;
}

.card-bg .certificate .video-img img {
    margin: auto;
}

.m-video__video {
    position: relative;
}

.m-video__video img {
    -o-object-fit: contain;
    object-fit: contain;
    margin: auto;
}

.m-video__play {
    position: absolute;
    left: 35%;
    top: 54%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background-image: url(../images/play.png);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

/*.card-bg .certificate .video-img:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	-ms-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	-webkit-animation: pulse-border 1500ms ease-out infinite;
	animation: pulse-border 1500ms ease-out infinite;
	z-index: -1;
}*/

.card-bg .certificate .video-img .video-play-btn i {
    top: 38px;
    position: relative;
    color: #1f9fe7;
}

.card-bg .certificate .video-img .video-play-btn {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 70px;
    text-align: center;
    font-size: 28px;
    background-color: transparent;
    border-radius: 50%;
    color: #000942;
    position: absolute;
    z-index: 1;
}

.card-bg .certificate .video-img .video-play-btn:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: rgb(255 226 122 / 55%);
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
    z-index: -1;
}

.card-bg .certificate .video-img .video-play-btn:hover {
    color: #313131;
}

@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
        opacity: 0;
    }
}

@-moz-keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
        opacity: 0;
    }
}

@-o-keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
        opacity: 0;
    }
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
        opacity: 0;
    }
}

.cards {
    /*	  -webkit-animation: cards 2s ease infinite;
    animation: cards 2s ease infinite;*/
}

@keyframes cards {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        -webkit-transform: translateY(0) scaleY(0.95);
        transform: translateY(0) scaleY(0.95);
    }
    50% {
        -webkit-transform: translateY(-20px) scaleY(1.1);
        transform: translateY(-20px) scaleY(1.1);
    }
    75% {
        -webkit-transform: translateY(0) scaleY(0.95);
        transform: translateY(0) scaleY(0.95);
    }
    85% {
        -webkit-transform: translateY(0) scaleY(1);
        transform: translateY(0) scaleY(1);
    }
    100% {
        -webkit-transform: translateY(0) scaleY(1);
        transform: translateY(0) scaleY(1);
    }
}

/*============== CARD CSS END ==============*/

/*============== CARD1 CSS START ==============*/

.card-bg1 {
    background: #142419 no-repeat top center;
    background-size: cover;
    padding: 0px 0px 0px;
    position: relative;
    z-index: 1;
}

.card-bg1 .card1 {
    -webkit-backface-visibility: hidden;
}

.card-bg1 .card1 .card-head1 {
    padding: 80px 0px 30px 0px;
    margin: 0px 0px 0px 0px;
    text-align: center;
}

.card-bg1 .card1 .card-head1 h2 {
    font-family: 'Oxanium', cursive;
    font-size: 40px;
    color: #b4ee99;
    font-weight: 700;
    padding: 0px 0px 15px 0px;
    margin: 0px 0px 0px 0px;
}

.card-bg1 .card1 .card-head1 p {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    color: #b9baba;
    font-weight: 400;
    padding: 0px 0px 20px 0px;
    margin: 0px 0px 0px 0px;
    line-height: 26px;
}

.card-bg1 .card1 .card-but2 {
    padding: 20px 0px 30px;
    text-align: center;
}

.card-bg1 .card1 .card-but2 .theme-btn10 {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #101b14;
    padding: 12px 36px;
    text-transform: capitalize;
    margin: 0px 0px 0px 10px;
    display: inline-block;
    position: relative;
    border-radius: 50px;
    background: transparent;
    background-size: 200% auto;
    text-align: center;
    border: 1px solid #2ed94f;
    z-index: 1;
    transition: all 500ms ease;
}

.card-bg1 .card1 .card-but2 .theme-btn10:hover {
    color: #ffffff;
    border: 1px solid #ff363a;
    background-position: right center;
}

.card-bg1 .card1 .card-but2 .theme-btn10.style-nine {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #101b14;
    padding: 12px 36px;
    text-transform: capitalize;
    margin: 0px 0px 10px 10px;
    display: inline-block;
    position: relative;
    border-radius: 5px;
    background: -webkit-linear-gradient(-65deg, #2ed94f 0%, #2ed94f 100%);
    border: 1px solid #2ed94f;
    transition: 0.7s;
}

.card-bg1 .card1 .card-but2 .theme-btn10.style-nine:hover {
    color: #fff;
}

.card-bg1 .card1 .card-but2 .theme-btn10.style-nine:before {
    background: -webkit-linear-gradient(-65deg, #0a0f13 0%, #0a0f13 100%);
}

.card-bg1 .card1 .card-but2 .theme-btn10.style-nine:before {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    top: 0px;
    right: 0px;
    border-radius: 5px;
    z-index: -1;
    transition: all 500ms ease;
}

.card-bg1 .card1 .card-but2 .theme-btn10.style-nine:hover:before {
    width: 100%;
    left: 0px;
}

/*============== CARD1 CSS END ==============*/

/*============== CARD2 CSS START ==============*/

.card-bg2 {
    background: #0d1110 no-repeat top center;
    background-size: cover;
    padding: 0px 0px 0px;
    position: relative;
    z-index: 1;
}

.card-bg2 .card2 {
    -webkit-backface-visibility: hidden;
}

.card-bg2 .card2 .card-head2 {
    padding: 80px 0px 30px 0px;
    margin: 0px 0px 0px 0px;
    text-align: center;
}

.card-bg2 .card2 .card-head2 h2 {
    font-family: 'Oxanium', cursive;
    font-size: 40px;
    color: #b4ee99;
    font-weight: 700;
    padding: 0px 0px 20px 0px;
    margin: 0px 0px 0px 0px;
}

.card-bg2 .card2 .card-head2 p {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    color: #b9baba;
    font-weight: 400;
    padding: 0px 0px 20px 0px;
    margin: 0px 0px 0px 0px;
    line-height: 26px;
}

.card-bg2 .card2 .card-com {
    text-align: center;
    margin: 20px 0px 20px;
    min-height: 225px;
}

.card-bg2 .card2 .card-com i {
    font-size: 50px;
    -webkit-background-clip: text;
    background-image: linear-gradient(90deg, #addd3c, #85eaa1);
    -webkit-text-fill-color: transparent;
}

.card-bg2 .card2 .card-com h2 {
    font-family: 'Oxanium', cursive;
    font-size: 24px;
    color: #b4ee99;
    font-weight: 700;
    padding: 30px 0px 20px 0px;
    margin: 0px 0px 0px 0px;
}

.card-bg2 .card2 .card-com p {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    color: #b9baba;
    font-weight: 400;
    padding: 0px 0px 20px 0px;
    margin: 0px 0px 0px 0px;
    line-height: 26px;
}

.card-bg2 .card2 .card-tab {
    margin: 0px 0px 0px 0px;
}

.card-bg2 .card2 .card-faq-img {
    text-align: center;
    margin: 0px 0px 0px 0px;
}

.card-bg2 .card2 .card-faq-img img {
    margin: auto;
}

/*============== CARD2 CSS END ==============*/

/*============== REF CSS START ==============*/

.ref-bg {
    background: #0d110f no-repeat top center;
    background-size: cover;
    padding: 0px 0px 0px;
    position: relative;
    margin: -323px 0px 0px 0px;
}

.ref-bg .refer {
    -webkit-backface-visibility: hidden;
    position: relative;
    z-index: 11;
}

.ref-bg .refer .ref-head {
    padding: 80px 0px 30px 0px;
    margin: 0px 0px 0px 0px;
}

.ref-bg .refer .ref-head h2 {
    font-family: 'Oxanium', cursive;
    font-size: 50px;
    color: #b4ee99;
    font-weight: 700;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.ref-bg .refer .ref-para {
    padding: 0px 0px 30px 0px;
    margin: 0px 0px 0px 0px;
}

.ref-bg .refer .ref-para p {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    text-align: justify;
    line-height: 26px;
}

.ref-bg .refer .ref-back {
    background: url(../images/ref-back.png) no-repeat top center;
    background-size: cover;
    width: auto;
    min-height: 400px;
    margin: 0px auto 0px;
    transition: 0.7s;
    padding: 0px 0px 0px 0px;
}

.ref-bg .refer .ref-back .ref1 {
    margin: 0px 0px 0px 0px;
}

.ref-bg .refer .ref-back .ref1 ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    text-align: center;
}

.ref-bg .refer .ref-back .ref1 ul li {
    display: inline-block;
    padding: 10px 8px;
}

.ref-bg .refer .ref-back .ref1 ul li .ref-per1 {
    font-family: 'Heebo', sans-serif;
    font-size: 30px;
    color: #fefffe;
    font-weight: 700;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    position: relative;
    left: -51px;
    top: 92px;
}

.ref-bg .refer .ref-back .ref1 ul li .ref-per2 {
    font-family: 'Heebo', sans-serif;
    font-size: 30px;
    color: #fefffe;
    font-weight: 700;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    position: relative;
    left: 14px;
    top: 106px;
}

.ref-bg .refer .ref-back .ref1 ul li .ref-per3 {
    font-family: 'Heebo', sans-serif;
    font-size: 30px;
    color: #fefffe;
    font-weight: 700;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    position: relative;
    left: 74px;
    top: 130px;
}

.ref-bg .refer .ref-back .ref2 {
    margin: 237px auto 0px;
    text-align: left;
    width: 74%;
}

.ref-bg .refer .ref-back .ref2 p {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    color: #fcfcfc;
    font-weight: 500;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

/*============== REF CSS END ==============*/

/*============== LAST CSS START ==============*/

.last-bg {
    background: #151a1d url(../images/stat-bg1.jpg) no-repeat top center;
    background-size: cover;
    padding: 0px 0px 0px;
    position: relative;
}

.last-bg .stat {}

.last-bg .stat .stat-back {
    background: url(../images/stat-back.png) no-repeat top center;
    background-size: cover;
    width: 516px;
    min-height: 599px;
    margin: 0px auto 0px;
    transition: 0.7s;
    padding: 0px 0px 0px 0px;
}

.last-bg .stat .stat-back .sta1 {
    padding: 30px 0px 30px 0px;
    width: 250px;
    background-color: #0d120ebf;
}

.last-bg .stat .stat-back .sta1 img {
    margin: 0px 0px 0px 0px;
    float: left;
    background-color: #0d1110;
}

.last-bg .stat .stat-back .sta1 p {
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #98a19b;
    padding: 0px 0px 7px 0px;
    margin: 3px 0px 7px 0px;
    border-bottom: 1px solid #29342a;
}

.last-bg .stat .stat-back .sta1 h2 {
    font-family: 'Heebo', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    margin: 0px 0px 6px 0px;
}

.static1 {
    margin: 116px 0px 0px 0px;
}

.last-bg .stat .stat-back .sta2 {
    padding: 30px 0px 30px 0px;
    width: 250px;
    background-color: #0d120ebf;
}

.last-bg .stat .stat-back .sta2 img {
    margin: 0px 0px 0px 0px;
    float: right;
    background-color: #0d1110;
}

.last-bg .stat .stat-back .sta2 p {
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #98a19b;
    padding: 0px 0px 7px 0px;
    margin: 3px 0px 7px 0px;
    border-bottom: 1px solid #29342a;
    text-align: right;
}

.last-bg .stat .stat-back .sta2 h2 {
    font-family: 'Heebo', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    margin: 0px 0px 6px 0px;
    text-align: right;
}

.static2 {
    margin: 55px 0px 0px 0px;
}

.last-bg .stat .last-head {
    padding: 80px 0px 30px 0px;
    margin: 0px 0px 0px 0px;
    text-align: center;
}

.last-bg .stat .last-head h2 {
    font-family: 'Oxanium', cursive;
    font-size: 50px;
    color: #b4ee99;
    font-weight: 700;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.last-bg .stat .depo-com {
    margin: 30px 0px 30px 0px;
    width: 100%;
    display: inline-block;
}

.last-bg .stat .depo-com .depo-head {
    margin: 20px 0px 20px 0px;
}

.last-bg .stat .depo-com .depo-head p {
    font-family: 'Oxanium', cursive;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 5px 0px;
}

.last-bg .stat .depo-com .depo-inner {
    padding: 0px 0px 0px;
}

/*.last-bg .stat .depo-com .depo-inner ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.last-bg .stat .depo-com .depo-inner ul li {
}
.last-bg .stat .depo-com .depo-box {
	background: transparent;
	background-size: cover;
	min-height: 0px;
	margin: 20px 0px 0px 10px;
	padding: 10px 20px 10px 20px;
	transition: 0.7s;
	border-radius: 10px;
	position: relative;
	z-index: 9999;
	cursor: pointer;
	width: 210px;
	float: left;
}
.last-bg .stat .depo-com .depo-box .depo-user {
	padding: 0px 0px 0px 0px;
	text-align: left;
}
.last-bg .stat .depo-com .depo-box .depo-user p {
	background: #29342a;
	padding: 0.5px;
	width: 130px;
	margin: 16px 0px 10px 0px;
	display: inline-block;
}
.last-bg .stat .depo-com .depo-box .depo-user h2 {
	font-family: 'Heebo', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #7d8580;
	margin: 0px 0px 6px 0px;
}
.last-bg .stat .depo-com .depo-box .depo-user h4 {
	font-family: 'Heebo', sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: #2ed94f;
	margin: 0px 0px 0px 0px;
}
.last-bg .stat .depo-com .depo-box .depo-user img {
	float: right;
	position: relative;
	margin: -30px 0px 0px 0px;
}
.last-bg .stat .depo-com .depo-box .depo-date {
	padding: 0px 0px 6px 0px;
	text-align: right;
}
.last-bg .stat .depo-com .depo-box .depo-date h4 {
	font-family: 'Heebo', sans-serif;
	font-size: 11px;
	font-weight: 400;
	color: #474c49;
	margin: 10px 0px 0px 0px;
}
.last-bg .stat .depo-com .depo-box .depo-date h4 img {
	position: relative;
	top: 4px;
}
.last-bg .stat .depo-com .depo-box .depo-date p {
	background: #29342a;
	padding: 0.5px;
	width: 155px;
	margin: 8px 0px 5px 0px;
	display: inline-block;
}*/

.last-bg .stat .depo-com .depo-inner .last-back {
    border: double 2px transparent;
    border-radius: 10px;
    background-image: linear-gradient(#0e1210, #0e1210), radial-gradient(circle at top left, #384531, #6ed38b);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    width: 100%;
    height: 185px;
    margin: 0px auto 0px;
    transition: 0.7s;
    text-align: center;
    position: relative;
    padding: 0px 0px 0px 0px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll;
}

.last-bg .stat .depo-com .depo-inner .last-back::-webkit-scrollbar {
    display: none;
}

.last-bg .stat .depo-com .depo-inner .last-back table {
    /*width: 95%;*/
    text-align: left;
    margin: auto;
    /*max-width: 480px;*/
}

.last-bg .stat .depo-com .depo-inner .last-back table tr {
    padding: 10px;
}

.last-bg .stat .depo-com .depo-inner .last-back table tr:nth-child(even) {
    background-color: #142318cf;
}

.last-bg .stat .depo-com .depo-inner .last-back table th {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    color: #b4ee99;
    font-weight: 400;
    line-height: 16px;
    background: #16281a;
    border: transparent;
    white-space: unset;
    padding: 10px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
    text-align: center;
    /*width: 38%;*/
}

.last-bg .stat .depo-com .depo-inner .last-back table td {
    font-family: 'Heebo', sans-serif;
    font-size: 13px;
    color: #fff;
    font-weight: 400;
    line-height: 16px;
    background: transparent;
    border: transparent;
    white-space: unset;
    padding: 8px 0px 8px 0px;
    margin: 0px 0px 0px 0px;
    text-align: center;
    /*width:38%;*/
}

.last-bg .stat .depo-com .depo-inner .last-back table td img {
    width: 21px;
}

.dep {
    color: #2ed94f !important;
}

.with {
    color: #b40400 !important;
}

/*============== LAST CSS START ==============*/

/*============== TEST CSS START ==============*/

.test-bg {
    background: #151a1d url(../images/test-bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 0px 0px 0px;
    position: relative;
}

.test-bg .test {}

.test-bg .test .twit-back {
    border: 1px solid #5d8966;
    border-radius: 10px;
    width: 100%;
    padding: 20px;
    margin: 80px 0px 30px 0px;
    min-height: 192px;
}

.test-bg .test .twit-head {
    padding: 30px 0px 30px 0px;
    margin: 0px 0px 0px 0px;
    text-align: left;
}

.test-bg .test .twit-head h2 {
    font-family: 'Oxanium', cursive;
    font-size: 50px;
    color: #b4ee99;
    font-weight: 700;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.test-bg .test .twit-img {
    text-align: center;
    margin: auto;
    width: 362px;
    position: relative;
    top: -68px;
    border: double 6px transparent;
    border-radius: 10px;
    background-image: linear-gradient(#0d110f, #0d110f), radial-gradient(circle at top left, #2cb843, #297429);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.test-bg .test .twit-img img {}

.test-bg .reg {}

.test-bg .reg .reg-head {
    padding: 70px 0px 30px 0px;
    margin: 0px 0px 0px 0px;
    text-align: center;
}

.test-bg .reg .reg-head h2 {
    font-family: 'Oxanium', cursive;
    font-size: 40px;
    color: #b4ee99;
    font-weight: 700;
    padding: 0px 0px 0px 0px;
    margin: auto;
    width: 80%;
}

.test-bg .reg .reg-but {
    padding: 20px 0px 30px;
    text-align: center;
}

.test-bg .reg .reg-but .theme-btn4 {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #0d110f;
    padding: 12px 36px;
    text-transform: capitalize;
    margin: 0px 0px 0px 10px;
    display: inline-block;
    position: relative;
    border-radius: 50px;
    background: transparent;
    background-size: 200% auto;
    text-align: center;
    border: 1px solid #2ed94f;
    z-index: 1;
    transition: all 500ms ease;
}

.test-bg .reg .reg-but .theme-btn4:hover {
    color: #ffffff;
    border: 1px solid #ff363a;
    background-position: right center;
}

.test-bg .reg .reg-but .theme-btn4.style-five {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #0d110f;
    padding: 12px 36px;
    text-transform: capitalize;
    margin: 0px 0px 10px 10px;
    display: inline-block;
    position: relative;
    border-radius: 5px;
    background: -webkit-linear-gradient(-65deg, #51fe80 0%, #51fe80 100%);
    border: 1px solid #2ed94f;
    transition: 0.7s;
}

.test-bg .reg .reg-but .theme-btn4.style-five:hover {
    color: #fff;
}

.test-bg .reg .reg-but .theme-btn4.style-five:before {
    background: -webkit-linear-gradient(-65deg, #0a0f13 0%, #0a0f13 100%);
}

.test-bg .reg .reg-but .theme-btn4.style-five:before {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    top: 0px;
    right: 0px;
    border-radius: 5px;
    z-index: -1;
    transition: all 500ms ease;
}

.test-bg .reg .reg-but .theme-btn4.style-five:hover:before {
    width: 100%;
    left: 0px;
}

.test-bg .foot {}

.test-bg .foot .foot-com {
    margin: 90px 0px 40px 0px;
    width: 100%;
    display: flex;
}

.test-bg .foot .foot-com .foot-links {
    padding: 10px 0px 10px;
}

.test-bg .foot .foot-com .foot-links p {
    margin: 0px 0px 25px 0px;
}

.test-bg .foot .foot-com .foot-links p a {
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    transition: 0.7s;
    position: relative;
    display: inline-block;
}

.test-bg .foot .foot-com .foot-links p a img {
    margin: -2px 6px 0px 0px;
}

.test-bg .foot .foot-com .foot-links p a:hover {
    color: #51fe80;
    transition: 0.7s;
}

.test-bg .foot .foot-com .foot-links p a:before,
.test-bg .foot .foot-links p a:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    bottom: -3px;
    background: #51fe80;
}

.test-bg .foot .foot-com .foot-links p a:before {
    left: 0;
}

.test-bg .foot .foot-com .foot-links p a:after {
    right: 0;
    background: #51fe80;
    transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.test-bg .foot .foot-com .foot-links p a:hover:before {
    background: #51fe80;
    width: 100%;
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.test-bg .foot .foot-com .foot-links p a:hover:after {
    background: transparent;
    width: 100%;
    transition: 0s;
}

.test-bg .foot .foot-img {}

.test-bg .foot .foot-img img {
    width: 400px;
    min-height: 300px;
    position: relative;
    margin: -66px 0px 0px -119px;
}

/*============== TEST CSS START ==============*/

/*============== PAY CSS START ==============*/

.pay-bg {
    background: #0d1110 no-repeat top center;
    background-size: cover;
    padding: 0px 0px 0px;
    position: relative;
}

.pay-bg .pay {}

.pay-bg .pay .payment {
    margin: 0px 0px 0px 0px;
    border-top: 1px solid #29342a;
    padding: 20px 0px 20px 0px;
}

.pay-bg .pay .payment ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    text-align: center;
}

.pay-bg .pay .payment ul li {
    display: inline-block;
    padding: 10px 25px;
}

.pay-bg .copy {}

.pay-bg .copy .copy-text {
    text-align: center;
    margin: 30px 0px 50px 0px;
}

.pay-bg .copy .copy-text p {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    color: #51fe80;
    font-weight: 500;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

/*============== PAY CSS START ==============*/

/*============== RESPONSIVE CSS START ==============*/

@media only screen and (max-width: 1200px) {
    header .navbar-inverse .navbar-header a {
        width: 200px;
        padding: 12px 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;
    }
}

@media only screen and (max-width: 1199px) {
    header .navbar-inverse .navbar-nav>li {
        padding: 30px 8px;
    }
    header .navbar-inverse .navbar-nav>li>a {
        font-size: 14px;
    }
    header .navbar-inverse .navbar-nav>li .btn {
        min-width: 115px;
    }
    header .navbar-inverse .navbar-nav>li a.btn.btn-primary {
        min-width: 110px;
    }
    .banner-bg .banner .banner-text {
        padding: 30px 0px 30px;
    }
    .banner-bg .banner .banner-text h2 {
        font-size: 50px;
        margin: 0px 0px 10px 0px;
    }
    .banner-bg .banner .banner-but {
        padding: 0px 0px 30px;
    }
    .team__section .team__slot {
        width: 300px;
    }
    .ref-bg .refer .ref-back .ref1 ul li .ref-per1 {
        left: -40px;
        top: 75px;
    }
    .ref-bg .refer .ref-back .ref1 ul li .ref-per2 {
        left: 10px;
        top: 91px;
    }
    .ref-bg .refer .ref-back .ref1 ul li .ref-per3 {
        left: 60px;
        top: 111px;
    }
    .plan-bg .plan .plan-oval img {
        display: block;
        max-width: 100%;
        height: auto;
    }
}

@media only screen and (max-width: 991px) {
    .banner-bg {
        min-height: 0px;
    }
    header {
        padding: 10px 0px 10px 0px;
    }
    header .navbar-inverse {
        text-align: center;
    }
    header .navbar-inverse .navbar-header {
        width: 100%;
    }
    header .navbar-inverse .navbar-nav>li {
        padding: 20px 10px;
    }
    header .navbar-inverse .navbar-nav>li.btn_menu {
        padding: 4px 0;
    }
    header .navbar-inverse .navbar-nav>li>a {
        padding: 0px 0px 0px 0px;
    }
    .banner-bg .banner {
        text-align: center;
    }
    .banner-bg .banner .banner-text {
        padding: 0px 0px 30px;
    }
    .banner-bg .banner .banner-right {
        position: relative;
        left: 0px;
        top: 0px;
        display: none;
    }
    .about-bg .excs {
        margin: -10px 0px 0px 0px;
        text-align: center;
        -webkit-backface-visibility: hidden;
        position: relative;
    }
    .about-bg .about {
        text-align: center;
    }
    .about-bg .about .about-img img {
        display: none;
    }
    .about-bg .about .about-head {
        padding: 30px 0px 30px 0px;
    }
    .about-bg .about .about-but {
        text-align: center;
    }
    .about-bg .about .video-img {
        min-height: 300px;
    }
    .about-bot {
        position: relative;
        margin-top: 0px;
        z-index: 11;
    }
    .plan-bg {
        margin: 0px 0px 0px 0px;
    }
    .plan-bg .plan .plan-com {
        min-height: 715px;
    }
    .plan-bg .plan-head {
        padding: 30px 0px 30px 0px;
        text-align: center;
    }
    .plan-bg .calculator-bg {
        min-height: 710px;
    }
    .office-bg .office .office-head {
        text-align: center;
    }
    .slides1 {
        width: 300px;
        min-height: 201px;
    }
    .slide1 {
        width: 300px;
        min-height: 225px;
    }
    .nav1 label {
        width: 74px;
        font-size: 60pt;
    }
    .service-bg .security .service-img img {
        /*display: block;
			max-width: 100%;
			height: auto;*/
        display: none;
    }
    .service-bg .security .service-img1 {
        padding: 20px 0px 30px 0px;
        margin: 0px 0px 0px 0px;
        min-height: 390px;
    }
    .m-video__play1 {
        top: 40%;
    }
    .team-bg .team {
        text-align: center;
    }
    .card-bg .card {
        text-align: center;
    }
    .card-bg .card .card-but2 {
        text-align: center;
    }
    .card-bg2 .card2 .card-com {
        min-height: 0px;
    }
    .card-bg2 .card2 .card-faq-img img {
        display: none;
    }
    .card-bg .certificate {
        text-align: center;
    }
    .card-bg .certificate .cert-com .cert-back {
        background: none;
        background-size: cover;
        width: auto;
        min-height: auto;
    }
    .card-bg .certificate .cert-com .cert-back .cert1 img {
        margin: 30px auto 0px;
    }
    .card-bg .certificate .cert-com .cert-back .cert1 .cert-but1 {
        padding: 20px 0px 0px;
    }
    .card-bg .certificate .cert-com .cert-back .cert2 img {
        margin: 20px auto 0px;
    }
    .card-bg .certificate .video-img {
        padding: 20px 0px 0px 0px;
        margin: 0px 0px 0px 0px;
        min-height: 200px;
    }
    .m-video__play {
        left: 50%;
    }
    .ref-bg .refer {
        text-align: center;
    }
    .ref-bg .refer .ref-head {
        padding: 30px 0px 30px 0px;
    }
    .ref-bg .refer .ref-back {
        background: none;
        background-size: cover;
        width: auto;
        min-height: 0px;
    }
    .ref-bg .refer .ref-back .ref1 ul li .ref-per1 {
        padding: 20px;
        margin: 10px 0px 10px 0px;
        position: relative;
        background-color: #0d1110;
        border: double 2px transparent;
        border-radius: 10px;
        background-image: linear-gradient(#0d110f, #0d110f), radial-gradient(circle at top left, #384531, #6ed38b);
        background-origin: border-box;
        background-clip: padding-box, border-box;
        left: 0px;
        top: 0px;
    }
    .ref-bg .refer .ref-back .ref1 ul li .ref-per2 {
        padding: 20px;
        margin: 10px 0px 10px 0px;
        position: relative;
        background-color: #0d1110;
        border: double 2px transparent;
        border-radius: 10px;
        background-image: linear-gradient(#0d110f, #0d110f), radial-gradient(circle at top left, #384531, #6ed38b);
        background-origin: border-box;
        background-clip: padding-box, border-box;
        left: 0px;
        top: 0px;
    }
    .ref-bg .refer .ref-back .ref1 ul li .ref-per3 {
        padding: 20px;
        margin: 10px 0px 10px 0px;
        position: relative;
        background-color: #0d1110;
        border: double 2px transparent;
        border-radius: 10px;
        background-image: linear-gradient(#0d110f, #0d110f), radial-gradient(circle at top left, #384531, #6ed38b);
        background-origin: border-box;
        background-clip: padding-box, border-box;
        left: 0px;
        top: 0px;
    }
    .ref-bg .refer .ref-back .ref2 {
        margin: 20px auto 20px;
        text-align: center;
        width: 100%;
    }
    .last-bg .stat {
        text-align: center;
    }
    .last-bg .stat .last-head {
        padding: 30px 0px 30px 0px;
        margin: 0px 0px 0px 0px;
    }
    .last-bg .stat .stat-back {
        background: none;
        background-size: cover;
        width: auto;
        min-height: 0px;
        margin: 0px auto 0px;
    }
    .last-bg .stat .stat-back .sta1 {
        padding: 30px 0px 30px 0px;
        width: 300px;
        margin: auto;
    }
    .static1 {
        margin: 0px 0px 0px 0px;
    }
    .last-bg .stat .stat-back .sta2 {
        padding: 30px 0px 30px 0px;
        width: 300px;
        margin: auto;
    }
    .last-bg .stat .stat-back .sta2 img {
        float: left;
    }
    .static2 {
        margin: 0px 0px 0px 0px;
    }
    .last-bg .stat .stat-back .sta2 p {
        text-align: center;
    }
    .last-bg .stat .stat-back .sta2 h2 {
        text-align: center;
    }
    .last-bg .stat .depo-com .depo-box {
        margin: 20px auto 10px;
        float: unset;
        display: inline-block;
    }
    .last-bg .stat .depo-com .depo-inner .last-back table td {
        font-size: 13px;
    }
    .test-bg .test {
        text-align: center;
    }
    .test-bg .test .twit-head {
        padding: 0px 0px 20px 0px;
        text-align: center;
    }
    .test-bg .test .twit-back {
        border: transparent;
        border-radius: 10px;
        width: 100%;
        padding: 20px;
        margin: 20px 0px 20px 0px;
        min-height: 0px;
    }
    .test-bg .test .twit-img {
        text-align: center;
        margin: 20px auto 20px;
        position: relative;
        top: 0px;
    }
    .test-bg .reg .reg-head h2 {
        width: 100%;
    }
    .test-bg .foot .foot-com {
        margin: 30px 0px 0px 0px;
        width: 100%;
        display: inline-block;
    }
    .test-bg .foot .foot-img {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    header {
        width: 100%;
        padding: 10px 0px 10px 0px;
        background: #0d110f;
        border-bottom: 1px solid #5ae98b;
        position: fixed;
        top: 0;
        z-index: 11111;
    }
    header .navbar-inverse .navbar-header a {
        width: 180px;
        padding: 0px 0px 0px 0px;
    }
    header .navbar-inverse {
        text-align: left;
    }
    header .navbar-right {
        text-align: center;
    }
    header .navbar-toggle {
        margin: 6px 0;
        border: 0;
        background: #4ccb70;
        border-radius: 0;
    }
    header .navbar-inverse .navbar-toggle:hover,
    header .navbar-inverse .navbar-toggle:focus {
        background: #3a813d;
    }
    header .navbar-inverse .navbar-toggle:hover .icon-bar,
    header .navbar-inverse .navbar-toggle:focus .icon-bar {
        background: #fff;
    }
    header .navbar-inverse .navbar-nav>li {
        padding: 6px;
        width: 100%;
    }
    header .navbar-inverse .navbar-nav>li>a:hover {
        border-bottom: 2px solid transparent;
    }
    .banner-bg .banner {
        padding: 120px 0px 0px;
        text-align: center;
    }
    .plan-bg .plan .pay-icon {
        width: 300px;
        min-height: 116px;
    }
    .plan-bg .plan .plan-com {
        /*width: 300px;
		min-height: 560px;*/
    }
    .plan-bg .plan .pay-icon ul li img {
        width: 40px;
    }
    .service-bg .security .fea-com .fea2 {
        text-align: center;
    }
    .service-bg .security .fea-com .fea2 img {
        float: unset;
        margin: 10px auto 5px;
    }
    .ins-bg .ins .ins-com .fea-com1 .fea2 {
        text-align: center;
    }
    .ins-bg .ins .ins-com .fea-com1 .fea2 img {
        float: unset;
        margin: 0px 26px 18px 0px;
    }
    .m-video__play {
        left: 50%;
        top: 20%;
    }
    .test-bg .test .twit-img {
        width: 300px;
    }
    .test-bg .foot .foot-com .foot-links {
        text-align: center;
        display: none;
    }
}

@media only screen and (max-width: 560px) {
    .banner-bg .banner .banner-text h2 {
        font-size: 38px;
    }
    .about-bg .about .about-head h2 {
        font-size: 38px;
    }
    .plan-bg .calculator-bg {
        min-height: 1005px;
    }
    .office-bg .office .office-head h2 {
        font-size: 38px;
    }
    .service-bg .security .sec-head h2 {
        font-size: 38px;
    }
    .team-bg .team .team-head h2 {
        font-size: 38px;
    }
    .ins-bg .ins .ins-head h2 {
        font-size: 38px;
    }
    .card-bg .card .card-head h2 {
        font-size: 38px;
    }
    .card-bg .certificate .cert-head h2 {
        font-size: 38px;
    }
    .ref-bg .refer .ref-head h2 {
        font-size: 38px;
    }
    .test-bg .test .twit-head h2 {
        font-size: 38px;
    }
    .test-bg .reg .reg-head h2 {
        font-size: 38px;
    }
}

@media only screen and (max-width: 420px) {
    .plan-bg .calculator-bg {
        min-height: 1005px;
    }
}

/*============== RESPONSIVE CSS END ==============*/

/*============== FAQ CSS START ==============*/

.faq-bg {
    background: transparent;
    background-size: cover;
    background-attachment: fixed;
    padding: 20px 0px 50px 0px;
    font-family: 'Heebo', 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, #26261c 0%, #2d4f37 72%);
    color: #f1f1f1;
}

.faq_accordian .accordion h4 {
    background: url(../images/accordian_arrow_up.png) no-repeat center right, linear-gradient(90deg, #27271d 0%, #3e754e 72%);
    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: 'Heebo', sans-serif;
}

.faq_accordian .accordion-content {
    display: none;
}

.faq_accordian .accordion-content p {
    width: 100%;
    display: inline-block;
    font-size: 14px;
    color: #87ea9e;
    line-height: 26px;
    background: #0d120f;
    border: 1px solid #32563c;
    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 CSS END ==============*/

/*******************************************************/

.innerpage_banner {
    width: 100%;
    background-size: cover;
    margin: 0px 0px 12px 0px;
    background: #0d120f;
    /* position: relative; */
    /* z-index: 11; */
    min-height: 120px;
    padding: 46px 0px 0px 0px;
}

.innerpage_banner .inner_page_info {
    text-align: center;
}

.innerpage_banner .inner_page_info h3 {
    font-size: 34px;
    color: #fff;
    font-weight: 700;
    font-family: 'Heebo', sans-serif;
    line-height: 55px;
    display: inline-block;
    min-width: 22%;
    margin: 0px 0px 0px;
    margin-bottom: 0;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.innerpage_banner .inner_page_info h3 span {
    color: #87e99c;
}

.innerpage_banner1 {
    width: 100%;
    background-size: cover;
    margin: 0px 0px 15px 0px;
}

.innerpage_banner1 .inner_page_info {
    text-align: center;
}

.innerpage_banner1 .inner_page_info h3 {
    font-size: 26px;
    color: #fff;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    line-height: 55px;
    display: inline-block;
    min-width: 22%;
    margin: 30px 0px 0px;
    padding: 10px;
    margin-bottom: 0;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background-color: #040243;
}

.innerpage_banner1 .inner_page_info h3 span {
    color: #2dd5c3;
}

@media only screen and (max-width: 1199px) {
    .innerpage_banner .inner_page_info h3 {
        font-size: 30px;
        line-height: 66px;
    }
    .innerpage_banner1 .inner_page_info h3 {
        font-size: 30px;
        line-height: 66px;
    }
}

@media only screen and (max-width: 991px) {
    .innerpage_banner .inner_page_info {
        text-align: center;
    }
    .innerpage_banner1 .inner_page_info {
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {}

@media only screen and (max-width: 560px) {
    .innerpage_banner .inner_page_info h3 {
        font-size: 27px;
        line-height: 40px;
        padding-top: 30px;
        padding-bottom: 20px;
        text-align: center;
        margin-left: 0%;
    }
    .innerpage_banner1 .inner_page_info h3 {
        font-size: 27px;
        line-height: 40px;
        padding-top: 30px;
        padding-bottom: 20px;
        text-align: center;
        margin-left: 0%;
    }
}

.pagination>li>a,
.pagination>li>span {
    position: relative !important;
    float: left !important;
    padding: 6px 12px !important;
    margin-left: -1px !important;
    line-height: 1.42857143 !important;
    color: #51fe80 !important;
    text-decoration: none !important;
    background-color: #7a897d !important;
    border: 1px solid #0d120f !important;
    margin: 0px 0px 10px 0px !important;
}

.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: #283546 !important;
    cursor: default !important;
    background-color: #4aa578 !important;
    border-color: #283546 !important;
}

/******************************************************/

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.5);
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.5);
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(255, 255, 255, 0.5);
}

:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(255, 255, 255, 0.5);
}

.register {
    padding: 30px;
    box-sizing: border-box;
}

input.sbmt {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    background: #4ed070 !important;
    border: 2px solid #4ed070 !important;
    padding: 12px 30px;
    text-transform: uppercase;
    border-radius: 10px;
    transition: 0.7s;
    box-shadow: inset 0 0 0 0 #101712;
}

input.sbmt:hover {
    color: #4ed070;
    background: #4ed070 !important;
    border: 2px solid #4ed070 !important;
    box-shadow: inset 0 0 0 42px #101712;
    transition: 0.7s;
}

#formname_main {
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
    text-align: center;
    border-radius: 0px;
    padding: 10px 10px 10px;
    margin: 20px auto;
    font-weight: 600;
    display: unset;
}

.form_block {
    width: 100%;
    display: inline-block;
    margin-bottom: 30px;
}

.form_block span {
    width: 100%;
    display: inline-block;
    position: relative;
    color: #fff;
    font-size: 17px;
}

.form_block span .turn {
    width: 50%;
}

.form_block span a {
    font-size: 17px;
    color: #51fe80;
}

.form_block span a:hover {
    color: #fff;
    transition: 0.7s;
}

.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_block span i {
    font-size: 20px;
    position: absolute;
    top: 8px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #25c3b
}

.after_reg {
    color: #fff;
    text-align: center;
    margin: 25px 0px 0px 0px;
    font-size: 18px;
    line-height: 25px;
}

.after_reg h3 {
    color: #fff;
    font-size: 23px;
}

.after_reg p {
    font-size: 13px !important;
    color: #fff !important;
    padding: 0px 0px 0px 0px !important;
    padding: 0px 0px 0px 0px !important;
    margin: 0px 0px 10px 0px !important;
}

.after_reg b {
    color: #80e99c;
    font-size: 18px;
}

.msg .error i {
    background-color: #b93b37;
    color: #000;
}

.msg .success i {
    background-color: #0169a1;
    color: #fff;
}

.msg i {
    margin-right: 5px;
    padding: 10px;
}

@media (max-width:992px) {
    .box6 {
        width: 100%;
        font-family: 'Exo 2', sans-serif;
        font-size: 100%;
        line-height: 24px;
        color: #000;
        padding: 15px 0;
        border: none;
    }
}

.form_box {
    width: 100%;
    display: inline-block;
    padding: 30px 0px 30px;
    margin-bottom: 0px;
    background: transparent;
    background-size: cover;
    font-family: 'Heebo', sans-serif;
}

.form_box h2 {
    text-align: center;
    padding: 15px 0;
    color: #3ea584;
}

.forgot_pwd span {
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
}

.forgot_pwd span a {
    font-size: 14px;
    color: #51fe80;
    float: right;
    font-weight: 600;
}

.back {
    padding: 30px 20px 30px 20px;
    border-radius: 20px;
    margin: 30px 0px 30px 0px;
    background: #101712 no-repeat top center;
    background-size: cover;
}

.loginheads {
    width: 100%;
    padding: 12px 0px 20px 0;
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
    float: left;
    line-height: 34px;
    font-weight: 600;
    text-align: center;
    font-family: 'Heebo', sans-serif;
}

.loginheads span {
    font-weight: 600;
    color: #62d29b;
}

.sup-img {
    padding: 50px 0px 0px 0px;
    width: 72%;
}

.form_box {
    width: 100%;
    display: block;
    padding: 0px 0px 0px;
    margin-bottom: 0px;
    background: transparent;
    background-size: cover;
    font-family: 'Heebo', sans-serif;
}

.pull-left {
    float: left !important;
}

.pull-right {
    float: right !important;
    margin: 13px 0px 0px 0px;
}

.pass {
    padding: 0px 0px 0px 0px;
}

.loginaction {
    padding: 10px;
    text-align: center;
    border-radius: 0px;
    overflow: hidden;
    margin: 0px 0px 0px 0px;
}

.loginaction h2 {
    font-family: 'Heebo', sans-serif;
    font-size: 45px;
    font-weight: 600;
    color: #2c1f79;
    margin: 0px 0px 30px 0px;
    line-height: 69px;
    text-transform: uppercase;
}

.loginaction h4 {
    text-transform: uppercase;
    margin: 20px 0px 15px 0px;
    font-weight: 700;
    font-size: 15px;
    line-height: 23px;
    padding-left: 0px;
    font-family: 'Heebo', sans-serif;
    color: #fff;
}

.loginaction .signup {
    color: #101712;
    background: linear-gradient(to bottom, rgb(168 222 71) 0%, rgb(136 234 155) 100%);
    border-radius: 10px;
    padding: 9px 19px;
    text-transform: uppercase;
    line-height: 50px;
    display: initial;
    font-weight: 700;
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    margin: 28px 0px 0px 0px;
}

.loginaction .signup:hover {
    background: linear-gradient(to bottom, rgb(98 210 155) 0%, rgb(136 234 155) 100%);
    color: #101712;
}

@media only screen and (max-width: 560px) {
    .loginheads {
        line-height: 46px;
    }
}

.headerLevelTwo2 {
    padding: 0px 0px 0px 0px;
}

.headerLevelTwo2 .foot-logo {
    display: inline-block;
    transform-origin: 100% 0;
    padding: 17px 0px 15px;
    text-align: center;
    display: block;
}

.headerLevelTwo2 .foot-logo img {
    display: inline-block;
    transform-origin: 100% 0;
}

.headerLevelTwo2 .foot-logo img:hover {
    animation-name: pulse;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@media (max-width:1199px) {
    .loginaction h4 {
        width: 100%;
    }
}

@media (max-width:991px) {
    .sup-img {
        margin: auto;
        padding: 20px 0px 0px 0px;
    }
    .pull-left {
        float: none !important;
        text-align: center;
    }
    .pull-right {
        float: none !important;
        margin: 0px 0px 0px 0px;
        text-align: center;
        position: relative;
        z-index: 1;
    }
    .box6 {
        padding: 0px 0 !important;
    }
    .box6,
    .box6 p,
    .box6 a {
        width: 100%;
        font-family: 'Heebo', sans-serif;
        font-size: 100%;
        line-height: 24px;
        color: #fff;
        padding: 15px 11px;
        border: none;
    }
    .headerLevelTwo2 {
        padding: 0px 0px 0px 0px;
    }
}

.inner-bg {
    /*background: url(../images/banner-bg.jpg) no-repeat top center fixed;*/
    background: #06080747 no-repeat top center fixed;
    background-size: cover;
    padding: 0px 0px 0px 0px;
}

a.hlp,
a.hlp:active,
a.hlp:visited,
a.hlp:hover {
    font-family: verdana;
    font-size: 12px;
    color: black;
    text-decoration: none;
    cursor: help;
    z-index: 1000;
}

.line {}

.bgcolorleft {
    background-color: white;
}

.bgcolormain {
    background-color: white;
}

.bgcolorright {
    background-color: white;
}

div.framebody {
    text-align: left;
}

h3 {
    font-weight: bold;
    font-size: 12px;
}

.calendartable {
    background-color: ff8d00;
    text-align: center;
}

.calendartablebg {
    background-color: white;
}

.calendarweek {
    background-color: ff8d00;
    text-align: center;
}

td.gray {
    color: gray;
}

ul.pagination {
    list-style: none;
    margin: auto;
}

ul.pagination li {
    display: inline-block;
    padding: 2px;
}

.error {
    background: linear-gradient(1deg, #171858, #b93b37);
    background-size: 400% 400%;
    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;
}

.success {
    background: linear-gradient(1deg, #171858, #08bace);
    background-size: 400% 400%;
    border-radius: 0;
    box-shadow: 0px 0px 6px rgb(15 233 237) inset;
    color: #fff;
    font-size: 15px;
    padding: 1px 10px;
    opacity: 0.7;
    display: inline-block;
    font-weight: 700;
}

.social-icon-head {
    padding: 25px 0px 0px 0px;
}

.social-icon-head p {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    color: #28272c;
    padding: 0px 0px 0px 0px;
    font-weight: 300;
    text-align: center;
    line-height: 25px;
}

.earn-but2 {
    padding: 20px 0px 5px 0px;
    text-align: center;
}

.earn-but2 .earnbut2 {
    width: 218px;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(95deg, #e84c3a 0%, #28272c 72%) !important;
    text-align: center;
    font-weight: 600;
    line-height: 47px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    transition-duration: 0.3s;
    transition-property: transform;
    transform: translateZ(0);
    text-transform: capitalize;
    z-index: 1;
    position: relative;
    margin: 14px 0px 0px 16px;
}

.earn-but2 .earnbut2 i {
    position: absolute;
    opacity: 0;
    top: -1px;
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 1%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0.85) 71%, rgba(255, 255, 255, 0) 100%);
    width: 12%;
    height: 103%;
    transform: skew(-30deg, 0deg);
    animation: move 3s;
    animation-iteration-count: infinite;
    animation-delay: 1s;
}

.earn-but2 .earnbut2:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: radial-gradient(ellipse at center, rgb(40, 39, 44) 0%, rgba(0, 0, 0, 0) 80%);
    transition-duration: 0.3s;
    transition-property: transform opacity;
}

.earn-but2 .earnbut2:hover {
    color: #f2f2f2;
    background: linear-gradient(135deg, #0f2c5e 0%, #0f2c5e 100%);
    transition: 0.7s;
    transform: translateY(-5px);
}

.earn-but2 .earnbut2:hover:before {
    opacity: 1;
    transform: translateY(5px);
}

.earn-but2 .earnbut2:hover {
    position: relative;
}

.admin_body {
    widht: 100%;
}

.input-group {
    position: relative;
    display: flex;
    border-collapse: separate;
    padding-top: 6px;
}

.admin_body_top {
    background: url(../images/white_server_bg.html) no-repeat center fixed, transparent;
    background-size: auto auto, cover;
    width: 100%;
    padding: 0px 0 0px;
    position: relative;
}

.currency_hash_rate {
    width: 100%;
}

.main_title {
    width: 100%;
    display: inline-block;
    z-index: 2;
    position: relative;
}

.main_title h2 {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
    /*padding-bottom: 35px;*/
}

.text-orange {
    color: #f7b839 !important;
    font-size: 17px;
    font-weight: bold;
    margin: 0;
}

.currency_hash_rate {
    width: 100%;
}

.currency_hash_rate_box {
    background: url(images/planbg1.html) no-repeat top center;
    background-size: contain;
    width: 100%;
    margin: 30px auto 30px;
    display: inline-block;
    padding: 50px 0px 0px 0px;
    min-height: 220px;
    position: relative;
    border-radius: 0px;
    font-family: 'Heebo', sans-serif;
    transition: 0.7s;
}

.currency_hash_rate_box:hover {
    background: url(images/planbg2.html) no-repeat top center;
    background-size: contain;
    transition: 0.7s;
}

.currency_hash_rate_box h3 {
    /*display: inline-block;*/
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    line-height: 35px;
    vertical-align: middle;
    text-align: center;
}

.currency_hash_rate_box h3 span {
    font-size: 22px;
    color: #fff;
    display: block;
    line-height: inherit;
}

.currency_hash_rate_box h3 span b {
    font-weight: 500;
}

.admin_body_bottom {
    width: 100%;
    background: url(../images/bitcoin_mine_bg.html) no-repeat center;
    padding: 0px 0px 0px 0px;
}

.admin_body_bottom:after {
    content: "";
    position: absolute;
    background: url(../images/l_design.html) no-repeat center;
    width: 100%;
    height: 632px;
    right: 0;
    bottom: 0;
    margin: auto;
    background-size: 100% 100%;
}

.saved_allocation {
    width: 100%;
    position: relative;
    z-index: 2;
}

.main_title {
    width: 100%;
    display: inline-block;
    z-index: 2;
    position: relative;
}

.right-navigation {
    padding: 10px 0;
}

.refers-bg {
    padding: 0px 0px 0px 0px;
    background: #e84e3b;
    min-height: 60px;
    background-size: 100% 100%;
    margin: 30px 0px 0px 0px;
}

.refer-link {
    padding: 10px 0px 10px 0px;
    text-align: center;
}

.refer-link h2 {
    margin: 10px 0px 0px 10px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"] {
    width: 100%;
    height: 51px;
    padding: 0 0px;
    border-radius: 0px;
    border: none;
    outline: none;
    font-size: 18px;
    color: #fff;
    background: transparent;
    border: transparent;
    text-align: left;
    box-shadow: 0px 0px 5px #fff;
}

.col-acc-user {
    border-radius: 0px;
    padding: 20px 10px 20px 10px;
    width: 96%;
    float: left;
    border: 1px solid #3339ae;
    margin: 10px 0px 40px 0px;
}

/*.col-acc-user:hover{

	box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);

}*/

#ava {
    float: left;
    width: 12%;
    height: 100px;
}

#username {
    text-align: center;
    float: left;
    width: 54%;
    height: 100px;
}

#username span.un {
    display: block;
    color: #3339ae;
    font-size: 32px;
    margin-top: 8px;
}

#username span.ac {
    display: block;
    color: #3339ae;
    font-size: 18px;
}

#balance {
    background: transparent;
    text-align: center;
    color: #3339ae;
    border: 1px solid #3339ae;
    float: right;
    border-radius: 5px;
    width: 33%;
    height: 100px;
}

#balance:hover {
    background: #3339ae;
    border: 1px solid #3339ae;
    color: #fff;
    transition: 1s;
}

#balance span.ab-1 {
    display: block;
    font-size: 18px;
    margin-top: 20px;
}

#balance span.ab-2 {
    display: block;
    font-size: 22px;
}

@media only screen and (max-width:1199px) {}

@media only screen and (max-width: 991px) {
    .inner_page_footer,
    .innerpage_footer_inner .soc_links {
        text-align: center;
    }
    .innerpage_footer_inner .q_links {
        padding-bottom: 10px;
    }
    .admin_menu_inner ul li {
        padding: 10px 0;
        vertical-align: top;
        width: 25%;
    }
    .admin_header_left span {
        font-size: 16px;
        padding: 19px 10px;
    }
    .hash_power_inner img {
        width: 110px;
    }
    .hash_power_inner h4 {
        font-size: 20px;
    }
    .hashpower_range {
        margin-bottom: 20px;
    }
    .admin_header_left a {
        margin-right: 8px;
        width: 140px;
    }
    .copy_btn {
        display: inline-block;
        position: relative;
        right: 0px;
        top: 5px;
        font-size: 16px;
        color: #ffffff;
        background: url(images/top-but1.html) no-repeat top center;
        background-size: cover;
        border: none;
        width: 135px;
        height: 37px;
        text-align: center;
        border-radius: 0;
        margin: 3px;
    }
    .refer-link h2 {
        margin: 0px 0px 0px 0px;
        font-size: 20px;
        color: #fff;
        font-weight: 500;
    }
}

@media only screen and (max-width:767px) {
    #ava {
        float: left;
        width: 100%;
        height: 100px;
        text-align: center;
    }
    #username {
        text-align: center;
        float: left;
        width: 100%;
        height: 100px;
    }
    #balance {
        float: left;
        width: 100%;
        height: 100px;
        text-align: center;
    }
}

@media only screen and (max-width:600px) {
    .admin_menu_inner ul li {
        width: 33.33%;
    }
    .chart_content h5 img {
        display: block;
        margin: 0 0 8px;
    }
    .chart_content h5 {
        line-height: 24px;
    }
}

@media only screen and (max-width: 480px) {
    .admin_menu_inner ul li {
        width: 50%;
    }
    .hash_power_inner {
        text-align: center !important;
    }
    .hash_power_inner h4 {
        width: 100%;
        text-align: center !important;
        padding: 10px 0;
    }
    .hash_power_inner img {
        float: none !important;
        margin: 0;
    }
    .currency_hash_rate_box img {
        float: none;
        margin: 0 0 10px;
    }
    .currency_hash_rate_box {
        text-align: center;
    }
    .payment_type ul li {
        margin: 5px;
    }
    .search_content .col-xs-3,
    .search_content .col-xs-9 {
        width: 100%;
    }
    .go_to_page_inner {
        text-align: center;
    }
    .go_to_page_inner a {
        margin: 0 8px;
    }
    .currency_hash_rate_box.ico i {
        float: left;
    }
    .currency_hash_rate_box i {
        float: left;
    }
    .currency_hash_rate_box.ico.dep i {
        float: none;
    }
    .history .col-xs-4 {
        width: 100%;
    }
    .input-group-btn {
        text-align: center;
    }
    .input-group {
        position: relative;
        display: inline-block;
        border-collapse: separate;
        padding-top: 6px;
    }
}

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
    width: 100%;
}

@media only screen and (max-width: 360px) {
    .admin_menu_inner ul li {
        width: 50%;
    }
    .saved_allocation_box h5 span {
        font-size: 14px;
    }
    .saved_allocation_box h5 span small {
        font-size: 12px;
    }
}

.account-head p {
    margin: 0px 0px 0px 0px;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.account-box {
    background: rgb(255, 255, 255);
    box-shadow: 0px 8px 20px 0px rgb(0, 0, 0);
    border: 1px solid #3339ae;
    /* border-radius: 10px 10px 0px 0px; */
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 20px 0px;
}

.account-box .account-title {
    padding: 8px;
    background: #2d2c6b;
    border: transparent;
    border-radius: 0px 0px 0px 0px;
    text-align: center;
    margin: 0px 0px 15px 0px;
}

.account-box .account-title p {
    margin: 10px 0px 10px 0px;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.account-box .account1 {
    padding: 10px;
    display: inline-block;
    width: 97%;
    text-align: center;
    margin: 0px 0px 10px 8px;
    border-bottom: 1px solid #3339ae;
}

.account-box .account1 p {
    margin: 0px 0px 0px 0px;
    font-size: 16px;
    color: #09276f;
    font-weight: 500;
    text-align: left;
}

.account-box .account1 p {
    margin: 0px 0px 0px 0px;
    font-size: 16px;
    color: #3339ae;
    font-weight: 500;
    text-align: left;
}

.account-box .account1 span {
    float: right;
    margin: 0px 0px 0px 0px;
    font-size: 18px;
    color: #3339ae;
    font-weight: 700;
}

.account-img1 {
    background: url(images/banner-bg.html) no-repeat top center;
    min-height: 176px;
    background-size: cover;
}

.account-img2 {
    background: url(images/depo-bg.html) no-repeat top center;
    min-height: 180px;
    background-size: cover;
}

.account_detail_box1 {
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    width: 290px%;
    display: flow-root;
    background: #0f9493;
    border-radius: 14px;
    padding: 10px 0px 0px 0;
    text-align: center;
    transition: 0.7s;
    background-size: contain;
    box-shadow: 5px 6px 4px #555;
    margin: 10px auto;
}

.account_detail_box1 img {
    margin: 0px 0px 13px 0px;
}

.account_detail_box1:hover {
    box-shadow: 0px 0px 10px 0px #fff;
    transition: 0.7s;
}

.account_detail_box2 {
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    width: 290px%;
    display: flow-root;
    background: #15b3ac;
    border-radius: 14px;
    padding: 10px 0px 0px 0;
    text-align: center;
    transition: 0.7s;
    background-size: contain;
    box-shadow: 5px 6px 4px #555;
    margin: 10px auto;
}

.account_detail_box2 img {
    margin: 0px 0px 13px 0px;
}

.account_detail_box2:hover {
    box-shadow: 0px 0px 10px 0px #fff;
    transition: 0.7s;
}

.account_detail_box3 {
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    width: 290px%;
    display: flow-root;
    background: #19c8c0;
    border-radius: 14px;
    padding: 10px 0px 0px 0;
    text-align: center;
    transition: 0.7s;
    background-size: contain;
    box-shadow: 5px 6px 4px #555;
    margin: 10px auto;
}

.account_detail_box3 img {
    margin: 0px 0px 13px 0px;
}

.account_detail_box3:hover {
    box-shadow: 0px 0px 10px 0px #fff;
    transition: 0.7s;
}

.account_detail_box4 {
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.15);
    width: 290px%;
    display: flow-root;
    background: #2524ae;
    border-radius: 0px;
    padding: 10px 0px 0px 0;
    text-align: center;
    transition: 0.7s;
    background-size: contain;
}

.account_detail_box4 img {
    margin: 0px 0px 13px 29px;
}

.account_detail_box4:hover {
    box-shadow: 0px 0px 10px 0px #fff;
    transition: 0.7s;
}

.account_detail_box i {
    font-size: 30px;
    color: #063382;
    display: inline-block;
    background: transparent;
    padding: 5px 12px;
    margin-right: 0px;
    vertical-align: middle;
    border-radius: 50px;
    margin-left: 20px;
}

.account_detail_box h3 {
    border: 0px;
    line-height: 50px;
    font-size: 24px;
    font-family: 'Heebo', sans-serif;
    text-transform: uppercase;
    color: #f3f3f3;
    font-weight: 600;
    outline: none;
}

.account_detail_box h4 {
    font-size: 21px;
    color: #fff;
    text-transform: capitalize;
    display: inline-block;
    line-height: 28px;
    vertical-align: middle;
    margin: 0px 0px 0px 20px;
    text-align: center;
}

.account_detail_box p {
    border: 0px;
    line-height: 50px;
    font-size: 35px !important;
    font-weight: 400;
    font-family: 'Heebo', sans-serif !important;
    text-transform: uppercase !important;
    color: #000 !important;
    outline: none;
    padding: 13px 0px 14px 0px !important;
}

.account_detail_box h4 small {
    font-size: 12px;
}

.overall-last-deposit {}

.last-deposit {
    text-align: center;
    position: relative;
}

.last-img {
    background: url(images/howroundbottom.html) no-repeat top center;
    background-size: cover;
    width: 143px;
    min-height: 209px;
    margin: 20px auto 20px;
    transition: 0.7s;
    border-radius: 8px;
    text-align: center;
}

.last-img img {
    padding: 104px 0px 0px 0px;
}

.last-deposit h3 {
    font-family: 'Heebo', sans-serif;
    font-size: 24px;
    color: #19c8c0;
    font-weight: 600;
    padding: 15px 0px 5px 0px;
}

.last-deposit p {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    color: #d6d2cf;
    padding: 0px 0px 0px 0px;
    font-weight: 300;
    text-align: center;
    line-height: 25px;
    text-transform: capitalize;
}