/*---------------------------------------- DEFAULT ----------------------------------------*/
body {
  position: relative;
  font-family: 'Source Sans Pro', sans-serif;
  color: #323c5a;
}

#headerLogoImg {
  transition: all 1s;
}

a, a:hover {
  text-decoration: none;
  color: inherit;
}

/*section {
  height: 100vh;
}*/

.h1, .h2, .h3, .h4, .h5, .h6, .h7, h1, h2, h3, h4, h5, h6 {
  display: block;
  margin-bottom: 0;
  font-weight: 400;
}

.h7 {
  font-size: 0.875rem;
  font-weight: 700;
}

/*---------------------------------------- GRADIENTS ----------------------------------------*/

.gradient-gray {
  background: #eef1f6;
  background: -moz-linear-gradient(105deg, #eef1f6 0%, #fcfdfd 100%);
  background: -webkit-linear-gradient(105deg, #eef1f6 0%,#fcfdfd 100%);
  background: linear-gradient(105deg, #eef1f6 0%,#fcfdfd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eef1f6', endColorstr='#fcfdfd',GradientType=1 );
}

/*---------------------------------------- BUTTONS ----------------------------------------*/

/*Button Outline Main*/
.btn-outline-main {
  color: #FFF;
  background-color: transparent;
  background-image: none;
  border-color: #FFF;
  padding: 8px 16px;
  border-radius: 100px;
  font-family: 'Lato', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
  letter-spacing: .2px
}

.btn-outline-main.-nav:not(:first-of-type) {
  margin-left: 12px;
}

.btn-outline-main:not(:disabled):not(.disabled).active, 
.btn-outline-main:not(:disabled):not(.disabled):active, 
.show>.btn-outline-main.dropdown-toggle {
  color: #0ec0d7;
  background-color: #FFF;
  border-color: #FFF;
}

.btn-outline-main.focus, 
.btn-outline-main:focus {
  box-shadow: none;
}

.btn-outline-main:hover {
  color: #0ec0d7;
  background-color: #FFF;
  border-color: #FFF;
}

/* Button Main */
.btn-main {
  padding: 4px 24px;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFF;
  outline: 0;
  /*Gradient*/
  background: #8468f5;
  background: -moz-linear-gradient(left, #8468f5 0%, #ec74e7 100%);
  background: -webkit-linear-gradient(left, #8468f5 0%,#ec74e7 100%);
  background: linear-gradient(to right, #8468f5 0%,#ec74e7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8468f5', endColorstr='#ec74e7',GradientType=1 );
  /*Box Shadow*/
  -webkit-box-shadow: 0px 8px 24px -4px rgba(50,60,90,0.4);
  -moz-box-shadow: 0px 8px 24px -4px rgba(50,60,90,0.4);
  box-shadow: 0px 8px 24px -4px rgba(50,60,90,0.4);
  /*Transition*/
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.header-team .btn-main {
  padding: 15px 24px;
  border-radius: 50px;
  font-size: 1.875rem;
}

/* Link as button */
a.btn-main {
    text-decoration: none;
    color: #FFF;
}
a.btn-main:active,
a.btn-main:focus,
a.btn-main:hover {
    color: #FFF;
}

.btn-main > .btn-icon {
  margin-left: 12px;
}

.btn-main.-signup,
.btn-main.-signup-plane {
  position: absolute;
  top: 8px;
  right: 8px;
}

.btn-main.-signup-plane {
  padding: 4px 16px;
  font-weight: 400;
}

.btn-main.-chat {
  padding: 4px 12px;
  font-size: 0.8125rem;
  font-weight: 400;
  box-shadow: none;
  position: absolute;
  bottom: 18px;
}

.btn-main.-modal {
  display: block;
  padding: 8px 64px;
  margin: 0 auto;
  max-width: 250px;
}

.btn-main.focus, 
.btn-main:focus {
  /*Box Shadow*/
  -webkit-box-shadow: 0px 8px 24px -4px rgba(50,60,90,0.4);
  -moz-box-shadow: 0px 8px 24px -4px rgba(50,60,90,0.4);
  box-shadow: 0px 8px 24px -4px rgba(50,60,90,0.4);
}

.btn-main:hover {
  /*Gradient*/
  background: #967dfa;
  background: -moz-linear-gradient(left, #967dfa 1%, #fd8df9 100%);
  background: -webkit-linear-gradient(left, #967dfa 1%,#fd8df9 100%);
  background: linear-gradient(to right, #967dfa 1%,#fd8df9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#967dfa', endColorstr='#fd8df9',GradientType=1 );
}

.btn.btn-main:not(:disabled):not(.disabled).active, 
.btn.btn-main:not(:disabled):not(.disabled):active {
  /*Gradient*/
  background: #967dfa;
  background: -moz-linear-gradient(left, #967dfa 1%, #fd8df9 100%);
  background: -webkit-linear-gradient(left, #967dfa 1%,#fd8df9 100%);
  background: linear-gradient(to right, #967dfa 1%,#fd8df9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#967dfa', endColorstr='#fd8df9',GradientType=1 );
}

/*---------------------------------------- MAIN NAVIGATION SECTION ----------------------------------------*/
/* Navbar */
.navbar {
  padding-top: 64px;
  background: transparent;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

.navbar-light .navbar-toggler {
  color: transparent;
  border-color: transparent;
}

.navbar-light .navbar-toggler:focus {
  outline: none;
}

.navbar-toggler-icon.-menu {
  background-image: url(../img/icons/ic-menu.svg);
  width: 22px;
  height: 22px;
}
.navbar-toggler-icon.-user {
  background-image: url(../img/icons/user.svg);
  width: 22px;
  height: 22px;
}
.navbar-brand{
    margin-left: 17px;
}
.navbar-brand > .brand-logo {
  max-height: 24px;
}
.nav-item {
    margin: 0 13px;
}
@media (max-width: 991px) {
  .navbar-brand > .brand-logo {
    max-height: 15px;
  }

  .footer {
    position: relative !important;
    float: left !important;
  }

}

/*Navbar container*/
.navbar-container {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    /*flex-grow: 1;*/
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.embed-responsive-item {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 7px;
}
@media (min-width: 992px) {
  .navbar-container {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}

.navbar-collapse.-user {
  margin-left: 40px
}

@media (max-width: 991px) {
  .navbar-collapse.-user {
    margin-left: 0;
  }
  .navbar-collapse.-user > .button-container {
    float: right;
    padding: 16px 0;
  }
  .navbar-collapse.-user > .button-container > .btn-outline-main {
    display: block;
    width: 100%;
    max-width: 120px;
    margin: 16px 0;
    text-align: center;
  }
}

.navbar-light .navbar-nav .nav-link {
  color: #FFF;
  border-bottom: 1px solid;
  border-color: transparent;
  font-size: 0.875rem;
  font-weight: 700;
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}

.navbar-light .navbar-nav .active>.nav-link, 
.navbar-light .navbar-nav .nav-link.active, 
.navbar-light .navbar-nav .nav-link.show, 
.navbar-light .navbar-nav .show>.nav-link {
  color: #FFF;
  border-color: #fff;
}

.navbar-light .navbar-nav .nav-link:focus, 
.navbar-light .navbar-nav .nav-link:hover {
  color: #FFF;
  border-color: #fff;
}

/*Navbar Scrolled*/

.navbar.-scrolled {
  padding: 32px 16px;
  background: #fff;
  box-shadow: 0 2px 11px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 11px 0 rgba(0, 0, 0, 0.08);
}

.navbar.-scrolled .navbar-nav .nav-link {
  color: #323c5a;
}

.navbar.-scrolled .navbar-nav .active>.nav-link, 
.navbar.-scrolled .navbar-nav .nav-link.active, 
.navbar.-scrolled .navbar-nav .nav-link.show, 
.navbar.-scrolled .navbar-nav .show>.nav-link {
  color: #9069f3;
  border-color: transparent;;
}

.navbar.-scrolled .navbar-nav .nav-link:focus, 
.navbar.-scrolled .navbar-nav .nav-link:hover {
  color: #9069f3;
  border-color: transparent;;
}

/*Navbar buttons scrolled*/

.navbar.-scrolled .btn-outline-main {
  color: #323c5a;
  border-color: #323c5a;
}

.navbar.-scrolled .btn-outline-main:not(:disabled):not(.disabled).active, 
.navbar.-scrolled .btn-outline-main:not(:disabled):not(.disabled):active, 
.show>.navbar.-scrolled .btn-outline-main.dropdown-toggle {
  color: #FFF;
  background-color: #9069f3;
  border-color: #9069f3;
}

.navbar.-scrolled .btn-outline-main.focus, 
.navbar.-scrolled .btn-outline-main:focus {
  box-shadow: none;
}

.navbar.-scrolled .btn-outline-main:hover {
  color: #FFF;
  background-color: #9069f3;
  border-color: #9069f3;
}

/*Navbar Mobile*/
.navbar.-mobile {
  padding: 16px;
  background: #323c5a;
}

.navbar.-mobile .btn-outline-main:not(:disabled):not(.disabled).active, 
.navbar.-mobile .btn-outline-main:not(:disabled):not(.disabled):active, 
.show>.navbar.-mobile .btn-outline-main.dropdown-toggle {
  color: #323c5a;
}

.navbar.-mobile .btn-outline-main:hover {
  color: #323c5a;
}

/*---------------------------------------- HOME SECTION ----------------------------------------*/
.-page{
    background-size: auto 680px !important;
    padding: 231px 0 50px !important;
    background-position: center top !important;
}
.-page ol{
    list-style: none;
}
.section.-home {
  padding: 112px 0 50px;
  background-image: url(../img/background-hero.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
.-page .container{
    padding:20px;
    background: rgba(255,255,255,.4)
}
@media screen and (max-width: 767px) {
  .section.-home {
    padding: 72px 0 0;
    background-image: url(../img/background-hero-small.svg);
  }
}

.row.-home {
  padding: 0 17px;
}

/*Title*/
.title-box {
  margin-top: 112px;
}

.title-box .desc {
  margin-top: 16px;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .title-box {
    margin-top: 40px;
    color: #fff;
    text-align: center;
  }
  .title-box .desc {
    font-size: 18px;
  }
}
#subscription{
  background-color: #f7f8ff;
}

/*Subscription*/
.subscription-box {
  position: relative;
}

.subscription-box.-home {
  margin-top: 48px;
}

@media screen and (max-width: 767px) {
  .subscription-box.-home {
    margin-top: 40px;
  }
  .subscription-box.-home > .title {
    text-align: center;
  }
}

.subscription-box.-main {
  margin-top: 88px;
  color: #6772e5;
  text-align: center;
  z-index: 1;
}

.subscription-box.-home > .form_info {
  position: absolute;
  top: 78px;
  max-width: 420px;
  text-align: center;
}

.subscription-box.-main > .form_info {
  position: absolute;
  top: 126px;
  left: 50%;
  max-width: 420px;
  text-align: center;
  transform: translateX(-50%);
}

.subscription-box.-main > .title {
  font-size: 1.125rem;
  font-weight: normal;
  letter-spacing: 0.5px;
}

.subscription-box.-main > .title:first-of-type {
  color: #6772e5;
}

.subscription-box.-main > .title:last-of-type {
  color: #32325d;
}

.subscription-form, #login_button {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 8px 8px 8px 24px;
  border-radius: 30px;
  background: #FFF;
  border: 1px solid #FFF;
  box-sizing: border-box;
  /*Box Shadow*/
  -webkit-box-shadow: 0px 30px 24px -15px rgba(50,60,90,0.2);
  -moz-box-shadow: 0px 30px 24px -15px rgba(50,60,90,0.2);
  box-shadow: 0px 30px 24px -15px rgba(50,60,90,0.2);
}
.header-team #login_button {
    max-width: 500px;
    -webkit-box-shadow: 0px 5px 5px -15px rgba(50,60,90,0.2);
    -moz-box-shadow: 0px 5px 5px -15px rgba(50,60,90,0.2);
    box-shadow: 0px 5px 5px -15px rgba(50,60,90,0.2);
    margin: 30px auto;
    padding: 8px;
    border-radius: 50px;
}
.-buyMoats {
    width: 100%;
}

.subscription-form.-home {
  margin-top: 8px;
}

.subscription-form > .error-msg {
  position: absolute;
  top: 48px;
  left: 28px;
}

.subscription-form.error {
  border-color: #dc3545!important;
}

#login_button span{
    margin-bottom:20px;
}

@media screen and (max-width: 767px) {
  .subscription-form.-home{
    margin: 8px auto 0;
  }
  #subscription-home{
    margin: 0 auto;
  }
  #login_button{
    margin: 30px auto;
  }
  .header-team #login_button{
    padding: 8px;
    max-width: 350px;
  }
  .header-team .btn-main {
    padding: 4px 24px;
    border-radius: 30px;
    font-size: 0.875rem;
  }
}

.subscription-form.-main {
  margin: 24px auto 0; 
}

.subscription-form > input {
  display: block;
  width: 100%;
  padding: 4px;
  outline: 0;
  border: none;
  color: #9c9b9f;
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
}

.subscription-form.-home > input {
  padding-right: 100px;
}

.subscription-form.-main > input {
  padding-right: 120px;
}
 
/*Social*/
.social-box.-home {
  margin-top: 1.5rem;
}

@media screen and (max-width: 767px) {
  .social-box.-home {
    text-align: center;
  }
}

.social-box > .list {
  list-style: none;
  margin-top: 1rem;
  padding-left: 0;
}

.social-box > .list > li {
  display: inline-block;
}
.-registerSuc .modal-body{
    background: #f2f4ff;
    text-align: center;
}
.-registerSuc btn{
    max-width:228px;
}
/*Countdown*/
.countdown-box {
  max-width: 360px;
  text-align: center;
}

.countdown-box.-desktop {
  margin: 112px auto 0;
}

.countdown-box.-mobile {
  margin: 35px auto 0;
}

.countdown-box > .title {
  color: #fff;
  letter-spacing: 1px;
}

.countdown-box > .row.-countdown {
  margin-top: 8px;
}

.countdown-box > .row.-countdown > .col-3 {
  padding: 0;
}

.countdown-box .number {
  display: block;
  margin: 0 auto;
  color: #FFF;
  font-family: 'Lato', sans-serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 4px;
}

@media screen and (max-width: 767px) {
  .countdown-box .number {
    font-size: 32px;
  }
}

.countdown-box .word {
  display: block;
  width: 80px;
  margin: 8px auto 0;
  padding: 10px 0;
  background: #FFF;
  color: #0b5760;
  border-radius: 20px;
  font-family: 'Lato', sans-serif;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .countdown-box .word {
    width: 64px;
    font-size: 8px;
  }
}

/*Progress*/
.countdown-box > .row.-progress {
  margin-top: 32px;
}

.countdown-box .progress {
  width: 100%;
  max-width: 264px;
  height: 8px;
  margin: 0 auto;
}

.countdown-box .progress > .progress-bar {
  border-radius: 8px;
  /*Gradient*/
  background: #8b68f4;
  background: -moz-linear-gradient(left, #8b68f4 0%, #e874e8 100%);
  background: -webkit-linear-gradient(left, #8b68f4 0%,#e874e8 100%);
  background: linear-gradient(to right, #8b68f4 0%,#e874e8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8b68f4', endColorstr='#e874e8',GradientType=1 );
}

.countdown-box .progress-tooltip {
  position: relative;
  max-width: 190px;
  margin: 16px auto;
  padding: 20px 15px;
  background: #FFF;
  border-radius: 8px;
  /*Box Shadow*/
  -webkit-box-shadow: 0px 8px 24px -4px rgba(50,60,90,0.4);
  -moz-box-shadow: 0px 8px 24px -4px rgba(50,60,90,0.4);
  box-shadow: 0px 8px 24px -4px rgba(50,60,90,0.4);
}

.countdown-box .progress-tooltip::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  content: '';
  width: 16px;
  height: 16px;
  background: #fff;
  /*Transform*/
  -ms-transform: rotate(45deg) translate(-50%, 0);
  -webkit-transform: rotate(45deg) translate(-50%, 0);
  transform: rotate(45deg) translate(-50%, 0);
}

.countdown-box .progress-tooltip > .desc {
  margin: 0;
  font-size: 0.875rem;
  text-align: center;
}

.countdown-box .progress-tooltip > .desc > .data {
  color: #9069f3;
  font-weight: 700;
  font-size: 1.5rem;
}
/*---------------------------------------- preloader --------------------------------------------*/
@media screen {
	div#preloader {
		position: absolute;
		left: -9999px;
		top:  -9999px;
    }
	div#preloader img {
		display: block;
    }
}
@media print {
	div#preloader, 
	div#preloader img {
		visibility: hidden;
		display: none;
    }
}
/*---------------------------------------- VIDEO SECTION ----------------------------------------*/
.section.-video {
  position: relative;
  padding-bottom: 56px;
  overflow: hidden;
}

.video-content {
  position: relative;
  width: 100%;
  max-width: 544px;
  height: 380px;
  margin: 112px auto 0;
  /*Z-Index*/
  z-index: 1;
}

.video-content > .video-container {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  max-width: 464px;
  height: 262px;
  border-radius: 6px;
  -webkit-transform: translate(10%, -50%);
  -moz-transform: translate(10%, -50%);
  transform: translate(10%, -50%);
  /*Gradient*/
  background-image: linear-gradient(#ffffff, #ffffff);
  background-blend-mode: multiply;
  /*z-index*/
  z-index: 4;
}

.video-content > .bckg {
  position: absolute;
  border-radius: 6px;
  /*Box Shadow*/
  -webkit-box-shadow: 0 12px 25px 0 rgba(0, 0, 0, 0.49);
  -moz-box-shadow: 0 12px 25px 0 rgba(0, 0, 0, 0.49);
  box-shadow: 0 12px 25px 0 rgba(0, 0, 0, 0.49);
}

.video-content > .bckg-1 {
  top: 0;
  right: 0;
  width: 356px;
  height: 235px;
  /*Gradient*/
  background: #2ecee3;
  background: -moz-linear-gradient(-41deg, #2ecee3 0%, #69e6f7 100%);
  background: -webkit-linear-gradient(-41deg, #2ecee3 0%,#69e6f7 100%);
  background: linear-gradient(139deg, #2ecee3 0%,#69e6f7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2ecee3', endColorstr='#69e6f7',GradientType=1 );
  /*zindex*/
  z-index: 3;
}

.video-content > .bckg-2 {
  width: 288px;
  height: 235px;
  bottom: 32px;
  right: -10px;
  background: #5d90bb; 
  /*Zindex*/
  z-index: 2;
}

.video-content > .bckg-3 {
  bottom: 0;
  left: 50%;
  width: 356px;
  height: 235px;
  border-radius: 6px;
  background-color: #5d64bb;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
  /*zindex*/
  z-index: 1;
}

.video-content > .bckg-4 {
  bottom: 0;
  right: 0;
  width: 356px;
  height: 235px;
  /*Gradient*/
  background: #2ecee3;
  background: -moz-linear-gradient(-41deg, #2ecee3 0%, #69e6f7 100%);
  background: -webkit-linear-gradient(-41deg, #2ecee3 0%,#69e6f7 100%);
  background: linear-gradient(139deg, #2ecee3 0%,#69e6f7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2ecee3', endColorstr='#69e6f7',GradientType=1 );
  /*zindex*/
  z-index: 2;
}

.video-content > .bckg-5 {
  width: 288px;
  height: 235px;
  top: 32px;
  right: 10px;
  background: #5d90bb; 
  /*Zindex*/
  z-index: 3;
}

.video-content > .bckg-6 {
  top: 0;
  left: 50%;
  width: 356px;
  height: 235px;
  border-radius: 6px;
  background-color: #5d64bb;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
  /*zindex*/
  z-index: 1;
}
/*Lines*/
.video-content > .ln {
  position: absolute;
}

.video-content > .line-1 {
  bottom: -50px;
  left: 40%;
}

.video-content > .line-2 {
  top: -96px;
  left: 50%;
}

.video-content > .line-3 {
  top: -56px;
  left: calc(50% + 56px);
}

.video-content > .line-4 {
  top: 55%;
  left: 50%;
}

.video-content > .line-5 {
  top: 100%;
  left: 50%;
}

.video-content > .line-6 {
  top: -50px;
  left: calc(70% + 56px);
}
@media screen and (max-width: 765px) {
    .video-content > .video-container {
      -webkit-transform: translate(0, -50%);
      -moz-transform: translate(0, -50%);
      transform: translate(0, -50%);
    }
    .video-content > .bckg-1 {
        right:40px;
    }
    .video-content > .bckg-4 {
        right:60px;
    }
}
@media screen and (max-width: 419px) {
  .video-content {
    height: 270px;
  }
  .video-content > .video-container {
    width: 320px;
    height: 196px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .video-content > .bckg-1 {
    width: 245px;
    height: 160px;
    right:40px;
  }
  .video-content > .bckg-2 {
    width: 200px;
    height: 160px;
    bottom: 8px;
    right: 16px;
  }
  .video-content > .bckg-3 {
    width: 245px;
    height: 160px;
    bottom: -16px;
    left: 0;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  .video-content > .bckg-4 {
    width: 245px;
    height: 160px;
    right:60px;
  }
  .video-content > .bckg-5 {
    width: 200px;
    height: 160px;
    bottom: 8px;
    right: 16px;
  }
  .video-content > .bckg-6 {
    width: 245px;
    height: 160px;
    bottom: -16px;
    left: 0;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}

@media screen and (max-width: 319px) {
  .video-content > .video-container {
    width: 100%;
  }
}
/*Textbox*/

.text-box.-video {
  position: relative;
  width: 100%;
  margin-top: 144px;
  padding: 50px 72px;
  border-radius: 3px;
  background-color: #ffffff;
  /*Box Shadow*/
  -webkit-box-shadow: 0 6px 8px 0 rgba(164, 164, 164, 0.21);
  -moz-box-shadow: 0 6px 8px 0 rgba(164, 164, 164, 0.21);
  box-shadow: 0 6px 8px 0 rgba(164, 164, 164, 0.21);
  /* zindex */
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .text-box.-video {
    margin-top: 96px;
    padding: 24px;
  }
}

.text-box.-video > p {
  margin-bottom: 0;
  font-size: 1.125rem;
  text-align: justify;
  letter-spacing: 0.5px;
}

/*Partnersbox*/
.partners-box {
  position: relative;
  margin-top: 88px;
  padding: 0 15px;
  /*gutter fix*/
  font-size: 0;
}

.partners-box:before {
    width: 100%;
    height: auto;
    -webkit-transform: skewY(350deg);
    -moz-transform: skewY(350deg);
    transform: skewY(350deg);
    background: #eef1f6;
    background: -moz-linear-gradient(top, #eef1f6 0%, #fcfdfd 100%);
    background: -webkit-linear-gradient(top, #eef1f6 0%,#fcfdfd 100%);
    background: linear-gradient(to bottom, #eef1f6 0%,#fcfdfd 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eef1f6', endColorstr='#fcfdfd',GradientType=0 );
    content: "";
    position: absolute;
    top: -800%;
    bottom: -800%;
}

.partners-box > .partner {
  display: inline-block;
  text-align: center;
}
.partner .link {
    display: block;
    width: 100%;
    height: 100%;
}
.partner.col-4{
    margin-bottom:40px; 
}
.partners > div{
    width:12.5%;
    margin:20px 0;
    display: block;
    float: left;
}
.trackers > div{
    width:16.666666%;
    margin:20px 0;
    display: block;
    float: left;
}
.exch{
  padding-left:0 !important;
}
.partners img{
    width:100%;
}
.trackers img{
    width:80%;
    margin:0 10%;
}
@media screen and  (max-width: 992px) {
    .partners > div, .trackers > div{
        width:20%;
        margin:20px 0;
    }
}
@media screen and  (max-width: 767px) {
    .partners > div, .trackers > div{
        width:25%;
        margin:20px 0;
    }
}
@media screen and  (max-width: 600px) {
    .partners > div, .trackers > div{
        width:33.33333333%;
        margin:20px 0;
    }
}
@media screen and  (max-width: 767px) {
  .partners-box {
    text-align: center;
  }
  .partners-box > .partner {
    margin: 16px;
  }
}

.partner > .link > .image {
  max-height: 60px;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: filter 0.3s ease-in-out;
  -moz-transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
}

.partner > .link > .image:hover {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  filter: grayscale(0%);
}

/*Chatbox*/

.chat-box {
    position: fixed;
    bottom: 93px;
    right: 20px;
    padding: 18px;
    background: #fff;
    border-radius: 10px;
    z-index: 1000;
    border:solid 2px #620099;
    -webkit-box-shadow: 0 14px 28px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 14px 28px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 14px 28px 0 rgba(0, 0, 0, 0.1);
}

.chat-box .h7 {
    font-size: 1.1rem;
    margin-right: 50px;
}

.chat-box > .desc {
  display: block;
  font-size: 1rem;
  color: #898989;
  margin-bottom: 50px;
}

.chat-box > .chat-img {
  display: inline-block;
  vertical-align: middle;
  width: 50px;
  height: 50px;
  margin-left: 18px;
  border: 1px solid #e9e9e9;
  border-radius: 50%;
  box-sizing: border-box;
  overflow: hidden;
  position: absolute;
  right: 18px;
  bottom: 18px;
}
.chat-box > .chat-img img {
    width: 100%;
}
#ico-bonuses{
    width:100%;
    height:auto;
    position:relative;
}

#ico-bonuses:before{
    width:100%;
    height: auto;
    -webkit-transform:skewY(350deg);
    -moz-transform:skewY(350deg);
    transform:skewY(350deg);
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1a233e+0,323c5a+100 */
    background: rgb(26,35,62); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(26,35,62,1) 0%, rgba(50,60,90,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(26,35,62,1) 0%, rgba(50,60,90,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(26,35,62,1) 0%, rgba(50,60,90,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1a233e',endColorstr='#323c5a',GradientType=0 ); /* IE6-9 */
    content: "";
    position: absolute;
    top: -15%;
    bottom: -35%;
}
.header-ico h1 {
  position: relative;
  font-family: Lato;
  font-size: 40px;
  font-weight: 900;
  z-index: 1;
  color: #FFF;
  text-align: center;
}
.bonuses-tab{
    position:relative;
    width:100%;
    height: auto;
    padding-top:65%;
    margin-top:50px;
    margin-bottom:120px;
}
.boxer{
    width:14.2857%;
    position: absolute;
    bottom: 0;
    background: #ccc;
    cursor: pointer;
}
.box1{
    height:100%;
    opacity: 0.63;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#7b68a1+0,134074+94,13315c+100 */
    background: rgb(123,104,161); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(123,104,161,1) 0%, rgba(19,64,116,1) 80%, rgba(19,49,92,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(123,104,161,1) 0%,rgba(19,64,116,1) 80%,rgba(19,49,92,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(123,104,161,1) 0%,rgba(19,64,116,1) 80%,rgba(19,49,92,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7b68a1', endColorstr='#13315c',GradientType=0 ); /* IE6-9 */
}
.box2, .box3, .box4, .box5, .box6, .box7{
    opacity: 0.63;
    background: rgb(132,104,245); /* Old browsers */
    background: -moz-linear-gradient(1deg, rgba(132,104,245,1) 0%, rgba(183,65,178,1) 42%, rgba(236, 116, 231,0) 69%, rgba(12,12,12,0.21) 100%), linear-gradient(rgba(12, 12, 12, 0.21), rgba(12, 12, 12, 0.21)); /* FF3.6-15 */
    background: -webkit-linear-gradient(1deg, rgba(132,104,245,1) 0%,rgba(183,65,178,1) 42%,rgba(236, 116, 231,0) 69%,rgba(12,12,12,0.21) 100%), linear-gradient(rgba(12, 12, 12, 0.21), rgba(12, 12, 12, 0.21)); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(181deg, rgba(132,104,245,1) 0%,rgba(183,65,178,1) 42%,rgba(236, 116, 231,0) 69%,rgba(12,12,12,0.21) 100%), linear-gradient(rgba(12, 12, 12, 0.21), rgba(12, 12, 12, 0.21)); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8468f5', endColorstr='#0c0c0c',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.boxH2, .boxH3, .boxH4, .boxH5, .boxH6, .boxH7{
    display: none;
    position:absolute;
    width:200px;
    height:80px;
    margin-left:-100px;
    margin-top:-100px;
    background: #FFF;
    border-radius:4px;
    border:none;
    text-align: center;
}
.box2:hover, .box3:hover, .box4:hover, .box5:hover, .box6:hover, .box7:hover{
    background: -moz-linear-gradient(1deg, rgba(132,104,245,1) 0%, rgba(183,65,178,1) 42%, rgba(236, 116, 231,0) 69%, rgba(12,12,12,0.21) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(1deg, rgba(132,104,245,1) 0%,rgba(183,65,178,1) 42%,rgba(236, 116, 231,0) 69%,rgba(12,12,12,0.21) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(181deg, rgba(132,104,245,1) 0%,rgba(183,65,178,1) 42%,rgba(236, 116, 231,0) 69%,rgba(12,12,12,0.21) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8468f5', endColorstr='#0c0c0c',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.textUper{
    width:100%;
    height:40px;
    line-height: 40px;
    font-weight: 400;
    font-size: 1.1rem;
    position: absolute;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border:none; 
    background: #aeaeae;
}
.boxH:before{
    position: absolute;
    bottom: -10px;
    left:88px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 10px solid #FFF;
    content:"";
}
.boxH{
    line-height: 40px;
}
.boxH i, .boxH b{
    color:#9069f3;
}
.boxH i{
    font-weight: 100;
    font-style: normal;
    font-size: 1.3rem;
}
.boxH b{
    font-weight: 600;
    font-size: 1.7rem;
}
.boxH span{
    font-weight: 400;
    font-size: 1.5rem;
}
.bonussesTxt{
    position:absolute;
    width:14.2857%;
    top:42.3%;
    text-align: center;
    padding-top:.5%; 
}
.bonussesTxt b{
    font-size:2rem;
    color:#50e3c2;
}
.bonussesTxt p{
    font-size: 1rem;
    color:#FFF;
    width: 80%;
    margin-left:10%
}
.boxH2{
    left:21.4285%;
    top:14.2857%;
}
.boxH3{
    left:35.7142%;
    top:28.5714%;
}
.boxH4{
    left:50%;
    top:42.6571%;
}
.boxH5{
    left:64.2857%;
    top:57.1428%;
}
.boxH6{
    left:78.5714%;
    top:71.4285%;
}
.boxH7{
    left:92.8571%;
    top:85.7142%;
}
.box2{
    height:85.7142%;
}
.box2:hover~.boxH2{
    display: block;
}
.box3{
    height:71.4285%;
}
.box3:hover~.boxH3{
    display: block;
}
.box4{
    height:57.1428%;
    opacity: 0.63;
}
.box4:hover~.boxH4{
    display: block;
}
.box5{
    height:42.6571%;
}
.box5:hover~.boxH5{
    display: block;
}
.box6{
    height:28.5714%;
}
.box6:hover~.boxH6{
    display: block;
}
.box7{
    height:14.2857%;
}
.box7:hover~.boxH7{
    display: block;
}
.box1, .line-v0{
    left:0;
}
.box2, .line-v1{
    left:14.2857%;
}
.box3, .line-v2{
    left:28.5714%;
}
.box4, .line-v3{
    left:42.8571%;
}
.box5, .line-v4{
    left:57.1428%;    
}
.box6, .line-v5{
    left:71.4285%;
}
.line-v6{
    right:14.2857%;
}
.box7, .line-v7{
    right:0;
}
.line-h{
    width:100%;
    height: 0;
    border-top:solid 1px #7b5d87;
    position: absolute;
    left:0;
}
.line-h0{
    top:0;
}
.line-h1{
    top:14.2857%;
}
.line-h2{
    top:28.5714%;
}
.line-h3{
    top:42.6571%;
}
.line-h4{
    top:57.1428%;
}
.line-h5{
    top:71.4285%;
}
.line-h6{
    top:85.7142%;
}
.line-h7{
    top:100%
}
.line-v{
    height:100%;
    width: 0;
    border-left:solid 1px #7b5d87;
    position: absolute;
    top:0;
}
.gran-t{
    width:14.2857%;
    height:0;
    position: absolute;
}
.gran-r{
    width:0;
    height:14.2857%;
    position: absolute;
}
.gran-t .liner, .gran-r .liner{
    background: #50e3c2;
    position: absolute;
}
.gran-t .liner{
    width:auto;
    height:4px;
    left:-2px;
    top:-2px;
    right:-2px;
}
.gran-r .liner{
    width:4px;
    height:auto;
    top:-2px;
    left:-2px;
    bottom:-2px;
}
.granica1t{
    top:0;
    left:0;
}
.granica1r{
    top:0;
    left:14.2857%;
}
.granica2t{
    top:14.2857%;
    left:14.2857%;
}
.granica2r{
    top:14.2857%;
    left:28.5714%;
}
.granica3t{
    top:28.5714%;
    left:28.5714%;
}
.granica3r{
    top:28.5714%;
    left:42.8571%;
}
.granica4t{
    top:42.8571%;
    left:42.8571%;
}
.granica4r{
    top:42.8571%;
    left:57.1428%;
}
.granica5t{
    top:57.1428%;
    left:57.1428%;
}
.granica5r{
    top:57.1428%;
    left:71.4285%;
}
.granica6t{
    top:71.4285%;
    left:71.4285%;
}
.granica6r{
    top:71.4285%;
    right:14.2857%;
}
.granica7t{
    top:85.7142%;
    left:85.7142%;
}
.dateI{
    width:80px;
    text-align: center;
    margin-left:-40px;
    color:#FFF;
    bottom:-30px;
    height:30px;
    line-height:30px;
    position: absolute;
}
.date0{
    left:0;
}
.date1{
    left:14.2857%;
}
.date2{
    left:28.5714%;
}
.date3{
    left:42.6571%;
}
.date4{
    left:57.1428%;
}
.date5{
    left:71.4285%;
}
.date6{
    left:85.7142%;
}
.date7{
    left:100%;
}
.presale{
    position:relative;
}
.overgard{
    position:absolute;
    opacity: .65;
    top:0;
    left:0;
    border-radius:4px;
    width:100%;
    height:100%;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#8468f5+0,ec74e7+100 */
    background: rgb(132,104,245); /* Old browsers */
    background: -moz-linear-gradient(left, rgba(132,104,245,1) 0%, rgba(236,116,231,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(132,104,245,1) 0%,rgba(236,116,231,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(132,104,245,1) 0%,rgba(236,116,231,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8468f5', endColorstr='#ec74e7',GradientType=1 ); /* IE6-9 */
}
.mobBox{
    width:70%;
    height:80px;
    margin:20px 13% 20px 17%;
    position: relative;
    line-height: 40px;
    background: #FFF;
    border-radius: 4px;
    text-align: center;
}
.mobBox.active:before{
    border: 3px solid #7fefff;
    content: "";
    position: absolute;
    left: -3px;
    top: -3px;
    bottom: -3px;
    right: -3px;
    border-radius: 9px;
}
.mobBox i, .mobBox b{
    color:#9069f3;
}
.mobBox i{
    font-weight: 100;
    font-style: normal;
    font-size: 1.3rem;
}
.mobBox b{
    font-weight: 600;
    font-size: 1.7rem;
}
.mobBox span{
    font-weight: 400;
    font-size: 1.5rem;
}

.bonuses-mob{
    position:relative;
}
.bonuses-line, .bonuses-indicator{
    position:absolute;
    left:12%;
    top:0px;
    bottom:0px;
    height:auto;
}
.bonuses-indicator{
    margin-left:-10px;
    margin-top:-13px;
}

/* -------------  why us ---------------*/
#why-us{
    padding-top:80px; 
    background:#FFF;
    width:100%;
    height:auto;
    /*z-index: 3;*/
    position: relative;
    overflow: hidden;
}
.header-why{
    text-align: center;
    z-index: 4;
    margin-bottom: 40px;
}
.header-why h1 {
  font-family: Lato;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: normal;
  text-align: center;
  color: #323c5a;
}
.bgrLine1, .bgrLine2, .bgrLine3, .bgrLine4{
    position: absolute;
}
.bgrLine1{
    left:33%;
    top:33%;
}
.bgrLine2{
    left:60%;
    top:60%;
}
.bgrLine3{
    left:63%;
    top:63%;
}
.bgrLine4{
    left:60%;
    top:17%;
}
.boxWhyHolder{
    padding-bottom: 15px;
}
.boxWhy {
    background: #FFF;
    width: 80%;
    margin:10% 10%;
    padding: 3%;
    box-shadow: 0 2px 44px 0 rgba(0, 0, 0, 0.12);
    position: relative;
    padding-top: 100%;
    z-index: 5;
    position: relative;
}
.titleW{
    top:5%;
    left:8%;
    width:86%;
    height:auto;
    position: absolute;
    font-size: 1.5rem;
    line-height: 1.8rem;
    color:#000;
}
.textW{
    bottom:5%;
    left:8%;
    width:86%;
    height:auto;
    position: absolute;
    font-size: 1rem;
    line-height: 1.4rem;
    color:#2ba2b1;
}
@media only screen and (max-width: 1200px) {
    .boxWhy{
        width: 100%;
        margin:4% 0;
        padding-top: 140%;
    }
    .titleW{
        font-size: 1.3rem;
        line-height: 1.5rem;
    }
    .textW{
        font-size: 1rem;
        line-height: 1.1rem;
    }
}
@media only screen and (max-width: 1124px) {
    .boxWhy{
        width: 100%;
        margin:4% 0;
        padding-top: 100%;
    }
    .titleW{
        font-size: 1.3rem;
        line-height: 1.5rem;
    }
    .textW{
        font-size: 1rem;
        line-height: 1.1rem;
    }
}
@media only screen and (max-width: 768px) {
    .boxWhy {
        padding: 5%;
        z-index: 5;
    }
    .titleW{
        width:90%;
        height:auto;
        position: relative;
        font-size: 1.2rem;
        line-height: 1.5rem;
        margin-bottom: 20px;
    }
    .textW{
        width:90%;
        height:auto;
        position: relative;
        font-size: 1rem;
    }
}
/* -------------    tri ---------------- */

#tri{
    width:100%;
    height:auto;
    position:relative;
    padding:80px 0;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1a233e+0,323c5a+100 */
    background: rgb(26,35,62); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(26,35,62,1) 0%, rgba(50,60,90,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(26,35,62,1) 0%, rgba(50,60,90,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(26,35,62,1) 0%, rgba(50,60,90,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1a233e',endColorstr='#323c5a',GradientType=0 ); /* IE6-9 */
}
#tri:before{
    width:100%;
    height: auto;
    -webkit-transform:skewY(350deg);
    -moz-transform:skewY(350deg);
    transform:skewY(350deg);
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1a233e+0,323c5a+100 */
    background: rgb(26,35,62); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(26,35,62,1) 0%, rgba(50,60,90,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(26,35,62,1) 0%, rgba(50,60,90,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(26,35,62,1) 0%, rgba(50,60,90,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1a233e',endColorstr='#323c5a',GradientType=0 ); /* IE6-9 */
    content: "";
    position: absolute;
    top: -35%;
    bottom: -35%;
    z-index: 3;
}
#tri .container.-tri {
  position: relative;
  z-index: 5;
}
.boxR{
    z-index: 5;
}
.titleR{
    text-align: center;
    color:#7fefff;
    font-size:1.2 rem;
    font-weight: 400;
}
.textR{
    text-align: left;
    color:#FFF;
    font-size:1 rem;
}
/* ------------- Team CSS -------------- */
#team {
    padding: 0 0 130px;
}
.team{
     display: flex;
     flex-direction: column;
     justify-content: center;
}
.team-box{
    text-align: left;
    padding-top: 32%;
    color: black;
    position: relative;
    border-right: 1px solid #EDF0F2;
    border-bottom: 1px solid #EDF0F2;
    min-height: 330px;
}
.team-heads > div {
    background-image: linear-gradient(0deg,white,white);
    padding: 0;
    box-shadow: 0 0 10px rgba(0,0,0,.08);
}
.team-pic{
    position: absolute;
    width:70%;
    top:10%;
    left:15%;
    border-radius:50%;
}
.team-box a img{
    position: absolute;
    width:20%;
    right:10%;
    bottom:30%;
}
.team-box-title{
    z-index: 5;
    position: absolute;
    left:15%;
    bottom:5%;
    width:70%;
    height:60px;
    font-size:.9rem;
}
 .header-team{
     margin-top: 2rem;
     margin-bottom: 2rem;
     text-align: center;
     font-weight: 900 
}
.header-team h1 {
  font-family: 'Lato', sans-serif;
  font-size: 45px;
  font-weight: 900;
  color: #323c5a;
  text-align: center;
}
 .Subheader-team {
     margin-top: 2rem;
     margin-bottom: 2rem;
     font-size: 18px;
     font-weight: normal;
     font-style: normal;
     font-stretch: normal;
     line-height: normal;
     letter-spacing: 0.5px;
     text-align: center;
     color: #32325d;
}
.white-circle {
  z-index: 1;
  border-radius: 15px;
  width: 30px;
  height: 30px;
  background-color: white;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  justify-content: center;
  align-items: center;
  display:flex;
  transform: rotate(0deg);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: absolute;
}
/* Fix */
.team-box {
  cursor: pointer;
}
.white-circle {
  position: absolute;
  top: 50%;
  right: 20%;
}
.team-box:hover .white-circle{
  transform: rotate(90deg) 
}
/* End fix */
 .pic{    
     margin-left: -0.7rem;
    position: absolute;
     transform: translate(12%, 35%);
     z-index: 1;
     clip-path: circle(35.9% at 49% 34%);
     -webkit-transition: all 0.3s ease-in;
     -moz-transition: all 0.3s ease-in;
     transition: all 0.3s ease-in;
}
 .Mask {
     padding: 1rem 1rem 3rem 1rem;
     cursor: pointer;
     text-align: left;
     width: 181px;
     height: 221px;
     color: black;
     background-image: linear-gradient(0deg,white,white);
}
 .Mask:hover {
     cursor: pointer;
     text-align: left;
     width: 181px;
     height: 221px;
     background: linear-gradient(135deg, rgba(127,239,255,1) 0%,rgba(0,187,211,1) 100%);
	   -webkit-transition: all 3s ease-in-out;
     -moz-transition: all 3s ease-in-out;
     transition: all 3s ease-in-out;
}
 .Mask:hover .white-circle{
     transform: rotate(90deg) 
}
 .Mask:hover .team-box-title{
     color: black 
}
 .Oval-2 {
     margin-top: 10px;
     margin-left: 15%;
     display: flex;
     align-items: flex-end;
     flex-direction: row-reverse;
     width: 132px;
     height: 132px;
}


.Mask:hover .team-box-title{
    color: white
}
 .team-box-name{
     font-weight: bold;
     margin-bottom: 0 
}
 .team-popup{
     position: fixed;
     overflow: scroll;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
     height: 100%;
     width: 100%;
     position: fixed;
     top: 0;
     left:0;
     background: rgba(0,0,0,0.7);
     z-index: 10;
     visibility: hidden;
     opacity: 0;
}
 .team-popup:target {
     visibility: visible;
     opacity: 1;
}
 .popup-content{
     width: 75%;
     background-color: white;
     height: 40rem;
     transform: translate(15%, 20%);
}
 .modal-pic-bg img{background-image: linear-gradient(to right, #004461, #002d40);
     height: 100%;
     margin-left: -15px;
}
 .modal-text{
     padding: 5rem;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
}
 .modal-btn{
     margin-top: auto;
     border: 0.04rem black solid;
     padding: 1rem;
     border-radius: 2rem;
     margin: 1rem;
     display: block;
     font-weight: bold;
}
 .modal-close{
     align-items: center;
     display: flex;
     justify-content: center;
     z-index: 55;
     position: absolute;
     right: 0;
     color: white;
     width: 10rem;
     height: 3rem;
     background-color: #323c5a 
}
 .modal-buttons{
     position: relative;
     display: flex;
}
.form_info{
    color:green;
    text-align: center;
    width:100%;
}
.form_info .error{
    color:red;
}
 @media only screen and (max-width: 1366px) {
     .modal-text{
         padding: 5rem 0rem 5rem 10rem
    }
     .popup-content{
         width: 92%;
         background-color: white;
/*         height: 45rem;*/
         transform: translate(5%, 15%);
    }
     .modal-pic-bg img{
         height: 100%;
     }
}

 @media only screen and (max-width: 1024px) {
     .modal-text{
         padding: 5rem 0rem 5rem 16rem
    }
     .popup-content{
         width: 92%;
         background-color: white;
/*         height: 45rem;*/
         transform: translate(5%, 15%);
    }
     .modal-pic-bg img{
         height: 100%;
     }
}
@media only screen and (max-width: 765px) {
     .team-box{
        max-height: 330px;
        padding-top: 64%;
    }
}
@media only screen and (max-width: 575px) {
     .team-box{
        max-height: 330px;
        padding-top: 128%;
    }
}
@supports (-ms-ime-align: auto) {
  .team-box{
        padding-top: 0;
        min-height: 320px;
        max-height: 320px;
    }
}
 @media only screen and (max-width: 500px) {
     .team-popup{
         position: fixed;
         overflow: scroll;
    }
     .popup-content{
         width: 75%;
         background-color: white;
         height: 55rem;
         transform: translate(18%, 15%);
    }
     .modal-buttons{
         flex-direction: column;
    }
     .modal-btn{
         margin:0.5rem 
    }
     .modal-pic-bg{
         height: 40vh;
    }
     .modal-pic-bg img{
         margin-top: 5rem;
         height: auto;
         width: 100%;
    }
     .modal-text{
         margin-top:6rem;
         padding: 1rem;
    }
}

/* Custom CSS By Zoran For HOW ICOS*/
.how-choose {
  position: relative;
  padding-bottom: 100px;
  z-index: 2;
}

.how-choose #section-background{
  /*background-color: #f2f3f4;
  background-color: blue;
  background-image: linear-gradient(to left, #ffffff, #f6f9fc);*/
  /*transform: rotate(-12deg);*/
  
}
.how-choose .card{
  background-color: transparent;
  margin-bottom:30px;
}

.how-choose .card-block{
    background-color: white;
    height: 400px;
    box-shadow: 0 0 20px rgba(0,0,0,.3);
}

.how-choose .card-text,
.how-choose .card-title{
    padding-left: 7%;
    padding-right: 7%;
}

.how-choose .card-title{
  padding-top: 5%;
  font-size: 17px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 1.1px;
  text-align: left;
  white-space: normal;
}
.how-choose .card-text{
  font-size: 14px;
  text-align: left;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.86;
  letter-spacing: 0.3px;
}
.how-choose .text-header {
  text-align: justify;
}

.how-choose .title-box {
  text-align: center;
  font-family: Lato;
}

.how-choose .intro-text {
  margin-bottom: 43px;
}

.how-choose .small-title {
  margin-bottom: 28px;
}

.how-choose .section-title .title-box {
  font-family: Lato;
  font-size: 40px;
  font-weight: 900;
  font-style: normal;
  font-stretch: normal;
  line-height: 0.68;
  letter-spacing: normal;
  text-align: center;
  color: #323c5a;
  margin-top: 120px;
}

.how-choose .section-title {
  margin-bottom: 43px;
}


.how-choose .title-colored {
  color: #7f6fce;
  font-size: 27px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: 0.4px;
  font-family: Lato;
}

.how-choose .text-content {
  font-family: Source Sans Pro;
  font-size: 18px;
}

.how-choose .card-img-top {
  height: 121px;
  color: #ffffff;
}

.how-choose #card-img-top-first {
  background-color: #9251ac;
}
.how-choose #card-img-top-second {
  background-color: #e77dac;
}
.how-choose #card-img-top-third {
  background-color: #54ddf0;
}

.how-choose .img-title {
  width: 64px;
  height: 24px;
  font-family: Source Sans Pro;
  font-size: 19px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.4px;
  text-align: left;
  color: #ffffff;
  position: absolute;
    top: 79px;
    left: 38px;

}

.how-choose .card {
  border: none;
}

.how-choose .card-title {
  color: #b76ac4;
}

.how-choose .icons {
  float: right;
}

@media only screen and (max-width: 768px) {
  .how-choose .intro-text .second-text {
    margin-top: 30px;
  }
  .how-choose .section-title .title-box {
    font-family: Lato;
    font-size: 40px;
    font-weight: 900;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.15;
    letter-spacing: normal;
    text-align: left;
  }
}
/* End of CSS by Zoran */
/* CSS FOR DEEEZ */
.-tri .eggs .titleR {
  text-align: center !important;
  margin-bottom: 10px;
}

.-tri .eggs .textR {
  text-align: justify !important;
}


@media only screen and (max-width: 768px) {
  .-tri .eggs {
    margin: 40px auto;
  }
}
/* END OF CSS */

/* RoadMap CSS */
.roadmap, .tracker {
  background-color: #f8f9fb;
  position: relative;
  z-index: 3;
}

.roadmap .carousel {
  margin-bottom: 100px;
}
.roadmap .left-slide {
	transform: rotate(-180deg);
}
.carousel:before {
    position: absolute;
    content: '';
    border: solid 20px #fff;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    left: 50%;
    top: 50%;
    margin: -200px 0 0 -100px;

}
.roadmap .carousel-item-title {
	margin-bottom: 19px;
	font-family: Lato;
	font-size: 23px;
	font-weight: 900;
	font-style: normal;
	font-stretch: normal;
	line-height: 1.17;
	letter-spacing: normal;
	text-align: center;
	color: #000000;
    vertical-align: middle;
    display: table-cell;
    text-align: center;
}

.roadmap .carousel-item-text {
	font-family: Source Sans Pro;
	font-size: 18px;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: 0.5px;
	text-align: center;
	color: #32325d;
}

.roadmap .carousel-content {
	text-align: center;
}

.roadmap .carousel-indicators  {
	justify-content: space-between;
	margin: 120px 20% 0 20%;
	position: relative;
}

.roadmap .carousel-control-next  {
	left: calc(100% - 130px);
}
.roadmap .carousel-control-prev {
	left: 100px;
}

.roadmap .carousel-indicators > div {
	border-top: 2px solid #c3cbd2;
	cursor: pointer;
}

.roadmap .carousel-indicators .active {
	border-color: #9069f3;
	background: transparent;
}

.roadmap .carousel-indicators .month {
	font-family: Source Sans Pro;
	font-size: 15px;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: 0.5px;
	text-align: center;
	color: #c3cbd2;
}

.roadmap .carousel-indicators .year {
	font-family: Source Sans Pro;
	font-size: 31px;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: 0.7px;
	text-align: center;
	color: #c3cbd2;
	margin: 4px auto 0 auto;
}

.roadmap .carousel-indicators .active .year {
	font-family: Source Sans Pro;
	font-size: 31px;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: 0.7px;
	text-align: center;
	color: #9069f3;
}

.roadmap .carousel-indicators .active .month {
	font-family: Source Sans Pro;
	font-size: 15px;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: 0.5px;
	text-align: center;
	color: #9069f3;
}

.roadmap .slider-navigation {
	margin-top: 105px;
}

.roadmap .carousel-content {
    height: 200px;
    text-align: center;
    display: table;
    width: 100%;
}
.roadmap .controls {
	z-index: 1;
    border-radius: 15px;
    width: 30px;
    height: 30px;
    background-color: white;
    box-shadow: 0 2px 40px 0 rgba(0, 0, 0, 0.55);
    justify-content: center;
    align-items: center;
    display: flex;
    transform: rotate(0deg);
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    position: absolute;
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9;
    top: 22%;
}


.roadmap .title-box, .tracker .title-box {
  font-family: Lato;
  font-size: 40px;
  font-weight: 900;
  font-style: normal;
  font-stretch: normal;
  line-height: 0.68;
  letter-spacing: normal;
  text-align: center;
  color: #323c5a;
  margin-top: 109px;
  margin-bottom: 109px;
}

@media only screen and (max-width: 990px) {
	.roadmap .carousel-indicators  {
		justify-content: center;
		overflow: hidden;
		margin: 120px 0 0 0;
	}
    
	.roadmap .carousel-indicators > div  {
		margin-right: 5px;
		margin-left: 5px;
        width:18%;
	}
}

@media only screen and (max-width: 768px) {
	.roadmap .carousel-indicators  {
		justify-content: center;
	}

	.roadmap .carousel-content {
	    justify-content: center;
	    margin: 0 7% 0 7%;
        width: 86%;
	}
  .roadmap .control-left {
    left: 0;
  }
  .roadmap .control-right {
    left: 73%;
  }
	.roadmap .controls  {
    background: transparent;
    width: 30%;
    height: 150px;
    top: 5%;
    box-shadow: none;
  }
  .roadmap .slide-arrows {
    display: none;
  }
}
/* End OF RoadMap CSS */

/* Footer css */

footer{
  background-color: #323c5a !important;
  height: 57px;
  color: white;
  padding: 0 !important;
}

footer img {
  margin-bottom: 0 !important;
}

.footer .logo-img {
  background-image: url(../img/logo_footer.jpg);
  height: 19px;
  width: 155px;
  background-size: cover;
  margin: 0 auto;
  padding: 0 !important;
}
.footer .join{
  font-family: Source Sans Pro;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.4px;
  text-align: left;
  color: #ffffff;
  float: left;
    padding-top: 20px;
    padding-top: 19px;
    margin-right: 18px;
}

.footer .social{
    padding-top: 14px;
    padding-top: 13px;
    margin-right: 18px;
}

.footer .logo{
  float: left;
    padding-top: 14px;
    padding-top: 20px;
    color: #ffffff;
}
.footer_links {
    position: absolute;
    left: 300px;
    top: 6px;
}
.footer .contact{
  float: right;
}

.footer .icons{
  float: right;
}
.icons_footer {
    margin-top: 9px;
}
.icons_footer a{
    float:left;
    width:40px;
    height:40px;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
}
.hero_icons a{
    float:left;
    width:45px;
    height:45px;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
}
.icons_footer .fb{
    background-image: url(../img/social/facebook.svg);
}
.icons_footer .bt{
    background-image: url(../img/social/btctalk.svg);
}
.icons_footer .tw{
    background-image: url(../img/social/twitter.svg);
}
.icons_footer .ld{
    background-image: url(../img/social/linkedin.svg);
}
.icons_footer .yt{
    background-image: url(../img/social/youtube-play_2.svg);
}
.icons_footer .tl{
    background-image: url(../img/social/medium.svg);
}
.icons_footer .fb:hover{
    background-image: url(../img/social/facebook_2_hover.svg);
}
.icons_footer .bt:hover{
    background-image: url(../img/social/btctalk_2_hover.svg);
}
.icons_footer .tw:hover{
    background-image: url(../img/social/twitter_4.svg);
}
.icons_footer .ld:hover{
    background-image: url(../img/social/linkedin_2_hover.svg);
}
.icons_footer .yt:hover{
    background-image: url(../img/social/youtube-play_hover_2.svg);
}
.icons_footer .tl:hover{
    background-image: url(../img/social/medium_2_hover.svg);
}
.hero_icons .fb{
    background-image: url(../img/social/facebook_2.svg);
}
.hero_icons .bt{
    background-image: url(../img/social/btctalk_2.svg);
}
.hero_icons .tw{
    background-image: url(../img/social/twitter_2.svg);
}
.hero_icons .ld{
    background-image: url(../img/social/linkedin_2.svg);
}
.hero_icons .yt{
    background-image: url(../img/social/youtube-play.svg);
}
.hero_icons .tl{
    background-image: url(../img/social/medium_2.svg);
}
.hero_icons .fb:hover{
    background-image: url(../img/social/facebook_hover.svg);
}
.hero_icons .bt:hover{
    background-image: url(../img/social/btctalk_hover.svg);
}
.hero_icons .tw:hover{
    background-image: url(../img/social/twitter_12.svg);
}
.hero_icons .ld:hover{
    background-image: url(../img/social/linkedin_hover.svg);
}
.hero_icons .yt:hover{
    background-image: url(../img/social/youtube-play_hover.svg);
}
.hero_icons .tl:hover{
    background-image: url(../img/social/medium_hover.svg);
}
footer > .container{
  padding-bottom: 8px !important;
}
@media only screen and (max-width: 768px) {
  .footer .wrapper {
    display: block;
  }
  .footer .social {
    float: none;
  }
  .footer .logo {
    float: none;
  }
  .footer_links {
    position: relative;
    left: unset;
    top: unset;
    margin: 50px 0;
  }
  .contact{
    padding-bottom:60px;      
  }
  footer {
    height: auto;
    text-align: center;
  }
  footer > .container{
    padding-bottom: 0px !important;
  }
  .footer .join {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .footer .icons,
  .footer .join,
  .footer .contact{
    width: 100%;
    float: none;
  }

  .footer .logo {
    margin-top: 19px;
    margin-bottom: 28px;
    padding: 0;
  }

  .footer .join {
    height: 18px;
    padding: 0;
  }

  .footer .icons {
    margin: 10px auto 20px auto;
    padding: 0;
    width:240px;
  }

}
/* End of footer */


/* FAQ Css */

.faq {
  background-image: linear-gradient(to left, #263354, #1d2642);
  color: white;
}

.faq .title-box {
  font-family: Lato;
  font-size: 40px;
  font-weight: 900;
  font-style: normal;
  font-stretch: normal;
  line-height: 0.68;
  letter-spacing: normal;
  text-align: center;
  color: #ffffff;
  margin-top: 109px;
  margin-bottom: 77px;
}

 .questions .question-title {
  font-family: Lato;
  font-size: 23px;
  font-weight: 900;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: left;
  color: #ffffff;
  margin-bottom: 21px;
}

.questions .question-text {
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.5px;
  text-align: left;
  color: #adb3d5;
  padding-right: 34px;
  margin-bottom: 0;
    margin-top: 20px;
}

.faq .last-row {
  padding-bottom: 108px;
  margin-bottom: 0px;
}
.questions .col-md-4 {
  border-left: 3px solid;
  border-image:
      linear-gradient(to top, #7fefff, #00bbd3) 1 100%;
}
.questions  {
  margin-bottom: 40px;
  margin-left: 55px;
}

@media only screen and (max-width: 768px) {
  .questions .col-md-4 {
    margin-bottom: 40px;
  }

  .questions  {
    margin-bottom: 0px;
    margin-left: 6%;
  }
}

/* End of FAQ */

/* RoadMap CSS */
.tracker{
    padding: 60px 0;
}
.roadmap, .tracker {
  background-color: #f8f9fb;
}

.roadmap .carousel-caption {
  color: black;
}

.roadmap .title-box {
  font-family: Lato;
  font-size: 40px;
  font-weight: 900;
  font-style: normal;
  font-stretch: normal;
  line-height: 0.68;
  letter-spacing: normal;
  text-align: center;
  color: #323c5a;
  margin-top: 109px;
  margin-bottom: 109px;
}
/* End OF RoadMap CSS */

.section.-subscription {
  padding: 0 0 88px 0;
}

/*---------------------------------------- MODAL WINDOWS ----------------------------------------*/

.modal.-login,
.modal.-forgot,
.modal.-register,
.modal.-registerSuc,
.modal.-team {
  background: rgba(144, 105, 243, 0.72);
}

.modal-dialog.-login,
.modal-dialog.-forgot,
.modal-dialog.-register,
.modal-dialog.-registerSuc,
.modal-dialog.-team {
  width: 100%;
  max-width: 576px;
  margin: 0;
  background: #fff;
}
.modal-dialog.-team {
  max-width: 760px;
}
.modal.show .modal-dialog.-login,
.modal.show .modal-dialog.-forgot,
.modal.show .modal-dialog.-register,
.modal.show .modal-dialog.-registerSuc,
.modal.show .modal-dialog.-team {
  /*Positioning*/
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .modal.show .modal-dialog.-login,
  .modal.show .modal-dialog.-forgot,
  .modal.show .modal-dialog.-register,
  .modal.show .modal-dialog.-registerSuc,
  .modal.show .modal-dialog.-team {
    position: relative;
    margin: 20px auto;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
}

.modal-image-container.-team {
  position: relative;
  padding: 0;
  width: 240px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .modal-image-container.-team {
    width: 100%;
    height: 350px;
  }
}

.modal-image.-team {
  position: absolute;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .modal.show .modal-dialog.-login,
  .modal.show .modal-dialog.-forgot,
  .modal.show .modal-dialog.-register,
  .modal.show .modal-dialog.-registerSuc,
  .modal.show .modal-dialog.-team {
    position: relative;
    margin: 20px auto;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
}

.modal-image-container.-team {
  position: relative;
  padding: 0;
  width: 240px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .modal-image-container.-team {
    width: 100%;
    height: 350px;
  }
}

.modal-image.-team {
  position: absolute;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.modal-dialog.-login .modal-title,
.modal-dialog.-forgot .modal-title,
.modal-dialog.-register .modal-title,
.modal-dialog.-registerSuc .modal-title,
.modal-dialog.-team .modal-title {
  font-family: 'Lato', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #323c5a;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .modal-dialog.-login .modal-title,
  .modal-dialog.-forgot .modal-title,
  .modal-dialog.-register .modal-title,
  .modal-dialog.-registerSuc .modal-title,
  .modal-dialog.-team .modal-title {
    font-size: 30px;
  }
}

.modal-content.-login,
.modal-content.-forgot,
.modal-content.-register,
.modal-content.-registerSuc,
.modal-content.-team {
  border: 0 solid transparent;
  border-radius: 0;
}

.modal-content.-team {
  padding: 0;
}

.modal-header.-login,
.modal-header.-forgot,
.modal-header.-register,
.modal-header.-registerSuc,
.modal-header.-team {
  position: relative;
  padding: 62px 42px 0;
  border: 0;
  border-radius: 0;
}

.modal-header.-register,
.modal-header.-registerSuc{
  display: block;
}

.modal-header.-register .modal-desc,
.modal-header.-registerSuc .modal-desc{
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  color: #323c5a;
}

.close.-login,
.close.-forgot,
.close.-register,
.close.-registerSuc,
.close.-team {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  opacity: 1;
  text-shadow: none;
  float: none;
  padding: 16px 32px;
  background: #323c5a;
  color: #FFF;
  font-family: 'Source Sans Pro', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size:  0.75rem;
  border: 0 solid transparent;
  border-radius: 0;
}

.close.-team.-inverse {
  background: #FFF;
  color: #323c5a;
}

.close.-login:focus,
.close.-forgot:focus,
.close.-register:focus,
.close.-registerSuc:focus,
.close.-team:focus  {
  outline: none;
}

.modal-body.-login,
.modal-body.-forgot,
.modal-body.-register,
.modal-body.-registerSuc,
.modal-body.-team {
  padding: 32px 42px;
}

.form.-login label,
.form.-forgot label,
.form.-register label{
  font-family: 'Source Sans Pro', sans-serif ;
  font-size:  0.75rem;
  color: #a1a1a1;
  margin-bottom: 0;
  -webkit-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.form.-login label.-focused,
.form.-forgot label.-focused,
.form.-register label.-focused{
  color: #4a90e2;
}

.form.-login .form-control,
.form.-forgot .form-control,
.form.-register .form-control{
  font-family: 'Source Sans Pro', sans-serif ;
  font-size:  1rem;
  color: #757575;
  border: none;
  border-bottom: 1px solid #d4d4d4;
  border-radius: 0;
  padding: 7px 0;
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}

.form.-login .form-control:focus,
.form.-forgot .form-control:focus,
.form.-register .form-control:focus{
  box-shadow: none;
  border-bottom: 1px solid #4a90e2;
}

.form.-login .form-control.error,
.form.-forgot .form-control.error,
.form.-register .form-control.error{
  border-color: #dc3545!important;
}

.form.-login .form-check,
.form.-forgot .form-check,
.form.-register .form-check {
  display: inline-block;
}

.form.-login .form-check label,
.form.-forgot .form-check label,
.form.-register .form-check label {
  display: block;
  font-size: 0.875rem;
  cursor: pointer;
}

.form.-login .form-check input,
.form.-forgot .form-check input,
.form.-register .form-check input {
  cursor: pointer;
}

.reg-checkbox .form-check-label {
    width: 30%;
    text-align: center;
}
.first-check{
    margin-left:5%;
}
.reg-checkbox p{
    text-align: center;
    margin-top: 20px;
}

.modal-body.-login .forgot-password,
.modal-footer.-login .forgot-password {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.875rem;
  color: #a1a1a1;
  cursor: pointer;
}
.modal-header.-registerSuc {
    padding-bottom: 50px;
}
.modal-body.-login .forgot-password.-desktop {
  float: right;
  text-align: right;
}

.modal-footer.-login,
.modal-footer.-forgot,
.modal-footer.-register {
  display: block;
  text-align: center;
}

.modal-footer.-login .forgot-password.-mobile {
  display: inline-block;
  margin: 35px auto 0;
}

.modal-footer.-login,
.modal-footer.-forgot,
.modal-footer.-register,
.modal-footer.-registerSuc,
.modal-footer.-team {
  padding: 0 42px 42px;
  border: 0 solid transparent;
  border-radius: 0;
}

.modal-footer.-team {
  justify-content: flex-start;
}

.modal-link.-team {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #323c5a;
  border-radius: 32px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 1px;
  color: #323c5a;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.modal-link.-team:active,
.modal-link.-team:focus,
.modal-link.-team:hover {
  color: #fff;
  background: #9069f3;
  border-color: #9069f3;
}

.modal-link.-team > .link-icon {
  display: inline-block;
  margin-right: 8px;
}
.not_register{
    cursor:pointer;
    font-size:1.2rem;
}
.progress-bar::after {
    content: '';
    position: absolute;
    border-left: 1px dashed #FFF;
    height: 30px;
    left: 66.66%;
}
.progress-bar::before {
    content: 'Goal';
    position: absolute;
    height: 30px;
    left: 66.66%;
    width: 60px;
    margin-left: -30px;
    top: -25px;
}
@media screen and (max-width: 767px) {
  .modal-dialog.-login,
  .modal-dialog.-forgot,
  .modal-dialog.-register,
  .modal-dialog.-team {
    max-width: 290px;
  }
  .modal-dialog.-registerSuc{
    max-width: 350px;
  }
  .modal-footer.-team {
    display: block;
  }
  .modal-link.-team {
    display: block;
    margin: 0;
  }
  .modal-link.-team:not(:first-of-type) {
    margin-top: 10px;
  }
}

.newsBlock {
  margin-top: 40px;
  min-height: 150px;
  border-left: 5px solid #4174f4;
  border-bottom: 1px solid #eee;
  padding: 10px 20px;
  background-color: rgba(255,255,255,0.7);
}

.newsBlock:hover .underline {
  border: 2px solid #ccc;
  transition: all 1s;
}

.newsExpandBlock {
  display: none;
}

.newsBlock .underline {
  border: 2px solid #eee;
}

.expandBtn {
  color:#4174f4;
}

.expandBtn:hover {
  color:orange;
}

.newsBgd {
  position: fixed;
  z-index: 0;
  top: 0;
  bottom: 0;
  background-image: url(../img/background-hero.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  height: 500px;
  width: 100%;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .newsBgd {
    height: 400px;
    background-image: url(../img/background-hero-small.svg);
  }
}
.exchangeListing {
  background-image: url(../img/lines/line_2.svg),url(../img/lines/line_3.svg) ;
  background-repeat: no-repeat;
  background-size: 5%, 6%;
  background-position: 80% 90%, 77% 70%
}
.exchangeListing .container {
  max-width: 600px;
  background: rgba(255,255,255,0.5);
  padding: 20px
}
.exchangeListing .text-box {
  margin-top: 0;
  padding-top: 20px;
  background: rgba(255,255,255,0.8)
}
.exchangeListing .title {
  color:#6772e5;
}



@media screen and (min-width: 576px) {
  .sandro-style {
        margin-left: 25%;
  }
}

/* banner_stule.css */

.title-box {
    margin-top: 180px;
    margin-bottom: 120px;
}

h1.banner_title {
    color: rgb(50, 60, 90);
    display: block;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 38px;
    font-weight: 300;
    line-height: 48px;
    margin-bottom: 0px;
    text-align: left;
    text-size-adjust: 100%;
}

h1.banner_title .raised_amount {
    font-weight: 600;
    color: #9069f3;
}

.celebration {
    text-align: center;
    padding: 100px 0 30px 0;
}

.celebration img {
    max-width: 350px;
    height: auto;
}

.text-box.-video.blue {
    color: #fff;
    background-color: #49d2e6;
}

.text-box.-video.blue h2 {
    color: #fff;
    font-weight: 300;
}

.text-box.-video.blue h2.accent {
    /* color: #9069f3; */
    color: #fff;
    font-weight: 600;
    text-align: right;
    padding-top: 30px;
}

@media screen and (max-width: 767px) {

    .title-box {
        margin-top: 50px;
        margin-bottom: 0px;
    }

    h1.banner_title {
        color: rgb(255, 255, 255);
        display: block;
        font-family: "Source Sans Pro", sans-serif;
        font-size: 32px;
        font-weight: 400;
        line-height: 46px;
        margin-bottom: 40px;
        text-align: center;
        text-size-adjust: 100%;
    }

    .celebration {
        text-align: center;
        padding: 40px 0 100px 0;
    }

    .celebration img {
        max-width: 270px;
        height: auto;
    }
}