@font-face {
    font-family: AvertaStdLight;
    src: url(../fonts/Averta-Std-Light.otf);
}
@font-face {
    font-family: AvertaStdBold;
    src: url(../fonts/Averta-Std-Bold.otf);
    font-weight: bold;
}
* {
    margin: 0;
    padding: 0;
}
body {
    width: 100%;
    height: 100%;
    color:#090909;
    background: #fafafa;
    font-family: AvertaStdLight, sans-serif; 
    font-size: 23px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
     -webkit-transition: all 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:         all 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);

    -webkit-user-select:none;
    -webkit-text-size-adjust:none;
    min-width: 320px;
    
}
input, textarea, keygen, select, button {
    color:#090909;
    background: #fff;
    font-family: AvertaStdLight, sans-serif; 
    font-size: 23px;
}
aside, nav, footer, header, section { display: flex; }
a {
    color: #090909;
    
    -webkit-transition: color 0.75s cubic-bezier(0, 0.63, 0.41, 0.98), border 1.6s cubic-bezier(0, 0.63, 0.41, 0.98);
    -moz-transition: color 0.75s cubic-bezier(0, 0.63, 0.41, 0.98), border 1.6s cubic-bezier(0, 0.63, 0.41, 0.98);
    -ms-transition: color 0.75s cubic-bezier(0, 0.63, 0.41, 0.98), border 1.6s cubic-bezier(0, 0.63, 0.41, 0.98);
    -o-transition: color 0.75s cubic-bezier(0, 0.63, 0.41, 0.98), border 1.6s cubic-bezier(0, 0.63, 0.41, 0.98);
    transition: color 0.75s cubic-bezier(0, 0.63, 0.41, 0.98), border 1.6s cubic-bezier(0, 0.63, 0.41, 0.98);
}
.clear {
    clear: both;
}
::-webkit-input-placeholder {color:#090909;}
::-moz-placeholder          {color:#090909;}/* Firefox 19+ */
:-moz-placeholder           {color:#090909;}/* Firefox 18- */
:-ms-input-placeholder      {color:#090909;}
header {
    position:fixed;
    width: 100%;
    top: 0;
    z-index: 1200;

}

.header {
     -ms-transform: translate(0px, 0px); /* IE 9 */
    -webkit-transform: translate(0px, 0px); /* Safari */
    transform: translate(0px, 0px);
     -webkit-transition: all 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:         all 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);

}

.header.collapse {
    -ms-transform: translate(0px, -100px); /* IE 9 */
    -webkit-transform: translate(0px, -100px); /* Safari */
    transform: translate(0px, -100px);

}
.header-panel {
    height: 100px;
    background: #fff;
    width: 90%;
    margin: 0 auto;
    display: flex;
    box-shadow: 0px 0px 35px rgba(0,0,0,0.04);
}
.header-panel .icon-logo_header {
    margin-top: 41px;
    margin-left: 70px;
    margin-right: 20px;
    min-width: 176px;
}
.header-panel .icon-mute {
    background: url(../img/mute.svg) no-repeat;
}
.header-panel .icon-not-mute {
    background: url(../img/mute_off.svg) no-repeat;
}
.header-panel .icon-mute,
.header-panel .icon-not-mute {
    width: 20px;
    height: 18px;
    margin-top: 41px;
    cursor: pointer;
}
nav ul {
    margin-top: 38px;
    list-style: none;
}
nav ul li {
    float: left;
}
nav ul li+li {
    margin-left: 1px;
}
.lock {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    opacity: 0.5;
    cursor: pointer;
    display: none;
     -webkit-transition: all 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:         all 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tooltip {
    display: none;
    width: 275px;
    background-color: #fff;
    font-size: 18px;
    text-align: left;
    padding: 15px 20px;
    border-radius: 3px;
    position: absolute;
    left: 50%;
    z-index: 200;
    -webkit-box-shadow: 1px 1px 50px 5px rgba(0,0,0,0.25);
    -moz-box-shadow: 1px 1px 50px 5px rgba(0,0,0,0.25);
    box-shadow: 1px 1px 50px 5px rgba(0,0,0,0.25);
     -webkit-transition: all 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:         all 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tooltip::after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border-width: 15px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}
.hidden {
    display: none;
}
.menu li a {
    color: #090909;
    padding: 0 20px 10px 20px;
    text-decoration: none;
    position: relative;
    border-bottom: 1px solid #fff;
}

.topMenuRight {
   margin-left: auto;
   margin-right: 70px;
}
.topMenuRight .menu li a.active {
    border-bottom: 1px solid #090909;
}
.topMenuRight .menu li a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -1px;
  left: 0;
  background-color: #090909;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.topMenuRight .menu li a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.mobile-menu-list {
    display: none;
}
.icon {
    display: block;
}
.nav-link {
    display:block;
}
.next-link {
    margin: 0 auto;
    position: absolute;
    bottom: 50px;
    padding: 30px;
    bottom: 20px;
      -webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:         all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    
}

.next-link:hover {
    bottom:10px;
   
}
.mobile-menu {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 16px;
    right: 20px;
}
.mobile-menu.mobile-menu-close {
    background-position: -162px -30px;
    width: 38px;
    height: 38px;
    margin-left: 64px;
}
.inner-content {
    width: 90%;
    margin: 0 auto 0 auto;
    padding-top: 50px;
}

.video-container {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    background-color: #fafafa;
}

.video-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#background {
   
}
#fullpage {
   position: relative;
   overflow: hidden;

}
#fullpage .section {
    width: 100%;
}

#home {
    position: relative;
    background: url(../img/wave.png) no-repeat;
    background-size: contain;
    background-position: 50% 50%;

}


#home .inner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    height: 100vh;
    position: relative;
     -webkit-transition: all 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:         all 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);

}
#home .title {
    text-transform: lowercase;
    font-family: AvertaStdBold;
    font-weight: bold;
    font-size: 94px;
    color: #0092e6;
    -webkit-transition: all 1500ms cubic-bezier(0.165, 0.84, 0.44, 1) ;
    transition:         all 1500ms cubic-bezier(0.165, 0.84, 0.44, 1) ;
}
#home .desc {
    font-family: AvertaStdBold;
    font-weight: bold;
    font-size: 16px;
    color: #0092e6;
    -webkit-transition: all 1500ms cubic-bezier(0.165, 0.84, 0.44, 1) ;
    transition:         all 1500ms cubic-bezier(0.165, 0.84, 0.44, 1) ;
}


#mission .inner-content {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}
#mission .inner-content .mission-left {
    padding: 70px;
    background: #fff;
    opacity: 0;
    max-width: 480px;

     -ms-transform: translate(-50%, 0px); /* IE 9 */
    -webkit-transform: translate(-50%, 0px); /* Safari */
    transform: translate(-50%, 0px);
     -webkit-transition: all 1500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:         all 1500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-font-smoothing: antialiased;
    box-shadow: 0px 0px 35px rgba(0,0,0,0.04);

}
#mission.current-page .inner-content .mission-left {
    opacity: 1;
  -webkit-transition: all 1500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:         all 1500ms cubic-bezier(0.165, 0.84, 0.44, 1);
   -ms-transform: translate(0%, 0px); /* IE 9 */
    -webkit-transform: translate(0%, 0px); /* Safari */
    transform: translate(0%, 0px);
}

#mission .inner-content .mission-left h2 {
    font-family: AvertaStdBold;
    font-size: 44px;
    margin: 0 0 40px 0;
}
#mission .inner-content .mission-left p+p {
    margin-top: 50px;
}
#mission .inner-content .mission-left strong {
    font-family: AvertaStdBold;
}
#mission .inner-content .mission-right {
   font-family: AvertaStdBold;
   font-size: 44px;
   color: #0092e6;
   max-width: 50%;
   margin-left: 40px;
   margin-bottom: 200px;
}
#mission2 {
    margin-bottom: 50px;
    opacity: 0;
    -ms-transform: translate(0%, 100px); /* IE 9 */
    -webkit-transform: translate(0%, 100px); /* Safari */
    transform: translate(0%, 100px);
    -webkit-transition: all 1500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:         all 1500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

#mission2.current-page {
    opacity: 1;
    -ms-transform: translate(0%, 0px); /* IE 9 */
    -webkit-transform: translate(0%, 0px); /* Safari */
    transform: translate(0%, 0px);
}
#mission2 .inner-content .block {
    display: flex;
    background: #fff;
    margin: 0;
    padding: 70px;
    box-shadow: 0px 0px 35px rgba(0,0,0,0.04);
}
#mission2 .inner-content .block .graph {
    max-width: 700px;
    max-height: 416px;
    margin-right: 70px;
}
#mission2 .text h2 {
    font-family: AvertaStdBold;
    font-size: 44px;
    margin: 0 0 35px 0;
}


#team .inner-content {
    background: url(../img/team.jpg) center top no-repeat;
    background-size: auto;

    position: relative;
    top: 50px;
    max-width: 1280px;
    padding-bottom: 150px;

    transition: max-width 2s cubic-bezier(0.86, 0, 0.07, 1);
    -moz-transition: max-width 2s cubic-bezier(0.86, 0, 0.07, 1);
    -ms-transition: max-width 2s cubic-bezier(0.86, 0, 0.07, 1);
    -o-transition: max-width 2s cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: max-width 2s cubic-bezier(0.86, 0, 0.07, 1);
}
#team.current-page .inner-content {
    max-width: 1920px;
    width: auto;
    
}


#team .text {
    background-color: #0092e6;
    color: #fff;
    padding: 70px;
    min-height: 170px;
    margin: 500px auto -100px auto;
    opacity: 0;

    transform: translate(0px, 0px);
     -webkit-transition: all 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:         all 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
#team.current-page .text {
    opacity: 1;
 
}

#team .text h2 {
    font-family: AvertaStdBold;
    font-size: 44px;
    margin: 0 0 40px 0;
}
#team .text ul {
    margin-left: 25px;
}
#team2 .inner-content {
    padding-top: 50px;

}

#team2 {
    margin-bottom: -200px;
 
}
#team2 h2 {
    font-family: AvertaStdBold;
    font-size: 44px;
    color: #0092e6;
    margin: 3px auto 50px 70px; 
}
#team2 .blocks {

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    opacity: 0;
     transition: opacity 1s ease-out;
    -moz-transition: opacity 1s ease-out;
    -ms-transition: opacity 1s ease-out;
    -o-transition: opacity 1s ease-out;
}
#team2.current-page .blocks {
    opacity: 1;
   
}

#team2 .blocks div {
    background: #fff;
    padding: 70px;
    max-width: 400px;
    box-shadow: 0px 0px 35px rgba(0,0,0,0.04);
}
#team2 .blocks div+div {
    margin-left: 40px;
}
#team2 .blocks div h3 {
    font-family: AvertaStdBold;
    font-size: 23px;
  
}
#team2 .blocks div ul {
    margin-left: 25px;
}
#problem .text {
    background: #fff;
    padding: 60px 70px 60px 60px;
    margin-bottom: 33px;
    box-shadow: 0px 0px 35px rgba(0,0,0,0.04);
  
}
#problem .text h2 {
    font-family: AvertaStdBold;
    font-size: 48px;
    margin:0 0 25px 0;
}
#problem .text ul {
    margin-left: 25px;
}
#problem .items {
    display: flex;
    position: relative;
    margin-top: 0px;
}
#problem .items .items-list {
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: stretch;
    max-width: 330px;
    min-width: 280px;
    width: 100%;
    margin-right: 70px;
}
#problem .items .items-list .item-button {
    background: #fff;
    text-align: center;
    line-height: 60px;
    height: 60px;
    cursor: pointer;
    box-shadow: 0px 0px 35px rgba(0,0,0,0.03);

    -webkit-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:         all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
#problem .items .items-list .item-button+.item-button {
    margin-top: 15px;
}
#problem .items .items-list .item-button:hover, #problem .items .items-list .item-button.active {
    background: #0092e6;
    color: #fff;
}
#problem .items .items-pos {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    max-width: 880px;
    min-width: 600px;
    width: 100%;
}
#problem .items .items-pos .item-pos {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}
#problem .items .items-pos .item-pos .labels {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    line-height: 23px;
}
#problem .items .items-pos .item-pos .labels div {
    width: 50%;
}
#problem .items .items-pos .item-pos .labels div+div {
    text-align: right;
}
#problem .items .items-pos .item-pos .slider {
    margin-top: 14px;
    margin-bottom: 20px;
    position: relative;
    height: 4px;
    background-color: #687076;

}


#problem .items .items-pos .item-pos .slider .slider-pos {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 4px;
    background: rgba(183,222,237,1);
    background-image: -moz-linear-gradient( 180deg, rgb(0,110,174) 0%, rgb(0,146,230) 25%, rgb(0,146,230) 70%, rgb(128,208,255) 100%);
    background-image: -webkit-linear-gradient( 180deg, rgb(0,110,174) 0%, rgb(0,146,230) 25%, rgb(0,146,230) 70%, rgb(128,208,255) 100%);
    background-image: -ms-linear-gradient( 180deg, rgb(0,110,174) 0%, rgb(0,146,230) 25%, rgb(0,146,230) 70%, rgb(128,208,255) 100%);
    width: 0;
    z-index: 101;
    -webkit-transition: all 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:         all 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);



}

#problem .items .items-pos .item-pos .slider .slider-pos:after {
    content: '';
    display: block;
    height: 10px;
    width: 10px;
    position: absolute;
    top: -3px;
    right: -3px;
    background-color: #0092e6;

}

#problem2 {
    margin-top: -100px;
    position: relative;
    margin-bottom: 350px;
}


#problem2 h2 {
    font-family: AvertaStdBold;
    font-size: 44px;
    color: #0092e6;
    margin: 0 0 50px 70px;
}
#problem2 .graph {
    background: #fff;
    width: 100%;
    text-align: center;
    padding: 50px 0;
    opacity: 0;
     -ms-transform: translate(0%, 100px); /* IE 9 */
    -webkit-transform: translate(0%, 100px); /* Safari */
    transform: translate(0%, 100px);
    -webkit-transition: all 1500ms cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
    transition:         all 1500ms cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
}

#problem2.current-page .graph {
    opacity: 1;
     -ms-transform: translate(0%, 0px); /* IE 9 */
    -webkit-transform: translate(0%, 0px); /* Safari */
    transform: translate(0%, 0px);
}
#problem3 {
    margin-top: 50px;
    margin-bottom: -100px;
}
#problem3 .inner-content {
    background: url(../img/problem3-bg.jpg) 50% 0px no-repeat;
    background-size: auto;
    width: auto;
    max-width: 1280px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: -100px;
    padding-top: 600px;



    transition: max-width 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: max-width 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -ms-transition: max-width 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: max-width 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: max-width 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#problem3.current-page .inner-content{
   max-width: 100%;

}

#problem3 .blocks {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;

    position: absolute;
    top: 900px;
    
    
}
#problem3 .blocks .left-block, #problem3 .blocks .right-block {
    color: #fff;
    background: #0092e6;
    padding: 70px 95px;
    width: 250px;
    height: 50px;
    text-align: center;
    opacity: 0;
    
    -webkit-transition: all 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:         all 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
#problem3.current-page .blocks .left-block, #problem3.current-page .blocks .right-block {
    opacity: 1;
   
}

#problem3 h2 {
    font-family: AvertaStdBold;
    font-size: 48px;
    color: #0092e6;
    margin: 50px auto 0 auto;
    text-align: center;
    width: 90%;
}

#problem4 {

}
#problem4 .inner-content .white-block {
    background: #fff;
    padding: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    box-shadow: 0px 0px 35px rgba(0,0,0,0.04);
}
#problem4 .inner-content img {
    margin-left: 40px;
}
#problem4 .inner-content h2 {
    font-family: AvertaStdBold;
    font-size: 48px;
    max-width: 440px;
    margin-bottom: 40px;
}
#problem4 .inner-content .blocks {
    align-items: stretch; 
}
#problem4 .inner-content .blocks .speech-block {
    margin-bottom: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
#problem4 .inner-content .blocks .voicemail-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
#problem4 .inner-content .blocks strong {
    font-family: AvertaStdBold;
}
#problem4 .inner-content .blocks .icon-google {
    float: left;
    margin-right: 40px;
    min-width: 70px;
    max-width: 70px;
}
#problem4 .inner-content .blocks .icon-fi {
    float: left;
    margin-left: 9px;
    margin-right: 49px;
    min-width: 52px;
    max-width: 52px;
}
#solution h2 {
    font-family: AvertaStdBold;
    font-size: 44px;
    color: #0092e6;
    margin-bottom: 50px;
    margin-left: 70px;
}
#solution .collapse {
    background: #fff;
    padding: 70px;
    cursor: pointer;
    box-shadow: 0px 0px 35px rgba(0,0,0,0.04);
}
#solution .collapse+.collapse {
    margin-top: 15px;
}
#solution .collapse .collapse-button {
    float: right;
    margin-top: 25px;
    width: 18px;
    height: 18px;
    position: relative;
     -webkit-transition: transform 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:         transform 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

#solution .collapse .collapse-button:after {
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -1px;
    background-color: #000;
}

#solution .collapse .collapse-button:before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0px;
    margin-top: -1px;
    background-color: #000;
    opacity: 1;
}

#solution .collapse-button.more {
     -ms-transform: rotate(90deg); /* IE 9 */
    -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
    transform: rotate(90deg);
}

#solution .collapse .collapse-button.more:before {
    opacity: 0;
}

#solution .collapse .collapse-button.more:after {
    background-color: #0092e6;
}

#solution .collapse h3 {
    font-family: AvertaStdBold;
    font-size: 44px;
    line-height: 44px;
    margin-bottom: 5px;
}

#solution .collapse .full {
    margin-top: 30px;
    height: auto;
    opacity: 1;
    -webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:         all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    
}
#solution .collapse .hidden {
    margin-top: 0px;
    height: 0;
    display: block;
    overflow: hidden;
    opacity: 0;
}



#solution .collapse .full ul {
    margin-left: 25px;
}
#solution .collapse .full strong {
    font-family: AvertaStdBold;
}
footer {
    display: block;
    color: #fff;
    text-align: center;
    font-size: 16px;
    line-height: 100px;
    background-color: #0092e6;
    width: 100%;
}
#contact-us .inner-content {
    min-height: 650px;
}
#contact-us form {
    float: left;
    width: 49%;
    margin-right: 70px;
    margin-bottom: 70px;
}
#contact-us form button {
    border: 0;
    background: #fff;
    line-height: 60px;
    width: 330px;
    float:right;
    margin-top: 50px;
    cursor: pointer;
    box-shadow: 0px 0px 35px rgba(0,0,0,0.04);
}
#contact-us form button:hover, #contact-us form button:active {
    background: #0092e6;
    color: #fff;
}
.contact-form-fields {
    background: #fff;
    padding: 40px 70px 70px 70px;
    box-shadow: 0px 0px 35px rgba(0,0,0,0.04);
}
.contact-form-fields input, .contact-form-fields textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #090909;
    padding: 20px 0;
    margin-top: 30px;
    outline: none;
    box-shadow: none;
     -webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:         all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-form-fields input:focus, .contact-form-fields textarea:focus {
    border-bottom: 1px solid #0092e6;
}
.contact-form-fields input[required], .contact-form-fields textarea[required] {
    background: url(../img/asteriks.png) right 30px no-repeat;
}
.contact-form-fields input.valid-error, .contact-form-fields textarea.valid-error {
    background: url(../img/error.png) right 30px no-repeat;
}

.contact-form-fields textarea {
    resize:vertical;
    max-height: 300px;
}
.contact-info {
    margin-top: 120px;
     -ms-transform: translate(1050px, 0px); /* IE 9 */
    -webkit-transform: translate(1050px, 0px); /* Safari */
    transform: translate(1050px, 0px);
    -webkit-transition: all 1500ms cubic-bezier(0.165, 0.84, 0.44, 1) ;
    transition:         all 1500ms cubic-bezier(0.165, 0.84, 0.44, 1) ;
}

#contact-us.current-page .contact-info {
    -ms-transform: translate(0px, 0px); /* IE 9 */
    -webkit-transform: translate(0px, 0px); /* Safari */
    transform: translate(0px, 0px);
}


.contact-info h3 {
    color: #0092e6;
    font-family: AvertaStdBold;
    font-size: 44px;
}
.contact-info div {
    margin-top: 45px;
}


@media screen and (max-width: 1500px) {
    #problem3 .blocks {
        top: 1000px;
    }
}

@media screen and (min-width: 1280px) {
    .header-panel, .inner-content
    {
        max-width: 1280px;
    }
    #mission2 .inner-content .block, #team .text, #solution .collapse
    {
        max-width: 1140px;
    }
}
@media screen and (max-width: 1300px) {
    #mission2 .inner-content .block {
        display: block;
        text-align: center;
    }
}


@media screen and (max-width: 1100px) {
    .header-panel {
        display: block;
        width: 100%;
        left: 0;
        right: 0;
        position: absolute;
        height: 70px;
    }
    .header-panel .icon-logo_header {
        margin-left: 20px;
        margin-right: 0%;
        margin-top: 27px;
        float: left;
        background-position: 0 0;
        width: 295px;
        height: 30px;
    }
    #mute-button {
        float: right;
    }
    .header-panel .icon-mute {
      width: 42px;
      height: 38px;
      margin-top: 31px;
    }
    .header-panel .icon-not-mute {
      width: 42px;
      height: 38px;
      margin-top: 31px;
    }
    
    .mobile-menu {
        display: block;
        float: right;
    }
    .topMenuRight {
        display: none;
    }
    #team2 .blocks  div {
        max-width: 25%;
        padding: 4%;
    }
    #team2 .blocks  div+div {
        margin-left: 2%;
    }
    
    #problem2 .graph img {
        max-width: 98%;
    }
    #problem3 .inner-content {
        margin-bottom: 0px;
    }
    #problem4 .inner-content .white-block {
        display: block;
    }
    #problem4 .inner-content img {
        float: none;
        margin-top: 50px;
    }
    #problem4 .inner-content h2 {
        max-width: 100%;
        margin-bottom: 50px;
    }

    #mission .inner-content .mission-right {
        margin-bottom: 400px;
    }

    #team.current-page .inner-content {
        background-size: auto 400px;
    }
    #team.current-page .inner-content .text {
        margin-top: 350px;
    }

    #team .inner-content {
        background-size: auto 400px;
    }
    #team .inner-content .text {
        margin-top: 350px;
    }
    .menu {
        background: #fff;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        list-style: none;
    }
    .menu li a {
        text-decoration: none;
        font-size: 32px;
        padding: 20px 15px;
        display: block;
        width: auto;
        border-left: 1px solid #fff;
    }
    .menu li a.active {
        border-left: 1px solid #090909;
    }
    /*fixes*/
    #background {
        max-width: 100%;
        width: 100% !important;
    }
    
    #problem .items .items-list {
        max-width: none;
        min-width: unset;
        width: 30%;
        margin-right: 0;
        padding: 20px 0 20px 0px;
    }
    #problem .items .items-pos {
        max-width: none;
        min-width: unset;
        width: 70%;
        padding: 20px;
        padding-right: 0;
    }
    #mission2 .block .text p {
        text-align: left;
    }
}

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

    #team2 {
        margin-bottom: 0;
    }

    #problem2 {
        margin-top: 0;  
        margin-bottom: 150px;
    }

    #problem3.current-page .inner-content {
        background-size: auto 300px;
        padding-top: 250px;
    }

    #problem3 .blocks {
        top: 0px;
        position: relative;
    }
    #mission .inner-content {
        display: block;
        margin: 0 20px;
        width: auto;
        padding-top: 50px;
    }
    #mission .inner-content .mission-right, #mission .inner-content .mission-left {
        float: none;
        width: 100%;
        margin: 0;
    }
    #mission .inner-content .mission-left {
        padding: 45px 42px;
        max-width: calc(100% - 2 * 42px);
        max-width: -webkit-calc(100% - 2 * 42px);
        max-width: -moz-calc(100% - 2 * 42px);
    }
    #mission .inner-content .mission-left h2 {
        font-family: AvertaStdBold;
        margin: 0 0 45px 0;
    }
    #mission .inner-content .mission-right {
        margin: 45px 0;
        max-width: 100%;
    }

}


@media screen and (max-width: 768px) {
    body {
        
    }

    .video-container {
        display: none;
    }

    #home {
        background: none;
    }

    #home .inner-content {
        background: url(../img/wave.gif) no-repeat;
        background-size: 100%;
        background-position: 50% 50%;
        height: 90vh;
    }
   
    #mission2 .inner-content {
        margin: 0 20px;
        width: auto;
        padding-top: 50px;
    }
    #mission2 .inner-content .block {
        padding: 45px 42px;
        margin-top: 0;
    }
    #mission2 .inner-content .block .graph {
        max-width: 100%;
        margin-right: 0;
    }
    #mission2 .text h2 {
        
        margin: 20px 0 40px 0;
    }
    #team .text {
        padding: 45px 42px;
    }
    #team .text h2 {
      
        margin: 0 0 40px 0;
    }
    #team2 .inner-content {
        margin: 0 20px;
        width: auto;
    }
    #team2 h2 {
       
        margin: 3px 0 50px 0;
    }
    #team2 .blocks {
        display: block;
    }
    #team2 .blocks div {
        max-width: calc(100% - 2 * 42px);
        max-width: -webkit-calc(100% - 2 * 42px);
        max-width: -moz-calc(100% - 2 * 42px);
        padding: 45px 42px;
    }
    #team2 .blocks div+div {
        margin-left: 0;
        margin-top: 20px;
    }
    #team2 .blocks div h3 {
        
        margin-bottom: 40px;
    }
    #problem .inner-content, #problem2 .inner-content, #problem3 .inner-content, #problem4 .inner-content,
    #solution .inner-content, #goal .inner-content, #contact-us .inner-content {
        margin: 0 20px;
        width: auto;
    }
    #problem .text {
        padding: 45px 42px;
    }
    #problem .items {
        display: block;
    }
    #problem .items .items-list {
        display: block;
        max-width: 100%;
        margin-bottom: 20px;
    }
    #problem .items .items-list .item-button {
        display: inline-block;
        width: 49%;
        font-size: 29px;
    }
    #problem .items .items-pos .item-pos .labels div {
        font-size: 25px;
    }
    #problem2 h2 {
        margin: 0 0 40px 0;
    }
    #problem2 .graph img {
        margin-left: 0;
    }
    #problem3 .blocks .left-block, #problem3 .blocks .right-block {
        padding: 45px 42px;
        width: calc(48% - 2 * 42px);
        width: -webkit-calc(48% - 2 * 42px);
        width: -moz-calc(48% - 2 * 42px);
        min-width: calc(48% - 2 * 42px);
        min-width: -webkit-calc(48% - 2 * 42px);
        min-width: -moz-calc(48% - 2 * 42px);
        height: 120px;
        margin: 0 1%;
    }
    #problem4 .inner-content {
        margin-bottom: 20px;
    }
    #problem4 .inner-content h2 {
        
    }
    #solution h2 {
        
        margin-bottom: 50px;
    }
    #solution .collapse {
        padding: 45px 42px;
    }
    #solution .collapse h3 {
       
    }
    #contact-us form {
        float: none;
        width: auto;
        margin-right: 0;
        display: block;
    }
    .contact-form-fields {
        padding: 40px 42px 45px 42px;
    }
    .contact-info {
        margin-top: 150px;
        margin-bottom: 50px;
    }
    footer {
        font-size: 24px;
    }
    /*fixes*/
    #problem .items .items-list, #problem .items .items-pos {
        width: 100%;
        padding: 0;
    }
    #problem3 {
        margin-bottom: -100px;
    }
    #problem3 .inner-content {
        height: auto;
        padding-top: 0px;
    }

    #team.current-page .inner-content {
        background-size: auto 150px;
        width: 100%;
        max-width: 100%;
    }
    #team.current-page .inner-content .text {
        margin-top: 100px;
    }

    #team .inner-content {
        background-size: auto 150px;
        width: 100%;
        max-width: 100%;
        padding-bottom: 30px;
    }
    #team .inner-content .text {
        margin-top: 100px;
    }
    #team .text {
        margin: 100px 0 0 0  ;
    }
}
@media screen and (max-width: 450px) {
    #contact-us form button {
        width: 100%;
    }
    body {
        font-size: 20px;
    }
    header {
        width: 100vw;
    }
    .menu li a {
        font-size: 32px;
        padding: 10px 15px;
    }
    .tooltip {
        left: calc(50% - (275px + 2 * 20px) / 2);
        left: -webkit-calc(50% - (275px + 2 * 20px) / 2);
        left: -moz-calc(50% - (275px + 2 * 20px) / 2);
    }
    .header-panel .icon-logo_header {
      
    }
    .header-panel .icon-mute, .header-panel .icon-not-mute {
        width: 20px;
        height: 18px;
        margin-top: 41px;
    }
    .icon-menu {
        background-position: -122px -30px;
        width: 40px;
        height: 38px;
    }
    .inner-content {
        width: calc(100% - 2 * 20px);
        width: -webkit-calc(100% - 2 * 20px);
        width: -moz-calc(100% - 2 * 20px);        
    }
    #background {
        display: none;
    }
    #home .inner-content {
       
    }
    #home video {
         -webkit-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
        transition:         all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    #home .title {
        font-size: 54px;
         -webkit-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
        transition:         all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    #home .desc {
        font-size: 12px;
         -webkit-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
        transition:         all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    #problem .text {
        padding: 25px 22px;
    }
    #problem .text h2 {
        font-size: 33px;
    }
    #problem .items .items-list .item-button {
        display: inline-block;
        width: 100%;
        font-size: 23px;
    }
    #problem .items .items-pos {
        min-width: unset;
    }
    #problem .items .items-pos .item-pos .labels div {
        font-size: 18px;
    }
    #mission .inner-content .mission-left {
        padding: 25px 22px;
        max-width: calc(100% - 2 * 22px);
        max-width: -webkit-calc(100% - 2 * 22px);
        max-width: -moz-calc(100% - 2 * 22px);
    }
    #mission .inner-content .mission-left h2 {
        margin: 0 0 20px 0;
        font-size: 32px;
    }
    #mission .inner-content .mission-right {
        font-size: 44px;
    }
    #mission2 .inner-content .block {
        padding: 25px 22px;
    }
    #mission2 .text h2 {
        font-size: 33px;
        margin: 20px 0 20px 0;
    }
    #team .text {
        padding: 25px 22px;
    }
    #team .text h2 {
        font-size: 33px;
        margin: 0 0 20px 0;
    }
    #team2 h2 {
        font-size: 33px;
    }
    #team2 .blocks div h3 {
        font-size: 23px;
        margin-bottom: 20px;
        min-height: unset;
    }
    #problem2 h2 {
        font-size: 30px;
        margin: 0 0 20px 0;
    }
    #problem3.current-page .blocks .left-block, #problem3.current-page .blocks .right-block {
        padding: 25px 22px;
        width: calc(48% - 2 * 22px);
        width: -webkit-calc(48% - 2 * 22px);
        width: -moz-calc(48% - 2 * 22px);
        min-width: calc(48% - 2 * 22px);
        min-width: -webkit-calc(48% - 2 * 22px);
        min-width: -moz-calc(48% - 2 * 22px);
        height: 140px;
    }
    #problem3.current-page-2 .blocks .left-block, #problem3.current-page-2 .blocks .right-block {
        padding: 25px 22px;
        width: calc(48% - 2 * 22px);
        width: -webkit-calc(48% - 2 * 22px);
        width: -moz-calc(48% - 2 * 22px);
        min-width: calc(48% - 2 * 22px);
        min-width: -webkit-calc(48% - 2 * 22px);
        min-width: -moz-calc(48% - 2 * 22px);
        height: 140px;
    }
    #problem3 .block {
        margin-top: 330px;
    }
    #problem3 h2 {
        font-size: 33px;
    }
    #problem4 .inner-content h2 {
        font-size: 33px;
    }
    #problem4 .inner-content .white-block {
        padding: 20px;
    }
    #problem4 .inner-content img {
        margin-left: 0;
        max-width: calc(99% - 2 * 20px);
        max-width: -webkit-calc(99% - 2 * 20px);
        max-width: -moz-calc(99% - 2 * 20px);
    }
    #solution h2 {
        font-size: 33px;
        margin-left: 20px;
    }
    #solution .collapse {
        padding: 25px 22px;
    }
    #solution .collapse h3 {
        font-size: 33px;
    }
    .contact-form-fields {
        padding: 20px 22px 25px 22px;
    }
    .contact-info h3 {
        font-size: 30px;
    }
    footer {
        font-size: 14px;
    }
}
@media screen and (max-width: 350px) {
    .icon-menu {
       
    }
    .header-panel .icon-logo_header, #mute-button {
       
    }
    #mission2 .inner-content, #team2 .inner-content {
        padding-top: 0;
    }
}