/*
font-family: 'Poppins', sans-serif;
font-family: 'Catamaran', sans-serif;
font-family: 'Raleway', sans-serif;

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

body {
	
	font-family: 'Catamaran', sans-serif;
	color: #fff;
	background-color:#1f2641;
	font-size: 14px;
	font-weight: 400;
}

a {
	
	cursor:pointer !important;
	text-decoration:none !important;
}

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

@-moz-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

 /*rotating*/
#spinner {
	-webkit-animation: rotatings 3s linear infinite;
	animation: rotating 3s linear infinite;
}
#spinner.fast {
	-webkit-animation: rotatings 1s linear infinite;
	animation: rotating 1s linear infinite;
}

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

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

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

#preloader {
	
	position:fixed;
	top:0;
	left:0;
	z-index:9999;
	background:#fff;
	height:100%;
	width:100%;
	-webkit-transition:all .5s .5s ease;
	-moz-transition:all .5s .5s ease;
	transition:all .5s .2s ease;
}

.loader {
	
	position:absolute;
	top:50%;
	left:0;
	right:0;
	width:50px;
	height:50px;
	display:block;
	margin:auto;
	margin-top:-30px;
}
	
body.loaded #preloader {
	
	opacity:0;
	visibility:hidden;
}

.banner-bg {
	
    background:#1f2641 no-repeat top center;
    background-size: cover;
    min-height:700px;
    padding: 0px 0px 0px;
}

.header-section { 

	background-color:#1f2641;
	width:100%;
	z-index:999;
	position:fixed;
	left:0;
	top:0;
	padding:10px 0px 10px 0px;
}

.navbar-fixed-top.header-section {
	
	background-color:#1f2641;
	-moz-box-shadow:0 2px 5px rgba(16,16,16,.07);
	-webkit-box-shadow:0 2px 5px rgba(16,16,16,.07);
	box-shadow:0 2px 5px rgba(243, 237, 237, 0.13);
	border-bottom:0;
	padding:0;
}

.navbar-fixed-top ul.nav>li>a {
	
	color:#fff;
}

.navbar-fixed-top ul.nav>li>a:hover,.navbar-fixed-top ul.nav>li>a:focus,.navbar-fixed-top ul.nav>li.active>a {
	
	color:#ed8a4c;
}


.logo-light,.navbar-fixed-top .logo-light,.logo-dark,.navbar-fixed-top .logo-dark,.navbar-fixed-top.header-section,.header-section {
	
	transition:all .3s ease-in-out;
}

.navbar {
	
	border:medium;
	-moz-border-radius:0;
	-webkit-border-radius:0;
	-ms-border-radius:0;
	border-radius:0;
	margin:0;
	position:relative;
	padding:0;
}

.navbar-brand {
	
	position:relative;
	z-index:99999;
}

.navbar-header {
	
	padding:17px 0;
}

.navbar-header .brand {
	
	font-size:25px;
	color:#333;
	font-family: 'Catamaran', sans-serif;
	font-weight:600;
	margin-left:13px;
}

.navbar-header .nav-btn {
	
	padding:8px;
	border-radius:1px;
}

.navbar-header .nav-btn .icon-bar {
	
	background-color:#fff;
	width:18px;
}

.navbar-fixed-top .navbar-header .nav-btn .icon-bar { 

	background-color:#777;
}

.navbar-header .nav-btn:hover,.navbar-header .nav-btn:focus {
	
	opacity:.8;
}

#navbar {
	
	z-index:999;
	padding:0 15px;
}

.mainmenu {
	
	float:right;
}

ul.nav {
	
}

ul.nav li {
	 
	display:inline-block;
}

ul.nav li a {
	
	color:#fff;
	font-family: 'Catamaran', sans-serif;
	display:inline-block;
	vertical-align:middle;
	padding:10px 8px;
	font-size:15px;
	font-weight:500;
	line-height:70px;
	z-index:1;
}

ul.nav li a:hover,ul.nav li a:focus,ul.nav li a.active {
	
	background:0 0;
	color:#ed8a4c;
	opacity:1;
}

.mainmenu ul.nav li a.signup-btn1 {
	
	font-size: 14px !important;
    font-weight: 600 !important;
    color: #fff !important;
    line-height: 40px !important;
    background-image: linear-gradient(to right,#ed8a4c 0,#ea485c 100%);
    border-radius: 5px;
    outline: none;
    display: inline-block !important;
    box-shadow: 0 3px 32px rgba(236,117,81,.54);
    transition: 0.7s;
    text-transform: uppercase !important;
    padding: 0px 28px !important;
	margin:0px 10px 0px 10px;
}

.mainmenu ul.nav li a.signup-btn1:hover {
	
	transition: 0.7s;
	box-shadow: 0 3px 32px rgba(237,130,78,.54);
    color: #fff;
	background-image: linear-gradient(to right,#ec814d 0,#ec814d 100%);
}

.mainmenu ul.nav li a.signup-btn2 {
	
	font-size: 14px !important;
    font-weight: 600 !important;
    color: #fff !important;
    line-height: 40px !important;
    background-image: linear-gradient(to right,#ec814d 0,#ec814d 100%);
    border-radius: 5px;
    outline: none;
    display: inline-block !important;
    box-shadow: 0 3px 32px rgba(237,130,78,.54);
    transition: 0.7s;
    text-transform: uppercase !important;
    padding: 0px 28px !important;
}

.mainmenu ul.nav li a.signup-btn2:hover {
	
	transition: 0.7s;
	box-shadow: 0 3px 32px rgba(236,117,81,.54);
    color: #fff;
	background-image: linear-gradient(to right,#ed8a4c 0,#ea485c 100%);
}


.menu-wrap {
	
	position:relative;
}

.slicknav_menu {
	
	background:0 0;
	padding:4px 0;
	display:none;
	width:100%;
	position:absolute;
	right:0;
	top:0;
}

.slicknav_nav {
	
	background-color:#fff;
}

.slicknav_btn {
	
	background-color:#000;	
	margin:17px 5px 19px;
}

.slicknav_nav .slicknav_row:hover,.slicknav_nav .slicknav_row,.slicknav_nav a,.slicknav_nav a:hover {
	
	-moz-border-radius:0;
	-webkit-border-radius:0;
	-o-border-radius:0;
	border-radius:0;
}

.slicknav_nav .slicknav_row,.slicknav_nav a {
	
	padding:10px 15px;
	margin:0;
	color:#777;
}

.slicknav_nav a .caret {
	
	display:none;
}

.slicknav_nav ul {
	
	margin:0;
}

.slicknav_nav ul li a {
	
	padding-left:30px;
	font-size:12px;
}

.slicknav_nav .slicknav_row:hover,.slicknav_nav a:hover {
	
	background-color:transparent;
	color:#333;
}

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

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

.banner-bg .banner .banner-text h2 {
	
	font-family: 'Raleway', sans-serif;
	font-size: 50px;
	font-weight:700;
	color:#fff;
	margin:0px 0px 10px 0px;
    line-height: 50px
}

.banner-bg .banner .banner-text h2 span {
	
	font-weight:100;
}

.banner-bg .banner .banner-text p {
	
	font-family: 'Catamaran', sans-serif;
	font-size: 18px;
	font-weight:400;
	color:#aab2cd;
	margin:30px 0px 0px 0px;
}

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

.banner-bg .banner-but .banner-but1 {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    padding: 13px 36px;
	text-transform:capitalize;
    margin: 0px 0px 10px 10px;
    display: inline-block;
    border-radius: 5px;
	background: linear-gradient(to right,#ed8a4c 0,#ea485c 100%);
	transition:0.7s;
	box-shadow:0 3px 32px rgba(236,117,81,.54);
}

.banner-bg .banner-but .banner-but1:hover {
	
    color: #fff;
    background-image: linear-gradient(to right,#ec814d 0,#ec814d 100%);
    box-shadow:0 3px 32px rgba(237,130,78,.54);
    transition: 0.7s;
}

.banner-bg .banner-but .banner-but2 {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    padding: 13px 36px;
	text-transform:capitalize;
    margin: 0px 0px 0px 10px;
    display: inline-block;
    border-radius: 5px;
	background:#00cde4;
	transition:0.7s;
	box-shadow:0 3px 32px rgba(0,231,234,.54);
}

.banner-bg .banner-but .banner-but2:hover {
	
    color: #fff;
    background: #2ddfd1;
    box-shadow:0 3px 32px rgba(16,203,188,.54);
    transition: 0.7s;
}

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

.banner-bg .banner-icons img {
	
	margin:0px 10px 0px 10px;
}

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

.banner-bg .banner-img img {
	
	margin:auto;
}

.video-bg {
	
    background:#1f2641 url(images/video-bg.png) no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
}

.video-bg .video {

    padding: 30px 0px 30px;
}

.video-bg .video .videobg {
	
	padding: 30px 0px 30px;
	background:#7061b2;
	width:100%;
	display:inline-block;
}

.video-bg .video .videobg .video-icon {

	padding: 60px 0px 30px;
    float: left;
}

.m-video__video {
	
	 position: relative;
}

.m-video__video img {
	
    -o-object-fit: contain;
    object-fit: contain;
	margin: auto;
}

.m-video__play {
	
    position: absolute;
    left: 60%;
    top: 53.5%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-image: url(images/play.html);
    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;
}

.video-bg .video .videobg .video-icon: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;
}

.video-bg .video .videobg .video-icon .video-play-btn i {
	
	top: 40px;
    position: relative;
}

.video-bg .video .videobg .video-icon .video-play-btn {
	
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 70px;
    text-align: center;
    font-size: 16px;
    background-color: #00d2e6;
    border-radius: 50%;
    color: #ffffff;
    position: absolute;
    z-index: 1;
}
  
.video-bg .video .videobg .video-icon .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(78, 224, 238);
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
    z-index: -1;
}
	
.video-bg .video .videobg .video-icon .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;} 
}

.video-bg .video .videobg .video-text {

	padding: 0px 0px 0px;
}

.video-bg .video .videobg .video-text .video-head {

	padding: 30px 0px 30px;
}

.video-bg .video .videobg .video-text .video-head p {

	font-family: 'Catamaran', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
	margin:0px 0px 20px 0px;
}

.video-bg .video .videobg .video-text .video-head p span {

	background: #d3ccf1;
    width: 44px;
    height: 2px;
    display: inline-block;
    margin: 0px 10px 0px 0px;
}

.video-bg .video .videobg .video-text .video-head h2 {

	font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 6px 0px;
}

.video-bg .video .videobg .video-text .video-head h3 {

	font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight:200;
    color: #fff;
	margin: 0px 0px 10px 0px;
}

.video-bg .video .videobg .video-text .video-head h4 {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #e2e5f1;
    margin: 30px 0px 0px 0px;
    line-height: 26px;
}

.video-bg .video .videobg .video-text .video-para {

	padding: 0px 0px 20px;
}

.video-bg .video .videobg .video-text .video-para p {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin: 0px 0px 14px 0px;
    line-height: 30px;
}

.video-bg .video .videobg .video-text .video-para p span {
	
    font-size: 18px;
    font-weight:600;

}

.video-bg .video .videobg .video-text .video-para p i {
	
}

.plan-bg {
	
    background:#1f2641 no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
}

.plan-bg .plan-head {

    padding: 30px 0px 30px;
	text-align:center;
}
    
.plan-bg .plan-head p {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #545c79;
    margin: 0px 0px 20px 0px;
	text-transform:uppercase;
}

.plan-bg .plan-head p span {
	
    background: #545c79;
    width: 44px;
    height: 2px;
    display: inline-block;
    margin: 0px 10px 0px 0px;
}

.plan-bg .plan-head h2 {

    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 10px 0px;
    line-height: 50px;
}

.plan-bg .plan {

    padding: 30px 0px 30px;
	text-align:center;
}

.plan-bg .plan .planbg {

    background: #1f2641 no-repeat top center;
    background-size: cover;
    width: 270px;
    min-height: 470px;
    margin: 30px auto 30px;
    transition: 0.7s;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 0px 10px 0px #5b6486;
}

.plan-bg .plan .planbg:hover {
	
    box-shadow: 0 0px 10px 0px #4ce0ee;
    transition: 0.7s;
}

.plan-bg .plan .planbg .plan-sub {
	
	padding: 30px 0px 0px 0px;
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #40dded;
}

.plan-bg .plan .planbg .plan-per {
	
	padding: 10px 0px 0px 0px;
}

.plan-bg .plan .planbg .plan-per h2 {
	
    font-family: 'Raleway', sans-serif;
    font-size:66px;
    font-weight: 700;
    color: #fff;
	margin: 0px 0px 0px 0px;
}

.plan-bg .plan .planbg .plan-per h2 b {
	
	font-weight: 500;
    font-size: 36px;
}

.plan-bg .plan .planbg .plan-per h2 span {
	
	font-size: 14px;
    background: #1f2641;
    border: 2px solid white;
    padding: 6px;
    font-weight: 400;
    position: relative;
    top: -12px;
}

.plan-bg .plan .planbg .plan-details {
	
    padding: 10px 0px 20px 20px;
    text-align: left;
}

.plan-bg .plan .planbg .plan-details p {
	
	font-family: 'Catamaran', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin: 12px 18px 0px 0px;
    padding: 0px 0px 6px 0px;
    text-transform: capitalize;
    border-bottom: 1px solid #cfc6f5;
}

.plan-bg .plan .planbg .plan-details p span {
	
    color: #ffffff;
    float: right;
    padding: 0px 10px 0px 0px;
}

.plan-bg .plan .planbg .plan-details p span img {
	
	width:18px;
	height:18px;
	margin:0px 0px 0px 0px;
}

.plan-bg .plan .planbg .plan-but {
	
	padding:20px 0px 40px 0px;
}

.plan-bg .plan .planbg .plan-but a {
	
	font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1f2641;
    background: #2ddfd1;
    box-shadow: 0 3px 32px rgba(16,203,188,.54);
    padding: 12px 30px;
    border-radius: 5px;
    transition: 0.7s;
    text-transform: capitalize;
    position: relative;
}

.plan-bg .plan .planbg .plan-but a:hover {
	
	color: #fff;
    background: #ec814d;
	box-shadow:0 3px 32px rgba(237,130,78,.54);
	transition: 0.7s;
}

.plan-bg .plan .planbg .plan-but a i {
	
    position: absolute;
    opacity: 0;
    top: -1px;
    left: 0;
    /* background: #ffffffa8; */
    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;
}

@keyframes move {

	0%  { left: 0; opacity: 0; }

	5% {opacity: 0.0}

	48% {opacity: 0.2}

	80% {opacity: 0.0}

	100% { left: 82%}
}

.refer-bg {
	
    background:#1f2641 no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
}

.refer-bg .refer-head {

    padding: 0px 0px 0px;
	text-align:center;
}
    
.refer-bg .refer-head p {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #545c79;
    margin: 0px 0px 20px 0px;
	text-transform:uppercase;
}

.refer-bg .refer-head h2 {

    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 10px 0px;
    line-height: 50px;
}

.refer-bg .refer-head h2 b {

    color: #2ddfd1;
}

.refer-bg .refer {

    padding: 30px 0px 30px;
}

.refer-bg .refer .refer-text {

    padding: 30px 0px 30px;
}

.refer-bg .refer .refer-text p {

    font-family: 'Catamaran', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin: 0px 0px 10px 0px;
}

.refer-bg .refer .refer-text p span {

	font-family: 'Raleway', sans-serif;
    font-size:24px;
    font-weight: 700;
    color: #2ddfd1;
}

.refer-bg .refer .refer-text p i {
	
	font-size:14px;
    color: #ed8a4c;
}

.refer-bg .refer .refer-img {

    padding: 30px 0px 30px;
}

.bounty-bg {
	
    background:#1f2641 no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
}

.bounty-bg .bounty-head {

    padding: 0px 0px 0px;
	text-align:center;
}
    
.bounty-bg .bounty-head p {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #545c79;
    margin: 0px 0px 20px 0px;
	text-transform:uppercase;
}

.bounty-bg .bounty-head h2 {

    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 10px 0px;
    line-height: 50px;
}

.bounty-bg .bounty {

    padding: 30px 0px 30px;
}

.bounty-bg .bounty .bounty-box {

    padding: 30px 0px 20px;
	background:#252d4b;
	border:1px solid #00d1e4;
	border-radius:5px;
}

.bounty-bg .bounty .bounty-para {

    padding: 0px 20px 0px 20px;
}

.bounty-bg .bounty .bounty-para p {

    font-family: 'Catamaran', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0px 0px 10px 0px;
    line-height: 34px;
}

.bounty-bg .bounty .bounty-para p span { 
	
	width: 100px;
    display: inline-block;
}

.bounty-bg .bounty .bounty-para p i {

    color: #00d1e4;
	width: 30px;
    display: inline-block;
}



.road-bg {
	
    background:#1f2641 no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
}

.road-bg .road-img {
	
    position: absolute;
    margin:-140px 0px 0px 100px;
}

.road-bg .road-img img {
	
	opacity: 0.2;
    width: 170px;
}

.road-bg .road-head {

    padding: 30px 0px 30px;
	text-align:center;
}
    
.road-bg .road-head p {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #545c79;
    margin: 0px 0px 20px 0px;
	text-transform:uppercase;
}

.road-bg .road-head h2 {

    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 10px 0px;
    line-height: 50px;
}

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



#timeline {
  list-style: none;
  position: relative;
}
#timeline:before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 2px;
  background-color: #2ddfd1;
  left: 50%;
  margin-left: -1.5px;
}
#timeline .clearFix {
  clear: both;
  height: 0;
}
#timeline .timeline-badge {
	color: #fff;
    width: 20px;
    height: 20px;
    font-size: 1.2em;
    text-align: center;
    position: absolute;
    top: 20px;
    left: 50%;
    margin-left: -11px;
    border: 2px solid #2ddfd1;
    background-color: transparent;
    z-index: 100;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
}
#timeline .timeline-badge span.timeline-balloon-date-day {
  font-size: 1.4em;
}
#timeline .timeline-badge span.timeline-balloon-date-month {
  font-size: .7em;
  position: relative;
  top: -10px;
}
#timeline .timeline-badge.timeline-filter-movement {
  background-color: #ffffff;
  font-size: 1.7em;
  height: 35px;
  margin-left: -18px;
  width: 35px;
  top: 40px;
}
#timeline .timeline-badge.timeline-filter-movement a span {
  color: #4997cd;
  font-size: 1.3em;
  top: -1px;
}
#timeline .timeline-badge.timeline-future-movement {
  background-color: #ffffff;
  height: 35px;
  width: 35px;
  font-size: 1.7em;
  top: -16px;
  margin-left: -18px;
}
#timeline .timeline-badge.timeline-future-movement a span {
  color: #4997cd;
  font-size: .9em;
  top: 2px;
  left: 1px;
}
#timeline .timeline-movement {
  border-bottom: transparent;
  position: relative;
}
#timeline .timeline-movement.timeline-movement-top {
  height: 60px;
}
#timeline .timeline-movement .timeline-item {
  /*padding: 20px 0;*/
}
#timeline .timeline-movement .timeline-item .timeline-panel {
    border: transparent;
    border-radius: 3px;
    background-color: transparent;
    color: #666;
    padding: 10px;
    position: relative;
    box-shadow: none;
	margin: 0px 0px 20px 0px;
}
#timeline .timeline-movement .timeline-item .timeline-panel .timeline-panel-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#timeline .timeline-movement .timeline-item .timeline-panel.credits .timeline-panel-ul {
  text-align: right;
}
#timeline .timeline-movement .timeline-item .timeline-panel.credits .timeline-panel-ul li {
  color: #666;
}
#timeline .timeline-movement .timeline-item .timeline-panel.credits .timeline-panel-ul li span.importo {
	
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight:700;
    color: #fff;
    margin: 0px 0px 0px 0px;
}

#timeline .timeline-movement .timeline-item .timeline-panel.credits .timeline-panel-ul li span.importo1 {
	
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #888e94;
    margin: 0px 0px 10px 0px;
    text-transform: uppercase;
    display: inline-block;
}

#timeline .timeline-movement .timeline-item .timeline-panel.debits .timeline-panel-ul {
	
  text-align: left;
}

#timeline .timeline-movement .timeline-item .timeline-panel.debits .timeline-panel-ul span.importo {
	
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #888e94;
    margin: 0px 0px 10px 0px;
    text-transform: uppercase;
    display: inline-block;
}

#timeline .timeline-movement .timeline-item .timeline-panel.debits .timeline-panel-ul span.importo1 {
	
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #444444;
    margin: 0px 0px 0px 0px;
    text-transform: uppercase;
}

#timeline .timeline-movement .timeline-item .timeline-panel.debits .timeline-panel-ul span.causale {
	
	font-family: 'Catamaran', sans-serif;
    font-size: 16px;
    font-weight:400;
    color: #aab2cd;
    margin: 0px 0px 0px 0px;
}

#timeline .timeline-movement .timeline-item .timeline-panel.credits .timeline-panel-ul span.causale1 {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 16px;
    font-weight:400;
    color: #aab2cd;
    margin: 0px 0px 0px 0px;
}

.partenrs-bg {
	
    background:#1f2641 url(images/partenrs-bg.png) no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
}

.partenrs-bg .partenrs {

    padding: 30px 0px 30px;
	background:#252d4b;
	border-radius:5px; 
	text-align:center;
}

.partenrs-bg .partenrs .part {

    padding: 20px 0px 20px;
	text-align:center;
}

.partenrs-bg .partenrs .part img {
	
    margin:auto;
}
    
.partenrs-bg .partenrs .part p {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 15px;
    font-weight:700;
    color: #aab2cd;
    margin: 20px 0px 0px 0px;
	text-transform:uppercase;
}

.sta-bg {
	
    background:#1f2641 no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
	min-height:540px;
}

.sta-bg .sta {

    padding: 30px 0px 30px;
}

.sta-bg .sta .sta1 {
	
	padding: 30px 0px 30px;
    position: relative;
    top: 240px;
    left: 90px;
}

.sta-bg .sta .sta2 {

    padding: 30px 0px 30px;
    position: relative;
    top: 130px;
    left: 130px;
}

.sta-bg .sta .sta3 {

    padding: 30px 0px 30px;
    position: relative;
    top: 70px;
    left: 150px;
}

.sta-bg .sta .sta4 {

    padding: 30px 0px 30px;
    position: relative;
    top: 230px;
    left: -30px;
}

.sta-bg .sta .sta-img {

    padding: 30px 0px 30px;
}

.sta-bg .sta .sta-img img {

    padding: 30px 0px 30px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.sta-bg .sta .sta1 p {

    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight:700;
    color: #fff;
    margin: 0px 0px 4px 0px;
}

.sta-bg .sta .sta1 h4 {

    font-family: 'Catamaran', sans-serif;
    font-size: 30px;
    font-weight:700;
    color: #fff;
    margin: 0px 0px 0px 0px;
}

.sta-bg .sta .sta2 p {

    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight:700;
    color: #fff;
    margin: 0px 0px 4px 0px;
}

.sta-bg .sta .sta2 h4 {

    font-family: 'Catamaran', sans-serif;
    font-size: 30px;
    font-weight:700;
    color: #fff;
    margin: 0px 0px 0px 0px;
}

.sta-bg .sta .sta3 p {

    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight:700;
    color: #fff;
    margin: 0px 0px 4px 0px;
}

.sta-bg .sta .sta3 h4 {

    font-family: 'Catamaran', sans-serif;
    font-size: 30px;
    font-weight:700;
    color: #fff;
    margin: 0px 0px 0px 0px;
}

.sta-bg .sta .sta4 p {

    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight:700;
    color: #fff;
    margin: 0px 0px 4px 0px;
}

.sta-bg .sta .sta4 h4 {

    font-family: 'Catamaran', sans-serif;
    font-size: 30px;
    font-weight:700;
    color: #fff;
    margin: 0px 0px 0px 0px;
}

.facts-bg1 {
	
    background:#1f2641 no-repeat top center;
    background-size:cover;
    padding: 30px 0px 60px;
}

.facts-bg1 .facts-head {

    padding: 30px 0px 30px;
	text-align:center;
}
    
.facts-bg1 .facts-head p {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #545c79;
    margin: 0px 0px 20px 0px;
	text-transform:uppercase;
}

.facts-bg1 .facts-head h2 {

    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 10px 0px;
    line-height: 50px;
}


.facts-bg {
	
    background:#1f2641 url(images/facts-bg.png) no-repeat top center;
    background-size:contain;
    padding: 30px 0px 30px;
}

.facts-bg .facts-head {

    padding: 30px 0px 0px;
	text-align:center;
}
    
.facts-bg .facts-head p {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #545c79;
    margin: 0px 0px 20px 0px;
	text-transform:uppercase;
}

.facts-bg .facts-head h2 {

    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 10px 0px;
    line-height: 50px;
}

.facts-bg .facts {

    padding: 0px 0px 30px;
	text-align:center;
}

.facts-bg .facts .fact1 {

    padding: 0px 0px 0px;
    position: relative;
    top: 10px;
}

.facts-bg .facts .fact2 {

	padding: 30px 0px 30px;
    position: relative;
    top: 0px;
}

.facts-bg .facts .fact3 {

    padding: 30px 0px 30px;
    position: relative;
    top: -40px;
}

.facts-bg .facts .fact4 {

    padding: 30px 0px 30px;
    position: relative;
    top: -80px;
}

.facts-bg .facts .fact5 {

	padding: 30px 0px 30px;
    position: relative;
    top: -90px;
}

.facts-bg .facts .fact1 img {

    padding: 0px 0px 0px;
}

.facts-bg .facts .fact1 h4 {

    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0px 0px 0px;
}

.facts-bg .facts .fact2 h4 {

    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0px 0px 0px;
}

.facts-bg .facts .fact3 h4 {

    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0px 0px 0px;
}

.facts-bg .facts .fact4 h4 {

    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0px 0px 0px;
}

.facts-bg .facts .fact5 h4 {

    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0px 0px 0px;
}

.token-bg {
	
    background:#1f2641 no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
}

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

.token-bg .token .token-img {
	
    padding: 30px 0px 30px;
}

.token-bg .token .token-img img {
	
    
}

.token-bg .token .token-head {

    padding: 0px 0px 30px;
}
    
.token-bg .token .token-head p {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #545c79;
    margin: 0px 0px 10px 0px;
	text-transform:uppercase;
}

.token-bg .token .token-head p span {
	
    background: #545c79;
    width: 44px;
    height: 2px;
    display: inline-block;
    margin: 0px 10px 0px 0px;
}

.token-bg .token .token-head h2 {

    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 10px 0px;
}

.token-bg .token .token-text {

    padding: 0px 0px 30px;
}

.token-bg .token .token-text p {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 12px 0px;
}

.token-bg .token .token-text p span {
	
    font-weight:500;
    color: #aab2cd;
    float: right;
	padding:0px 100px 0px 0px;
}


.token-bg .token .token-para {

    padding: 0px 0px 30px;
}

.token-bg .token .token-para h2 {
	
    font-family: 'Raleway', sans-serif;
    font-size:24px;
    font-weight:700;
    color: #fff;
    margin: 0px 0px 20px 0px;
}

.token-bg .token .token-para p {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #aab2cd;
    margin: 0px 0px 20px 0px;
}

.token-bg .token .token-para a {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    padding: 14px 36px;
	text-transform:uppercase;
    margin: 10px 0px 0px 0px;
    display: inline-block;
    border-radius: 5px;
	background: linear-gradient(to right,#ed8a4c 0,#ea485c 100%);
	transition:0.7s;
	box-shadow:0 3px 32px rgba(236,117,81,.54);
}

.token-bg .token .token-para a:hover {
	
    color: #fff;
    background-image: linear-gradient(to right,#ec814d 0,#ec814d 100%);
    box-shadow:0 3px 32px rgba(237,130,78,.54);
    transition: 0.7s;
}

.docs-bg {
	
    background: #1f2641 url(images/docs-bg.png) no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
}

.docs-bg .docs-head {
	
    padding: 30px 0px 30px;
}

.docs-bg .docs-head p {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #545c79;
    margin: 0px 0px 10px 0px;
    text-transform: uppercase;
}

.docs-bg .docs-head p span {
	
    background: #545c79;
    width: 44px;
    height: 2px;
    display: inline-block;
    margin: 0px 10px 0px 0px;
}

.docs-bg .docs-head h2 {
	
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 10px 0px;
}

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

.docs-bg .docs .docs1 {
	
    background: #fff;
    border-radius: 5px;
    width: 250px;
    min-height: 200px;
    padding: 30px 0px 30px;
    margin: 20px auto 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.7s;
}

.docs-bg .docs .docs1:hover {
	
	transition:0.7s;
	box-shadow:0 0px 10px 0px #fff;
}

.docs-bg .docs .docs1 img {
	
    padding: 20px 0px 0px;
    margin: auto;
    width: 50px;
}

.docs-bg .docs .docs1 h4 {
	
	font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1f2641;
    margin: 20px 0px 0px 0px;
}

.docs-bg .data-head {
	
    padding: 60px 0px 30px;
	text-align:center;
}

.docs-bg .data-head p {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #545c79;
    margin: 0px 0px 10px 0px;
    text-transform: uppercase;
}

.docs-bg .data-head h2 {
	
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 10px 0px;
}

.data-bg {
	
    background: #1f2641 no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
}

.data-bg .data {

    padding: 0px 0px 0px;
}

.data-bg .data .data-img {

    padding: 0px 0px 20px;
}

.data-bg .data .data-text {

    padding: 20px 0px 20px;
}

.data-bg .data .data-text h4 {

    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 20px 0px;
}

.data-bg .data .data-text p {

    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight:300;
    color: #aab2cd;
    margin: 0px 0px 0px 0px;
}

.data-bg .data .data-para {

    padding: 30px 0px 30px;
}


.data-bg .data .data-para1 {

    padding: 14px 0px 14px;
}

.data-bg .data .data-para1 p {

    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight:700;
    color: #fff;
    margin: 0px 0px 0px 0px;
}

.data-bg .data .data-para1 p span {
	
	background: linear-gradient(to right,#ed8a4c 0,#ea485c 100%);
    width: 130px;
    height: 16px;
    border-radius: 3px;
    display: inline-block;
    margin: 0px 20px 0px 0px;
    position: relative;
    top: 6px;
}

.data-bg .data .data-para2 {

    padding: 14px 0px 14px;
}

.data-bg .data .data-para2 p {

    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight:700;
    color: #fff;
    margin: 0px 0px 0px 0px;
}

.data-bg .data .data-para2 p span {
	
	background: linear-gradient(to right,#ed8a4c 0,#ea485c 100%);
    width: 170px;
    height: 16px;
    border-radius: 3px;
    display: inline-block;
    margin: 0px 20px 0px 0px;
    position: relative;
    top: 6px;
}

.data-bg .data .data-para3 {

    padding: 14px 0px 14px;
}

.data-bg .data .data-para3 p {

    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight:700;
    color: #fff;
    margin: 0px 0px 0px 0px;
}

.data-bg .data .data-para3 p span {
	
	background: linear-gradient(to right,#ed8a4c 0,#ea485c 100%);
    width: 100px;
    height: 16px;
    border-radius: 3px;
    display: inline-block;
    margin: 0px 20px 0px 0px;
    position: relative;
    top: 6px;
}

.data-bg .data .data-para4 {

    padding: 14px 0px 14px;
}

.data-bg .data .data-para4 p {

    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight:700;
    color: #fff;
    margin: 0px 0px 0px 0px;
}

.data-bg .data .data-para4 p span {
	
	background: linear-gradient(to right,#ed8a4c 0,#ea485c 100%);
    width: 70px;
    height: 16px;
    border-radius: 3px;
    display: inline-block;
    margin: 0px 20px 0px 0px;
    position: relative;
    top: 6px;
}

.data-bg .data .data-para5 {

    padding: 14px 0px 14px;
}

.data-bg .data .data-para5 p {

    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight:700;
    color: #fff;
    margin: 0px 0px 0px 0px;
}

.data-bg .data .data-para5 p span {
	
	background: linear-gradient(to right,#ed8a4c 0,#ea485c 100%);
    width: 50px;
    height: 16px;
    border-radius: 3px;
    display: inline-block;
    margin: 0px 20px 0px 0px;
    position: relative;
    top: 6px;
}

.news-bg {
	
    background: #1f2641 no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
}

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

.news-bg .news-head p {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #545c79;
    margin: 0px 0px 10px 0px;
    text-transform: uppercase;
}

.news-bg .news-head h2 {
	
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 10px 0px;
}

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

.news-bg .news .newsbg {
	
    background-size: cover;
	background:#252d4b;
	padding:10px 0px 10px 0px;
    width: 320px;
    margin: 20px auto 20px;
    transition: 0.7s;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
}

.news-bg .news .newsbg:hover {
	
    transition: 0.7s;
	box-shadow:0 0px 10px 0px #00d1e4;
}

.news-bg .news .newsbg .news-sub {
	
	padding:30px 20px 30px 20px;
	text-align:left;
}

.news-bg .news .newsbg .news-sub h4 {
	
	font-family: 'Catamaran', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #00d1e4;
    margin: 0px 0px 20px 0px;
}

.news-bg .news .newsbg .news-sub h2 {
	
	font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 20px 0px;
	line-height: 28px;
}

.news-bg .news .newsbg .news-sub h5 {
	
	font-family: 'Catamaran', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #aab2cd;
    margin: 0px 0px 20px 0px;
	line-height: 26px;
}

.news-bg .news .newsbg .news-sub p {
	
	font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #aab2cd;
    margin: 0px 0px 10px 0px;
}

.crypto-bg {
	
    background: #1f2641 no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
}

.crypto-bg .crypto-head {
	
    padding: 0px 0px 30px;
	text-align:center;
}

.crypto-bg .crypto-head p {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #545c79;
    margin: 0px 0px 10px 0px;
    text-transform: uppercase;
}

.crypto-bg .crypto-head h2 {
	
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 10px 0px;
}

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

.crypto-bg .crypto .crypto1 {
	
    background: #fff;
    border-radius: 5px;
    width: 250px;
    min-height: 240px;
    padding: 30px 0px 30px;
    margin: 20px auto 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.7s;
}

.crypto-bg .crypto .crypto1:hover {
	
	transition:0.7s;
	box-shadow:0 0px 10px 0px #fff;
}

.crypto-bg .crypto .crypto1 img {
	
	margin:auto;
	padding:30px 0px 30px 0px;
}

.partner-bg {
	
    background: #1f2641 no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
}

.partner-bg .partner-head {
	
    padding: 0px 0px 30px;
}

.partner-bg .partner-head p {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #545c79;
    margin: 0px 0px 10px 0px;
    text-transform: uppercase;
}

.partner-bg .partner-head h2 {
	
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 10px 0px;
}

.partner-bg .partner-head p span {
	
    background: #545c79;
    width: 44px;
    height: 2px;
    display: inline-block;
    margin: 0px 10px 0px 0px;
}

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

.partner-bg .partner img {
	
    margin:0px 36px 0px 36px;
}

.cotact-bg {
	
    background: #1f2641 no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
}

.cotact-bg .cotact-head {
	
    padding: 30px 0px 30px;
	text-align:center;
}

.cotact-bg .cotact-head p {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #545c79;
    margin: 0px 0px 20px 0px;
    text-transform: uppercase;
}

.cotact-bg .cotact-head h2 {
	
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 10px 0px;
}

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

.cotact-bg .cotact input {
	
    width: 100%;
    height: 56px;
    padding: 0 30px;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #fff;
    background: #272f4c;
    font-family: 'Catamaran', sans-serif;
    border: 1px solid #272f4c;
    text-align: left;
    margin: 0px 0px 20px 0px;
}

.cotact-bg .cotact textarea {
	
	width: 100%;
    height: 100px;
    padding: 8px 30px !important;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 15px;
    color: #fff;
    background: #272f4c;
    font-family: 'Catamaran', sans-seri
    border: 1px solid #272f4c;
    text-align: left;
}

.cotact-bg .cotact a {
	
	width: 100%;
	font-family: 'Catamaran', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    padding: 14px 36px;
	text-transform:capitalize;
    margin: 20px 0px 0px 0px;
    display: inline-block;
    border-radius: 5px;
	background: linear-gradient(to right,#ed8a4c 0,#ea485c 100%);
	transition:0.7s;
	box-shadow:0 3px 32px rgba(236,117,81,.54);
	
}

.cotact-bg .cotact a:hover {
	
    color: #fff;
    background-image: linear-gradient(to right,#ec814d 0,#ec814d 100%);
    box-shadow:0 3px 32px rgba(237,130,78,.54);
    transition: 0.7s;
}

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

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

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

.foot-bg .foot .foot-logo p {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #a3abca;
	margin:10px 0px 0px 20px;
}

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

.foot-bg .foot .foot-text p {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
	margin:10px 0px 20px 20px;
}

.foot-bg .foot .foot-text a {
	
	margin:0px 0px 0px 10px;
}

.foot-bg .foot .foot-text a i {
	
	font-size: 16px;
    color: #fff;
	border:1px solid #fff;
    background: transparent;
    height: 35px;
    width: 35px;
    text-align: center;
    line-height: 36px;
    display: inline-block;
    border-radius:50px;
	transition: all 500ms ease-in;
}

.foot-bg .foot .foot-text a:hover i, .foot-bg .foot .foot-text a i:hover {
	
	color: #fff;
	background: #ec814e;
	border:1px solid #ec814e;
	transition: transform .8s ease-in-out;
    transform: rotate(360deg);
}

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

.foot-bg .foot .foot-sup p {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
	margin:10px 0px 20px 0px;
}

.foot-bg .foot .foot-sup input {
	
    width: 69%;
    height: 56px;
    padding: 0 30px;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #fff;
    background: #272f4c;
    font-family: 'Catamaran', sans-serif;
    border: 1px solid #272f4c;
    text-align: left;
    margin: 0px 0px 0px 0px;
    float: left;
}

.foot-bg .foot .foot-sup a {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    padding: 14px 36px;
    text-transform: capitalize;
    margin: 0px 0px 0px 0px;
    display: inline-block;
    border-radius: 5px;
    background: linear-gradient(to right,#ed8a4c 0,#ea485c 100%);
    transition: 0.7s;
    box-shadow: 0 3px 32px rgba(236,117,81,.54);
    float: right;
}

.foot-bg .foot .foot-sup a:hover {
	
    color: #fff;
    background-image: linear-gradient(to right,#ec814d 0,#ec814d 100%);
    box-shadow:0 3px 32px rgba(237,130,78,.54);
    transition: 0.7s;
}

.login-bg {
	
    background: #1f2641 no-repeat top center;
    background-size: cover;
    padding: 30px 0px 30px;
}

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

.login-bg .login .login-img {
	
    padding: 30px 0px 30px;
}

.login-bg .login .login-img img {
	
	
}

.login-bg .login .login-box {
	
    padding: 30px 0px 30px;
}

.login-bg .login .login-box .login-logo {
	
    padding: 20px 0px 20px;
}

.login-bg .login .login-box .login-logo img {
	
}

.login-bg .login .login-box .login-mem {
	
    padding: 20px 0px 20px;
	font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.login-bg .login .login-box .login-cont {
	
    padding: 10px 0px 0px;
}

.login-bg .login .login-box .login-cont p {
	
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #aab2cd;
	margin:0px 0px 10px 0px;
}

.login-bg .login .login-box .login-cont input {
	
    width: 100%;
    height: 56px;
    padding: 0 30px;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #fff;
    background: #272f4c;
    font-family: 'Catamaran', sans-serif;
    border: 1px solid #272f4c;
    text-align: left;
    margin: 0px 0px 20px 0px;
}

.login-bg .login .login-box .login-but {
	
    padding: 10px 0px 20px;
}

.login-bg .login .login-box .login-but a {
	
	width: 100%;
	font-family: 'Catamaran', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
	text-align:center;
    padding: 14px 36px;
	text-transform:uppercase;
    margin: 0px 0px 0px 0px;
    display: inline-block;
    border-radius: 5px;
	background: linear-gradient(to right,#ed8a4c 0,#ea485c 100%);
	transition:0.7s;
	box-shadow:0 3px 32px rgba(236,117,81,.54);
	
}

.login-bg .login .login-box .login-but a:hover {
	
    color: #fff;
    background-image: linear-gradient(to right,#ec814d 0,#ec814d 100%);
    box-shadow:0 3px 32px rgba(237,130,78,.54);
    transition: 0.7s;
}

.login-bg .login .login-box .login-forget {
	
    padding: 20px 0px 20px;
}

.login-bg .login .login-box .login-forget p {
	
    font-family: 'Catamaran', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #aab2cd;
	margin:0px 0px 10px 0px;
}

.login-bg .login .login-box .login-forget p a {
	
	font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
	transition:0.7s;
}

.login-bg .login .login-box .login-forget p a:hover {
	
    color: #00d1e4;
	transition:0.7s;
}


.scrollup {
	
    position: fixed;
    bottom: 60px;
    right: 35px;
    display: none;
}

.scrollup: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: 60px;
	height: 60px;
	background:#eb5358;
	border-radius: 50%;
	-webkit-animation: pulse-border 1500ms ease-out infinite;
	animation: pulse-border 1500ms ease-out infinite;
	z-index: -1; 
}

.scrollup i {
	
    width: 45px;
    height: 45px;
    padding: 12px;
    position: relative;
    background: #eb5358;
    border-radius: 30px;
    color: #fff;
    font-size: 18px;
    transition: 0.7s;
    text-align: center;
	z-index: 1;
	display: inline-block;
}

.scrollup i:hover{  

	background: #00d2e6;
    transition: 0.7s;
}

.hi-icon:after {
	
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	content: '';
	-webkit-box-sizing: content-box; 
	-moz-box-sizing: content-box; 
	box-sizing: content-box;
}

.hi-icon:before {
	
	speak: none;
    font-size: 20px;
    line-height: 20px;
    text-transform: none;
    display: block;
    -webkit-font-smoothing: antialiased;
}

.hi-icon {
	
	overflow: hidden;
	-webkit-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
	-moz-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
	transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.hi-icon:after {
	
	display: none;
}

.hi-icon:hover {
	
    background: rgba(255,255,255,1);
    color: #fff;
    box-shadow: 0 0 0 4px rgb(0, 255, 196);
}
.hi-icon:hover:before {
	
	-webkit-animation: toTopFromBottom 0.5s forwards;
	-moz-animation: toTopFromBottom 0.5s forwards;
	animation: toTopFromBottom 0.5s forwards;
}

@-webkit-keyframes toTopFromBottom {
	49% {
		-webkit-transform: translateY(-100%);
	}
	50% {
		opacity: 0;
		-webkit-transform: translateY(100%);
	}
	51% {
		opacity: 1;
	}
}
@-moz-keyframes toTopFromBottom {
	49% {
		-moz-transform: translateY(-100%);
	}
	50% {
		opacity: 0;
		-moz-transform: translateY(100%);
	}
	51% {
		opacity: 1;
	}
}
@keyframes toTopFromBottom {
	49% {
		transform: translateY(-100%);
	}
	50% {
		opacity: 0;
		transform: translateY(100%);
	}
	51% {
		opacity: 1;
	}
}

.about-bg {
	
	/*background: #1f2641;*/
    background: #1f2641 url(images/about-bg.png) no-repeat top center;
    background-size: cover;
    padding: 100px 0px 0px 0px;
    min-height: 924px;
}
.about-bg .about-head
{
}
.about-bg .about-head h4
{
	color: #545c79;
    text-align: left;
	padding-left: 50px;
    position: relative;
	margin-bottom: 30px !important;
	font-size: 16px;
    letter-spacing: 1.2px;
    color: #545c79;
    text-transform: uppercase;
    font-family: 'Catamaran', sans-serif;
    font-weight: 700;
}
.about-bg .about-head h4:after
{
	content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    left: 0;
    border-bottom: 1px solid;
}
.about-bg .about-head h2
{
	text-align: left;
	font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 35px;
    color: #fff;
}
.about-bg .about-head p
{
	margin-bottom: 35px !important;
	font-family: 'Raleway', sans-serif;
	font-size: 40px;
    color: #ffffff;
    line-height: 45px;
    text-align: left;

}
.about-bg .about-para
{
}
.about-bg .about-para p
{
	color: #aab2cd;
    line-height: 30px;
    text-align: left;
	margin-bottom: 38px !important;
	font-family: 'Catamaran', sans-serif;
	font-size: 16px;
}
.about-bg .about-para1
{
}
.about-bg .about-para1 h1
{
	font-size: 18px;
    color: #aab2cd;
    line-height: 30px;
    text-align: left;
	position: relative;
	font-family: 'Catamaran', sans-serif;
	margin-bottom: 12px !important;
    padding-left: 23px !important;
}
.about-bg .about-para1 h1:before
{
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    width: 5px;
    height: 5px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
	background-color: #fff!important;
}
.about-bg  .about-right
{
}
.about-bg  .about-right img
{
	margin: auto;
}
/*************************************************************/
.why-bg {
	
    background-size: cover;
    padding: 25px 0px 25px 0px;
    background-image: url(images/services-bg13.png), url(images/services-bg-13.html);
    background-repeat: no-repeat;
    background-color: #1f2641;
    min-height: 633px;
    background-position: center;
}
.why-bg .why-head
{
}
.why-bg .why-head h4
{
    color: #545c79;
    text-align: center;
	 margin-bottom: 30px !important;
	 font-size: 16px;
    letter-spacing: 1.2px;
    color: #545c79;
    text-transform: uppercase;
    font-family: 'Catamaran', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;

}
.why-bg .why-head h2
{
	text-align: center;
	margin-bottom: 60px !important;
	font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 35px;
    color: #fff;
}
.why-bg  .why-persen
{
	padding-top: 0px;
    position: relative;
    margin: 10px 0px 0px 0px;
}
.why-bg  .why-persen ul
{
	list-style: none;
    padding: 0px;
    margin: 0px;
	text-align: center;
}
.why-bg  .why-persen ul li
{
	display: inline-block;
    padding: 0px 7px;
    margin: 10px auto;
}
.why-bg  .why-persen ul li .whys
{
    background-size: cover;
    position: relative;
    z-index: 1;
    margin-top: 0px;
    width: 201px;
    text-align: center;
    min-height: 239px;
    background-color: #e85f70;
    box-shadow: 0 0 51px rgba(232, 95, 112, 0.74);
    box-shadow: 0 0 51px rgba(232, 95, 112, 0.74);
    border-radius: 11px;
	cursor:pointer;
}

@-webkit-keyframes pulse {

  0% {

    -webkit-transform: scale(1);

    transform: scale(1);

  }



  50% {

    -webkit-transform: scale(1.1);

    transform: scale(1.1);

  }



  100% {

    -webkit-transform: scale(1);

    transform: scale(1);

  }

}



@keyframes pulse {

  0% {

    -webkit-transform: scale(1);

    -ms-transform: scale(1);

    transform: scale(1);

  }



  50% {

    -webkit-transform: scale(1.1);

    -ms-transform: scale(1.1);

    transform: scale(1.1);

  }



  100% {

    -webkit-transform: scale(1);

    -ms-transform: scale(1);

    transform: scale(1);

  }

}



.pulse {

  -webkit-animation-name: pulse;

  animation-name: pulse;

}
.why-bg  .why-persen ul li .whys:hover
{
	transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    animation-name: pulse;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}
.why-bg  .why-persen ul li .whys1
{
    background-color: #fa8936;
    background-image: linear-gradient(-234deg, #ea9d64 0%, #fa8936 100%);
    box-shadow: 0 0 51px rgba(250, 137, 54, 0.74);
}
.why-bg  .why-persen ul li .whys2
{
	background-image: linear-gradient(-234deg, #6ae472 0%, #4bc253 100%);
    box-shadow: 0 0 51px rgba(75, 194, 83, 0.74);
}
.why-bg  .why-persen ul li .whys3
{
    background-color: #0090d5;
    background-image: linear-gradient(-234deg, #29aceb 0%, #0090d5 100%);
    box-shadow: 0 0 51px rgba(0, 144, 213, 0.74);
}
.why-bg  .why-persen ul li .whys img
{
    padding: 50px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.why-bg  .why-persen ul li .whys p
{
	font-size: 16px;
    font-family: 'Raleway', sans-serif;
    color: #fff;
    font-weight: 700;
    text-transform:capitalize;
    line-height: 40px;
    padding: 20px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}
/***********************************************************/
.advan-bg {
    padding: 25px 0px 25px 0px;
    background-image: url(images/cases-bg.png), url(images/cases-imgs.png);
    background-repeat: no-repeat;
    background-color: #1f2641;
    background-size: auto;
    background-position: top 3px left 409px, top 0px right 0px, bottom 0px right 0px, bottom 0px left 0px;
}

.advan-bg .advan-head
{
}
.advan-bg .advan-head h4
{
    color: #545c79;
    text-align: center;
	 margin-bottom: 30px !important;
	 font-size: 16px;
    letter-spacing: 1.2px;
    color: #545c79;
    text-transform: uppercase;
    font-family: 'Catamaran', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;

}
.advan-bg .advan-head h2
{
	text-align: center;
	margin-bottom: 60px !important;
	font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 35px;
    color: #fff;
}

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

.advan-bg .advan .advan1 {
	
	padding: 20px 0px 20px 0px;
    min-height: 170px;
}

.advan-bg .advan .advan-img {
	
	float:left;
	padding:0px 20px 25px 0px;
}
.advan-bg .advan .advan-img:hover
{
/*	transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    animation-name: pulse;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;*/
}
.advan-bg .advan .advan-text {
	
	padding:7px 0px 0px 0px;
}

.advan-bg .advan .advan-text h4 {
	
	font-size: 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.4px;
    margin-bottom: 24px;
}

.advan-bg .advan .advan-text p {
	color: #aab2cd;
    font-weight: 300;
	font-family: 'Raleway', sans-serif;
}
.advan-bg .advan-but {
    text-align: center;
    padding: 28px 0px 30px 0px;
}
.advan-bg .advan-but  .advanbut {
	font-family: 'Raleway', sans-serif;
    font-size: 15px;
    background-image: linear-gradient(to right,#ed8a4c 0,#ea485c 100%);
    color: #fff !important;
    padding: 17px 46px;
    text-transform: uppercase;
    position: relative;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    transition-duration: 0.3s;
    transition-property: transform;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    border: none;
}
.advan-bg .advan-but  .advanbut:hover {
    color: #000;
    background: linear-gradient(90deg, #ed824e 0%,#ed824e 72%) !important;

}
/*********************************************************/
.faq-bg {
	
	background: #1f2641;
    background-size: cover;
    padding: 50px 0px 50px 0px;
    /*min-height: 924px;*/
}
.faq-head
{
}
.faq-head h4
{
    color: #545c79;
    text-align: center;
	 margin-bottom: 30px !important;
	 font-size: 16px;
    letter-spacing: 1.2px;
    color: #545c79;
    text-transform: uppercase;
    font-family: 'Catamaran', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;

}
.faq-head h2
{
	text-align: center;
	margin-bottom: 60px !important;
	font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 35px;
    color: #fff;
}
.faq .row {

    padding: 20px 20px;
    border-bottom: 1px solid #3b4360;
    cursor: pointer;
    background: #1f2641;
    background-size: cover;
    margin: 0px 0px 10px 0px;
    border-radius: 0px 0px 0px 0px;
    transition: 0.7s;


}

.faq-Q {

  margin: 0;
  color: #fff;
  position: relative;
  font-size: 22px;
  font-family: 'Raleway', sans-serif;
  font-weight:600;

}
.faq-Q:hover
{
	color: #00d1e4;
}
.faq-Q:before {

    position: absolute;
    top: 0px;
    width: 10px;
    height: 0px;
    content: '+';
    transition:0.7s;
    right: 15px;
    font-size: 30px;

}

.faq-Q:after {

    position: absolute;
    top: 0px;
    width: 10px;
    height: 0px;
    content: '+';
    transition:0.7s;
    right: 15px;
    font-size: 30px;
	color: #00d1e4;

}

.faq-D {
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;

}
.faqOpen {

    background:#ff5e1db8;
    border-radius: 9px;
}

.faqOpen .row {

    border: 0;
    padding: 20px 20px;
    transition: 0.7s;
    border-bottom: 1px solid #3b4360;

}

.faqOpen .faq-D {

    margin-top: 15px;
    height: inherit;
    opacity: 1;
    color: #aab2cd;
    font-size: 16px;
    line-height: 26px;

  }
.faqOpen .faq-Q:before {
	position: absolute;
    top: 0px;
    width: 10px;
    height: 0px;
    content: '_';
    transition:0.7s;
    right: 15px;
    font-size: 30px;
}

.faqOpen .faq-Q:after {
	position: absolute;
    top: 0px;
    width: 10px;
    height: 0px;
    content: '_';
    transition:0.7s;
    right: 15px;
    font-size: 30px;
}
.press {
  margin: 50px 0 20px;
}
/************************************************************/
.team-bg {
	
    /* background: #1f2641; */
    background: #1f2641 url(images/team-bg.png) no-repeat top center;
    background-size: cover;
    padding: 50px 0px 50px 0px;
}
.team-bg .team-head
{
}
.team-bg .team-head h4
{
	color: #545c79;
    text-align: left;
	padding-left: 50px;
    position: relative;
	margin-bottom: 30px !important;
	font-size: 16px;
    letter-spacing: 1.2px;
    color: #545c79;
    text-transform: uppercase;
    font-family: 'Catamaran', sans-serif;
    font-weight: 700;
}
.team-bg .team-head h4:after
{
	content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    left: 0;
    border-bottom: 1px solid;
}
.team-bg .team-head h2
{
	text-align: left;
	font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 35px;
    color: #fff;
}
.matches-team {
    position: relative;
    padding-top: 0px;
    margin: 50px 0px 20px 0px;
	min-height: 111px;
}
.matches-team img {

	float: left;
}

.matches-team .content {
    text-align: right;
    margin-bottom: 0;
    padding-top: 13px;
    padding-left: 120px;
}
.matches-team .content h3 {

    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    color: #fff;
    background: transparent;
    outline: none;
    padding: 0px 0px 7px 0px;
    text-align: left;
    margin: 0px 0px 0px 0px;
}
.matches-team .content p {
	font-family: 'Raleway', sans-serif;
   	color: #545c79;
    font-size: 16px;
    margin-bottom: 17px;
    line-height: 1;
    background: transparent;
    outline: none;
    padding: 0px 0px 0px 0px;
    text-align: left;
    margin: 0px 0px 0px 0px;
}
.matches-team .content .watch-list {
	list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 15px;
    text-align: left;
}
 .matches-team .content .watch-list li {
	display: inline-block;
    margin-right: 8px;
}
.matches-team .content .watch-list li img{
	width: 23px;
 }
.matches-team .content .watch-list li img:hover{
    transform: translateY(-5px);
}
/************************************************************/
.ad-bg {
	
     background: #1f2641; 
    /*background: #1f2641 url(images/team-bg.png) no-repeat top center;*/
    background-size: cover;
    padding: 50px 0px 50px 0px;
}
.ad-bg  .ad-head
{
}
.ad-bg  .ad-head h4
{
    color: #545c79;
    text-align: center;
	 margin-bottom: 30px !important;
	 font-size: 16px;
    letter-spacing: 1.2px;
    color: #545c79;
    text-transform: uppercase;
    font-family: 'Catamaran', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;

}
.ad-bg  .ad-head h2
{
	text-align: center;
	margin-bottom: 60px !important;
	font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 35px;
    color: #fff;
}
.wpb_wrapper 
{
    margin: 30px auto;
}
.advisor {
    text-align: left;
    display: flex;
    margin-bottom: 80px;
	background: #252d4b;
}
.advisor__img {
    margin-right: 40px;
    margin-bottom: 0px;
}
.advisor__bg{
	position: absolute;
    top: -15%;
    left: -15%;
    width: 59%;
    height: 105%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.vc_custom_1540019071154 {
    background-image: url(images/advisor-avatar-bg3bb2.png);
}
.advisor__img img {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 666px;
    object-fit: cover;
    transition: transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
}
.advisor__img img:hover {
    transform: scale(0.95);
}
.advisor__sn {
    position: absolute;
    top: 87px;
    right: -9px;
    z-index: 999;
}
.advisor__sn img {
    width: 45px !important;
    height: 45px !important;
}
.advisor__content {
    position: relative;
    z-index: 1;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
}
.advisor__title {
	font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 5px;
    line-height: 1;
    margin: 12px 0px 10px;
}
.advisor__post {
    font-size: 16px;
    color: rgb(84, 92, 121);
    line-height: 1;
    margin-bottom: 15px;
	margin-bottom: 20px;
}
.advisor__text
{
    color: rgb(170, 178, 205);
    font-size: 14px;
	margin-bottom: 30px;
}

/************************************************************/
@media only screen and (max-width: 1199px){
}
@media only screen and (max-width: 991px){
	.advan-bg .advan .advan-img {
		float: none;
		text-align: center;
	}
	.advan-bg .advan .advan-text {
		text-align: center;
	}
}
@media only screen and (max-width: 767px){
	.about-bg .about-head h2
	{
		 font-size: 40px;
    	line-height: 45px;
	}
	.why-bg .why-head h2
	{
		 font-size: 40px;
    	line-height: 45px;
	}
	.matches-team {
		position: relative;
		padding-top: 0px;
		margin: 20px auto;
		text-align: center;
		display: table;
	}
	.advisor {
		text-align: center;
		display: inline-block;
	}
	.advisor__img img {
		margin: auto;
		width: 300px;
	}
	.advisor__title {
		margin: 25px 0px 14px 0px;
	}
}
@media only screen and (max-width: 546px){
	.team-member__social {
		-webkit-box-pack: start;
		-webkit-justify-content: flex-start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}







@media only screen and (max-width: 1199px){
	.navbar-brand {
		float: unset !important;
	}
	.navbar-brand>img {
		margin:auto;
	}
	ul.nav li a {
		padding: 0 14px;
	}
	.partner-bg .partner-head {
		padding: 0px 0px 30px;
		text-align: center;
	}
	.partner-bg .partner img {
		margin: 0px 10px 0px 10px;
	}
	.foot-bg .foot .foot-sup input {
		width:100%;
		float:unset;
	}
	.foot-bg .foot .foot-sup a {
		float:unset;
		margin:10px 0px 0px 0px;
	}
}

@media only screen and (max-width: 991px){ 
	.navbar-brand {
		padding:17px 0;
		float: left !important;
	}
	.arrows,.menu-btn,.menu-wrap ul.nav {
		display:none;
	}
	.slicknav_menu {
		display:block;
		background:#1f2641 !important;
	}
	.slicknav_nav a {
		display: inline-block !important;
		transition: 0.7s;
	}
	.slicknav_nav a:hover {
		border-radius: 0px !important;
		background: #ed824e !important;
		color: #ffffff !important;
		transition: 0.7s;
	}
	.video-bg .video .videobg .video-icon {
		padding: 60px 0px 30px;
		float: unset;
	}
	.video-bg .video .videobg .video-text {
		padding: 30px 0px 0px;
		text-align: center;
	}
	.sta-bg .sta {
		text-align:center;
	}
	.sta-bg .sta .sta1 {
		padding: 20px 0px 20px;
		top: 0px;
		left: 0px;
	}
	.sta-bg .sta .sta2 {
		padding: 20px 0px 20px;
		top: 0px;
		left:0px;
	}
	.sta-bg .sta .sta3 {
		padding: 20px 0px 20px;
		top: 0px;
		left: 0px;
	}
	.sta-bg .sta .sta4 {
		padding: 20px 0px 20px;
		top: 0px;
		left: 0px;
	}
	.sta-bg .sta .sta-img {
		display:none;
	}
	.facts-bg1 {
		padding: 30px 0px 0px;
	}
	.facts-bg1 .facts-head {
		padding: 0px 0px 30px;
	}
	.facts-bg {
		background: #1f2641 no-repeat top center;
		background-size: cover;
		padding: 0px 0px 30px;
	}
	.facts-bg .facts .fact1 {
		padding: 20px 0px 20px;
		position: relative;
		top: 0px;
	}
	.facts-bg .facts .fact2 {
		padding: 20px 0px 20px;
		position: relative;
		top: 0px;
	}
	.facts-bg .facts .fact3 {
		padding: 20px 0px 20px;
		position: relative;
		top: 0px;
	}
	.facts-bg .facts .fact4 {
		padding: 20px 0px 20px;
		position: relative;
		top: 0px;
	}
	.facts-bg .facts .fact5 {
		padding: 20px 0px 20px;
		position: relative;
		top: 0px;
	}
	.token-bg .token .token-head {
		padding: 0px 0px 30px;
		text-align: center;
	}
	.docs-bg .docs-head {
		padding: 0px 0px 30px;
		text-align:center;
	}
	.partner-bg .partner img {
		margin: 10px 10px 10px 10px;
	}
	.foot-bg .foot {
		text-align:center;
	}
	.foot-bg .foot .foot-logo {
		padding:0px 0px 0px 0px;
	}
	.foot-bg .foot .foot-logo img {
		margin:auto;
	}
	.foot-bg .foot .foot-sup {
		padding: 0px 0px 0px;
	}
	.login-bg .login .login-img {
		padding: 0px 0px 0px;
	}
	.login-bg .login .login-box {
		padding: 0px 0px 0px;
	}
	.login-bg .login .login-box .login-logo img {
		margin: auto;
	}
}

@media only screen and (max-width: 767px){ 
	#timeline .timeline-movement .timeline-item .timeline-panel.debits .timeline-panel-ul {
		text-align: center;
	}
	#timeline .timeline-movement .timeline-item .timeline-panel.credits .timeline-panel-ul {
		text-align: center;
	}
	#timeline .timeline-badge {
		display:none;
	}
	#timeline:before {
		display:none;
	}
	.partner-bg .partner {
		padding: 0px 0px 30px;
		text-align: center;
	}
	.partner-bg .partner img {
		margin: 30px auto 30px;
		display:block;
	}
	.road-bg .road-img {
		display:none;
	}
}

@media only screen and (max-width: 560px){
	.docs-bg .data-head {
		padding: 20px 0px 0px;
		text-align: center;
	}
}






