

@font-face {
  font-family: "Akkurat-Pro";
  src: url("../fonts/lineto-akkurat-pro-regular.eot");
  src: url("../fonts/lineto-akkurat-pro-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/lineto-akkurat-pro-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Akkurat-Pro";
  src: url("../fonts/lineto-akkurat-pro-bold.eot");
  src: url("../fonts/lineto-akkurat-pro-bold.eot?#iefix") format("embedded-opentype"), url("../fonts/lineto-akkurat-pro-bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}




@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

header .navbar img{
  width: 150px;
  transition: all 0.3s ease;
}

.login-btn {
  width:120px;
  text-align:center;
}


.fa-twitter-square:before { content: "\f081"; }
.fa-facebook-square:before { content: "\f082"; }
.fa-twitter:before { content: "\f099"; }

.fa-facebook-f:before,
.fa-facebook:before { content: "\f09a"; }

.fa-github:before { content: "\f09b"; }

.fa-envelope:before {
  content: "\f003";
}

.fa-linkedin:before {
  content: "\f08c";
}


.fa-angellist:before {
  content: "\f209";
}

html {
}

body {
  font-family: "Akkurat-Pro", sans-serif;
  color: #2C3948;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  /* clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); */
}

menu, ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a, button {
  transition-duration: 0.5s;
}

a:focus {
}

a:hover, a:focus, a:visited {
  outline: none
}


@media (max-width: 688px) {
  .mobile-none {
    display: none !important;
  }
}

.container{
  padding-left: 24px;
  padding-right: 24px;
}


img {
  max-width: 100%;
}


.container {
  width: 100%;
  max-width: 1154px;
}

.container_bg {
    position: relative;
    top: -400px;
    height: 200px;
    width:  80%;
    padding-bottom: 30px;
    background: url(../img/confetti-color-mobile.png) 50px 77% no-repeat;
    background-size: 80%;
    /* z-index:  100; */
}

h1, h2, h3, h4, h5, p {
  margin: 0;
}

h1 {
  font-size: 62px;
  font-weight: bold;
}

h2 {
  font-size: 42px;
  font-weight: bold;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 22px;
  font-weight: bold;
}

h5 {
  font-size: 20px;
  font-weight: bold;
}

h6 {
  font-size: 16px;
}

strong {
  font-weight: bold;
}

.text-grey {
  color: #787878;
}

.text-green {
  color: #009a66;
}

.text-black {
  color: #2C3948;
}

.clearfix:after, .post .post-members-avatars:after {
  display: block;
  content: '';
  clear: both;
}

.desktop-only {
  display: block;
}
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

.mobile-only {
  display: none;
}
@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
}

.disable-hover {
  pointer-events: none;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}


@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}


.animations {
  opacity: 0;
}

.animated {
  opacity: 1 !important;
}

.animation-progress-circle {
  animation: 1s progress-circle 0s forwards;
}
@keyframes progress-circle {
  0% {
    left: 22px;
  }
  100% {
    left: 75%;
  }
}
.animation-progress-bar {
  animation: 1s progress-bar 0s forwards;
}
@keyframes progress-bar {
  0% {
    width: 0;
  }
  100% {
    width: 75%;
  }
}
header {
  background: #fff url("../img/header-bg.png") center top no-repeat;
  background-size: cover;
  padding-top: calc(25vh - 50px);
  position: relative;
}

@media (min-width: 1024px) {
header {
    padding-top: calc(10vh - 50px);
}
}

header .container {
  max-width: 1200px;
}
header .navbar {
  position: absolute;
  width: 100%;
  top: 119px;
  left: 0;
  padding: 24px 0 0 0;
  transform: translateY(-88px);
  transition: transform 0.6s;
}
header .navbar.navbar-sticky {
  position: fixed;
  top: 0;
  z-index: 999;
  transform: translateY(0);
}




@media (min-width: 769px) {
  header .navbar .nav-item-sticky{
    opacity: 0;
    transition: all 0.3s ease;
  }

  header .navbar img{
    width:200px;
    transition: all 0.2s ease;
  }

  header .navbar.navbar-bordered img{
    width:150px;
    transition: all 0.2s ease;
  }

  header .navbar.navbar-bordered {
    background: #fff;
    box-shadow: 0 1px 1px 0 rgba(44, 57, 72, 0.05), 0 0 12px 0 rgba(17, 30, 45, 0.1);
    transition: all 0.3s ease;
  }

  header .navbar.navbar-bordered .nav-item-sticky{
    opacity: 1;
    transition: all 0.3s ease;
  }
}

@media (max-width: 768px) {
  header .navbar.navbar-bordered-mobile img{
    width:120px;
    transition: all 0.3s ease;
  }

  header .navbar.navbar-bordered-mobile {
    background: #fff;
    box-shadow: 0 1px 1px 0 rgba(44, 57, 72, 0.05), 0 0 12px 0 rgba(17, 30, 45, 0.1);
    transition: all 0.3s ease;
  }

  header .navbar.navbar-bordered-mobile .nav-item-sticky{
    opacity: 1;
    transition: all 0.3s ease;
  }
}


@media (min-width: 769px) {
header .navbar.navbar-sticky .nav-link:not(.nav-link-button){
  height:64px;
}
}

header .navbar.navbar-sticky .navbar-brand {
  margin-top: -26px;
}
header .navbar.navbar-sticky .nav-item-sticky {
  display: block;
}
header .navbar.navbar-sticky .nav-item-not-sticky {
  display: none !important;
}
header .navbar .navbar-toggler {
  border: none;
  color: #414ECC;
}
header .navbar .navbar-toggler .toggler-icon {
  display: block;
  width: 20px;
  height: 16px;
  background: url("../img/svg-icon-hamburger.svg") center no-repeat;
  background-size: cover;
}
header .navbar .navbar-toggler:focus {
  outline: none;
}
header .navbar .navbar-toggler[aria-expanded="true"] .toggler-icon {
  height: 22px;
  background-image: url("../img/svg-icon-arrow-up.svg");
}
header .navbar .navbar-toggler[aria-expanded="false"] .toggler-icon {
  background-image: url("../img/svg-icon-hamburger.svg");
}
header .navbar .collapsing {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
header .navbar-brand {
  display: block;
  position: relative;
  max-width: 200px;
  margin-top: -8px;
  margin-right: 0;
  z-index: 999;
}
header .navbar-nav .nav-link {
  padding-left: 33px;
  padding-right: 33px;
  font-size: 15px;
}
header .navbar-nav .nav-item-sticky {
  display: none;
}
header .navbar-nav .nav-item-sticky .nav-link {
  padding-left: 19px;
  padding-right: 19px;
  padding-bottom: 28px;
  margin-right: 20px;
}
header .navbar-nav .nav-item-sticky .nav-link.active {
  border-bottom: 4px solid #4EC4F2;
}
header .hero {
  padding-top: 160px;
  padding-bottom: 237px;
  text-align: center;
}
header .hero h1 {
  margin-bottom: calc(3vh);
  font-weight: bold;
}
header .hero h3 {
  color: #95A5B1;
  line-height: 1.5;
  max-width: 800px;
  margin: auto;
}
header .hero h3 span {
  color: #3AE5D9;
  background: linear-gradient(to right, #38cafc 0%, #32e2d9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro {
  /*background: url('../img/intro-bg.png') top center no-repeat;*/
  background-image: linear-gradient(to right, #828cec, #4b59e0);
  background-size: cover;
  padding-top: 104px;
  padding-bottom: 195px;
  margin-top: -1px;
}

.intro-circle {
  height: 88px;
  width: 100%;
  -webkit-clip-path: ellipse(80vw 300px at 50% 300px);
  clip-path: ellipse(80vw 300px at 50% 300px);
  background-image: linear-gradient(to right, #828cec, #4b59e0);
}

.intro-animations-block {
  height: 792px;
  position: relative;
  margin-top: -462px;
  margin-bottom: 145px;
}

@media (min-width: 769px){
.intro-animations-block {
  background: url("../img/confetti-color2.png") center 105px no-repeat;
  background-size: 640px;
}
}

.intro-animations-block .user-quote-block-1 {
  position: absolute;
  left: calc(50% - 197px);
  top: 153px;
}
.intro-animations-block .user-quote-1 {
  width: 490px;
  background: #EBEDFF;
  border: 1px solid #ADB3F1;
  box-shadow: 0 2px 7px 2px rgba(59, 66, 125, 0.05), 0 63px 35px 0 rgba(20, 24, 70, 0.14);
  padding: 12px 12px 29px 23px;
  font-size: 18px;
  border-radius: 6px 6px 0 6px;
}
.intro-animations-block .user-quote-1 .user-quote-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.intro-animations-block .user-quote-1 .user-quote-container:after {
  display: block;
  content: '';
  width: 10px;
  height: 14px;
  background: url("../img/corner-1.png") center no-repeat;
  background-size: cover;
  position: absolute;
  right: -22px;
  bottom: -30px;
}
.intro-animations-block .user-quote-1 .quote-date {
  position: absolute;
  right: 2px;
  bottom: -25px;
  font-size: 13px;
  color: #414ECC;
}
.intro-animations-block .wave-avatar-1, .intro-animations-block .wave-avatar-2 {
  width: 428px;
  height: 428px;
  position: absolute;
  right: -278px;
  top: -158px;
}
.intro-animations-block .wave-avatar-1 .wave-avatar-wrap, .intro-animations-block .wave-avatar-2 .wave-avatar-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.intro-animations-block .wave-avatar-1 .wave-avatar-wrap img, .intro-animations-block .wave-avatar-2 .wave-avatar-wrap img {
  display: block;
  max-width: 86px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  border-radius: 50%;
}
.intro-animations-block .wave-avatar-1 .wave-avatar-wrap .userapp-avatar-bg1, .intro-animations-block .wave-avatar-2 .wave-avatar-wrap .userapp-avatar-bg1, .intro-animations-block .wave-avatar-1 .wave-avatar-wrap .userapp-avatar-bg2, .intro-animations-block .wave-avatar-2 .wave-avatar-wrap .userapp-avatar-bg2, .intro-animations-block .wave-avatar-1 .wave-avatar-wrap .userapp-avatar-bg3, .intro-animations-block .wave-avatar-2 .wave-avatar-wrap .userapp-avatar-bg3, .intro-animations-block .wave-avatar-1 .wave-avatar-wrap .userapp-avatar-bg4, .intro-animations-block .wave-avatar-2 .wave-avatar-wrap .userapp-avatar-bg4, .intro-animations-block .wave-avatar-1 .wave-avatar-wrap .userapp-avatar-bg5, .intro-animations-block .wave-avatar-2 .wave-avatar-wrap .userapp-avatar-bg5, .intro-animations-block .wave-avatar-1 .wave-avatar-wrap .userapp-avatar-bg6, .intro-animations-block .wave-avatar-2 .wave-avatar-wrap .userapp-avatar-bg6 {
  width: 186px;
  height: 186px;
  opacity: 0.1;
  background: #E1E4FF;
  position: absolute;
  top: calc((429px - 186px)*.5);
  left: calc((429px - 186px)*.5);
  border-radius: 50%;
  animation: pulse linear 14s infinite 11.6s;
  transform: scale3d(0, 0, 0);
}
.intro-animations-block .wave-avatar-1 .wave-avatar-wrap .userapp-avatar-bg2, .intro-animations-block .wave-avatar-2 .wave-avatar-wrap .userapp-avatar-bg2 {
  animation: pulse linear 14s infinite 9.28s;
}
.intro-animations-block .wave-avatar-1 .wave-avatar-wrap .userapp-avatar-bg3, .intro-animations-block .wave-avatar-2 .wave-avatar-wrap .userapp-avatar-bg3 {
  animation: pulse linear 14s infinite 6.96s;
}
.intro-animations-block .wave-avatar-1 .wave-avatar-wrap .userapp-avatar-bg4, .intro-animations-block .wave-avatar-2 .wave-avatar-wrap .userapp-avatar-bg4 {
  animation: pulse linear 14s infinite 4.66s;
}
.intro-animations-block .wave-avatar-1 .wave-avatar-wrap .userapp-avatar-bg5, .intro-animations-block .wave-avatar-2 .wave-avatar-wrap .userapp-avatar-bg5 {
  animation: pulse linear 14s infinite 2.32s;
}
.intro-animations-block .wave-avatar-1 .wave-avatar-wrap .userapp-avatar-bg6, .intro-animations-block .wave-avatar-2 .wave-avatar-wrap .userapp-avatar-bg6 {
  animation: pulse linear 14s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0, 0);
  }
  100% {
    transform: scale(3, 3);
    opacity: 0;
  }
}
.intro-animations-block .user-quote-block-2 {
  position: absolute;
  bottom: 133px;
  left: calc(50% - 300px);
}
.intro-animations-block .user-quote-2 {
  width: 506px;
  background: #FFFFFF;
  box-shadow: 0 0 7px 2px rgba(26, 84, 156, 0.05), 0 23px 36px 0 rgba(68, 78, 176, 0.7);
  border-radius: 6px 6px 6px 0;
  padding: 15px 20px;
  font-size: 18px;
  border: 1px solid #c3d6ee;
}
.intro-animations-block .user-quote-2 .user-quote-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.intro-animations-block .user-quote-2 .user-quote-container:after {
  display: block;
  content: '';
  width: 10px;
  height: 14px;
  background: url("../img/corner-2.png") center no-repeat;
  background-size: cover;
  position: absolute;
  left: -28px;
  bottom: -16px;
}
.intro-animations-block .user-quote-2 .quote-date {
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 15px;
  color: #7B8D9A;
}
.intro-animations-block .wave-avatar-2 {
  position: absolute;
  right: auto;
  top: auto;
  left: -270px;
  bottom: -195px;
}
.intro-animations-block .wave-avatar-2 .wave-avatar-wrap .userapp-avatar-bg1, .intro-animations-block .wave-avatar-2 .wave-avatar-wrap .userapp-avatar-bg2, .intro-animations-block .wave-avatar-2 .wave-avatar-wrap .userapp-avatar-bg3, .intro-animations-block .wave-avatar-2 .wave-avatar-wrap .userapp-avatar-bg4, .intro-animations-block .wave-avatar-2 .wave-avatar-wrap .userapp-avatar-bg5, .intro-animations-block .wave-avatar-2 .wave-avatar-wrap .userapp-avatar-bg6 {
  width: 122px;
  height: 122px;
  top: calc((429px - 122px)*.5);
  left: calc((429px - 122px)*.5);
  animation: pulse-2 linear 14s infinite 11.6s;
}
.intro-animations-block .wave-avatar-2 .wave-avatar-wrap .userapp-avatar-bg2 {
  animation: pulse-2 linear 14s infinite 9.28s;
}
.intro-animations-block .wave-avatar-2 .wave-avatar-wrap .userapp-avatar-bg3 {
  animation: pulse-2 linear 14s infinite 6.96s;
}
.intro-animations-block .wave-avatar-2 .wave-avatar-wrap .userapp-avatar-bg4 {
  animation: pulse-2 linear 14s infinite 4.66s;
}
.intro-animations-block .wave-avatar-2 .wave-avatar-wrap .userapp-avatar-bg5 {
  animation: pulse-2 linear 14s infinite 2.32s;
}
.intro-animations-block .wave-avatar-2 .wave-avatar-wrap .userapp-avatar-bg6 {
  animation: pulse-2 linear 14s infinite;
}
@keyframes pulse-2 {
  0% {
    transform: scale3d(0, 0, 0);
  }
  100% {
    transform: scale3d(5, 5, 5);
    opacity: 0;
  }
}
.intro-animations-block .voting {
  width: 462px;
  height: 346px;
  background-color: #fff;
  position: absolute;
  top: 234px;
  left: calc(50% - 240px);
  padding: 23px 27px;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0 2px 7px 2px rgba(26, 84, 156, 0.05), 0 36px 35px 0 rgba(54, 63, 143, 0.43);
}
.intro-animations-block .voting .voting-header {
  display: flex;
}
.intro-animations-block .voting .voting-header span {
  font-size: 18px;
  color: #4EC4F2;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 20px;
}
.intro-animations-block .voting .voting-header span img {
  display: block;
  width: 27px;
  height: 27px;
  position: relative;
  top: -2px;
  left: -10px;
}
.intro-animations-block .voting .voting-header span.days {
  color: #7B8D9A;
  font-weight: normal;
}
.intro-animations-block .voting .voting-content {
  margin-top: 25px;
  border: 1px solid #EEF5FF;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 173px;
}
.intro-animations-block .voting .voting-content > div {
  width: 50%;
  padding: 15px 10px;
  height: 100%;
  position: relative;
}
.intro-animations-block .voting .voting-content .your-vote {
  background-color: #EEF5FF;
  padding-left: 26px;
}
.intro-animations-block .voting .voting-content .your-vote:before {
  display: inline-block;
  position: absolute;
  left: -27px;
  top: 0;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 171px 27px;
  border-color: transparent transparent #EEF5FF transparent;
}
.intro-animations-block .voting .voting-content .text-min {
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  color: #7B8D9A;
  margin-bottom: -7px;
}
.intro-animations-block .voting .voting-content .text-max {
  font-size: 43px;
  color: #2C3948;
  font-weight: bold;
  margin-bottom: -13px;
}
.intro-animations-block .voting .voting-content .currency {
  font-size: 19px;
  color: #7B8D9A;
  font-weight: bold;
}
.intro-animations-block .voting .voting-content sup {
  font-size: 12px;
  color: #4EC4F2;
  font-weight: normal;
}
.intro-animations-block .voting .voting-content .procent {
  color: #4EC4F2;
}
.intro-animations-block .voting .voting-content .avatars {
  max-width: 92px;
  position: absolute;
  left: 10px;
  bottom: 10px;
}
.intro-animations-block .voting .voting-content .reset-vote {
  position: absolute;
  left: 26px;
  bottom: 11px;
  font-size: 18px;
  color: #414ECC;
  font-weight: bold;
}
.intro-animations-block .voting-wrap {
  position: relative;
  height: 100%;
}
.intro-animations-block .voting-slider {
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
}
.intro-animations-block .voting-slider-wrap {
  position: relative;
  width: 100%;
  height: 44px;
  max-width: 412px;
  margin: 0 auto;
}
.intro-animations-block .voting-slider .progress {
  height: 5px;
  background: #F2F4F7;
  position: relative;
  overflow: visible;
  border-radius: 3px;
}
.intro-animations-block .voting-slider .progress .progress-circle {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: left 1s;
  transition: left 1s;
  background-image: linear-gradient(-180deg, #414ECC 0%, #6874E7 100%);
  /*border: 1px solid #4959E6;*/
  box-shadow: 0 0 2px 0 rgba(60, 71, 83, 0.28), 0 3px 8px 0 rgba(47, 58, 156, 0.31);
  border-radius: 270px;
}
.intro-animations-block .voting-slider .progress .progress-bar {
  background-color: #7882E4;
  border-radius: 3px;
  -webkit-transition: width 1s;
  transition: width 1s;
}

.vote-all {
  opacity: 0.2;
}

.animation-val-trans {
  opacity: 1;
  transition: all 0.3s;
}

.benefits {
  display: flex;
  padding-left: 14px;
}


.benefits-item {
  max-width: 320px;
  margin-right: 60px;
}
.benefits-item:last-child {
  margin-right: 0;
}

.benefits-item-header {
  position: relative;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 8px;
  padding-left: 45px;
}
.benefits-item-header img {
  position: absolute;
  top: 48%;
  left: 4px;
  transform: translateY(-50%);
}

.benefits-item-content {
  color: #D2D6FF;
  padding-left: 5px;
  position: relative;
}
.benefits-item-content:before {
  display: block;
  position: absolute;
  content: '';
  width: 4px;
  top: 6px;
  left: -15px;
  border-radius: 2px;
  height: calc(100% - 11px);
}
.benefits-item-content.fair:before {
  background-color: #414ECC;
}
.benefits-item-content.transparent:before {
  background-color: #FFDEAF;
}
.benefits-item-content.affortable:before {
  background-color: #79F0E8;
}

.section-teams {
  background: linear-gradient(0deg, #F9FAFD 13%, #fff 100%);
  padding: 196px 0 125px;
}

@media (min-width: 768px) {
  .section-teams {
    /* overflow: hidden; */
    /* margin-top: -200px; */
    /* padding-top: 200px; */
  }

  .top-sections {
    overflow: hidden;
  }
}

.section-teams .container {
  max-width: 1280px;
  position: relative;
}
.section-teams h2 {
  margin-bottom: 15px;
}
.section-teams h3 {
  font-size: 24px;
  color: #95A5B1;
}
.section-teams .confetti {
  position: absolute;
}
.section-teams .confetti-image-1 {
  top: -271px;
  left: 38px;
  z-index: 1;
}
.section-teams .confetti-image-2 {
  right: -54px;
  top: -189px;
}
.section-teams .confetti-image-3 {
  bottom: -265px;
  left: -50px;
}
.section-teams .confetti-image-4 {
  bottom: -65px;
  left: 200px;
}
.section-teams .teams-intro {
  position: relative;
  z-index: 20;
}

#teams-intro-anchor {
display: block;
    position: relative;
    top: calc(-100px - 5vh);
    visibility: hidden;
    }

@media (max-width: 768px) {
#teams-intro-anchor {
    top: calc(-100px );
    }
}

#tab-slider-anchor {
display: block;
    position: relative;
    top: -40px;
    visibility: hidden;
    }

#intro-block  {
display: block;
    position: relative;
    top: -120px;
    visibility: hidden;
    }

.teams-filter {
  margin: 35px auto;
}
.teams-filter .badge{
  cursor: pointer;
}
.teams-filter .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 300px;
  position: relative;
  margin: 0 auto;
}
.teams-filter .wrap .badge {
  position: relative;
  z-index: 20;
}
.teams-filter .wrap .filter-cap {
  display: block;
  content: '';
  width: 100vw;
  position: absolute;
  top: -24px;
  right: 0;
  left: -20px;
  height: 77px;
  background: #fff;
  margin: 0 -20px;
  z-index: 1;
}

.teams-posts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 80px auto 138px;
  flex-wrap: wrap;
  max-width: 1040px;
}



.post {
  width: 304px;
  height: 224px;
  border-radius: 4px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
  color: #ffffff;
  margin-bottom: 56px;
  cursor: pointer;
  transition: all 0.6s;
  box-shadow: 0 0 4px 0 rgba(92, 144, 207, 0.02), 0 14px 24px 0 rgba(0, 61, 130, 0.09);
}
.post .post-content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 10;
  border-radius: 4px;
}
.post .badge {
  position: absolute;
  top: 15px;
  left: 16px;
}
.post .post-title {
  position: absolute;
  left: 15px;
  bottom: 35px;
  font-size: 15px;
  transition: all 0.6s;
}
.post .post-title .post-title-flag {
  width: 16px;
  height: 11px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.post .post-title .post-title-flag img {
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
}
.post .post-title .post-title-second {
  font-size: 11px;
  opacity: 0;
  transition: all 0.6s;
}
.post .post-members {
  position: absolute;
  left: 74px;
  bottom: 20px;
  text-transform: uppercase;
  font-size: 11px;
}

.post .post-members.new-team{
  left: 14px;
}

.post .post-members-avatars {
  width: 60px;
  height: 20px;
  position: absolute;
  left: -60px;
  bottom: 0;
  margin-right: 10px;
  overflow: hidden;
}
.post .post-members-avatars img {
  display: block;
  float: left;
  width: 20px;
  height: 20px;
  margin-right: -3px;
  position: relative;
  object-fit: cover;
  z-index: 3;

  border-radius: 50%;
    box-shadow: 2px 0px 4px 0px rgba(11, 15, 52, 0.66);
}
.post .post-members-avatars img:first-child {
  z-index: 5;
}
.post .post-members-avatars img:nth-child(even) {
  z-index: 4;
}
.post .permalink-arrow {
  position: absolute;
  right: 15px;
  bottom: 15px;
  transform: translate(-20px, 10px);
  opacity: 0;
}
.post:before {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(30, 36, 97, 0.6);
  z-index: 1;
}

.post:hover {
  background-size: 115%;
  box-shadow: 0 0 4px 0 rgba(92, 144, 207, 0.02), 0 14px 24px 0 rgba(46, 82, 123, 0.4);
}
.post:hover .permalink-arrow {
  transform: translate(0, 0);
  opacity: 1;
}
.post:hover .post-title {
  transform: translateY(-20px);
}
.post:hover .post-title .post-title-second {
  opacity: 1;
}

.our-demos h5 {
  text-transform: uppercase;
  margin-bottom: 60px;
  letter-spacing: 0.79px;
}

.our-demos-posts {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post-horizontal {
  height: 155px;
  border-radius: 4px;
  display: flex;
  border: 1px solid #dce1f4;
  box-shadow: 0 0 4px 0 rgba(92, 144, 207, 0.02), 0 14px 24px 0 rgba(0, 61, 130, 0.09);
  position: relative;
  z-index: 20;
}
.post-horizontal .post-horizontal-thumbnail {
  width: 210px;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  border-radius: 4px 0 0 4px;
}
.post-horizontal .post-horizontal-thumbnail:before {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(30, 36, 97, 0.6);
  z-index: 1;
}
.post-horizontal .post-horizontal-content {
  background-color: #ffffff;
  width: 376px;
  height: 100%;
  padding: 18px 24px 24px 32px;
  border-radius: 0 4px 4px 0;
}
.post-horizontal .post-horizontal-content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #CED8DF;
}
.post-horizontal .post-horizontal-content-header .title {
  font-size: 20px;
  font-weight: bold;
}
.post-horizontal .post-horizontal-content-body {
  padding-top: 25px;
  color: #7B8D9A;
}
.post-horizontal .post-horizontal-content-body .author {
  position: relative;
  z-index: 10;
  float: left;
}
.post-horizontal .post-horizontal-content-body .author .author-avatar {
  width: 40px;
  height: 40px;
  float: left;
  left: -52px;
  margin-right: 15px;
  position: absolute;
}

.author-avatar img{
  border-radius: 50%;
  width: 40px;
  height: 40px;
  object-fit: cover;
}

@media (max-width:768px) {
.author-avatar img {
    width: 34px;
    height: 34px;
}
}

.post-horizontal .post-horizontal-content-body .author .name {
  margin-bottom: -5px;
  font-weight: bold;
}
.post-horizontal .post-horizontal-content-body .author .location {
  font-size: 11px;
  text-transform: uppercase;
}
.post-horizontal .post-horizontal-content-body .author:after {
  display: block;
  content: '';
  clear: both;
}
.post-horizontal .post-horizontal-content-body .btn {
  float: right;
  font-size: 15px;
}
.post-horizontal .post-horizontal-content-body:after {
  display: block;
  content: '';
  clear: both;
}

.section-suggest {
  padding: 56px 0 0 0;
  background: #ffffff;
  position: relative;
  z-index: 10;
}
.section-suggest .container {
  max-width: 1024px;
  border-bottom: 1px solid #D8E4F5;
  padding-bottom: 57px;
  position: relative;
}
.section-suggest .confetti-image-5 {
  position: absolute;
  right: 0;
  top: -453px;
  z-index: 11;
}
.section-suggest .confetti-image-5 img {
  display: block;
}

.suggest-wrap {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}
.suggest-wrap p {
  font-size: 14px;
  color: #7B8D9A;
}

.suggest-content {
  padding-left: 44px;
}

.suggest-button {
  margin-left: -48px;
}

.section-video {
  padding: 194px 0 190px;
}

.section-video-intro {
  text-align: center;
}
.section-video-intro h2 {
  margin-bottom: 7px;
}
.section-video-intro p {
  font-size: 24px;
  color: #7B8D9A;
}

.video-popup {
  text-align: center;
  max-width: 824px;
  margin: 44px auto 0;
}

.section-slider {
  background-image: linear-gradient(-179deg, #EDF3FB 19%, #FFFFFF 75%);
  background-attachment: fixed;
  padding: 65px 0 148px;
  position: relative;
}
.section-slider .container {
  max-width: 1080px;
}

.slider-nav-wrapper {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  top: 120px;
  width: 100%;
  left: 0;
  z-index: 200;
  margin-bottom: 536px;
}
.slider-nav-wrapper .container {
  position: relative;
  z-index: 111;
}
.slider-nav-wrapper:after {
  display: block;
  content: "";
  margin-top: -460px;
}

.slider-cap {
  position: absolute;
  top: -65px;
  left: 00%;
  width: 100%;
  height: 250px;
  background: linear-gradient(-180deg, #edf3fb 49%, rgba(255, 255, 255, 0) 90%);
  z-index: 0;
}

.desktop-phone {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  top: calc(45vh - 175px);
  margin-left: calc(50% - 560px);
  margin-top: 10%;
  margin-bottom: 140px;
}

.slider-nav {
  background: #FFFFFF;
  box-shadow: 0 1px 4px 0 rgba(28, 63, 104, 0.09), 0 10px 34px 0 rgba(25, 65, 110, 0.13);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  border-bottom: none;
  flex-wrap: nowrap;
}
.slider-nav li {
  width: 100%;
}
.slider-nav li a {
  display: block;
  position: relative;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  color: #08AEEF;
  letter-spacing: 0;
  line-height: 24px;
  text-align: center;
  padding: 15px 0;
  text-decoration: none;
}
.slider-nav li a:after {
  display: block;
  content: '';
  height: 40px;
  border-right: 1px solid #C2CFD8;
  position: absolute;
  top: 8px;
  right: 0;
}
.slider-nav li a.active {
  color: #fff;
  background-image: linear-gradient(90deg, #40C9FF 0%, #00AAEC 100%);
  border-radius: 4px;
}
.slider-nav li a.active:before {
  display: block;
  content: '';
  height: 100%;
  width: 5px;
  position: absolute;
  top: 0;
  left: -1px;
  border-radius: 4px 0 0 4px;
  background: #40C9FF;
}
.slider-nav li a.active:after {
  display: none;
}
.slider-nav li:last-child a:after {
  display: none;
}

.slider-item {
  height: 100vh;
}
.slider-item:last-child {
  margin-bottom: 00px;
}

#slide-1 {
  margin-top: -790px;
}

@media (max-width: 991px) {
  #slide-1 {
    margin-top: 0px;
  }
}

.phone {
  width: 570px;
  height: 610px;
  background: url("../img/confetti-howitworks.png") top center no-repeat;
  background-size: cover;
  position: relative;
}
.phone .device {
  position: relative;
  width: 338px;
  height: 630px;
  background: url("../img/iphone.png") top center no-repeat;
  background-size: cover;
  margin: auto;
  border-radius: 60px;
  box-shadow: 5px 13px 14px 0 rgba(173, 186, 204, 0.25), 0 5px 5px 0 rgba(0, 21, 64, 0.05), 0 2px 2px 0 rgba(0, 21, 64, 0.14), inset 0 -5px 13px 0 rgba(0, 0, 0, 0.08), inset 0 2px 5px 2px #FFFFFF;
}
.phone .device-screen {
  position: absolute;
  width: 308px;
  height: 505px;
  background: #BDC3FF;
  border-radius: 3.71px;
  top: 10%;
  left: 4.3%;
}


.phone .device-screen img {
  border-radius: 2px;
}

.slider-content {
  margin-top: calc(45vh - 245px); 
  margin-left: -20%;
  margin-right: 6%;
}
.slider-content .text-small {
  font-size: 12px;
  font-weight: bold;
  color: #1FC0B5;
  text-transform: uppercase;
}
.slider-content h2 {
  margin-bottom: 30px;
  font-weight: bold;
}
.slider-content p {
  line-height: 30px;
  color: #7B8D9A;
}

.section-cta {
  color: #ffffff;
  overflow: hidden;
  padding-top: 110px;
  margin-top: -60px;
  background: linear-gradient(-131deg, #5461D6 4%, #5065D6 70%);
  /* margin-bottom:  -1px; */
}

.section-cta-content {
  background: linear-gradient(-131deg, #5461D6 4%, #5065D6 70%);
  padding: 0 0 110px 0;
  text-align: center;
  position: relative;
  /* background-color:  red; */
}
.section-cta-content:before {
  display: block;
  content: '';
  width: 110%;
  height: 104px;
  position: absolute;
  top: -104px;
  left: -5%;
  background: linear-gradient(-131deg, #5461D6 4%, #5065D6 70%);
  -webkit-clip-path: ellipse(95vw 300px at 50% 300px);
  clip-path: ellipse(95vw 300px at 50% 300px);
}
.section-cta-content h4 {
  margin-bottom: 25px;
  opacity: 0.8;
  letter-spacing: 0.29px;
}

.cta-link {
  font-size: 22px;
  font-weight: bold;
  color: inherit;
}
.cta-link img {
  margin-right: 15px;
}
.cta-link:hover, .cta-link:focus, .cta-link:active {
  color: inherit;
  text-decoration: none;
}

.section-brands {
  background: #F8FAFD;
  text-align: center;
  padding: 100px 0 80px;
}
.section-brands h5 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 1.4px;
}

.brands {
  margin-top: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-item {
  max-width: 230px;
  margin-right: 60px;
}
.brand-item:last-child {
  margin-right: 0;
}
.brand-item.forbes img {
  max-width: 117px;
}
.brand-item.the-digital-insurer img {
  max-width: 120px;
}

.brand-item.cnbc img {
  max-width: 160px;
}

footer .container {
  max-width: 1200px;
}

.footer-main {
  padding: 100px 0 85px;
}

.footer-menu {
  columns: 2;
  margin-left: -10px;
}
.footer-menu li a {
  display: block;
  color: #7B8D9A;
  font-weight: bold;
  line-height: 32px;
  padding-left: 10px;
  border-left: 3px solid transparent;
}
.footer-menu li a:hover {
  border-color: #4EC4F2;
  color: #2C3948;
  text-decoration: none;
}
.footer-menu li.active a {
  color: #2C3948;
  border-color: #4EC4F2;
}

.newsletter-form {
  margin-left: -35px;
}
.newsletter-form h4 {
  font-weight: bold;
  color: #414ECC;
}
.newsletter-form p {
  color: #7B8D9A;
  margin-bottom: 25px;
}
.newsletter-form input {
  height: 48px;
  border: 1px solid #CED8DF;
}
.newsletter-form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #C2CFD8;
}
.newsletter-form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #C2CFD8;
}
.newsletter-form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #C2CFD8;
}
.newsletter-form input:-moz-placeholder {
  /* Firefox 18- */
  color: #C2CFD8;
}
.newsletter-form button {
  max-width: 116px;
  width: 100%;
  font-size: 15px;
  color: #ffffff;
  background-image: linear-gradient(0deg, #414ECC 0%, #5966D9 99%);
  border: 1px solid #424FCC;
  border-radius: 3px !important;
  padding-left: 23px;
}
.newsletter-form button img {
  margin-left: 10px;
}

.footer-links {
  padding: 30px 0;
  border-top: 1px solid #CED8DF;
}

.footer-markets li {
  display: inline-block;
  margin-right: 32px;
}
.footer-markets li:last-child {
  margin-right: 0;
}
.footer-markets li a {
  display: block;
  max-width: calc(45vw - 24px);
  max-height: calc((45vw - 24px) * 48 / 163);
}
.footer-markets li:first-child a {
  display: block;
  max-width: calc(43vw - 24px);
  max-height: calc((43vw - 24px) * 48 / 154);
}
.footer-markets li a img{
  height:48px;
}


.footer-social {
  text-align: right;
  margin: 7px 0 0 0;
}
.footer-social li {
  display: inline-block;
  margin-right: 23px;
}
.footer-social li:last-child {
  margin-right: 0;
}
.footer-social li a {
  font-size: 28px;
  color: #95a5b1;
}

.nav-link-button {
  background-color: #fff;
  border: 1px solid #C2CFD8;
  box-shadow: 0 1px 2px 0 rgba(207, 207, 207, 0.2);
  border-radius: 3px;
  display: inline-block;
}

.btn {
  padding-left: 36px;
  padding-right: 36px;
  line-height: 2;
}

.btn-primary {
  background-image: linear-gradient(0deg, #414ECC 0%, #5966D9 99%);
  border: 1px solid #424FCC;
  box-shadow: 0 12px 20px 3px rgba(0, 24, 233, 0.1);
  border-radius: 3px;
  font-size: 17px;
  color: #FFFFFF;
  letter-spacing: 0.2px;
}

.btn-default {
  background: #FFFFFF;
  border: 1px solid #C2CFD8;
  box-shadow: 0 1px 2px 0 rgba(207, 207, 207, 0.2);
  border-radius: 3px;
  color: #95A5B1;
  letter-spacing: 0.18px;
  padding-left: 20px;
  padding-right: 20px;
  line-height: 24px;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
  border-radius: 20px;
  color: #ffffff;
}
.badge a {
  display: block;
  margin-bottom: -2px;
  text-decoration: none;
  color: inherit;
}
.badge.pink {
  background: hsl(234, 67%, 68%);
}
.badge.yellow {
  background: hsl(41, 92%, 58%);
}
.badge.green {
  background: hsl(176, 72%, 50%);
}
.badge.grey {
  background-color: hsl(205, 13%, 54%);
}
.badge.green.active {
  box-shadow: inset 0 2px 4px 0 hsl(176, 81%, 39%);
}
.badge.pink.active {
  box-shadow: inset 0 2px 4px 0 hsl(234, 50%, 54%);
}
.badge.yellow.active {
  box-shadow: inset 0 2px 4px 0 hsl(41, 82%, 42%);
}
.badge.grey.active {
  box-shadow: inset 0 2px 4px 0 hsl(205, 13%, 34%);
}

@media (max-width: 1200px) {
  .our-demos-posts {
    display: block;
  }

  .post-horizontal {
    max-width: 558px;
    margin: 0 auto 30px;
  }

  .desktop-phone {
  }
}
@media (max-width: 991px) {
  .intro-animations-block {
    /* transform: scale(0.8); */
  }

    .phone .device-screen {
      width: 91.5%;
      height: 80%;
      top: 10%;
      left: 4.3%;
    }

  .teams-posts {
    justify-content: space-around;
  }

  .post {
    margin-bottom: 25px;
  }
  .post .post-title {
    bottom: 55px;
  }
  .post .post-title .post-title-second {
    opacity: 0.7;
  }

  .slider-nav li a {
    font-size: 16px;
  }

  .desktop-phone {
    display: none;
  }

  .slider-item {
    height: auto;
    background: url("../img/confetti-howitworks.png") center no-repeat;
    background-size: 100%;
    margin-bottom: 80px;
  }




  .phone {
    width: 100%;
    height: auto;
  }
  .phone .device {
    width: 216px;
    height: 406px;
    border-radius: 30px;
  }

  .slider-content {
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 40px;
  }

  .phone {
    margin: auto;
    background-image: none;
  }

  .confetti {
    display: none;
  }
}


@media (max-width: 768px) {


  .phone .device {
    width: calc((100vh - 170px) * 216 / 406);
    height: calc(100vh - 170px);

    max-width: 336px;
    max-height: 630px;
  }

  .phone .device-video {
    width: calc((100vh - 170px - 80px) * 216 / 406);
    height: calc(100vh - 170px - 80px);

    max-width: 336px;
    max-height: 630px;
  }
  
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 16px;
  }

  /*  .container {
      padding-left: 25px;
      padding-right: 24px;
    }*/
  header {
    background-image: none;
  }
  header .navbar {
    top: 88px;
    z-index: 99;
    padding: 10px;
    transform: translateY(-88px);
  }
  header .navbar.navbar-sticky .nav-item-sticky .nav-link {
    margin-right: 0;
    padding: 0.5rem 1rem;
  }
  header .navbar.navbar-sticky .nav-item-sticky .nav-link.active {
    border-bottom: none;
  }
  header .navbar.navbar-sticky .navbar-brand {
    margin-top: -8px;
    padding-top: 7px;
    padding-bottom: 3px;
  }
  header .navbar-brand {
    max-width: 140px;
    margin-left: 10px;
    margin-top:0px;
  }
  header .hero {
    padding: 0 0 110px;
  }
  header .hero h1 {
    line-height: 1.4;
  }
  header .hero h1 span {
    display: block;
  }
  header .hero h3 span {
    font-weight: bold;
  }

  .navbar-collapse {
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(-10%);
    margin: 0 -15px;
  }
  .navbar-collapse.show {
    opacity: 1;
    transform: translateY(0);
  }

  .navbar-nav {
    padding: 70px 0;
    background: url("../img/nav-bg.png") center no-repeat;
    background-size: cover;
    text-align: center;
  }
  .navbar-nav .nav-item {
    font-weight: bold;
    font-size: 19px;
  }
  .navbar-nav .nav-item .nav-link-button {
    margin-top: 20px;
  }

  .intro {
    position: relative;
    top: -230px;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    background-image: none;
    margin-bottom: -210px;
  }
  .intro .container {
    position: relative;
    top: 0px;
    padding-bottom: 30px;
    background: url("../img/confetti-color-mobile2.png") calc(50vw - 140px) 245px no-repeat;
    background-size: 290px;
    /* background-position: left 20px top calc(40vw - 100px); */
  }
  .intro:before {
    display: block;
    content: '';
    background-image: linear-gradient(to right, #828cec, #4b59e0);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 200px;
    left: 0;
  }

  .intro-circle {
    position:relative;    
    overflow: hidden;
/*     -webkit-clip-path: circle(1500px  at 50% 1500px);
    clip-path: circle(1500px at 50% 1500px); */
    -webkit-clip-path: ellipse(580px 170px at 50% 170px);
    clip-path: ellipse(580px 170px at 50% 170px);
  }

  .intro-animations-block {
    margin-top: -150px;
    transform: scale(0.7435);
    /* left: -10%; */
    margin-bottom: -20px;
  }

  .benefits {
    display: block;
    padding-left: 14px;
  }

  .benefits-item {
    max-width: none;
    margin-right: 0;
    margin-bottom: 36px;
  }

  .benefits-item-header {
    padding-left: 45px;
    font-size: 17px;
    line-height: 26px;
  }
  .benefits-item-header img {
    left: 10px;
  }

  .benefits-item-content {
    font-size: 14px;
    line-height: 24px;
  }

  .section-teams {
    padding: 64px 0;
  }
  .section-teams h2 {
    margin-bottom: 12px;
  }
  .section-teams h3 {
    font-size: 16px;
    line-height: 26px;
  }

  .teams-filter {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    position: sticky;
    top: 53px;
    background-color: #fff;
    z-index: 200;
    padding-top: 23px;
    padding-bottom: 25px;
    margin-bottom: 0;

    overflow: hidden;
    margin-left: -23px;
    margin-right: -23px;
    margin-top: 20px;
    width: calc(100% + 46px);
  }

  .teams-posts {
    margin-top: 0;
    margin-bottom: 89px;
  }

  .post .post-members, .post .country {
    font-weight: bold;
  }
  .post .badge {
    height: 26px;
    line-height: 28px;
  }

  .post-horizontal {
    display: block;
    height: auto;
    position: relative;
    margin-bottom: 23px;
  }
  .post-horizontal:last-child {
    margin-bottom: 0;
  }
  .post-horizontal .post-horizontal-thumbnail {
    width: 100%;
    height: 125px;
    border-radius: 4px 4px 0 0;
  }
  .post-horizontal .post-horizontal-content {
    width: 100%;
    padding: 10px 18px 17px 18px;
    border-radius: 0 0 4px 4px;
  }
  .post-horizontal .post-horizontal-content-header {
    padding-bottom: 0;
    border-bottom: none;
  }
  .post-horizontal .post-horizontal-content-header .title {
    font-size: 16px;
  }
  .post-horizontal .post-horizontal-content-body {
    padding-top: 10px;
  }
  .post-horizontal .post-horizontal-content-body .author {
    padding-left: 47px;
  }
  .post-horizontal .post-horizontal-content-body .author .author-avatar {
    left: 0;
    width: 34px;
    height: 34px;
    margin-right: 12px;
  }
  .post-horizontal .post-horizontal-content-body .author .name {
    margin-bottom: -2px;
    margin-top: -3px;
  }
  .post-horizontal .post-horizontal-content-body .author .location {
    color: #95a5b1;
  }
  .post-horizontal .post-horizontal-content-body .btn-default {
    line-height: 32px;
    height: 32px;
    padding: 0 23px;
  }
  .post-horizontal .badge {
    position: absolute;
    top: 9px;
    left: 7px;
    z-index: 25;
    padding: 0 12px;
    height: 24px;
    line-height: 26px;
  }

  .badge {
    padding: 0 16px;
    font-weight: bold;
    height: 28px;
    line-height: 30px;
  }

  .our-demos h5 {
    font-size: 18px;
    margin-bottom: 25px;
    letter-spacing: 1.26px;
    position: relative;
    z-index: 10;
  }

  .section-suggest {
    padding-top: 27px;
  }
  .section-suggest .confetti-image-5 {
    width: 181px;
    height: 197px;
    top: -145px;
    right: 10px;
  }
  .section-suggest .container {
    border: none;
    padding-bottom: 0;
  }

  .suggest-wrap {
    text-align: center;
    border-bottom: 1px solid #D8E4F5;
    padding-bottom: 31px;
  }
  .suggest-wrap h5 {
    font-size: 18px;
    margin: 10px -10px 0;
  }
  .suggest-wrap p {
    margin: 0 -15px 16px;
  }
  .suggest-wrap .btn {
    font-size: 15px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 1.75;
    box-shadow: 0 7px 12px 2px rgba(0, 24, 233, 0.1);
    background-image: linear-gradient(to top, #414ecc, #5966d9);
  }

  .section-video {
    padding: 36px 0;
  }

  .video-popup {
    margin-top: 25px;
  }
  .video-popup a {
    display: block;
    margin: 0 auto;
    width: 264px;
    height: 152px;
  }

  .section-video-intro p {
    font-size: 18px;
    color: #95A5B1;
  }

  .section-cta {
    padding-top: 60px;
  }

  .section-cta-content {
    padding: 0 0 60px 0;
  }
  .section-cta-content:before {
    height: 51px;
    top: -50px;
  }
  .section-cta-content h4 {
    font-size: 18px;
  }

  .section-slider {
    padding-bottom: 80px;
  }

  .slider-item:last-child {
    margin-bottom: 40px;
  }
  .slider-item:last-child .slider-content {
    margin-top: 0;
  }

  .slider-cap {
    display: none;
  }

  .slider-content {
    margin-top: 0;
    margin-left: 0;
    padding: 0 8px;
  }
  .slider-content .text-small {
    display: none;
  }
  .slider-content p {
    line-height: 1.63;
  }

  .slider-nav-wrapper {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    position: sticky;
    top: 52px;
    left: auto;
    z-index: 998;
    margin-bottom: 100px;
    margin-top: -70px;
  }
  .slider-nav-wrapper:after {
    display: none;
  }

  #slide-1 {
    margin-top: 0;
  }

  .slider-nav {
    position: absolute;
    top: 1px;
    left: 0;
    right: 0;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
    box-shadow: 0 1px 4px 0 rgba(28, 63, 104, 0.09), 0 10px 34px 0 rgba(25, 65, 110, 0.13);
    overflow: hidden;
  }
  .slider-nav li {
    width: auto;
    flex-grow: 1;
  }
  .slider-nav li:first-child {
    margin-left: -7px;
  }
  .slider-nav li:last-child {
    margin-right: -7px;
  }
  .slider-nav li a {
    height: 40px;
    padding-left: 0;
    padding-right: 0;
    font-size: 15px;
    font-weight: normal;
    background-color: #E8EDF2;
    line-height: 10px;
    border-radius: 0;
    position: relative;
    z-index: 10;
  }
  .slider-nav li a:before {
    display: block;
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 7px;
    height: 40px;
    background: url("../img/tab-before.jpg") center no-repeat;
    background-size: cover;
    border: none;
  }
  .slider-nav li a:after {
    display: block;
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    width: 7px;
    height: 40px;
    background: url("../img/tab-after.jpg") center no-repeat;
    background-size: cover;
    border: none;
  }
  .slider-nav li a .mobile-only {
    display: inline;
    position: relative;
    z-index: 99;
  }
  .slider-nav li a .desktop-only {
    display: none;
  }
  .slider-nav li a.active {
    border-radius: 0;
    z-index: 9;
  }
  .slider-nav li a.active:before {
    display: block;
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 7px;
    height: 40px;
    background: url("../img/tab-before-active.jpg") center no-repeat;
    background-size: cover;
    border: none;
    border-radius: 0;
  }
  .slider-nav li a.active:after {
    display: block;
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    width: 7px;
    height: 40px;
    background: url("../img/tab-after-active.jpg") center no-repeat;
    background-size: cover;
    border: none;
  }
  .slider-nav li a.active .desktop-only {
    display: inline !important;
  }
  .slider-nav li.active {
    flex-grow: 2;
  }

  .section-brands {
    padding: 50px 0;
  }
  .section-brands h5 {
    font-size: 15px;
    letter-spacing: 1px;
  }

  .suggest-content {
    padding-left: 0;
  }

  .suggest-button {
    margin-left: 0;
  }

  .brands {
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 30px;
    margin-left:20px;
    margin-right:20px;
  }

  .brand-item {
    width: 50%;
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
  .brand-item.venturebeat img {
    max-width: 127px;
  }
  .brand-item.forbes img {
    max-width: 75px;
  }
  .brand-item.cnbc img {
    max-width: 135px;
  }
  .brand-item.techcrunch img {
    max-width: 133px;
  }

  .footer-main {
    padding: 43px 0 39px;
  }

  .footer-menu {
    margin-left: 0;
    margin-bottom: 80px;
  }
  .footer-menu li a {
    font-size: 14px;
  }

  .newsletter-form {
    margin-left: 0;
    text-align: center;
  }
  .newsletter-form h4 {
    font-size: 16px;
  }
  .newsletter-form p {
    font-size: 14px;
    margin-bottom: 19px;
  }
  .newsletter-form input {
    font-size: 15px;
  }
  .newsletter-form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 15px;
  }
  .newsletter-form input::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 15px;
  }
  .newsletter-form input:-ms-input-placeholder {
    /* IE 10+ */
    font-size: 15px;
  }
  .newsletter-form input:-moz-placeholder {
    /* Firefox 18- */
    font-size: 15px;
  }

  .footer-markets {
    text-align: center;
  }
  .footer-markets li {
    margin-right: 5vw;
  }
  .footer-markets li a {
    height: 48px;
  }
  .footer-markets li a img {
    height: 100%;
  }

  .footer-social {
    text-align: center;
    margin: 35px 0 0 0;
  }
}

@media (max-width: 500px) {

  .intro-circle {
    -webkit-clip-path: ellipse(350px 120px at 50% 120px);
    clip-path: ellipse(350px 120px at 50% 120px);
  }
}

@media (max-width: 667px) {
  .section-teams .confetti-image-4 {
    top:964px;
    bottom: 12.6%;
    left: 0;
    display: block;
    z-index: 1;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 16px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 16px;
  }
  

  .intro-animations-block {
    margin-top: -200px;
    transform: scale(0.4435);
    /* left: -10%; */
    margin-bottom: -170px;
  }

  .intro-animations-block {
    /* left: -35%; */
  }

  .brand-item {
    margin-right: 0;
    padding-right:8vw;
  }

  .post {
    width: 100%;
  }

  .section-cta-content {
    padding-bottom: 50px;
  }
  .section-cta-content h4 {
    max-width: 282px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.2px;
  }
  .section-cta-content:before {
    clip-path: ellipse(1000px 1000px at 50% 1000px);
  }

  .cta-link {
    font-size: 20px;
  }
}
@media (max-width: 360px) {
  .intro-animations-block {
    /* left: -50%; */
  }

  .teams-filter {
    top: 51px;
  }

  .suggest-wrap h5 {
    margin: 5px -20px 0;
  }

}
@media (max-width: 320px) {
  .intro-animations-block {
    transform: scale(0.4);
  }

  .post {
    background-size: cover;
  }

  .post-horizontal .post-horizontal-content {
    padding: 12px 10px;
  }
  .post-horizontal .post-horizontal-content-body .btn-default {
    padding-left: 5px;
    padding-right: 5px;
  }

}


.logo-press {
  filter:grayscale;
  -webkit-filter: grayscale(1);
  opacity:0.5;
}

.logo-bitcoin-magazine {opacity:0.24;}
.logo-bitcoin-com {opacity:0.7;}
.logo-cnbc {opacity:0.30;}
.logo-dig-ins {opacity:0.4; margin-top:-20px;}

.logo-press:hover {
  filter:none;
  -webkit-filter: none;
  opacity:1;
  transition: all 0.2s ease;
}



@media (min-width: 768px) and (max-width: 768px) {
.navbar-expand-md {
    -webkit-box-orient: initial!important;
    -webkit-box-direction: initial!important;
    flex-direction: initial!important;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-box-pack: justify!important;
    -ms-flex-pack: justify!important;
    justify-content: space-between!important;
}

.navbar-expand-md>.container, .navbar-expand-md>.container-fluid {
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important;
    padding-left:0px!important;
    padding-right:0px!important;
}

.navbar-expand-md .navbar-toggler {
    display: block!important;
}

.navbar-expand-md .navbar-collapse {
    display: block!important;
    -ms-flex-preferred-size: 100%!important;
    flex-basis: 100%!important;
}

.navbar-expand-md .navbar-collapse:not(.show){
    display: none!important;
}

.navbar-expand-md .navbar-nav {
    -webkit-box-orient: vertical; 
    /* -webkit-box-direction: normal; */
    -ms-flex-direction: column!important;
     flex-direction: column!important; 
}

.navbar-expand-md .navbar-nav .nav-link {
    padding-right: 33px;
    padding-left: 33px;
}
}

@media (min-width: 992px) {
  .demo-slider-offset {
    /* margin-top: -600px; */
    /* padding-top: 600px; */
  }
}

.js-video-vimeo-btn {
  cursor:pointer;
}