<div id="ngdialog1" class="ngdialog ngdialog-theme-default ng-scope">
  <div class="ngdialog-overlay"></div>
  <div class="ngdialog-content" role="document">
    <div class="text-block">
      <div>
        <div class="form-description">
          <h4 id="ngdialog1-aria-labelledby" class="ng-binding">Tell us what you think</h4>
          <p class="ng-binding">
            <p>Want to collaborate? Or be our partner? Have some proposal?</p>
            <p>Please drop a line, we are listening.</p>
          </p>
        </div>
        <form class="ng-pristine ng-invalid ng-invalid-required ng-valid-email">
          <p class="ng-binding"></p>
          <div>
            <div class="inline-row input-row">
              <input autocomplete="off" id="name" type="text" placeholder="YOUR NAME"> <span class="error-label"></span>
              <div class="error-message ng-active">
                <!-- ngMessage: required -->
                <div ng-message="required" class="ng-binding ng-scope">This field is required</div>
              </div>
            </div>
            <div class="inline-row input-row">
              <input autocomplete="off" type="text" id="email" placeholder="E-MAIL"> <span class="error-label ng-hide"></span>
              <div class="error-message ng-active ng-hide">
                <!-- ngMessage: required -->
                <div class="ng-binding ng-scope">This field is required</div>
                <!-- ngMessage: email -->
              </div>
            </div>
            <div class="clear"></div>
          </div>
          <div class="form-group input-row">
            <textarea type="text" name="message" id="message" placeholder="TELL US EVERYTHING"></textarea> <span class="error-label textarea"></span>
            <div class="error-message ng-active">
              <div class="ng-binding ng-scope">This field is required</div>
            </div>
          </div>
          <div class="submit-control">
            <button class="btn btn-primary submit-button ng-binding">Submit message</button>
          </div>
        </form>
      </div>
     
    </div>
    <div class="ngdialog-close"></div>
  </div>
</div>
@-webkit-keyframes ngdialog-fadeout {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0
  }
}

@keyframes ngdialog-fadeout {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0
  }
}

@-webkit-keyframes ngdialog-fadein {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}

@keyframes ngdialog-fadein {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}

.ngdialog {
  box-sizing: border-box
}

.ngdialog *,
.ngdialog:after,
.ngdialog:before {
  box-sizing: inherit
}

.ngdialog {
  position: fixed;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.ngdialog.ngdialog-disabled-animation,
.ngdialog.ngdialog-disabled-animation .ngdialog-content,
.ngdialog.ngdialog-disabled-animation .ngdialog-overlay {
  -webkit-animation: none!important;
  animation: none!important
}

.ngdialog-overlay {
  position: fixed;
  background: rgba(0, 0, 0, .4);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadein .5s;
  animation: ngdialog-fadein .5s
}

.ngdialog-no-overlay {
  pointer-events: none
}

.ngdialog.ngdialog-closing .ngdialog-overlay {
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadeout .5s;
  animation: ngdialog-fadeout .5s
}

.ngdialog-content {
  background: #fff;
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadein .5s;
  animation: ngdialog-fadein .5s;
  pointer-events: all
}

.ngdialog.ngdialog-closing .ngdialog-content {
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadeout .5s;
  animation: ngdialog-fadeout .5s
}

.ngdialog-close:before {
  font-family: Helvetica, Arial, sans-serif;
  content: '\00D7';
  cursor: pointer
}

body.ngdialog-open,
html.ngdialog-open {
  overflow: hidden
}

@-webkit-keyframes ngdialog-flyin {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px)
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@keyframes ngdialog-flyin {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px)
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@-webkit-keyframes ngdialog-flyout {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px)
  }
}

@keyframes ngdialog-flyout {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px)
  }
}

.ngdialog.ngdialog-theme-default {
  padding-bottom: 160px;
  padding-top: 160px
}

.ngdialog.ngdialog-theme-default.ngdialog-closing .ngdialog-content {
  -webkit-animation: ngdialog-flyout .5s;
  animation: ngdialog-flyout .5s
}

.ngdialog.ngdialog-theme-default .ngdialog-content {
  -webkit-animation: ngdialog-flyin .5s;
  animation: ngdialog-flyin .5s;
  background: #f0f0f0;
  border-radius: 5px;
  color: #444;
  font-family: Helvetica, sans-serif;
  font-size: 1.1em;
  line-height: 1.5em;
  margin: 0 auto;
  max-width: 100%;
  padding: 1em;
  position: relative;
  width: 450px
}

.ngdialog.ngdialog-theme-default .ngdialog-close {
  border-radius: 5px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0
}

.ngdialog.ngdialog-theme-default .ngdialog-close:before {
  background: 0 0;
  border-radius: 3px;
  color: #bbb;
  content: '\00D7';
  font-size: 26px;
  font-weight: 400;
  height: 30px;
  line-height: 26px;
  position: absolute;
  right: 3px;
  text-align: center;
  top: 3px;
  width: 30px
}

.ngdialog.ngdialog-theme-default .ngdialog-close:active:before,
.ngdialog.ngdialog-theme-default .ngdialog-close:hover:before {
  color: #777
}

.ngdialog.ngdialog-theme-default .ngdialog-message {
  margin-bottom: .5em
}

.ngdialog.ngdialog-theme-default .ngdialog-input {
  margin-bottom: 1em
}

.ngdialog.ngdialog-theme-default .ngdialog-input input[type=email],
.ngdialog.ngdialog-theme-default .ngdialog-input input[type=password],
.ngdialog.ngdialog-theme-default .ngdialog-input input[type=text],
.ngdialog.ngdialog-theme-default .ngdialog-input input[type=url],
.ngdialog.ngdialog-theme-default .ngdialog-input textarea {
  background: #fff;
  border: 0;
  border-radius: 3px;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  margin: 0 0 .25em;
  min-height: 2.5em;
  padding: .25em .67em;
  width: 100%
}

.ngdialog.ngdialog-theme-default .ngdialog-input input[type=email]:focus,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type=password]:focus,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type=text]:focus,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type=url]:focus,
.ngdialog.ngdialog-theme-default .ngdialog-input textarea:focus {
  box-shadow: inset 0 0 0 2px #8dbdf1;
  outline: 0
}

.ngdialog.ngdialog-theme-default .ngdialog-buttons {
  *zoom: 1
}

.ngdialog.ngdialog-theme-default .ngdialog-buttons:after {
  content: '';
  display: table;
  clear: both
}

.ngdialog.ngdialog-theme-default .ngdialog-button {
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  float: right;
  font-family: inherit;
  font-size: .8em;
  letter-spacing: .1em;
  line-height: 1em;
  margin: 0 0 0 .5em;
  padding: .75em 2em;
  text-transform: uppercase
}

.ngdialog.ngdialog-theme-default .ngdialog-button:focus {
  -webkit-animation: ngdialog-pulse 1.1s infinite;
  animation: ngdialog-pulse 1.1s infinite;
  outline: 0
}

@media (max-width:568px) {
  .ngdialog.ngdialog-theme-default .ngdialog-button:focus {
    -webkit-animation: none;
    animation: none
  }
}

.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-primary {
  background: #3288e6;
  color: #fff
}

.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-secondary {
  background: #e0e0e0;
  color: #777
}

@font-face {
    font-family: GeometriaBold;
    src: url(/styles/fonts/geometria_bold.c021a02b.eot);
    src: url(/styles/fonts/geometria_bold.c021a02b.eot?#iefix) format('embedded-opentype'), url(/styles/fonts/geometria_bold.6a926ad9.woff) format('woff'), url(/styles/fonts/geometria_bold.30b341c2.woff2) format('woff2'), url(/styles/fonts/geometria_bold.9df94a72.svg) format('svg'), url(/styles/fonts/geometria_bold.550a6547.ttf) format('truetype')
}

@font-face {
    font-family: GeometriaLight;
    src: url(/styles/fonts/geometria_light.d3b09a71.eot);
    src: url(/styles/fonts/geometria_light.d3b09a71.eot?#iefix) format('embedded-opentype'), url(/styles/fonts/geometria_light.5b9a47b0.woff) format('woff'), url(/styles/fonts/geometria_light.b002bb3c.woff2) format('woff2'), url(/styles/fonts/geometria_light.fff75692.svg) format('svg'), url(/styles/fonts/geometria_light.354501eb.ttf) format('truetype');
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Geometria;
    src: url(/styles/fonts/geometria_regular.adcf4607.eot);
    src: url(/styles/fonts/geometria_regular.adcf4607.eot?#iefix) format('embedded-opentype'), url(/styles/fonts/geometria_regular.6fc8f71f.woff) format('woff'), url(/styles/fonts/geometria_regular.60291cce.woff2) format('woff2'), url(/styles/fonts/geometria_regular.73997a30.svg) format('svg'), url(/styles/fonts/geometria_regular.f8f0dc50.ttf) format('truetype')
}

@-ms-keyframes pulse-shadow {
    0% {
        box-shadow: none
    }
    50% {
        box-shadow: 0 0 18px #fff
    }
    100% {
        box-shadow: none
    }
}

@keyframes pulse-shadow {
    0% {
        box-shadow: none
    }
    50% {
        box-shadow: 0 0 18px #fff
    }
    100% {
        box-shadow: none
    }
}

.browsehappy {
    margin: .2em 0;
    background: #ccc;
    color: #000;
    padding: .2em 0
}

*,
:after,
:before {
    box-sizing: border-box
}

body,
html {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    font-size: 14px;
    font-family: Geometria, sans-serif;
    font-weight: 400
}

strong {
    font-weight: 400;
    font-family: GeometriaBold, sans-serif
}

.w-icons-logo {
    background: url(../images/logo.png) no-repeat 0 0 scroll transparent;
    width: 55px;
    height: 32px;
    display: inline-block;
    vertical-align: middle
}

.left_menu_block {
    /* background-color:#003951; */
    /* box-shadow:0 2px 10px rgba(0,22,33,.3)inset; */
}

.left_menu_block ul {
    height: 100%;
    display: block;
    width: 100%;
    margin: 15px 0 0;
    padding: 0 0 0 15px;
    font-size: 0
}

.left_menu_block ul li {
    vertical-align: middle;
    margin: 0 10px;
    position: relative;
    list-style: none outside none
}

.left_menu_block ul li:before {
    content: "";
    position: absolute;
    top: 27px;
    left: 7px;
    width: 18px;
    height: 25px;
    border-left: 1px solid #fff;
    z-index: -1;
    opacity: .3
}

.left_menu_block ul li:last-child:before {
    border: none
}

.left_menu_block ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    height: 15px;
    padding: 0;
    font-size: 13px;
    font-weight: 400;
    width: 15px;
    border-radius: 50%;
    display: inline-block;
    margin: 12px 10px 12px 0;
    border: 1px solid #2a6881;
    background-color: #96afb6
}

.left_menu_block ul li a span.link-text {
    padding-left: 25px;
    display: block;
    width: 250px
}

.left_menu_block .main_slider_menu li a {
    background-color: transparent;
    border: 1px solid #FFF
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 800;
    height: 47px;
    background-color: rgba(0, 57, 81, .62);
    box-shadow: 0 2px 10px rgba(0, 22, 33, .3)
}

.header .nav-pills {
    height: 100%;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 0
}

.header .nav-pills li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px
}

.header .nav-pills li a {
    display: block;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    height: 43px;
    padding: 16px 16px 5px;
    font-size: 13px;
    font-family: GeometriaLight, sans-serif
}

.header .nav-pills li.logotype {
    height: 100%;
    padding: 7px 50px 0
}

.header .nav-pills li.logotype a {
    padding-top: 0
}

.header .nav-pills li.logotype .help {
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
    font-size: 19px;
    font-family: GeometriaLight, sans-serif
}

@media screen and (max-width:768px) {
    .header .nav-pills li:not(.logotype) {
        display: none
    }
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 800;
    height: 22px;
    text-align: center;
    width: 100%;
    background-color: #003952
}

.footer p {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 11px;
    font-family: Geometria, sans-serif;
    font-weight: 400;
    color: #019f8b;
    padding-top: 5px
}

.container {
    width: 100%;
    height: 100%
}

#main_slide {
    height: 100%
}

a.info-button {
    height: 46px;
    width: 46px;
    display: inline-block;
    border-radius: 50%;
    color: #019f8b;
    cursor: pointer
}

.info-block {
    text-align: center;
    font-size: 14px
}

@media (min-width:480px) {
    .info-block {
        margin: 0 0 -30px
    }
}

.info-block p,
.info-block-text p {
    padding: 0;
    margin: 0
}

@media (min-height:600px) {
    .info-block-text {
        margin-top: 5%
    }
}

.scroll_background {
    position: fixed;
    height: 100%;
    width: 100%
}

#wl_fifth_slider_block,
#wl_first_slider_block,
#wl_fourth_slider_block,
#wl_second_slider_block,
#wl_third_slider_block {
    position: fixed
}

#wl_first_slider {
    position: fixed;
    background: url(../images/stars.png) repeat 0 0 scroll transparent
}

#wl_fifth_slider,
#wl_fourth_slider,
#wl_second_slider,
#wl_third_slider {
    position: fixed
}

.scroll_block {
    height: 39500px;
    color: #fff
}

.scroll_block .slider_text {
    text-align: center;
    position: fixed;
    z-index: 100;
    width: 100%
}

.scroll_block .slider_text h1 {
    font-size: 32px;
    font-family: GeometriaLight, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    margin: .5em auto 0
}

@media (min-height:600px) {
    .scroll_block .slider_text h1 {
        margin-bottom: 15px
    }
}

.scroll_block .slider_text p.content {
    font-size: 1em;
    padding: 0 30%;
    z-index: 100
}

.wl_fifth_slider_block,
.wl_first_slider_block,
.wl_fourth_slider_block,
.wl_second_slider_block,
.wl_third_slider_block {
    height: 6000px
}

.stars {
    background: url(../images/stars.png) repeat 0 0 scroll transparent;
    position: fixed
}

#click_play {
    position: fixed;
    left: 50%;
    margin-left: -60px;
    width: 120px;
    text-align: center;
    bottom: 10%;
    cursor: pointer
}

@media screen and (max-width:768px) {
    #click_play {
        visibility: hidden
    }
}

#click_play .letsgo-button {
    border: 2px solid #fff;
    font-size: 15px;
    text-transform: uppercase;
    padding: 10px 0 7px;
    cursor: pointer;
    background-color: transparent;
    color: #fff;
    outline: 0;
    text-decoration: none;
    border-radius: 35px;
    display: block;
    width: 120px;
    height: 40px;
    margin: 0 auto
}

#click_play .letsgo-button span {
    display: block
}

#click_play .letsgo-button img {
    margin: 0 auto;
    display: none
}

#click_play:hover .letsgo-button {
    background: #fff;
    width: 40px;
    border-radius: 15px;
    transition: all .15s linear
}

#click_play:hover .letsgo-button span {
    display: none
}

#click_play:hover .letsgo-button img {
    display: block
}

#scroll_down {
    position: fixed;
    left: 50%;
    margin-left: -50px;
    width: 100px;
    text-align: center;
    bottom: 10%;
    cursor: pointer
}

@media screen and (max-width:768px) {
    #scroll_down {
        visibility: hidden
    }
}

#scroll_down img {
    margin-bottom: 10px
}

#scroll_down p {
    text-transform: uppercase;
    margin: 0;
    font-size: 10px
}

.scroll_down_blue>p {
    color: #0f7d93
}

#wl_loader_block {
    z-index: 9999;
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: #003951
}

#right_sidebar {
    z-index: 9995;
    position: fixed;
    right: 38px;
    top: 25%;
    padding-left: 18px
}

@media screen and (max-width:768px) {
    #right_sidebar {
        display: none
    }
}

#right_sidebar ul {
    margin: -26px -18px -26px 0;
    padding: 0;
    list-style: none
}

#right_sidebar ul li {
    text-align: right;
    height: 40px;
    position: relative
}

#right_sidebar ul li:after {
    content: "";
    position: absolute;
    top: 27px;
    right: 0;
    width: 18px;
    height: 25px;
    border-left: 1px solid #fff;
    z-index: -1;
    opacity: .3
}

#right_sidebar ul li:last-child:after {
    border: none
}

#right_sidebar ul li a {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    margin: 12px 10px 12px 0;
    text-decoration: none;
    border: 1px solid #FFF
}

#right_sidebar ul li a span {
    display: none
}

#right_sidebar ul li a span.link-text {
    margin-right: 4px;
    line-height: 40px
}

#right_sidebar ul li a span.icon-menu {
    height: 34px;
    width: 34px;
    border: 2px solid #FFF;
    background-color: #23B3B4;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    right: 2px;
    background-position: center center;
    background-repeat: no-repeat
}

#right_sidebar ul li a span.icon-menu.idea {
    background-image: url(../images/01-idea-icon.png)
}

#right_sidebar ul li a span.icon-menu.task {
    background-image: url(../images/02-task-icon.png)
}

#right_sidebar ul li a span.icon-menu.mockup {
    background-image: url(../images/03-mockup-icon.png);
    background-position: 8px center
}

#right_sidebar ul li a span.icon-menu.design {
    background-image: url(../images/04-design-icon.png)
}

#right_sidebar ul li a span.icon-menu.launch {
    background-image: url(../images/05-launch-icon.png);
    background-position: -1px center
}

#right_sidebar ul li a span.icon-menu.testing {
    background-image: url(../images/06-testing-icon.png)
}

#right_sidebar ul li a span.icon-menu.support {
    background-image: url(../images/07-support-icon.png);
    background-position: -1px center
}

#right_sidebar ul li a:hover {
    transition: .25s linear;
    margin: 0 -1px 0 0;
    font-size: 13px;
    padding: 0 45px 0 20px;
    position: relative;
    height: 38px;
    width: auto;
    background-color: #23B3B4;
    border: none;
    color: #FFF;
    border-radius: 32px
}

#right_sidebar ul li a:hover span {
    transition: 0s linear;
    display: block
}

#right_sidebar ul li.active a {
    margin: 0 -1px 0 0;
    font-size: 13px;
    padding: 0 45px 0 20px;
    position: relative;
    height: 38px;
    width: auto;
    background-color: #23B3B4;
    border: none;
    color: #FFF;
    border-radius: 32px
}

#right_sidebar ul li.active a span {
    display: block
}

#right_sidebar ul:hover a {
    position: relative;
    margin: 0 -1px 0 0;
    height: 38px;
    width: 38px;
    background-color: #23B3B4;
    border: none;
    color: #FFF;
    border-radius: 32px;
    opacity: 1!important
}

#right_sidebar ul:hover a span.icon-menu {
    display: block
}

.image_loader_wrapper {
    position: relative
}

.image_loader_wrapper .la-ball-fussion {
    position: absolute;
    top: 50%;
    left: 50%
}

@media screen and (min-width:768px) {
    #mobile_menu {
        display: none
    }
}

.mobile-menu-button {
    display: inline-block;
    cursor: pointer;
    position: fixed;
    top: 5px;
    left: 30px
}

@media screen and (min-width:768px) {
    .mobile-menu-button {
        display: none
    }
}

.mobile-menu-button div {
    border: 2px solid #2A6881;
    padding: 5px;
    border-radius: 17px;
    text-align: center;
    height: 35px;
    width: 35px;
    background-color: rgba(0, 57, 81, .62)
}

.mobile-menu-button div img {
    margin: -3px 0 0 -3px
}

.language-menu {
    cursor: pointer;
    position: fixed;
    top: 5px;
    right: 30px;
    display: inline-block
}

.language-menu div {
    border: 2px solid #2A6881;
    padding: 5px;
    border-radius: 17px;
    text-align: center;
    height: 35px;
    width: 35px;
    background-color: rgba(0, 57, 81, .62)
}

.language-menu span {
    font-size: 14px;
    color: #FFF;
    display: block;
    line-height: 25px
}

.language-menu span:hover {
    text-shadow: 0 0 10px #fff
}

.language-menu ul {
    list-style: none;
    display: none
}

.language-menu-hover div {
    height: 80px
}

.language-menu-hover ul {
    display: block;
    float: left;
    text-align: left;
    padding: 0;
    margin: 0
}

.language-menu-hover ul li {
    text-align: left;
    margin: 0 0 3px
}

.language-menu-hover ul li a {
    color: #FFF;
    text-decoration: none
}

.language-menu-hover ul li a:hover {
    text-shadow: 0 0 10px #fff
}

.main-content {
    height: 100%
}

.page-container {
    padding: 50px 0 20px
}

.clear {
    clear: both
}

.page-container.not-found {
    height: 100%;
    overflow: auto;
    text-align: center;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzBmNTA0ZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzBhMzQzZCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzA2MjAyYSIvPjwvcmFkaWFsR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
    background: radial-gradient(ellipse at 50% 50%, #0f504f 0, #0a343d 100%, #06202a)
}

.page-container.not-found .stars-bg {
    height: 100%
}

.page-container.not-found h1 {
    margin: 0 auto;
    font-size: 160px;
    font-family: GeometriaLight, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #b3f9f6
}

.page-container.not-found .description {
    margin-top: -20px;
    color: #b3f9f6;
    font-weight: 100;
    text-transform: uppercase
}

.page-container.contacts {
    height: 100%;
    overflow: auto;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwYTM4ZCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzFlNTg5OSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2VmZWZlZiIvPjwvcmFkaWFsR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
    background: radial-gradient(ellipse at 50% 50%, #00a38d 0, #1e5899 100%, #efefef)
}

.page-container.contacts .social-buttons {
    clear: both;
    height: 45px;
    padding: 40px 0 90px
}

.page-container.contacts .social-buttons ul {
    display: block;
    text-align: center;
    clear: both;
    margin: 0 auto;
    width: 275px;
    overflow: hidden;
    padding: 0
}

.page-container.contacts .social-buttons ul li {
    display: inline-block;
    float: left;
    margin: 0 5px
}

.page-container.contacts .social-buttons ul li a {
    display: block;
    height: 46px;
    width: 45px;
    background: url(../images/social.png) no-repeat
}

.page-container.contacts .social-buttons ul li a.facebook {
    background-position: 0 0
}

.page-container.contacts .social-buttons ul li a.facebook:hover {
    background-position: 0 -48px
}

.page-container.contacts .social-buttons ul li a.vk {
    background-position: -182px 0
}

.page-container.contacts .social-buttons ul li a.vk:hover {
    background-position: -182px -48px
}

.page-container.contacts .social-buttons ul li a.twitter {
    background-position: -61px 0
}

.page-container.contacts .social-buttons ul li a.twitter:hover {
    background-position: -61px -48px
}

.page-container.contacts .social-buttons ul li a.github {
    background-position: -243px 0
}

.page-container.contacts .social-buttons ul li a.github:hover {
    background-position: -243px -48px
}

.page-container.contacts .social-buttons ul li a.linkedin {
    background-position: -304px 0
}

.page-container.contacts .social-buttons ul li a.linkedin:hover {
    background-position: -304px -48px
}

.page-container.contacts .social-buttons ul li a.gplus {
    background-position: -122px 0
}

.page-container.contacts .social-buttons ul li a.gplus:hover {
    background-position: -122px -48px
}

.page-container.contacts .text-block {
    color: #fff;
    font-weight: 700;
    font-family: GeometriaLight, sans-serif
}

@media screen and (min-width:800px) {
    .page-container.contacts .text-block {
        width: 780px;
        margin: 0 auto
    }
}

@media screen and (max-width:800px) {
    .page-container.contacts .text-block {
        margin: 0 20px
    }
}

.page-container.contacts .text-block .top-block {
    text-align: center
}

.page-container.contacts .text-block .top-block h1 {
    text-transform: uppercase;
    font-size: 32px;
    font-family: GeometriaLight, sans-serif;
    font-weight: 400;
    font-style: normal
}

.page-container.contacts .text-block .top-block h4 {
    font-size: 20px;
    text-transform: uppercase
}

.page-container.contacts .text-block .top-block p {
    font-size: 14px;
    margin: 0;
    line-height: 21px
}

@media (max-width:480px) {
    .page-container.contacts .text-block .center-block.margin-top-100 {
        margin-top: 20px
    }
}

@media (min-width:481px) {
    .page-container.contacts .text-block .center-block.margin-top-100 {
        margin-top: 100px
    }
}

.page-container.contacts .text-block .center-block {
    clear: both;
    margin-top: 45px
}

@media (max-width:480px) {
    .page-container.contacts .text-block .center-block {
        margin-top: 0
    }
}

.page-container.contacts .text-block .center-block .block-column {
    width: 33%;
    text-align: center
}

@media (max-width:480px) {
    .page-container.contacts .text-block .center-block .block-column {
        width: 90%;
        margin: 45px auto 0
    }
}

@media (min-width:481px) {
    .page-container.contacts .text-block .center-block .block-column {
        float: left
    }
}

.page-container.contacts .text-block .center-block .block-column a {
    color: #fff;
    text-decoration: none
}

.page-container.contacts .text-block .center-block .block-column a:hover {
    text-decoration: underline
}

.page-container.contacts .text-block .center-block .block-column .marker {
    width: 62px;
    height: 60px;
    background: url(../images/contacts.png) no-repeat;
    margin: 0 auto
}

.page-container.contacts .text-block .center-block .block-column .marker.map-marker {
    background-position-x: -69px
}

.page-container.contacts .text-block .center-block .block-column .marker.email-marker {
    background-position-x: -135px
}

.page-container.contacts .text-block .center-block .block-column .info h3 {
    text-transform: uppercase;
    font-size: 20px
}

.page-container.contacts .text-block .center-block .block-column .info>p {
    font-size: 17px
}

.page-container.contacts .text-block .center-block .block-column .info>p.small-text {
    font-size: 14px;
    line-height: 21px
}

.page-container.contacts .form-description {
    text-align: center
}

.page-container.contacts .form-description h4 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 0
}

.page-container.contacts .form-description p {
    max-width: 430px;
    display: inline-block
}

.page-container.contacts .bottom-block {
    width: 988px;
    margin: 80px auto 0;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-family: GeometriaLight, sans-serif
}

@media (max-width:480px) {
    .page-container.contacts .bottom-block {
        width: 100%;
        margin: 20px auto 0
    }
}

.page-container.contacts .bottom-block h4 {
    font-size: 20px;
    text-transform: uppercase;
    padding: 0 20px
}

.page-container.contacts .bottom-block p {
    font-size: 14px;
    padding: 0 20px
}

.page-container.contacts .bottom-block .map {
    width: 988px;
    margin-bottom: 50px;
    margin-top: 40px
}

@media (max-width:988px) {
    .page-container.contacts .bottom-block .map {
        width: 100%
    }
}

.page-container.contacts .bottom-block .map img {
    width: 100%;
    height: auto
}

.page-container.contacts form input,
.page-container.contacts form textarea {
    background: 0 0;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #fff;
    padding: 5px;
    color: #fff;
    font-size: 13px
}

.page-container.contacts form input:focus,
.page-container.contacts form textarea:focus {
    border-bottom: 1px solid #fff;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: 0
}

.page-container.contacts form .inline-row:nth-child(1) {
    float: left;
    width: 45%
}

.page-container.contacts form .inline-row:nth-child(2) {
    float: right;
    width: 45%
}

.page-container.contacts form .inline-row input {
    width: 100%
}

.page-container.contacts form .input-row span.error-label {
    display: block;
    width: 27px;
    height: 26px;
    background: url(../images/error.png) center center no-repeat;
    background-size: contain;
    position: absolute;
    top: -2px;
    right: 14px
}

.page-container.contacts form .input-row span.error-label.textarea {
    top: 87px;
    right: 14px
}

.page-container.contacts form textarea {
    width: 100%;
    resize: none;
    height: 90px
}

.page-container.contacts form .form-group {
    padding-top: 25px
}

.page-container.contacts form input::-webkit-input-placeholder,
.page-container.contacts form textarea::-webkit-input-placeholder {
    color: #fff
}

.page-container.contacts form input::-moz-placeholder,
.page-container.contacts form textarea::-moz-placeholder {
    color: #fff
}

.page-container.contacts form input:-moz-placeholder,
.page-container.contacts form textarea:-moz-placeholder {
    color: #fff
}

.page-container.contacts form input:-ms-input-placeholder,
.page-container.contacts form textarea:-ms-input-placeholder {
    color: #fff
}

.page-container.contacts form .submit-control {
    text-align: center;
    padding-top: 50px
}

.page-container.contacts form .submit-control .submit-button {
    min-width: 275px;
    margin: 0 auto;
    border: 1px solid #fff;
    font-size: 22px;
    text-transform: uppercase;
    padding: 20px 35px;
    cursor: pointer;
    background-color: transparent;
    color: #fff;
    outline: 0
}

.page-container.contacts form .input-row {
    position: relative
}

.page-container.contacts form .error-message {
    position: absolute;
    left: 0;
    bottom: -16px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    font-family: GeometriaLight, sans-serif
}

[angular-ripple] {
    position: relative;
    overflow: hidden
}

.angular-ripple {
    display: block;
    position: absolute;
    background-color: rgba(0, 0, 0, .1);
    border-radius: 50%;
    transform: scale(0)
}

.angular-ripple.animate {
    animation: ripple .35s linear
}

@keyframes ripple {
    100% {
        opacity: 0;
        transform: scale(2.5)
    }
}

#stars_background {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1
}

.stars-bg {
    background: url(../images/stars.png) repeat 0 0 scroll transparent
}

.big-marker {
    width: 165px;
    height: 175px;
    background: url(../images/rockets.png) center center no-repeat;
    margin: 0 auto
}

.big-marker.rocket-1 {
    background-position: -331px 0
}

.big-marker.rocket-2 {
    background-position: -165px 0
}

.big-marker.rocket-3 {
    background-position: 0 0
}

.grid {
    width: 800px;
    margin: 0 auto
}

@media (max-width:480px) {
    .grid {
        width: 100%
    }
}

.grid a {
    display: block;
    background: url(../images/technologies.png) no-repeat
}

@media (min-width:480px) {
    .grid a {
        float: left
    }
}

@media (max-width:480px) {
    .grid a {
        margin: 0 auto!important
    }
}

.grid a.yii {
    width: 106px;
    height: 84px;
    background-position: 0 -258px;
    margin: 15px 13px 15px 0
}

@media (max-width:480px) {
    .grid a.yii {
        background-position: 0 -688px
    }
}

.grid a.yii:hover {
    background-position: 0 -688px
}

.grid a.mysql {
    width: 205px;
    height: 117px;
    background-position: 0 0;
    margin-right: 34px
}

@media (max-width:480px) {
    .grid a.mysql {
        background-position: 0 -430px
    }
}

.grid a.mysql:hover {
    background-position: 0 -430px
}

.grid a.nodejs {
    width: 202px;
    height: 117px;
    background-position: -271px 0;
    margin: 0 34px
}

@media (max-width:480px) {
    .grid a.nodejs {
        background-position: -271px -430px
    }
}

.grid a.nodejs:hover {
    background-position: -271px -430px
}

.grid a.css {
    width: 66px;
    height: 117px;
    background-position: -536px 0;
    margin: 0 50px 0 34px
}

@media (max-width:480px) {
    .grid a.css {
        background-position: -536px -430px
    }
}

.grid a.css:hover {
    background-position: -536px -430px
}

.grid a.html {
    width: 66px;
    height: 117px;
    background-position: -708px 0;
    margin: 0 0 0 50px
}

@media (max-width:480px) {
    .grid a.html {
        background-position: -708px -430px
    }
}

.grid a.html:hover {
    background-position: -708px -430px
}

.grid a.jquery {
    width: 203px;
    height: 117px;
    background-position: 0 -116px;
    margin: 0 14px 0 0
}

@media (max-width:480px) {
    .grid a.jquery {
        background-position: 0 -546px
    }
}

.grid a.jquery:hover {
    background-position: 0 -546px
}

.grid a.amazon {
    width: 203px;
    height: 117px;
    background-position: -231px -116px;
    margin: 0 12px 0 14px
}

@media (max-width:480px) {
    .grid a.amazon {
        background-position: -231px -546px
    }
}

.grid a.amazon:hover {
    background-position: -231px -546px
}

.grid a.ionic {
    width: 209px;
    height: 117px;
    background-position: -460px -116px;
    margin: 0 15px 0 12px
}

@media (max-width:480px) {
    .grid a.ionic {
        background-position: -460px -546px
    }
}

.grid a.ionic:hover {
    background-position: -460px -546px
}

.grid a.phonegap {
    width: 87px;
    height: 117px;
    background-position: -696px -116px;
    margin: 0 0 0 15px
}

@media (max-width:480px) {
    .grid a.phonegap {
        background-position: -696px -546px
    }
}

.grid a.phonegap:hover {
    background-position: -696px -546px
}

.grid a.angular {
    width: 202px;
    height: 84px;
    background-position: -130px -258px;
    margin: 15px 9px 15px 13px
}

@media (max-width:480px) {
    .grid a.angular {
        background-position: -130px -688px
    }
}

.grid a.angular:hover {
    background-position: -130px -688px
}

.grid a.mongo {
    width: 202px;
    height: 84px;
    background-position: -352px -258px;
    margin: 15px 12px 15px 9px
}

@media (max-width:480px) {
    .grid a.mongo {
        background-position: -352px -688px
    }
}

.grid a.mongo:hover {
    background-position: -352px -688px
}

.grid a.backbone {
    width: 202px;
    height: 84px;
    background-position: -579px -258px;
    margin: 15px 0 15px 11px
}

@media (max-width:480px) {
    .grid a.backbone {
        background-position: -579px -688px
    }
}

.grid a.backbone:hover {
    background-position: -579px -688px
}

.grid a.laravel {
    width: 202px;
    height: 84px;
    background-position: -289px -358px;
    float: none;
    clear: both;
    margin: 0 auto
}

@media (max-width:480px) {
    .grid a.laravel {
        background-position: -289px -788px
    }
}

.grid a.laravel:hover {
    background-position: -289px -788px
}

.bottom-block .question-job {
    padding-bottom: 20px!important;
    font-size: 20px;
    font-weight: 700
}

.big-button {
    min-width: 275px;
    margin: 20px auto 0;
    border: 1px solid #fff;
    font-size: 22px;
    text-transform: uppercase;
    padding: 20px 35px 15px;
    cursor: pointer;
    background-color: transparent;
    color: #fff;
    outline: 0;
    text-decoration: none;
    border-radius: 35px
}

.bottom-block.padding-bottom {
    padding-bottom: 50px
}

.portfolio .filter {
    text-align: center
}

.portfolio .filter ul {
    list-style: none
}

.portfolio .filter ul li {
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    font-family: GeometriaLight, sans-serif;
    padding: 10px 15px;
    border: 2px solid transparent;
    color: #fff;
    border-radius: 18px;
    margin: 0 10px;
    line-height: 11px
}

.portfolio .filter ul li.active {
    border: 2px solid #fff
}

.portfolio #grid {
    max-width: 1180px;
    margin: 15px auto 0
}

@media (max-width:767px) {
    .portfolio #grid {
        width: 90%
    }
}

@media (max-width:767px) {
    .portfolio #grid .span3 {
        width: 100%
    }
}

@media (min-width:768px) {
    .portfolio #grid .span3 {
        width: 45%
    }
}

@media (max-width:767px) {
    .portfolio #grid figure {
        margin: 0 auto 2%
    }
}

@media (min-width:768px) {
    .portfolio #grid figure {
        float: left;
        margin: 0 2% 2%
    }
}

.portfolio #grid figure .item-container {
    position: relative
}

.portfolio #grid figure .item-container img {
    display: block;
    width: 100%;
    height: auto
}

@media (max-width:480px) {
    .portfolio #grid figure .item-container {
        min-height: 246px
    }
}

.portfolio #grid figure .item-container .picture-item__details {
    display: block;
    opacity: 0;
    position: absolute;
    top: 2%;
    left: 2%;
    width: 96%;
    height: 96%;
    background: url(../images/project_bg.png) repeat-x;
    padding-top: 10%;
    text-align: center;
    transition: all .7s ease
}

.portfolio #grid figure .item-container .picture-item__details .picture-item__category {
    color: #26c2c0;
    text-transform: uppercase;
    font-size: 14px;
    margin: 0;
    font-family: GeometriaLight, sans-serif
}

.portfolio #grid figure .item-container .picture-item__details .picture-item__separator {
    width: 45px;
    margin: 25px auto;
    border-bottom: 3px solid #fff;
    font-family: GeometriaLight, sans-serif
}

.portfolio #grid figure .item-container .picture-item__details .picture-item__title {
    color: #fff;
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    font-family: GeometriaLight, sans-serif
}

.portfolio #grid figure .item-container .picture-item__details .picture-item__description {
    color: #fff;
    display: block;
    margin: 20px 10% 0;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    font-family: GeometriaLight, sans-serif
}

@media (max-width:480px) {
    .portfolio #grid figure .item-container .picture-item__details .picture-item__description {
        display: none
    }
}

@media (min-width:768px) and (max-width:1000px) {
    .portfolio #grid figure .item-container .picture-item__details .picture-item__description {
        display: none
    }
}

.portfolio #grid figure .item-container .picture-item__details .picture-item__link {
    color: #26c2c0;
    border: 1px solid #26c2c0;
    border-radius: 35px;
    padding: 15px 20px;
    text-transform: uppercase;
    margin-top: 50px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer
}

.portfolio #grid figure .item-container .picture-item__details .picture-item__link:hover {
    color: #26c2c0;
    border: 1px solid #fff;
    background-color: #fff
}

.portfolio #grid figure .item-container:hover .picture-item__details {
    display: block;
    opacity: 1
}

.page-container.contacts {
    font-family: GeometriaLight, sans-serif
}

.page-container.contacts .category a {
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: underline;
    color: #fff
}

.page-container.contacts .category a:hover {
    text-decoration: none
}

.page-container.contacts .project-link {
    color: #fff;
    display: block;
    margin: 25px 0
}

.page-container.contacts ul.stack {
    list-style: none;
    text-align: center;
    margin-top: 25px;
    padding: 0 0 0 15px
}

.page-container.contacts ul.stack li {
    display: inline-block
}

.page-container.contacts ul.stack li:after {
    content: "|";
    padding: 0 7px;
    text-align: center
}

.page-container.contacts ul.stack li:last-child:after {
    content: ""
}

.page-container.contacts .project-info {
    padding-top: 40px
}

.page-container.contacts .project-info .page {
    text-align: center
}

.page-container.contacts .project-info .page .page-description {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 25px auto 30px;
    max-width: 780px
}

@media (max-width:780px) {
    .page-container.contacts .project-info .page .page-description {
        margin: 25px 20px 0
    }
}

@media (max-width:780px) {
    .page-container.contacts .project-info .page img {
        max-width: 90%
    }
}

.page-container.contacts .project-info .page img.full-width {
    width: 100%;
    margin-top: -5px
}

@media (max-width:780px) {
    .page-container.contacts .project-info .page img.full-width {
        max-width: 100%
    }
}

.project_nav {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 30px auto 60px;
    overflow: hidden;
    text-align: center;
    padding-top: 25px;
    position: relative;
    max-width: 780px
}

@media (max-width:780px) {
    .project_nav {
        margin: 25px 20px
    }
}

.project_nav h3 {
    padding: 0;
    margin: 0
}

@media (max-width:480px) {
    .project_nav h3 {
        display: none
    }
}

.project_nav .prev_project {
    float: left;
    margin-top: -25px;
    cursor: pointer
}

.project_nav .prev_project a {
    display: block;
    height: 44px;
    width: 44px;
    float: left
}

.project_nav .prev_project .project_nav_title {
    float: left;
    text-align: left;
    margin: 5px 0 0 10px
}

@media (max-width:480px) {
    .project_nav .prev_project .project_nav_title {
        margin: 13px 0 0 10px
    }
}

.project_nav .prev_project .project_nav_title span {
    color: #84a5b7
}

.project_nav .prev_project:hover h3 {
    text-decoration: underline
}

.project_nav .next_project {
    float: right;
    margin-top: -25px;
    cursor: pointer
}

.project_nav .next_project a {
    display: block;
    height: 44px;
    width: 44px;
    float: right
}

.project_nav .next_project .project_nav_title {
    float: right;
    text-align: right;
    margin: 5px 10px 0 0
}

@media (max-width:480px) {
    .project_nav .next_project .project_nav_title {
        margin: 13px 10px 0 0
    }
}

.project_nav .next_project .project_nav_title span {
    color: #84a5b7
}

.project_nav .next_project:hover h3 {
    text-decoration: underline
}

.project_nav a.all_projects {
    text-transform: uppercase;
    font-size: 17px;
    color: #fff;
    text-decoration: none;
    position: absolute;
    top: 25px;
    left: 50%;
    margin-left: -64px
}

@media (max-width:780px) {
    .project_nav a.all_projects {
        display: none
    }
}

.project_nav a.all_projects:hover {
    text-decoration: underline
}

.page-container.contacts .team {
    color: #fff;
    margin: 70px auto 0
}

@media screen and (max-width:800px) {
    .page-container.contacts .team {
        margin: 30px auto 0
    }
}

@media screen and (min-width:960px) {
    .page-container.contacts .team {
        width: 960px
    }
}

.page-container.contacts .team .team-person {
    width: 320px;
    text-align: center;
    min-height: 220px
}

@media screen and (min-width:640px) {
    .page-container.contacts .team .team-person {
        float: left
    }
}

@media screen and (max-width:640px) {
    .page-container.contacts .team .team-person {
        margin: 0 auto
    }
}

.page-container.contacts .team .team-person .person-photo {
    position: relative;
    padding: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 164px;
    height: 164px;
    margin: 0 auto
}

.page-container.contacts .team .team-person .person-photo img {
    border-radius: 50%;
    max-height: 140px;
    max-width: 140px
}

.page-container.contacts .team .team-person .person-photo .first_photo {
    display: block
}

.page-container.contacts .team .team-person .person-photo .second_photo,
.page-container.contacts .team .team-person .person-photo:hover .first_photo {
    display: none
}

.page-container.contacts .team .team-person .person-photo:hover .second_photo {
    display: block
}

.page-container.contacts .team .team-person .person-name {
    font-family: GeometriaLight, sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    margin: 15px 0 10px
}

.page-container.contacts .team .team-person .person-role {
    font-family: GeometriaLight, sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin: 0;
    line-height: 20px
}

.page-container.contacts .join-us {
    text-align: center;
    font-family: GeometriaLight, sans-serif;
    color: #fff;
    padding-bottom: 60px
}

.page-container.contacts .join-us p {
    margin: 0;
    font-size: 20px;
    line-height: 30px
}

.page-container.contacts .join-us p:nth-child(2) {
    margin-bottom: 30px
}

@media screen and (max-width:1024px) and (min-width:801px) {
    .page-container.contacts .bottom-block {
        width: 600px
    }
    .page-container.contacts .bottom-block .map {
        width: 600px;
        height: 250px;
        background-size: contain
    }
    .page-container.contacts .center-block {
        width: 770px
    }
    .page-container.contacts .text-block .center-block .block-column {
        margin: 0 14%
    }
    .grid {
        width: 600px
    }
    .grid a.mysql {
        margin: 0 20px 0 0
    }
    .grid a.nodejs {
        margin: 0 42px
    }
    .grid a.css {
        margin: 0 0 0 20px
    }
    .grid a.html {
        margin: 0 20px 0 0
    }
    .grid a.jquery {
        margin: 0 43px
    }
    .grid a.amazon {
        margin: 0 0 0 20px
    }
    .grid a.ionic {
        margin: 0 20px 0 0
    }
    .grid a.phonegap {
        margin: 0 78px
    }
    .grid a.yii {
        margin: 0 0 0 20px;
        height: 117px;
        background-position: 0 -245px
    }
    .grid a.yii:hover {
        margin: 0 0 0 20px;
        height: 117px;
        background-position: 0 -675px
    }
    .grid a.angular {
        margin: 15px 3px 0 0
    }
    .grid a.mongo {
        margin: 15px 0 0 191px
    }
    .grid a.backbone {
        margin: 15px 0 0 80px
    }
    .grid a.laravel {
        margin: 15px 0 0 45px;
        float: left;
        clear: none
    }
}

@media screen and (max-width:800px) and (min-width:768px) {
    .page-container.contacts .bottom-block {
        width: 600px
    }
    .page-container.contacts .bottom-block .map {
        width: 600px;
        height: 250px;
        background-size: contain
    }
    .page-container.contacts .center-block {
        width: 770px
    }
    .page-container.contacts .text-block .center-block .block-column {
        margin: 0 14%
    }
    .grid {
        width: 600px
    }
    .grid a.mysql {
        margin: 0 20px 0 0
    }
    .grid a.nodejs {
        margin: 0 42px
    }
    .grid a.css {
        margin: 0 0 0 20px
    }
    .grid a.html {
        margin: 0 20px 0 0
    }
    .grid a.jquery {
        margin: 0 43px
    }
    .grid a.amazon {
        margin: 0 0 0 20px
    }
    .grid a.ionic {
        margin: 0 20px 0 0
    }
    .grid a.phonegap {
        margin: 0 78px
    }
    .grid a.yii {
        margin: 0 0 0 20px;
        height: 117px;
        background-position: 0 -245px
    }
    .grid a.yii:hover {
        margin: 0 0 0 20px;
        height: 117px;
        background-position: 0 -675px
    }
    .grid a.angular {
        margin: 15px 3px 0 0
    }
    .grid a.mongo {
        margin: 15px 0 0 191px
    }
    .grid a.backbone {
        margin: 15px 0 0 80px
    }
    .grid a.laravel {
        margin: 15px 0 0 45px;
        float: left;
        clear: none
    }
}

div.ngdialog.ngdialog-theme-default .ngdialog-content {
    width: 695px;
    background-color: rgba(0, 68, 97, .97);
    color: #fff;
    border-radius: 0;
    box-shadow: 0 0 80px -10px #25ebd5;
    font-family: GeometriaLight, sans-serif;
    font-weight: 700;
    padding: 20px 55px 50px
}

@media (max-width:700px) {
    div.ngdialog.ngdialog-theme-default .ngdialog-content {
        width: 90%;
        margin: 0 auto
    }
}

@media (max-width:480px) {
    div.ngdialog.ngdialog-theme-default .ngdialog-content {
        padding: 20px
    }
}

div.ngdialog.ngdialog-theme-default .ngdialog-content .form-description {
    text-align: center;
    margin-bottom: 50px
}

div.ngdialog.ngdialog-theme-default .ngdialog-content .form-description h4 {
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 30px
}

@media (max-width:780px) {
    div.ngdialog.ngdialog-theme-default .ngdialog-content .form-description h4 {
        font-size: 25px;
        margin-top: 10px;
        margin-bottom: 20px;
        line-height: 35px
    }
}

div.ngdialog.ngdialog-theme-default .ngdialog-content .form-description h5 {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: -60px;
    margin-top: 25px
}

@media (max-width:780px) {
    div.ngdialog.ngdialog-theme-default .ngdialog-content .form-description h5 {
        font-size: 25px;
        margin-bottom: -55px;
        margin-top: 0;
        line-height: 35px
    }
}

div.ngdialog.ngdialog-theme-default .ngdialog-content .form-description p {
    font-size: 14px
}

div.ngdialog.ngdialog-theme-default .ngdialog-content form input,
div.ngdialog.ngdialog-theme-default .ngdialog-content form textarea {
    background: 0 0;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #fff;
    padding: 5px;
    color: #fff;
    font-size: 13px;
    font-family: GeometriaLight, sans-serif;
    font-weight: 700
}

div.ngdialog.ngdialog-theme-default .ngdialog-content form input:focus,
div.ngdialog.ngdialog-theme-default .ngdialog-content form textarea:focus {
    border-bottom: 1px solid #fff;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: 0
}

div.ngdialog.ngdialog-theme-default .ngdialog-content form .inline-row:nth-child(1) {
    float: left;
    width: 45%
}

div.ngdialog.ngdialog-theme-default .ngdialog-content form .inline-row:nth-child(2) {
    float: right;
    width: 45%
}

div.ngdialog.ngdialog-theme-default .ngdialog-content form .inline-row input {
    width: 100%
}

div.ngdialog.ngdialog-theme-default .ngdialog-content form .input-row span.error-label {
    display: block;
    width: 27px;
    height: 26px;
    background: url(../images/error.png) center center no-repeat;
    background-size: contain;
    position: absolute;
    top: -2px;
    right: 14px
}

div.ngdialog.ngdialog-theme-default .ngdialog-content form .input-row span.error-label.textarea {
    top: 87px;
    right: 14px
}

div.ngdialog.ngdialog-theme-default .ngdialog-content form textarea {
    width: 100%;
    resize: none;
    height: 90px
}

div.ngdialog.ngdialog-theme-default .ngdialog-content form .form-group {
    padding-top: 25px
}

div.ngdialog.ngdialog-theme-default .ngdialog-content form input::-webkit-input-placeholder,
div.ngdialog.ngdialog-theme-default .ngdialog-content form textarea::-webkit-input-placeholder {
    color: #fff
}

div.ngdialog.ngdialog-theme-default .ngdialog-content form input::-moz-placeholder,
div.ngdialog.ngdialog-theme-default .ngdialog-content form textarea::-moz-placeholder {
    color: #fff
}

div.ngdialog.ngdialog-theme-default .ngdialog-content form input:-moz-placeholder,
div.ngdialog.ngdialog-theme-default .ngdialog-content form textarea:-moz-placeholder {
    color: #fff
}

div.ngdialog.ngdialog-theme-default .ngdialog-content form input:-ms-input-placeholder,
div.ngdialog.ngdialog-theme-default .ngdialog-content form textarea:-ms-input-placeholder {
    color: #fff
}

div.ngdialog.ngdialog-theme-default .ngdialog-content form .submit-control {
    text-align: center;
    padding-top: 50px
}

div.ngdialog.ngdialog-theme-default .ngdialog-content form .submit-control .submit-button {
    min-width: 275px;
    margin: 0 auto;
    border: 1px solid #fff;
    font-size: 22px;
    text-transform: uppercase;
    padding: 20px 35px;
    cursor: pointer;
    background-color: transparent;
    color: #fff;
    outline: 0
}

div.ngdialog.ngdialog-theme-default .ngdialog-content form .input-row {
    position: relative
}

div.ngdialog.ngdialog-theme-default .ngdialog-content form .error-message {
    position: absolute;
    left: 0;
    bottom: -22x;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    font-family: GeometriaLight, sans-serif
}

div.ngdialog-overlay {
    background: 0 0
}

@media (max-width:700px) {
    div.ngdialog.ngdialog-theme-default {
        padding-top: 15%
    }
}

div.ngdialog.ngdialog-theme-default div.ngdialog-close {
    top: -6px;
    right: -30px
}

@media (max-width:700px) {
    div.ngdialog.ngdialog-theme-default div.ngdialog-close {
        display: none
    }
}

div.ngdialog.ngdialog-theme-default div.ngdialog-close:before {
    top: 0;
    right: 0;
    content: "";
    background: url(../images/close.png) center center no-repeat;
    display: block;
    height: 30px;
    width: 30px
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.