/*
font-family: 'Poppins', sans-serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Sora', sans-serif;


light - 300
regular - 400
medium - 500
semi-bold  - 600
bold - 700
extra-bold - 800
black - 900
*/

@font-face {
    font-family: "Gilroy-Light";
    src: url("fonts/0744a43ed7aac352ec78c1404c890d72.eot");
    /* IE9*/
    src: url("fonts/0744a43ed7aac352ec78c1404c890d72.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("fonts/0744a43ed7aac352ec78c1404c890d72.woff2") format("woff2"), /* chromeã€firefox */
    url("fonts/0744a43ed7aac352ec78c1404c890d72.woff") format("woff"), /* chromeã€firefox */
    url("fonts/0744a43ed7aac352ec78c1404c890d72.ttf") format("truetype"), /* chromeã€firefoxã€operaã€Safari, Android, iOS 4.2+*/
    url("fonts/0744a43ed7aac352ec78c1404c890d72.svg#Gilroy-Light") format("svg");
    /* iOS 4.1- */
}

@font-face {
    font-family: "Gilroy-Medium";
    src: url("../fonts/040a78b437acd0433612f92e61d04a1b.eot");
    /* IE9*/
    src: url("../fonts/040a78b437acd0433612f92e61d04a1b.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("../fonts/040a78b437acd0433612f92e61d04a1b.woff2") format("woff2"), /* chromeã€firefox */
    url("../fonts/040a78b437acd0433612f92e61d04a1b.woff") format("woff"), /* chromeã€firefox */
    url("../fonts/040a78b437acd0433612f92e61d04a1b.ttf") format("truetype"), /* chromeã€firefoxã€operaã€Safari, Android, iOS 4.2+*/
    url("../fonts/040a78b437acd0433612f92e61d04a1b.svg#Gilroy-Medium") format("svg");
    /* iOS 4.1- */
}

@font-face {
    font-family: "Gilroy-Regular";
    src: url("../fonts/1dc8ecd8056a5ea7aa7de1db42b5b639.eot");
    /* IE9*/
    src: url("../fonts//1dc8ecd8056a5ea7aa7de1db42b5b639.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("../fonts//1dc8ecd8056a5ea7aa7de1db42b5b639.woff2") format("woff2"), /* chromeã€firefox */
    url("../fonts//1dc8ecd8056a5ea7aa7de1db42b5b639.woff") format("woff"), /* chromeã€firefox */
    url("../fonts//1dc8ecd8056a5ea7aa7de1db42b5b639.ttf") format("truetype"), /* chromeã€firefoxã€operaã€Safari, Android, iOS 4.2+*/
    url("../fonts//1dc8ecd8056a5ea7aa7de1db42b5b639.svg#Gilroy-Regular") format("svg");
    /* iOS 4.1- */
}

@font-face {
    font-family: 'Gilroy-ExtraBold';
    src: url('../fonts/Gilroy-ExtraBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Gilroy-ExtraBold.otf') format('opentype'), url('../fonts/Gilroy-ExtraBold.woff') format('woff'), url('../fonts/Gilroy-ExtraBold.ttf') format('truetype'), url('../fonts/Gilroy-ExtraBold.svg#Gilroy-ExtraBold') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    background: url(../images/plan-bg.jpg) no-repeat top center;
    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 6s linear infinite;
    animation: rotating 6s linear infinite;
}

.rotating.fast {
    -webkit-animation: rotating 0.5s linear infinite;
    animation: rotating 0.5s linear infinite;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotating {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

@keyframes zigZag {
    0% {
        -webkit-transform: rotate(0deg) translate(-10px, -10px);
        -ms-transform: rotate(0deg) translate(-10px, -10px);
        transform: rotate(0deg) translate(-10px, -10px);
    }
    20% {
        -webkit-transform: rotate(360deg) translate(-100px, -100px);
        -ms-transform: rotate(360deg) translate(-100px, -100px);
        transform: rotate(360deg) translate(-100px, -100px);
    }
    40% {
        -webkit-transform: rotate(0deg) translate(100px, 100px);
        -ms-transform: rotate(0deg) translate(100px, 100px);
        transform: rotate(0deg) translate(100px, 100px);
    }
    60% {
        -webkit-transform: rotate(360deg) translate(10px, 10px);
        -ms-transform: rotate(360deg) translate(10px, 10px);
        transform: rotate(360deg) translate(10px, 10px);
    }
    80% {
        -webkit-transform: rotate(0deg) translate(70px, 70px);
        -ms-transform: rotate(0deg) translate(70px, 70px);
        transform: rotate(0deg) translate(70px, 70px);
    }
    100% {
        -webkit-transform: rotate(360deg) translate(-10px, -10px);
        -ms-transform: rotate(360deg) translate(-10px, -10px);
        transform: rotate(360deg) translate(-10px, -10px);
    }
}

@keyframes zigZag2 {
    0% {
        -webkit-transform: rotate(0deg) translate(-10px, -10px);
        -ms-transform: rotate(0deg) translate(-10px, -10px);
        transform: rotate(0deg) translate(-10px, -10px);
    }
    20% {
        -webkit-transform: rotate(360deg) translate(-10px, -10px);
        -ms-transform: rotate(360deg) translate(-10px, -10px);
        transform: rotate(360deg) translate(-10px, -10px);
    }
    40% {
        -webkit-transform: rotate(0deg) translate(10px, 10px);
        -ms-transform: rotate(0deg) translate(10px, 10px);
        transform: rotate(0deg) translate(10px, 10px);
    }
    60% {
        -webkit-transform: rotate(360deg) translate(10px, 10px);
        -ms-transform: rotate(360deg) translate(10px, 10px);
        transform: rotate(360deg) translate(10px, 10px);
    }
    80% {
        -webkit-transform: rotate(0deg) translate(10px, 10px);
        -ms-transform: rotate(0deg) translate(10px, 10px);
        transform: rotate(0deg) translate(10px, 10px);
    }
    100% {
        -webkit-transform: rotate(360deg) translate(-10px, -10px);
        -ms-transform: rotate(360deg) translate(-10px, -10px);
        transform: rotate(360deg) translate(-10px, -10px);
    }
}

@keyframes rotate2 {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(1440deg);
        -ms-transform: translate(-50%, -50%) rotate(1440deg);
        transform: translate(-50%, -50%) rotate(1440deg);
    }
}

@keyframes rev-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@-webkit-keyframes rev-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@-moz-keyframes rev-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes move {
    0% {
        left: 0;
        opacity: 0;
    }
    5% {
        opacity: 0.0
    }
    48% {
        opacity: 0.2
    }
    80% {
        opacity: 0.0
    }
    100% {
        left: 82%
    }
}

/*============== BANNER CSS START ==============*/

.banner-bg {
    background: url(../images/banner-bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 0px 0px 150px;
    overflow: hidden;
}

header {
    width: 100%;
    background-size: cover;
    padding: 30px 0px 0px 0px;
    background: transparent;
}

header .navbar-inverse {
    margin: 0;
    min-height: auto;
    border-radius: 0;
    border: 0;
    background: none;
}

header .navbar-collapse {
    padding: 0;
}

header .navbar-right {
    margin: 0;
    margin-right: 0px;
    margin-top: 0px;
}

header .navbar-inverse .navbar-nav>li {
    padding: 0px 0px;
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.side-right {
    border-right: none !important;
}

header .navbar-inverse .navbar-nav>li>a {
    font-size: 16px;
    color: #fff;
    text-transform: capitalize;
    transition: 0.7s;
    vertical-align: middle;
    padding: 15px 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    display: inline-block;
    border-right: 1px dashed #e9bd79;
}

header .navbar-inverse .navbar-nav>li:hover {
    transition: 0.7s;
    background-color: #fff;
}

header .navbar-inverse .navbar-nav>li:hover,
.navbar-nav>li>a,
header .navbar-inverse .navbar-nav>li>a:hover {
    color: #212427;
}

header .navbar-inverse .navbar-header p {
    font-size: 20px;
    color: #212427;
    text-transform: uppercase;
    transition: 0.7s;
    vertical-align: middle;
    padding: 0px 0px 0px 0px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin: 0px 0px 0px 0px;
}

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;
}

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-nav {
    border-color: transparent !important;
    border-bottom: 1px solid;
    background: #212427;
    overflow: hidden;
    border-radius: 50px;
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {}

.banner-bg .top {}

.banner-bg .top .top-logo {}

.banner-bg .top .top-logo img {
    display: inline-block;
    transform-origin: 100% 0;
    position: relative;
    margin: 0px 0px 0px 0px;
}

.banner-bg .top .top-logo img:hover {
    animation-name: bounce;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@-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;
}

.banner-bg .top .slide1 {
    background-color: #fff;
    border-radius: 23px;
    height: 53px;
    margin: 30px 0px 0px 0px;
    display: inline-block;
}

.banner-bg .top .slide1 .loginbut {
    width: 131px;
    color: #eeeeee;
    border: 0px;
    line-height: 51px;
    background: #0e111a;
    border-radius: 40px;
    outline: none;
    font-size: 16px;
    padding: 0px 0px;
    margin: 0px 0px 0px 0px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.banner-bg .top .slide1 .loginbut img {
    position: relative;
    top: 7px;
}

.banner-bg .top .slide1 .loginbut:hover {
    color: #ffffff;
    background-color: #353638d4;
}

.banner-bg .top .slide1 .signupbut {
    float: none !important;
    width: 142px;
    color: #333333;
    border: 0px;
    line-height: 51px;
    background: #fff;
    border-radius: 40px;
    outline: none;
    font-size: 16px;
    padding: 0px 0px;
    margin: 0px 0px 0px 0px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.banner-bg .top .slide1 .signupbut img {
    position: relative;
    top: 7px;
}

.banner-bg .top .slide1 .signupbut:hover {
    color: #020357;
    background-color: #ffb83e;
    transition: 0.7s;
}

.banner-bg .banner {
    text-align: right;
    padding: 94px 0px 0px 0px;
}

.banner-bg .banner .banner-com {}

.banner-bg .banner .banner-com h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #fff;
    margin: 0px 0px 0px 0px;
    line-height: 26px;
}

.banner-bg .banner .banner-com h3 {
    font-family: 'Gilroy-ExtraBold';
    font-size: 50px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    padding: 25px 0px 20px 0px;
    line-height: 55px;
    margin: 0px 0px 0px 0px;
}

.banner-bg .banner .banner-com p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #fce8d7;
    border-top: 1px solid #ffb980;
    border-bottom: 1px solid #ffb980;
    line-height: 33px;
    padding: 10px 0px 10px 0px;
    width: 63%;
    display: inline-block;
}

.banner-bg .banner .banner-img {}

.banner-bg .banner .banner-img img {
    min-height: 488px;
    width: 683px;
    display: inline-block;
    position: relative;
    right: 0px;
    margin-top: 74px;
}

.banner-bg .banner .banner-but {
    padding: 30px 0px 0px 0px;
}

.banner-bg .banner .banner-but .banner-but1 {
    width: 250px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0e111a;
    background: linear-gradient(90deg, #ff7200 0%, #ff7200 72%);
    padding: 14px 20px;
    margin: 0px 10px 25px 10px;
    transition: 0.7s;
    text-transform: uppercase;
    border: 5px solid #feb997;
    display: inline-block;
    transition-duration: .5s;
    transition-property: transform;
    position: relative;
    border-radius: 50px;
    text-align: center;
}

.banner-bg .banner .banner-but .banner-but1:hover {
    color: #ff7200;
    background: linear-gradient(90deg, #0e111a 0%, #0e111a 72%);
    transition: 0.7s;
    box-shadow: 0px 0px 10px #ff7d44;
    transform: translateY(10px);
}

.banner-bg .banner .banner-but .banner-but1 i {
    position: absolute;
    opacity: 0;
    top: -1px;
    left: 0;
    background: #fff;
    width: 12%;
    height: 103%;
    transform: skew(-30deg, 0deg);
    animation: move 3s;
    animation-iteration-count: infinite;
    animation-delay: 1s;
}

.banner-bg .banner .banner-but .banner-but2 {
    width: 251px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fec731;
    background: linear-gradient(90deg, #0e111a 0%, #0e111a 72%);
    padding: 14px 20px;
    margin: 0px 10px 25px 10px;
    transition: 0.7s;
    text-transform: uppercase;
    border: 5px solid #fe6804;
    display: inline-block;
    transition-duration: .5s;
    transition-property: transform;
    position: relative;
    border-radius: 50px;
    text-align: center;
}

.banner-bg .banner .banner-but .banner-but2:hover {
    color: #212427;
    background: linear-gradient(90deg, #ff7200 0%, #ff7200 72%);
    transition: 0.7s;
    box-shadow: 0px 0px 10px #feb997;
    transform: translateY(10px);
}

.banner-bg .banner .banner-but .banner-but2 i {
    position: absolute;
    opacity: 0;
    top: -1px;
    left: 0;
    background: #fff;
    width: 12%;
    height: 103%;
    transform: skew(-30deg, 0deg);
    animation: move 3s;
    animation-iteration-count: infinite;
    animation-delay: 1s;
}

@keyframes move {
    0% {
        left: 0;
        opacity: 0;
    }
    5% {
        opacity: 0.0
    }
    48% {
        opacity: 0.2
    }
    80% {
        opacity: 0.0
    }
    100% {
        left: 82%
    }
}

/*============== BANNER CSS END ==============*/

/*============== ABOUT CSS START ==============*/

.about-bg {
    background: url(../images/plan-bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 50px 0px 230px;
}

.about-bg .about {}

.about-bg .about .about-head {
    text-align: center;
}

.about-bg .about .about-head h2 {
    font-family: "Gilroy-Medium";
    font-size: 18px;
    color: #ff7200;
    font-weight: 500;
    padding: 0px 0px 15px 0px;
    margin: 0px 0px 0px 0px;
    text-transform: uppercase;
}

.about-bg .about .about-head h3 {
    font-family: "Gilroy-Medium";
    font-size: 50px;
    color: #0e111a;
    font-weight: 600;
    padding: 0px 0px 15px 0px;
    margin: 0px 0px 0px 0px;
}

.about-bg .about .about-head img {
    margin: auto;
}

.about-bg .about .about-left {}

.about-bg .about .about-left img {
    min-height: 458px;
    width: 700px;
    display: inline-block;
    position: relative;
    left: -244px;
    margin-top: -124px;
}

.about-bg .about .about-para {
    margin: 60px 0px 0px 0px;
}

.about-bg .about .about-para p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #42495b;
    font-weight: 500;
    padding: 0px 0px 20px 0px;
    margin: 0px 0px 0px 0px;
    line-height: 26px;
}

.about-bg .about .about-para h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #0e2b26;
    font-weight: 500;
    padding: 0px 0px 15px 0px;
    margin: 0px 0px 0px 0px;
    line-height: 26px;
}

.about-bg .about .about-but {
    padding: 30px 0px 0px 0px;
}

.about-bg .about .about-but .about-but1 {
    width: 215px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #ff7200 0%, #ff7200 72%);
    padding: 23px 20px;
    margin: 0px 10px 25px 10px;
    transition: 0.7s;
    text-transform: capitalize;
    display: inline-block;
    transition-duration: .5s;
    transition-property: transform;
    position: relative;
    border-radius: 50px;
    text-align: center;
}

.about-bg .about .about-but .about-but1:hover {
    color: #f9f9fb;
    background: linear-gradient(90deg, #ff7200 0%, #0e111a 72%);
    transition: 0.7s;
    box-shadow: 0px 0px 10px #feb997;
    transform: translateY(10px);
}

.about-bg .about .about-but .about-but1 i {
    position: absolute;
    opacity: 0;
    top: -1px;
    left: 0;
    background: #fff;
    width: 12%;
    height: 103%;
    transform: skew(-30deg, 0deg);
    animation: move 3s;
    animation-iteration-count: infinite;
    animation-delay: 1s;
}

.about-bg .about .cert-com {
    margin: -71px 0px 0px 0px;
    position: relative;
}

.about-bg .about .cert-com .cert {
    background-color: #ff9400;
    border-radius: 5px;
    padding: 20px;
    display: inline-block;
    margin: 0px 0px 0px 0px;
}

.about-bg .about .cert-com .cert .cert-img {}

.about-bg .about .cert-com .cert .cert-img img {}

.about-bg .about .cert-com .cert .cert-con {}

.about-bg .about .cert-com .cert .cert-con p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #fefefe;
    font-weight: 500;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    line-height: 16px;
}

.about-bg .about .cert-com .cert .cert-con p a {
    font-family: 'Open Sans', sans-serif;
    font-size: 27px;
    color: #0e111a;
    font-weight: 800;
    padding: 0px 0px 0px 14px;
    margin: 0px 0px 0px 0px;
    line-height: 26px;
}

.about-bg .about .cert-com .cert .cert-con p a:hover {
    color: #fefefe;
}

.about-bg .about .cert-com .cert .cert-but {
    padding: 20px 0px 0px 0px;
}

.about-bg .about .cert-com .cert .cert-but .cert-but1 {
    width: 239px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #fefefe;
    background: linear-gradient(90deg, #0e111a 0%, #0e111a 72%);
    padding: 15px 20px;
    margin: 0px 10px 0px 10px;
    transition: 0.7s;
    text-transform: capitalize;
    display: inline-block;
    transition-duration: .5s;
    transition-property: transform;
    position: relative;
    border-radius: 5px;
    text-align: center;
}

.about-bg .about .cert-com .cert .cert-but .cert-but1:hover {
    color: #f9f9fb;
    background: linear-gradient(90deg, #ff7200 0%, #0e111a 72%);
    transition: 0.7s;
    box-shadow: 0px 0px 10px #feb997;
    transform: translateY(10px);
}

.about-bg .plan {}

.about-bg .plan .plan-head {
    text-align: center;
    padding: 50px 0px 20px 0px;
}

.about-bg .plan .plan-head h2 {
    font-family: "Gilroy-Medium";
    font-size: 18px;
    color: #ff7200;
    font-weight: 500;
    padding: 0px 0px 15px 0px;
    margin: 0px 0px 0px 0px;
    text-transform: uppercase;
}

.about-bg .plan .plan-head h3 {
    font-family: "Gilroy-Medium";
    font-size: 50px;
    color: #0e111a;
    font-weight: 600;
    padding: 0px 0px 15px 0px;
    margin: 0px 0px 0px 0px;
}

.about-bg .plan .plan-head img {
    margin: auto;
}

/*============== ABOUT CSS END ==============*/

/*============== PLAN CSS START ==============*/

.plan-bg {
    background: url(../images/cal-bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 50px 0px 20px;
}

.plan-bg .plan {}

.plan-bg .plan {}

.plan-bg .plan .planbg {
    position: relative;
    margin: -230px 0px 0px 0px;
}

.plan-bg .plan .planbg .planbg1 {
    background: linear-gradient( 180deg, #ff7200 0%, #ff7200 40%, #fff 40%, #fff 100%);
    background-size: cover;
    width: 270px;
    min-height: 450px;
    margin: 0px auto 0px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    border-radius: 5px;
}

.plan-bg .plan .planbg .planbg1 .plan-top {
    padding: 30px 0px 0px 0px;
}

.plan-bg .plan .planbg .planbg1 .plan-top h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    color: #fff;
    font-weight: 600;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.plan-bg .plan .planbg .planbg1 .plan-top h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    padding: 10px 0px 20px 0px;
    margin: 0px 0px 0px 0px;
}

.plan-bg .plan .planbg .planbg1 .plan-img {
    background-color: #fff;
    display: inline-block;
    padding: 20px;
    boder-radius: 28px;
    border-radius: 71px;
    margin: 0px 0px 0px 0px;
    border: 5px solid #ff9540;
}

.plan-bg .plan .planbg .planbg1 .plan-img img {
    margin: auto;
}

.plan-bg .plan .planbg .planbg1 .plan-mid {
    padding: 20px 0px 0px 0px;
}

.plan-bg .plan .planbg .planbg1 .plan-mid p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #42495b;
    font-weight: 500;
    padding: 0px 20px 10px 20px;
    margin: 0px 0px 0px 0px;
    text-align: left;
}

.plan-bg .plan .planbg .planbg1 .plan-mid p span {
    color: #f7941d;
    float: right;
}

.plan-bg .plan .planbg .planbg1 .plan-but .plan-but1 {
    width: 216px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #ff4200 0%, #ff4200 72%);
    padding: 13px 55px;
    line-height: 24px;
    margin: 10px 10px 0px 10px;
    transition: 0.7s;
    text-transform: uppercase;
    display: inline-block;
    transition-duration: .5s;
    transition-property: transform;
    position: relative;
    border-radius: 5px;
    text-align: center;
}

.plan-bg .plan .planbg .planbg1 .plan-but .plan-but1:hover {}

.plan-bg .plan .planbg .planbg1 .plan-but .plan-but1 i {
    position: absolute;
    opacity: 0;
    top: -1px;
    left: 0;
    background: #fff;
    width: 12%;
    height: 103%;
    transform: skew(-30deg, 0deg);
    animation: move 3s;
    animation-iteration-count: infinite;
    animation-delay: 1s;
}

.plan-bg .plan .planbg .planbg1:hover {
    background: linear-gradient( 180deg, #0e111a 0%, #0e111a 40%, #fff 40%, #fff 100%);
}

.plan-bg .plan .planbg1:hover .plan-but1,
.plan-bg .plan .planbg1 .plan-but .plan-but1:hover {
    color: #f9f9fb;
    background: linear-gradient(90deg, #ff4200 0%, #ff7200 72%) !important;
    transition: 0.7s;
    box-shadow: 0px 0px 10px #feb997;
    transform: translateY(10px);
}

.plan-bg .plan .planbg1:hover .plan-mid p span,
.plan-bg .plan .planbg .planbg1 .plan-mid p span:hover {
    color: #ff4200;
}

.plan-bg .plan-calculator {
    padding: 30px 0px 0px;
}

.plan-bg .plan-calculator .profitCalculator {
    margin-top: 30px;
    margin-bottom: 40px;
}

.plan-bg .plan-calculator .profitCalculator ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    text-align: center;
}

.plan-bg .plan-calculator .profitCalculator ul li {
    display: inline-block;
    padding: 0px 8px;
}

.plan-bg .plan-calculator .profitCalculator ul li h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    padding: 0px 20px 10px 20px;
    margin: 0px 0px 0px 0px;
    text-align: left;
}

.plan-bg .plan-calculator .profitCalculator ul li select {
    width: auto;
    height: 45px;
    background: transparent;
    border: transparent;
    outline: none;
    border-radius: 0px;
    padding: 0px;
    color: #171719 !important;
    font-size: 14px;
    -webkit-appearance: none;
    font-weight: 600;
    border: none;
    box-shadow: none;
}

.plan-bg .plan-calculator .profitCalculator ul li select option {
    background-color: #171719;
    color: #ff9101 !important;
}

.plan-bg .plan-calculator .profitCalculator ul li input {
    width: auto;
    height: 40px;
    background: transparent;
    border: transparent;
    font-weight: 600;
    font-size: 14px;
    color: #171719;
    outline: none;
    border-radius: 0px;
    text-align: left;
    padding: 0px 0px 0px 0px;
    width: 158px;
    box-shadow: none;
}

.profitCalc,
.selectPlan,
.amount,
.profit,
.return {
    float: left;
}

.selectPlan {
    width: 300px;
    height: 40px;
    background: url(../images/calc-select.png) no-repeat;
    background-size: cover;
    padding-left: 96px;
}

.amount {
    width: 200px;
    height: 40px;
    background: url("../images/calc-input1.png") no-repeat 0 0;
    padding-left: 95px;
}

.profit {
    width: 200px;
    height: 40px;
    background: url("../images/calc-input2.png") no-repeat 0 0;
    padding-left: 90px;
}

.return {
    width: 200px;
    height: 40px;
    background: url("../images/calc-input3.png") no-repeat 0 0;
    padding-left: 95px;
}

.selectPlan,
.amount,
.profit,
.return {
    font-family: 'Poppins', sans-serif;
    color: #171719;
    font-weight: 500;
    line-height: 40px;
}

/*============== PLAN CSS END ==============*/

/*============== FEA CSS START ==============*/

.fea-bg {
    background: url(../images/fea-bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 50px 0px 20px;
    min-height: 1630px
}

.fea-bg .fea {
    padding: 0px 0px 0px 0px;
}

.fea-bg .fea .fea-head {
    text-align: center;
}

.fea-bg .fea .fea-head h2 {
    font-family: "Gilroy-Medium";
    font-size: 18px;
    color: #ff7200;
    font-weight: 500;
    padding: 0px 0px 15px 0px;
    margin: 0px 0px 0px 0px;
    text-transform: uppercase;
}

.fea-bg .fea .fea-head h3 {
    font-family: "Gilroy-Medium";
    font-size: 50px;
    color: #0e111a;
    font-weight: 600;
    padding: 0px 0px 15px 0px;
    margin: 0px 0px 0px 0px;
}

.fea-bg .fea .fea-head img {
    margin: auto;
}

.fea-bg .fea1 {
    padding: 50px 0px 0px 0px;
}

.fea-bg .fea1 .fea_block {
    width: 100%;
    display: inline-block;
    font-size: 0;
    padding: 35px 0;
    text-align: right;
}

.fea-bg .fea1 .fea_block_left .fea_block_content {
    text-align: left;
}

.fea-bg .fea1 .fea_block_content h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #0e111a;
    font-weight: 600;
    margin-bottom: 15px;
}

.fea-bg .fea1 .fea_block_content p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #453a34;
    font-weight: 400;
    line-height: 24px;
    margin: 0px 0px 10px 0px;
}

.fea-bg .fea1 .fea_block_content .fea-img {
    width: 87px;
    min-height: 81px;
    float: right;
    margin-top: 5px;
    margin-bottom: 40px;
    margin-left: 15px;
    text-align: center;
    padding: 8px 0px 0px 0px;
}

.fea-bg .fea1 .fea_block_content .fea-img .sub-img1 {
    padding: 5px 0px 0px 9px;
    position: absolute;
    z-index: 1;
}

.fea-bg .fea1 .fea_block_content .fea-img .sub-img2 {
    padding: 0px 0px 0px 0px;
}

.fea-bg .fea1 .fea_block_content .fea-img .sub-img2 {
    position: relative;
    left: -5px;
    top: -8px;
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}

.fea-bg .fea1 .fea_block_content .fea-img1 {
    width: 87px;
    min-height: 81px;
    float: left;
    margin-top: 5px;
    margin-bottom: 40px;
    margin-right: 15px;
    text-align: center;
    padding: 8px 0px 0px 0px;
}

.fea-bg .fea1 .fea_block_content .fea-img1 .sub-img1 {
    padding: 5px 0px 0px 9px;
    position: absolute;
    z-index: 1;
}

.fea-bg .fea1 .fea_block_content .fea-img1 .sub-img2 {
    padding: 0px 0px 0px 0px;
}

.fea-bg .fea1 .fea_block_content .fea-img1 .sub-img2 {
    position: relative;
    left: -5px;
    top: -8px;
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
    -webkit-animation-name: rev-rotate;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}

.fea-bg .fea1 .fea_block_content {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.fea-bg .fea1 .fea_block_center {
    width: 100%;
    display: inline-block;
    text-align: center;
    padding: 10px 0;
}

.fea-bg .fea1 .fea_block_center img {
    position: relative;
    left: -169px;
    width: 489px;
}

.fea-bg .ref {}

.fea-bg .ref .ref-head {
    text-align: left;
}

.fea-bg .ref .ref-head h2 {
    font-family: "Gilroy-Medium";
    font-size: 18px;
    color: #ff7200;
    font-weight: 500;
    padding: 0px 0px 15px 0px;
    margin: 0px 0px 0px 0px;
    text-transform: uppercase;
}

.fea-bg .ref .ref-head h3 {
    font-family: "Gilroy-Medium";
    font-size: 50px;
    color: #0e111a;
    font-weight: 600;
    padding: 0px 0px 15px 0px;
    margin: 0px 0px 0px 0px;
}

.fea-bg .ref .ref-head img {}

.fea-bg .ref .ref-para {
    padding: 20px 0px 0px 0px;
}

.fea-bg .ref .ref-para p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #484859;
    font-weight: 400;
    line-height: 26px;
    margin: 0px 0px 10px 0px;
}

.fea-bg .ref .ref-para h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #484859;
    font-weight: 400;
    line-height: 26px;
    margin: 10px 0px 10px 0px;
}

.fea-bg .ref .ref-com {
    margin: 0px 0px 0px 0px;
    position: relative;
}

.fea-bg .ref .ref-com .refs {
    background: linear-gradient(90deg, #ff4c01 0%, #ff9600 72%);
    border-radius: 5px;
    padding: 20px;
    display: inline-block;
    margin: 0px 0px 0px 0px;
    width: 100%;
}

.fea-bg .ref .ref-com .refs .refs-per {}

.fea-bg .ref .ref-com .refs .refs-per h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 100px;
    color: #fff;
    font-weight: bold;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.fea-bg .ref .ref-com .refs .refs-per h2 span {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    color: #0e111a;
    font-weight: 400;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    position: relative;
    top: -25px;
}

.fea-bg .ref .ref-com .refs .refs-con {}

.fea-bg .ref .ref-com .refs .refs-con p {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    color: #0e111a;
    font-weight: 600;
    padding: 0px 0px 0px 0px;
    margin: 15px 0px 0px 0px;
    line-height: 37px;
}

.fea-bg .ref .ref-com .refs .ref-but {
    padding: 0px 0px 0px 0px;
}

.fea-bg .ref .ref-com .refs .ref-but .ref-but1 {
    width: 183px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    color: #fff;
    background: linear-gradient(90deg, #ff9600 0%, #ff4c01 72%);
    padding: 14px 18px;
    margin: 0px 10px 0px 10px;
    transition: 0.7s;
    text-transform: capitalize;
    display: inline-block;
    transition-duration: .5s;
    transition-property: transform;
    position: relative;
    border-radius: 50px;
    text-align: center;
    top: 34px;
}

.fea-bg .ref .ref-com .refs .ref-but .ref-but1:hover {
    color: #f9f9fb;
    background: linear-gradient(90deg, #ff7200 0%, #0e111a 72%);
    transition: 0.7s;
    box-shadow: 0px 0px 10px #feb997;
    transform: translateY(10px);
}

.fea-bg .ref .ref-com .refs .ref-but .ref-but1 i {
    position: absolute;
    opacity: 0;
    top: -1px;
    left: 0;
    background: #fff;
    width: 12%;
    height: 103%;
    transform: skew(-30deg, 0deg);
    animation: move 3s;
    animation-iteration-count: infinite;
    animation-delay: 1s;
}

/*============== FEA  CSS END ==============*/

/*============== STAT CSS START ==============*/

.stat-bg {
    background: url(../images/stat-bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 50px 0px 20px;
}

.stat-bg .stat {
    padding: 0px 0px 0px 0px;
}

.stat-bg .stat .graph {
    position: relative;
    margin: -465px 0px 0px 0px;
}

.stat-bg .stat .graph img {}

.stat-bg .stat .stat-head {
    text-align: center;
    padding: 40px 0px 0px 0px;
}

.stat-bg .stat .stat-head h2 {
    font-family: "Gilroy-Medium";
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    padding: 0px 0px 15px 0px;
    margin: 0px 0px 0px 0px;
    text-transform: uppercase;
}

.stat-bg .stat .stat-head h3 {
    font-family: "Gilroy-Medium";
    font-size: 50px;
    color: #0e111a;
    font-weight: 600;
    padding: 0px 0px 15px 0px;
    margin: 0px 0px 0px 0px;
}

.stat-bg .stat .stat-head img {
    margin: auto;
}

/*============== STAT CSS END ==============*/

/*============== LAST CSS START ==============*/

.last-bg {
    background: url(../images/last-bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 20px 0px 50px;
}

.last-bg .last-stat {
    padding: 0px 0px 30px;
}

.last-bg .last-stat .stat-back {}

.last-bg .last-stat .stat-back .pro {
    position: relative;
    padding: 0px 0px 0px 0px;
}

.last-bg .last-stat .stat-back .pro ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    text-align: center;
}

.last-bg .last-stat .stat-back .pro ul li {
    display: inline-block;
    padding: 20px 5px;
}

.last-bg .last-stat .stat-back .pro ul li .static {
    width: 214px;
    min-height: 130px;
    margin: 10px auto 10px;
    transition: 0.7s;
    text-align: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 10px;
    padding: 0px 0px 0px 0px;
    border: 2px solid #302943;
}

.last-bg .last-stat .stat-back .pro ul li .static .pro-invest1 {
    background: transparent !important;
    border-radius: 9px;
}

.last-bg .last-stat .stat-back .pro ul li .static .pro-invest1 p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #0e111a;
    font-weight: 500;
    padding: 20px 0px 7px 0px;
    text-align: center;
    margin: 0px 0px 0px 0px;
    text-transform: capitalize;
}

.last-bg .last-stat .stat-back .pro ul li .static .pro-invest1 h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #0e111a;
    background: transparent;
    outline: none;
    font-weight: 700;
    padding: 13px 0px 0px 0px;
    text-align: center;
    margin: 0px 0px 0px 0px;
}

.last-bg .last-stat .stat-back .pro ul li .static .stat1 {
    text-align: center;
    width: 89px;
    min-height: 55px;
    margin: auto;
    position: relative;
    top: 42px;
    padding: 11px;
    border-radius: 10px;
    background: linear-gradient(180deg, #fa7d08 0%, #fa5c08 72%);
}

.last-bg .last-stat .stat-back .pro ul li .static:hover {
    background: radial-gradient(#ff9600, #fa5c08);
    transition: 0.7s;
    text-align: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border: 2px solid #fff;
}

.last-bg .last-stat .stat-back .pro ul li .static:hover .pro-invest1 p,
.last-bg .last-stat .stat-back .pro ul li .static .pro-invest1 p:hover {
    color: #fff;
}

.last-bg .last-stat .stat-back .pro ul li .static:hover .pro-invest1 h1,
.last-bg .last-stat .stat-back .pro ul li .static .pro-invest1 h1:hover {
    color: #fff;
}

.last-bg .last {
    padding: 30px 0px 0px 0px;
}

.last-bg .last .last-head {
    padding: 20px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    text-align: left;
}

.last-bg .last .last-head h2 {
    font-family: "Gilroy-Medium";
    font-size: 30px;
    color: #0e111a;
    font-weight: 700;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.last-bg .last .last-head h2 span {
    color: #fa6c08;
}

.last-bg .last .last-back {
    width: 100%;
    margin: 0px auto 0px;
    transition: 0.7s;
    text-align: center;
    position: relative;
    padding: 40px 0px 0px 20px;
}

.last-bg .last .last-back table {
    width: 95%;
    text-align: left;
    margin: auto;
    max-width: 480px;
}

.last-bg .last .last-back table tr {
    padding: 10px;
}

.last-bg .last .last-back table tr:nth-child(1) {
    background: none;
}

.last-bg .last-back table td {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #0e111a;
    font-weight: 700;
    line-height: 23px;
    background: transparent;
    border: transparent;
    white-space: unset;
    padding: 8px 0px 5px 0px;
    margin: 0px 0px 0px 0px;
    text-align: left;
    width: 38%;
}

.last-bg .last-back table td img {
    position: relative;
    top: -5px;
}

.last-date {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #fa6508;
    font-weight: 500;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.last-dep {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #2b9e03;
    font-weight: 500;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.last-with {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #cd0101;
    font-weight: 500;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

/*============== LAST CSS END ==============*/

/*============== STAT CSS START ==============*/

.pay-bg {
    background: url(../images/pay-bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 20px 0px 20px;
}

.pay-bg .pay {
    padding: 0px 0px 0px 0px;
}

.pay-bg .pay .pay-head {
    text-align: center;
    padding: 20px 0px 0px 0px;
}

.pay-bg .pay .pay-head h2 {
    font-family: "Gilroy-Medium";
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    padding: 0px 0px 15px 0px;
    margin: 0px 0px 0px 0px;
    text-transform: uppercase;
}

.pay-bg .pay .pay-head h3 {
    font-family: "Gilroy-Medium";
    font-size: 50px;
    color: #f7941d;
    font-weight: 600;
    padding: 0px 0px 15px 0px;
    margin: 0px 0px 0px 0px;
}

.pay-bg .pay .pay-head img {
    margin: auto;
}

.pay-bg .pay .payment {
    padding: 30px 0px 30px;
    text-align: center;
}

.pay-bg .pay .payment .payment-carousel {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pay-bg .pay .payment .payment-carousel img {
    transition: 0.7s;
    cursor: pointer;
}

/*============== LAST CSS END ==============*/

/*============== FOOT CSS START ==============*/

.foot-bg {
    background: #f95901 no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
}

.foot-bg .foot {
    padding: 0px 0px 0px 0px;
}

.foot-bg .foot .footerlogo {
    position: relative;
    margin: 10px 0px 0px 0px;
}

.foot-bg .foot .footerlogo a img {
    display: inline-block;
    transform-origin: 100% 0;
}

.foot-bg .foot .footerlogo a img:hover {
    animation-name: bounce;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

.foot-bg .foot .sec {
    margin: 39px 0px 0px 0px;
    text-align: center;
}

.foot-bg .foot .sec ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    text-align: center;
}

.foot-bg .foot .sec ul li {
    display: inline-block;
    padding: 0px 5px;
}

.foot-bg .foot .sec ul li img {
    width: 133px;
}

.foot-bg .foot1 {
    padding: 20px 0px 0px 0px;
}

.foot-bg .foot1 {
    padding: 20px 0px 0px 0px;
}

.foot-bg .foot1 .foot-text {
    padding: 15px 0px 0px 0px;
}

.foot-bg .foot1 .foot-text .foot-text1 {
    padding: 20px 0px 0px 0px;
}

.foot-bg .foot1 .foot-text .foot-text1 img {
    padding: 0px 16px 23px 0px;
    float: left;
}

.foot-bg .foot1 .foot-text .foot-text1 p {
    margin: 0px 0px 0px 0px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #fff;
    line-height: 22px;
    padding: 0px 0px 0px 0px;
    text-align: left;
}

.foot-bg .foot1 .foot-menu {
    padding: 15px 0px 0px 0px;
}

.foot-bg .foot1 .foot-menu ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    text-align: left;
}

.foot-bg .foot1 .foot-menu ul li {
    display: inline-block;
    padding: 9px 5px;
    margin: 6px 3px;
    width: 130px;
    background: #050606;
    border-right: 4px solid #f7941d;
}

.foot-bg .foot1 .foot-menu ul li a {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #fff;
    line-height: 22px;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.foot-but {
    width: 118px;
    background: #050606;
    padding: 8px 3px !important;
    display: inline-block;
}

.foot-bg .foot1 .foot-menu ul li a:hover {
    color: #ffb83e;
}

.foot-bg .foot2 {
    padding: 20px 0px 0px 0px;
}

.foot-bg .foot2 .copy {
    padding: 0px 0px 0px 0px;
    text-align: center;
}

.foot-bg .foot2 .copy p {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    color: #fff;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

/*============== FOOT CSS END ==============*/

/******************************************************************/

@media only screen and (max-width: 1200px) {
    header .navbar-inverse .navbar-header a {
        width: 180px;
    }
    header .navbar-inverse .navbar-nav>li.btn_menu {
        padding: 17px 0;
    }
    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 .btn {
        min-width: 115px;
    }
    header .navbar-inverse .navbar-nav>li a.btn.btn-primary {
        min-width: 110px;
    }
    header .navbar-right {
        border-bottom: 1px solid transparent;
    }
    header .header-but {
        padding: 20px 0px 30px;
        text-align: center;
    }
    .fea-bg .fea1 .fea_block {
        padding: 25px 0;
        text-align: left;
    }
    .fea-bg .fea1 .fea_block_content .fea-img {
        float: left;
        margin-top: 5px;
        margin-bottom: 40px;
        margin-right: 15px;
    }
    .fea-bg .fea1 .fea_block_content .fea-img1 {
        float: left;
        margin-top: 5px;
        margin-bottom: 40px;
        margin-left: 15px;
    }
    .fea-bg .ref .ref-com .refs .refs-con p {
        font-size: 26px;
    }
}

@media only screen and (max-width: 991px) {
    header .navbar-inverse {
        text-align: center;
        float: right;
    }
    header .navbar-inverse .navbar-header {
        width: 100%;
    }
    header .navbar-inverse .navbar-nav>li>a {
        padding: 15px 13px;
    }
    header .navbar-inverse .navbar-nav>li.btn_menu {
        padding: 4px 0;
    }
    .navbar-inverse .navbar-collapse,
    .navbar-inverse .navbar-form {
        background-size: cover;
    }
    .banner-bg .top {
        text-align: center;
    }
    .banner-bg .top .top-logo {
        margin: 20px 0px 0px 0px;
    }
    .banner-bg .banner .banner-img img {
        display: none;
    }
    .banner-bg .banner {
        text-align: center;
        padding: 30px 0px 0px 0px;
    }
    .banner-bg .banner .banner-com p {
        width: 80%;
    }
    .about-bg .about .about-left img {
        display: none;
    }
    .about-bg .about {
        text-align: center;
    }
    .about-bg .about .cert-com {
        margin: 10px 0px 0px 0px;
        position: relative;
    }
    .about-bg .about .cert-com .cert .cert-con p {
        display: grid;
    }
    .about-bg .about .cert-com .cert .cert-con p a {
        padding: 13px 0px 0px 14px;
    }
    .plan-bg .plan-calculator .profitCalculator ul li {
        display: flex;
        padding: 9px 8px;
    }
    .plan-bg .plan-calculator .profitCalculator ul li h2 {
        margin: auto;
        text-align: center;
    }
    .profitCalc,
    .selectPlan,
    .amount,
    .profit,
    .return {
        margin: auto;
    }
    .fea-bg {
        padding: 30px 0px 30px;
    }
    .fea-bg .fea1 .fea_block_left .fea_block_content {
        text-align: left;
    }
    .fea-bg .ref .ref-head img {
        margin: auto;
    }
    .fea-bg .ref {
        text-align: center;
    }
    .fea-bg .ref .ref-head {
        text-align: center;
    }
    .stat-bg .stat .graph {
        position: relative;
        margin: 0px 0px 0px 0px;
    }
    .last-bg .last .last-head {
        text-align: center;
    }
    .foot-bg .foot .footerlogo {
        text-align: center;
    }
    .foot-bg .foot1 .foot-text {
        padding: 0px 0px 0px 0px;
        text-align: center;
    }
    .foot-bg .foot1 .foot-text .foot-text1 img {
        padding: 0px 0px 5px 0px;
        float: unset;
    }
    .foot-bg .foot1 .foot-text .foot-text1 p {
        text-align: center;
    }
    .foot-bg .foot1 .foot-menu ul {
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    header {
        width: 100%;
        background: #ffffff no-repeat top center fixed;
        background-size: cover;
        background-attachment: fixed;
        padding: 0px 0px 15px 0px;
        position: fixed;
        top: 0;
        z-index: 11111;
    }
    header .navbar-inverse {
        text-align: center;
    }
    header .navbar-toggle {
        margin: 0px 0;
        border: 0;
        background: #0e111a;
        border-radius: 0;
    }
    header .navbar-inverse .navbar-toggle:hover,
    header .navbar-inverse .navbar-toggle:focus {
        background: #ffb83e;
    }
    header .navbar-inverse .navbar-toggle:hover .icon-bar,
    header .navbar-inverse .navbar-toggle:focus .icon-bar {
        background-color: #f5f5f5;
    }
    header .navbar-inverse .navbar-nav>li {
        padding: 0px;
        width: 100%;
    }
    header .navbar-inverse .navbar-nav>li:hover {
        transition: 0.7s;
        background-color: transparent;
    }
    header .navbar-inverse {
        text-align: center;
        float: unset;
    }
    header .navbar-inverse .navbar-nav>li>a {
        padding: 11px 13px;
        border-right: transparent;
        color: #0e111a;
    }
    header .navbar-inverse .navbar-nav>li:hover,
    .navbar-nav>li>a,
    header .navbar-inverse .navbar-nav>li>a:hover {
        color: #ff7200;
    }
    .navbar-nav {
        border-color: transparent !important;
        border-bottom: 1px solid;
        background: transparent;
        overflow: hidden;
        border-radius: 50px;
    }
    .navbar-inverse .navbar-collapse,
    .navbar-inverse .navbar-form {
        border-color: #101010;
        overflow: hidden;
    }
    .banner-bg .top .top-logo {
        margin: 57px 0px 0px 0px;
    }
    .banner-bg .top .slide1 {
        display: none;
    }
    .fea-bg .fea1 .fea_block_content {
        text-align: center !important;
    }
    .fea-bg .fea1 .fea_block_content .fea-img {
        float: unset;
        margin: 15px auto;
    }
    .fea-bg .fea1 .fea_block_content .fea-img1 {
        float: unset;
        margin: 15px auto;
    }
    .foot-bg .foot1 .foot-menu {
        display: none;
    }
}

@media only screen and (max-width: 560px) {}

@media only screen and (max-width: 420px) {
    .plan-bg .plan-calculator .profitCalculator ul li input {
        width: 178px;
    }
}

/*============== FAQ CSS START ==============*/

.faq-bg {
    background: url(../images/last-bg.jpg) no-repeat top center;
    background-size: cover;
    background-attachment: fixed;
    padding: 50px 0px 50px 0px;
    font-family: 'Poppins', 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_up.png) no-repeat center right, linear-gradient( 45deg, #ff7200 0%, #ffb83e 40%, #ffb83e 40%, #ffb83e 100%);
    color: #0e111a;
}

.faq_accordian .accordion h4 {
    background: url(../images/accordian_arrow_down.png) no-repeat center right, linear-gradient( 45deg, #ff7200 0%, #ffb83e 40%, #ffb83e 40%, #ff7200 100%);
    font-size: 15px;
    color: #212427;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    width: 100%;
    font-weight: normal;
    padding: 15px 45px 15px 10px;
    font-family: 'Poppins', sans-serif;
}

.faq_accordian .accordion-content {
    display: none;
}

.faq_accordian .accordion-content p {
    width: 100%;
    display: inline-block;
    font-size: 14px;
    color: #323d51;
    line-height: 26px;
    background: #fff;
    border: 1px solid #f96412;
    padding: 20px 30px;
    font-family: 'Poppins', sans-serif;
}

.faq_accordian .accordion-content p a {
    color: #ec398b;
}

.faq_accordian .accordion-content p a:hover {
    color: #bf5500;
}

.faq_accordian .accordion .open {
    display: block;
}

/*============== FAQ CSS END ==============*/

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #000;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    margin: 0px 0px 10px 0px;
}

.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;
    cursor: default;
    background-color: #ec398b;
    border-color: #283546;
}

/******************************************************/

.reg {
    width: 160px !important;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #0e111a !important;
    background: linear-gradient(90deg, #ff7200 0%, #ff7200 72%);
    padding: 14px 20px !important;
    margin: 0px 10px 25px 10px;
    transition: 0.7s;
    text-transform: uppercase;
    border: 5px solid #feb997 !important;
    display: inline-block;
    transition-duration: .5s;
    transition-property: transform;
    position: relative;
    border-radius: 50px;
    text-align: center;
}

.reg:hover {
    color: #ff7200 !important;
    background: linear-gradient(90deg, #0e111a 0%, #0e111a 72%);
    transition: 0.7s;
    box-shadow: 0px 0px 10px #ff7d44;
    transform: translateY(10px);
}

.innerpage_banner {
    width: 100%;
    background-size: cover;
    margin: -139px 0px 0px 0px;
}

.inner_page_info {
    text-align: center;
}

.inner_page_info h3 {
    font-size: 34px;
    color: #fff;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    padding-left: calc(55% - 640px);
    line-height: 100px;
    display: inline-block;
    min-width: 60%;
    margin-top: 0px;
    margin-bottom: 0;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.inner_page_info h3 span {
    color: #000;
}

@media only screen and (max-width: 1199px) {
    .inner_page_info h3 {
        font-size: 30px;
        line-height: 78px;
    }
}

@media only screen and (max-width: 991px) {
    .inner_page_info {
        text-align: center;
    }
    .innerpage_banner {
        margin: -115px 0px 0px 0px;
    }
}

@media only screen and (max-width: 560px) {
    .inner_page_info h3 {
        font-size: 27px;
        line-height: 40px;
        padding-top: 30px;
        padding-bottom: 20px;
        text-align: center;
        margin-left: 0%;
        width: 100%;
    }
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #fa6d45;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    margin: 0px 0px 10px 0px;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    z-index: 2;
    color: #ff7200 !important;
    background-color: #eee;
    border-color: #ddd;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #ff7200 !important;
    border-color: #ff7200 !important;
}

/******************************************************/

form {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
}

.toptable {
    background-color: FF8D00;
}

a.toplink,
a.toplink:hover,
a.toplink:visited,
a.toplink:active {
    color: white;
    text-decoration: none;
}

.forCopyright {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 10px;
    color: #EDD1D7;
    text-align: center;
    background-color: ff8d00;
}

body,
td,
.forTexts {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #000000;
}

a.menutxt,
a.menutxt:hover,
a.menutxt:visited,
a.menutxt:active {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #666699;
}

.menutxt {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #000000;
}

th {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #000000;
}

.title {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #FFFFFF;
    background-color: #FF8D00;
}

::-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;
    /*background-color: #fff;*/
    box-sizing: border-box;
    /*border-radius: 15px;*/
}

input.sbmt {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #ff5d00 0%, #ff9400 72%);
    border: 1px solid #f5f8fd;
    padding: 14px 32px;
    margin: 0px 10px 25px 10px;
    transition: 0.7s;
    text-transform: capitalize;
    display: inline-block;
    transition-duration: .5s;
    transition-property: transform;
    position: relative;
    border-radius: 50px;
}

input.sbmt:hover {
    color: #000;
    background: transparent;
    border: 1px solid #f77a38;
    transition: 0.7s;
    box-shadow: 0px 0px 10px #f57f34;
    transform: translateY(10px);
    animation-name: hang;
    animation-duration: 1.5s;
    animation-delay: $defaultDuration;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

#formname_main {
    color: #000;
    text-transform: uppercase;
    font-size: 24px;
    text-align: center;
    border-radius: 0px;
    padding: 10px 10px 10px;
    margin: 0 auto;
    font-weight: 600;
    display: unset;
    font-family: 'Poppins', sans-serif;
}

.form_block {
    width: 100%;
    display: inline-block;
    margin-bottom: 30px;
}

.form_block span {
    width: 100%;
    display: inline-block;
    position: relative;
    color: #000;
    font-size: 17px;
}

.form_block span .turn {
    width: 50%;
}

.form_block span a {
    font-size: 17px;
    color: #ff7200;
    font-weight: 600;
}

.form_block span a:hover {
    color: #1b2533;
    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: transparent;
}

.after_reg {
    color: #000;
    text-align: center;
    margin: 25px 0px 0px 0px;
    font-size: 18px;
    line-height: 48px;
}

.after_reg h3 {
    color: #000;
    font-size: 23px;
}

.after_reg p {
    font-size: 13px !important;
    color: #000 !important;
    padding: 0px 0px 0px 0px !important;
    padding: 0px 0px 0px 0px !important;
    margin: 0px 0px 10px 0px !important;
}

.after_reg b {
    color: #fa6b47;
    font-size: 18px;
}

.msg .error i {
    background-color: #b93b37;
    color: #000;
}

.msg .success i {
    background-color: #2b792b;
    color: #000;
}

.msg i {
    margin-right: 5px;
    padding: 10px;
}

@media (max-width:992px) {
    /*.box6, .box6 p, .box6 a {
	width: 100%;
	font-family: 'Exo 2', sans-serif;
	font-size: 100%;
	line-height: 24px;
	color: #000;
	padding: 15px 0;
	border: none;
}*/
    .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: 'Rubik', 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: 16px;
    color: #fb684a;
    float: right;
    font-weight: 600;
}

.back {
    background-color: #18063008;
    padding: 30px 20px 30px 20px;
    border-radius: 0px;
}

.loginheads {
    width: 100%;
    padding: 12px 20px 20px 0;
    color: #000;
    font-size: 30px;
    text-transform: uppercase;
    float: left;
    font-weight: 600;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.loginheads span {
    font-weight: 600;
    color: #ff7200;
}

.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: 'Montserrat', sans-serif;
}

.pull-left {
    float: left !important;
}

.pull-right {
    float: right !important;
    margin: 13px 0px 0px 0px;
}

.loginaction {
    padding: 10px;
    text-align: center;
    background: -moz-linear-gradient(top, rgba(23, 58, 234, 1) 0%, rgba(28, 55, 206, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(23, 58, 234, 1) 0%, rgb(77, 22, 140) 100%);
    background: linear-gradient(to bottom, rgb(255 255 255) 0%, rgb(255 255 255) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#173aea', endColorstr='#1c37ce', GradientType=0);
    border-radius: 0px;
    overflow: hidden;
    margin: 20px 20px 0px 20px;
}

.loginaction h4 {
    text-transform: uppercase;
    margin: 0px;
    font-weight: 700;
    font-size: 15px;
    float: left;
    line-height: 48px;
    padding-left: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #1b2533;
}

.loginaction .signup {
    color: #fff;
    background: linear-gradient(to bottom, rgb(12 189 183) 0%, rgb(27 47 61) 100%);
    background: linear-gradient(to bottom, #ff4c01 0%, #ff9600 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcb32b', endColorstr='#d18f14', GradientType=0);
    border-radius: 36px;
    padding: 9px 21px;
    text-transform: uppercase;
    line-height: 50px;
    display: initial;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.loginaction .signup:hover {
    background: #f67b37;
    color: #000;
}

.headerLevelTwo1 {}

.headerLevelTwo1 .foot-logo {
    display: inline-block;
    transform-origin: 100% 0;
    padding: 17px 0px 15px;
    text-align: center;
    display: block;
}

.headerLevelTwo1 .foot-logo img {
    display: inline-block;
    transform-origin: 100% 0;
}

.headerLevelTwo1 .foot-logo img:hover {
    animation-name: pulse;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@media (max-width:1199px) {
    .loginaction h4 {
        width: 100%;
    }
}

@media (min-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;
    }
    .box6 {
        padding: 0px 0 !important;
    }
    .box6,
    .box6 p,
    .box6 a {
        width: 100%;
        font-family: 'Exo 2', sans-serif;
        font-size: 100%;
        line-height: 24px;
        color: #fff;
        padding: 15px 11px;
        border: none;
    }
}

.inner-bg {
    background: url(images/about-bg.jpg) 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 {
    background-color: ff8d00;
}

.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%;
    -webkit-animation: AnimationName 5s ease infinite;
    -moz-animation: AnimationName 5s ease infinite;
    animation: AnimationName 5s ease infinite;
    border-radius: 0;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15) inset;
    color: #fff;
    font-size: 12px;
    padding: 1px 10px;
    opacity: 0.7;
    display: inline-block;
}

.success {
    background: linear-gradient(1deg, #171858, #2b792b);
    background-size: 400% 400%;
    -webkit-animation: AnimationName 5s ease infinite;
    -moz-animation: AnimationName 5s ease infinite;
    animation: AnimationName 5s ease infinite;
    border-radius: 0;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15) inset;
    color: #fff;
    font-size: 12px;
    padding: 1px 10px;
    opacity: 0.7;
    display: inline-block;
}