@charset "UTF-8";
/*------------------------------------------------------------------------------------------- */
/*------------------------------------ START SETTINGS --------------------------------------- */
/*------------------------------------------------------------------------------------------- */
.limit {
  width: 1100px;
  position: relative;
  margin: 0 auto; }

/*------------------------------------------------------------------------------------------- */
/*----------------------------------------- HEADER ------------------------------------------ */
/*------------------------------------------------------------------------------------------- */
header {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: #444444; }
  header .logo {
    display: inline-block;
    vertical-align: top;
    font-family: "bold";
    text-align: center;
    font-size: 34px;
    line-height: 34px;
    color: #fff;
    text-transform: uppercase; }
    header .logo span {
      display: block;
      font-family: "light";
      font-size: 14px;
      line-height: 24px; }
  header ul.menu {
    height: 58px;
    padding: 19px 0;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin: 0 119px; }
    header ul.menu li {
      height: 20px;
      line-height: 20px;
      padding: 0 10px; }
      header ul.menu li:first-of-type {
        padding-left: 0; }
      header ul.menu li:last-of-type {
        padding-right: 0; }
      header ul.menu li a {
        display: block;
        height: 20px;
        line-height: 20px;
        font-size: 16px;
        color: #fff;
        font-family: "bold";
        text-transform: uppercase; }
        header ul.menu li a.current, header ul.menu li a:hover {
          color: #35bdea; }
  header .right {
    height: 58px;
    padding: 14px 0;
    display: inline-block;
    vertical-align: top;
    height: 20px; }
    header .right .login {
      margin-left: 20px;
      display: inline-block;
      vertical-align: top;
      height: 30px;
      line-height: 31px;
      text-align: center;
      color: #000;
      background: #fff;
      font-family: light;
      font-size: 14px;
      text-transform: uppercase;
      padding: 0 15px;
      border-radius: 3px;
      cursor: pointer; }
    header .right .language_set {
      display: inline-block;
      vertical-align: top;
      height: 30px;
      padding: 5px 0; }
      header .right .language_set div {
        display: inline-block;
        height: 20px;
        line-height: 20px;
        color: rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
        font-family: light;
        cursor: pointer; }
        header .right .language_set div:last-child {
          padding-left: 10px;
          margin-left: 10px;
          border-left: 1px solid rgba(255, 255, 255, 0.5); }
        header .right .language_set div.current, header .right .language_set div:hover {
          color: #fff; }

.icon-menu {
  height: 34px;
  line-height: 30px;
  width: 34px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  display: none;
  vertical-align: top;
  margin-right: 10px;
  font-size: 28px; }

/*------------------------------------------------------------------------------------------- */
/*----------------------------------- FIRST SCREEN ------------------------------------------ */
/*------------------------------------------------------------------------------------------- */
.first_screen {
  position: relative;
  padding-top: 200px;
  text-align: center;
  min-height: 100vh;
  background: url(../images/bg.jpg) center no-repeat;
  background-size: cover;
  overflow: hidden; }
  .first_screen:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #19b3e6;
    /* ╨Ф╨╗╤П ╤Б╤В╨░╤А╤Л╤Е ╨▒╤А╨░╤Г╨╖╤А╨╛╨▓ */
    background: -webkit-linear-gradient(top, #19b3e6, #013d96);
    background: linear-gradient(to bottom, #19b3e6, #013d96);
    opacity: 0.7; }
  .first_screen:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/pattern_1.png) center repeat; }
  .first_screen .limit {
    z-index: 101; }
  .first_screen h1 {
    color: #fff;
    font-family: bold;
    font-size: 50px;
    text-transform: uppercase;
    margin-bottom: 120px; }
  .first_screen h2 {
    color: #fff;
    font-family: bold;
    font-size: 40px;
    text-transform: uppercase; }
  .first_screen .text_blocks {
    text-align: center;
    margin-bottom: 120px; }
    .first_screen .text_blocks .block {
      width: 30%;
      position: relative;
      display: inline-block;
      vertical-align: top;
      margin: 0 2%;
      color: #fff;
      font-family: light;
      font-size: 17px;
      line-height: 28px;
      text-transform: uppercase; }
      .first_screen .text_blocks .block.first {
        margin-left: 0; }
      .first_screen .text_blocks .block.last {
        margin-right: 0; }
      .first_screen .text_blocks .block .number {
        font-family: bold;
        color: #fff;
        opacity: 0.2;
        font-size: 300px;
        position: absolute;
        width: 100%;
        height: 250px;
        line-height: 250px;
        text-align: center;
        top: -50px; }
  .first_screen .mouse-icon {
    position: absolute;
    bottom: 50px;
    left: 50%;
    border: 2px solid #fff;
    border-radius: 16px;
    transform: translate(-50%, 0);
    height: 40px;
    width: 24px;
    z-index: 100;
    opacity: .7;
    transition: all .2s ease 0s;
    cursor: pointer; }
    .first_screen .mouse-icon .scroll {
      animation-delay: 0s;
      animation-duration: 1s;
      animation-iteration-count: infinite;
      animation-name: scrolling;
      animation-play-state: running;
      animation-timing-function: linear;
      background: #fff none repeat scroll 0 0;
      border-radius: 10px;
      height: 10px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      top: 4px;
      width: 4px; }

@keyframes scrolling {
  0% {
    opacity: 0;
    top: 5px; }
  30% {
    opacity: 1;
    top: 10px; }
  to {
    opacity: 0;
    top: 25px; } }
.my_video {
  position: relative;
  padding-bottom: 28%;
  height: 0;
  overflow: hidden; }
  .my_video iframe, .my_video object, .my_video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

b.no_style {
  font-weight: normal; }

/*------------------------------------------------------------------------------------------- */
/*----------------------------------- INVITATION SCREEN ------------------------------------- */
/*------------------------------------------------------------------------------------------- */
.invitation_screen {
  background: #f3f4f3;
  padding: 150px 0;
  overflow: hidden;
  position: relative; }
  .invitation_screen .column {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 49%; }
    .invitation_screen .column.first {
      width: 55%;
      z-index: 1;
      min-height: 450px; }
    .invitation_screen .column.second {
      width: 44%;
      z-index: 2; }
    .invitation_screen .column.with_video .empty_square {
      display: none; }
    .invitation_screen .column.with_video .photo_1 {
      width: 250px;
      height: 250px;
      left: -20px;
      top: 235px;
      right: auto; }
    .invitation_screen .column.with_video .photo_2 {
      width: 200px;
      height: 200px;
      left: 370px;
      top: 240px; }
    .invitation_screen .column.with_video .photo_3 {
      width: 180px;
      height: 180px;
      left: 165px;
      top: 325px; }
    .invitation_screen .column.with_video .full_square {
      width: 60px;
      height: 60px;
      top: 415px;
      left: 460px; }
    .invitation_screen .column.with_video .opacity_square_1 {
      width: 50px;
      height: 50px;
      left: -30px;
      top: 360px; }
    .invitation_screen .column.with_video .opacity_square_2 {
      width: 70px;
      height: 70px;
      top: 275px;
      left: 325px; }
    .invitation_screen .column.with_video .my_video {
      display: block; }
  .invitation_screen .my_video {
    display: none;
    width: 550px;
    height: 310px;
    top: -60px;
    padding-bottom: 49%;
    position: relative;
    border: 10px solid #0099cc;
    background: #0099cc;
    box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.35); }
  .invitation_screen .grey_title {
    color: #777;
    font-family: light_italic;
    font-size: 20px;
    line-height: 30px;
    padding-left: 55px;
    position: relative; }
    .invitation_screen .grey_title:before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      width: 40px;
      height: 1px;
      background: #989898; }
  .invitation_screen .blue_title {
    font-family: bold;
    font-size: 30px;
    line-height: 40px;
    color: #0099cc;
    margin-bottom: 30px;
    text-transform: uppercase; }
  .invitation_screen .quote {
    margin-bottom: 30px;
    font-family: light;
    font-size: 20px;
    line-height: 28px;
    color: #333; }
  .invitation_screen .video_title {
    font-family: bold;
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    text-transform: uppercase;
    cursor: pointer; }
  .invitation_screen .contact_info .param, .invitation_screen .contact_info .value {
    display: inline-block;
    vertical-align: top;
    font-size: 20px;
    color: #444;
    line-height: 28px; }
  .invitation_screen .contact_info .param {
    width: 100px;
    color: #777;
    font-family: light_italic; }
  .invitation_screen .contact_info a {
    color: #444; }
    .invitation_screen .contact_info a:hover {
      color: #0099cc; }
  .invitation_screen .contact_info .social_set {
    margin-top: 30px; }
  .invitation_screen .blue_dotted_block {
    width: 100%;
    height: 500px;
    position: absolute;
    top: -30px;
    left: 30px;
    opacity: 0.7;
    background: url(../images/pattern_3.png) center repeat; }
  .invitation_screen .photo_container {
    position: absolute;
    overflow: hidden;
    box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3); }
    .invitation_screen .photo_container img {
      display: block;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto; }
    .invitation_screen .photo_container.photo_1 {
      width: 300px;
      height: 300px;
      right: 40px;
      top: -60px; }
    .invitation_screen .photo_container.photo_2 {
      width: 250px;
      height: 250px;
      left: -40px;
      top: 90px; }
    .invitation_screen .photo_container.photo_3 {
      width: 220px;
      height: 220px;
      left: 150px;
      top: 300px;
      border: 10px solid #0099cc; }
  .invitation_screen .full_square {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #0099cc;
    top: 275px;
    left: 410px; }
  .invitation_screen .empty_square {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 10px solid #0099cc;
    top: -50px;
    left: 50px; }
  .invitation_screen .opacity_square_1 {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #0099cc;
    opacity: 0.5; }
  .invitation_screen .opacity_square_2 {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #0099cc;
    opacity: 0.5;
    top: 400px; }
  .invitation_screen .decor_square_1 {
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/pattern_3.png) center repeat;
    width: 250px;
    height: 180px; }
    .invitation_screen .decor_square_1:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 240px;
      height: 170px;
      background: #f3f4f3; }
  .invitation_screen .decor_square_2 {
    position: absolute;
    bottom: 0;
    right: 0;
    background: url(../images/pattern_3.png) center repeat;
    width: 444px;
    height: 300px; }
    .invitation_screen .decor_square_2:before {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: 435px;
      height: 290px;
      background: #f3f4f3; }

.social_set {
  display: block;
  height: 30px; }
  .social_set a {
    display: inline-block;
    vertical-align: top;
    margin: 0 2px;
    width: 30px;
    height: 30px;
    background-image: url(../images/social_set.png);
    background-repeat: no-repeat;
    background-size: 270px 90px; }
    .social_set a.vk {
      background-position: 0 -30px; }
    .social_set a.fb {
      background-position: -30px -30px; }
    .social_set a.tw {
      background-position: -60px -30px; }
    .social_set a.gp {
      background-position: -90px -30px; }
    .social_set a.ok {
      background-position: -120px -30px; }
    .social_set a.li {
      background-position: -150px -30px; }
    .social_set a.mail {
      background-position: -180px -30px; }
    .social_set a.in, .social_set a.inst {
      background-position: -210px -30px; }
    .social_set a.yt {
      background-position: -240px -30px; }

/*------------------------------------------------------------------------------------------- */
/*-------------------------------------- FORM SCREEN ---------------------------------------- */
/*------------------------------------------------------------------------------------------- */
.form_screen {
  background: #014e96 url(../images/blue_light.png) center left no-repeat;
  padding: 60px 0;
  position: relative;
  text-align: center;
  overflow: hidden; }
  .form_screen:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 800px;
    height: 100%;
    opacity: 0.5;
    z-index: 1;
    background: url(../images/planet.png) bottom right no-repeat;
    background-attachment: fixed; }
  .form_screen .main_text {
    font-family: bold;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 60px;
    color: #fff;
    position: relative;
    z-index: 2;
    text-transform: uppercase; }
  .form_screen .basic_form {
    margin-bottom: 60px;
    position: relative;
    z-index: 3; }
    .form_screen .basic_form .control_point {
      display: inline-block;
      vertical-align: top;
      width: 250px;
      margin-bottom: 0; }
      .form_screen .basic_form .control_point.tel input {
        padding-left: 56px; }
      .form_screen .basic_form .control_point.check {
        position: relative;
        margin: 12px auto 0;
        width: 300px;
        text-align: left; }
        .form_screen .basic_form .control_point.check input[type="checkbox"] + .false_checkbox {
          border: 0 none; }
        .form_screen .basic_form .control_point.check label {
          height: 20px;
          line-height: 20px;
          font-size: 14px;
          font-family: light;
          text-transform: uppercase;
          color: #fff;
          cursor: pointer; }
    .form_screen .basic_form.old_version .control_point {
      display: block;
      margin: 0 auto 10px;
      width: 340px; }
    .form_screen .basic_form.old_version .control_point.check {
      width: 300px; }
    .form_screen .basic_form.old_version .intl-tel-input {
      width: 100%; }
    .form_screen .basic_form.old_version .button {
      margin: 20px 0 0; }
  .form_screen .flag_container, .form_screen .flag-container {
    position: absolute;
    width: 46px;
    height: 40px;
    z-index: 1;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px 0 0 3px;
    border-right: 1px solid rgba(0, 0, 0, 0.05); }
    .form_screen .flag_container .flag, .form_screen .flag-container .flag {
      width: 16px;
      height: 11px;
      margin: 0 auto;
      position: relative;
      top: 14px; }
      .form_screen .flag_container .flag img, .form_screen .flag-container .flag img {
        display: block; }
  .form_screen .social_login {
    padding-top: 20px; }
    .form_screen .social_login .or {
      font-family: bold;
      font-size: 16px;
      line-height: 30px;
      color: #fff;
      text-transform: uppercase;
      display: inline-block;
      vertical-align: top;
      padding-right: 10px; }
    .form_screen .social_login .social_set {
      display: inline-block;
      vertical-align: top; }
  .form_screen .column {
    display: inline-block;
    vertical-align: top;
    font-family: light_italic;
    font-size: 16px;
    line-height: 26px;
    color: #cacaca;
    width: 37%;
    position: relative;
    z-index: 2; }
    .form_screen .column.first {
      text-align: right;
      padding-right: 40px; }
      .form_screen .column.first:after {
        content: "";
        position: absolute;
        right: 0;
        top: 10%;
        height: 80%;
        width: 1px;
        background: #fff;
        opacity: 0.3; }
    .form_screen .column.second {
      text-align: left;
      padding-left: 40px; }
    .form_screen .column a {
      color: #fff; }
      .form_screen .column a:hover {
        text-decoration: underline; }
  .form_screen .country-list li {
    display: block; }
  .form_screen .left_side, .form_screen .right_side {
    display: inline-block;
    vertical-align: top;
    width: 49.7%; }
  .form_screen .right_side .column {
    display: block;
    width: 100%;
    padding: 0;
    line-height: 22px;
    text-align: center; }
    .form_screen .right_side .column.first {
      margin-bottom: 10px; }
      .form_screen .right_side .column.first:after {
        display: none; }

.phone_list {
  font-size: 20px;
  line-height: 20px;
  color: #fff; }
  .phone_list .line {
    margin-bottom: 10px; }
  .phone_list .flag {
    display: inline-block;
    vertical-align: top;
    width: 16px;
    height: 16px;
    position: relative;
    top: 2px;
    margin-right: 20px; }
    .phone_list .flag img {
      display: block;
      margin: 0 auto; }
  .phone_list .name {
    display: inline-block;
    vertical-align: top;
    height: 20px;
    width: 120px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 20px; }
  .phone_list .phone {
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
    width: 130px; }
  .phone_list .time {
    display: inline-block;
    vertical-align: top;
    width: 75px; }

.basic_form input[type=text], .basic_form input[type=password], .basic_form input[type=tel] {
  height: 40px;
  line-height: 40px;
  width: 100%;
  padding: 0 10px;
  font-size: 18px;
  font-family: "light";
  color: #444;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5) inset;
  border-radius: 3px;
  border: 0 none; }
.basic_form .control_point {
  position: relative;
  margin-bottom: 10px; }
  .basic_form .control_point .error {
    font-size: 13px;
    color: white;
    background-color: red;
    border-radius: 3px;
    padding: 0 5px;
    height: 20px;
    line-height: 20px;
    position: absolute;
    bottom: -20px;
    right: 0px;
    z-index: 2;
    display: none; }
  .basic_form .control_point.error div.error {
    display: block; }
.basic_form .button {
  height: 40px;
  line-height: 41px;
  margin-left: 10px;
  display: inline-block;
  vertical-align: top;
  font-size: 15px;
  font-family: light;
  text-transform: uppercase;
  color: #fff;
  background: #0099cc;
  border-radius: 3px;
  cursor: pointer;
  padding: 0 25px;
  font-family: bold; }
  .basic_form .button:hover {
    background: #07abe1; }
  .basic_form .button.no_active {
    background: #9a9a9a;
    cursor: default; }

/*------------------------------------------------------------------------------------------- */
/*-------------------------------------- FORM SCREEN ---------------------------------------- */
/*------------------------------------------------------------------------------------------- */
.comment_screen {
  position: relative;
  background: #f3f4f3;
  padding: 100px 0;
  overflow: hidden; }
  .comment_screen .dotted_triangle1 {
    position: absolute;
    top: 0;
    left: 0;
    border-right: 800px solid #f3f4f3;
    border-top: 800px solid transparent;
    background: url(../images/pattern_3.png) center repeat; }
  .comment_screen .dotted_triangle2 {
    position: absolute;
    top: 800px;
    left: 0;
    border-right: 800px solid #f3f4f3;
    border-bottom: 800px solid transparent;
    background: url(../images/pattern_3.png) center repeat; }
  .comment_screen .dotted_triangle3 {
    position: absolute;
    top: 0;
    right: 0;
    border-left: 800px solid #f3f4f3;
    border-bottom: 800px solid transparent;
    background: url(../images/pattern_3.png) center repeat; }
  .comment_screen .dotted_triangle4 {
    position: absolute;
    top: 800px;
    right: 0;
    border-left: 800px solid #f3f4f3;
    border-top: 800px solid transparent;
    background: url(../images/pattern_3.png) center repeat; }
  .comment_screen .blue_triangle {
    position: absolute; }
    .comment_screen .blue_triangle.shape1 {
      top: 140px;
      right: -160px;
      transform: rotate(40deg);
      border-bottom: 70px solid #0099cc;
      border-left: 40px solid transparent;
      border-right: 40px solid transparent; }
    .comment_screen .blue_triangle.shape2 {
      top: 800px;
      left: 0px;
      transform: rotate(-60deg);
      border-bottom: 120px solid #0099cc;
      border-left: 90px solid transparent;
      border-right: 90px solid transparent; }
    .comment_screen .blue_triangle.shape3 {
      top: 320px;
      left: -170px;
      transform: rotate(-25deg);
      opacity: 0.5;
      border-bottom: 120px solid #0099cc;
      border-left: 90px solid transparent;
      border-right: 90px solid transparent; }
    .comment_screen .blue_triangle.shape4 {
      bottom: 120px;
      right: 0px;
      transform: rotate(-25deg);
      opacity: 0.5;
      border-bottom: 70px solid #0099cc;
      border-left: 40px solid transparent;
      border-right: 40px solid transparent; }
  .comment_screen .video {
    position: relative;
    z-index: 2;
    margin-bottom: 100px; }
    .comment_screen .video.first .my_video {
      float: left; }
    .comment_screen .video.first .text_block {
      right: 0; }
    .comment_screen .video.second {
      text-align: right; }
      .comment_screen .video.second .my_video {
        float: right; }
      .comment_screen .video.second .text_block {
        left: 0; }
      .comment_screen .video.second .grey_title {
        padding: 0 55px 0 0; }
        .comment_screen .video.second .grey_title:before {
          left: auto;
          right: 0; }
  .comment_screen .my_video {
    width: 550px;
    height: 300px;
    display: inline-block;
    vertical-align: top; }
  .comment_screen .text_block {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 46%;
    z-index: 3; }
  .comment_screen .grey_title {
    color: #777;
    font-family: light_italic;
    font-size: 20px;
    line-height: 30px;
    padding-left: 55px;
    position: relative; }
    .comment_screen .grey_title:before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      width: 40px;
      height: 1px;
      background: #989898; }
  .comment_screen .blue_title {
    font-family: bold;
    font-size: 30px;
    line-height: 40px;
    color: #0099cc;
    margin-bottom: 30px;
    text-transform: uppercase; }
  .comment_screen .quote {
    font-family: light_italic;
    font-size: 20px;
    line-height: 28px;
    position: relative;
    margin-bottom: 20px; }
  .comment_screen .time {
    font-size: 16px;
    line-height: 22px;
    color: #666; }
  .comment_screen .disclaimer {
    display: none;
    margin-top: 50px;
    font-family: light;
    text-align: center;
    font-size: 16px;
    line-height: 20px; }
    .comment_screen .disclaimer sup {
      font-size: 20px; }
  .comment_screen .bx-pager {
    text-align: center;
    padding-top: 20px; }
    .comment_screen .bx-pager div {
      display: inline-block;
      vertical-align: top;
      margin: 0 5px; }
      .comment_screen .bx-pager div a {
        width: 20px;
        height: 20px;
        display: block;
        position: relative;
        border-radius: 50%;
        text-indent: -9999px; }
        .comment_screen .bx-pager div a.active {
          border: 1px solid #91b1ce; }
        .comment_screen .bx-pager div a:before {
          content: "";
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          width: 4px;
          height: 4px;
          border-radius: 50%;
          background: #91b1ce; }
  .comment_screen .comment {
    text-align: center;
    position: relative;
    width: 80%;
    margin: 0 auto; }
    .comment_screen .comment:before {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: url(../images/pattern_3.png) repeat center;
      top: 0px;
      margin-left: -30px;
      left: 50%;
      transform: translate(-50%, 0); }
    .comment_screen .comment .photo_container {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      display: block;
      position: relative;
      margin: 0 auto 40px;
      overflow: hidden; }
    .comment_screen .comment img {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      max-width: 150%;
      max-height: 150%;
      border-radius: 50%; }
    .comment_screen .comment .quote {
      margin-bottom: 0;
      padding: 0 15%; }
    .comment_screen .comment .name {
      font-family: bold;
      font-size: 14px;
      text-transform: uppercase;
      color: #333;
      margin-bottom: 20px; }

/*------------------------------------------------------------------------------------------- */
/*------------------------------------- STATISTICS ------------------------------------------ */
/*------------------------------------------------------------------------------------------- */
.statistics {
  padding: 60px 0 30px; }
  .statistics .column {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    text-align: center; }
  .statistics #vmap {
    width: 100%;
    height: 350px; }
  .statistics .label {
    display: block;
    text-align: center;
    color: #333;
    font-size: 20px;
    line-height: 26px; }
    .statistics .label .blue {
      font-size: 32px;
      color: #4999d6; }
  .statistics .circle_container {
    display: inline-block;
    vertical-align: top;
    width: 55%;
    margin: 0 -5%;
    position: relative;
    top: -40px; }
    .statistics .circle_container .half_circle {
      height: 150px;
      position: relative;
      top: -15px; }
    .statistics .circle_container .label {
      width: 200px;
      margin: 0 auto; }
      .statistics .circle_container .label .hidden_text {
        display: none;
        font-size: 30px;
        color: #4999d6; }

/*------------------------------------------------------------------------------------------- */
/*----------------------------------------- FOOTER ------------------------------------------ */
/*------------------------------------------------------------------------------------------- */
footer {
  background: #333;
  padding: 40px 0;
  text-align: center;
  position: relative;
  z-index: 10; }
  footer .column {
    display: inline-block;
    vertical-align: top; }
    footer .column.first {
      background: url(../images/Forsage_Logo.jpg) center no-repeat;
      background-size: 122px 104px;
      width: 122px;
      height: 104px;
      margin-right: 20px; }
    footer .column.second {
      width: 29%;
      text-align: left; }
    footer .column.third {
      width: 23%;
      text-align: center; }
    footer .column.fourth {
      width: 22%;
      text-align: right; }
  footer .copyright {
    font-family: light;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    opacity: 0.8; }
    footer .copyright span.green {
      color: mediumseagreen; }
    footer .copyright div.link a {
      color: #fff; }
      footer .copyright div.link a:hover {
        color: #75cef9; }
  footer .social_set {
    height: auto; }
    footer .social_set .title {
      font-family: bold;
      font-size: 16px;
      line-height: 20px;
      text-transform: uppercase;
      color: #fff;
      opacity: 0.8;
      margin-bottom: 15px; }
    footer .social_set a {
      height: 24px;
      font-size: 24px;
      line-height: 24px;
      display: inline-block;
      vertical-align: top;
      margin: 0 10px;
      color: #fff;
      opacity: 0.8;
      background: none;
      width: auto; }
      footer .social_set a:hover {
        color: #0099cc; }
  footer .sign {
    width: 115px;
    height: 55px;
    margin: 0 auto; }
  footer .app_link {
    display: inline-block;
    max-width: 180px;
    margin-bottom: 5px; }
    footer .app_link:last-of-type {
      margin-bottom: 0; }
  footer .pay_ico {
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
    height: 30px; }
    footer .pay_ico.visa {
      height: 20px;
      width: 65px;
      position: relative;
      top: 5px;
      background: url(../images/pay4.png) center no-repeat;
      background-size: 65px 20px; }
    footer .pay_ico.master {
      width: 48px;
      background: url(../images/pay5.png) center no-repeat;
      background-size: 48px 30px; }
    footer .pay_ico.rbk {
      width: 30px;
      background: url(../images/pay2.png) center no-repeat;
      background-size: 30px 30px; }
    footer .pay_ico.paypal {
      width: 20px;
      margin-bottom: 0;
      background: url(../images/pay3.png) center no-repeat;
      background-size: 20px 30px; }
    footer .pay_ico.kassa {
      width: 22px;
      margin-bottom: 0;
      background: url(../images/pay1.png) center no-repeat;
      background-size: 22px 30px; }

/*------------------------------------------------------------------------------------------- */
/*----------------------------------------- MODAL ------------------------------------------ */
/*------------------------------------------------------------------------------------------- */
.modal {
  position: relative;
  background: #fff;
  border-radius: 5px;
  padding: 30px;
  max-width: 360px; }
  .modal .modal_title {
    font-family: bold;
    margin-bottom: 20px;
    font-size: 26px;
    text-transform: uppercase;
    color: #0099cc;
    text-align: center; }
  .modal .close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    color: #0099cc;
    cursor: pointer; }
  .modal .text {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 10px; }
  .modal .basic_form input[type=text], .modal .basic_form input[type=password] {
    color: #333;
    background: #e6e6e6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) inset; }
  .modal .basic_form .pass_link {
    position: absolute;
    font-family: light;
    font-size: 12px;
    text-transform: uppercase;
    height: 20px;
    line-height: 20px;
    top: 50%;
    margin-top: -10px;
    right: 10px;
    cursor: pointer; }
    .modal .basic_form .pass_link:hover {
      color: #0099cc; }
  .modal .basic_form .login_button, .modal .basic_form .pass_button {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    background: #0099cc;
    border-radius: 3px;
    cursor: pointer;
    font-family: bold; }
    .modal .basic_form .login_button:hover, .modal .basic_form .pass_button:hover {
      background: #07abe1; }

.adaptive_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  padding: 20px;
  z-index: 10000;
  display: none; }
  .adaptive_menu a {
    display: block;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 18px;
    font-family: bold;
    text-transform: uppercase; }
  .adaptive_menu .icon-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    cursor: pointer;
    color: #fff;
    font-size: 22px; }
    .adaptive_menu .icon-close:hover {
      color: #09c; }

.login_modal label {
  display: inline-block;
  vertical-align: top;
  height: 20px;
  line-height: 21px;
  font-family: light;
  font-size: 14px;
  color: #767676;
  text-transform: uppercase;
  cursor: pointer; }
.login_modal .social_login {
  padding-top: 30px; }
  .login_modal .social_login .or {
    height: 20px;
    line-height: 20px;
    position: relative;
    font-family: bold;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
    position: relative; }
.login_modal .social_set {
  display: block;
  height: 30px;
  text-align: center; }
  .login_modal .social_set a {
    display: inline-block;
    vertical-align: top;
    margin: 0 2px;
    width: 30px;
    height: 30px;
    background-image: url(../images/social_set.png);
    background-repeat: no-repeat;
    background-size: 270px 90px; }
    .login_modal .social_set a.vk {
      background-position: 0 -30px; }
    .login_modal .social_set a.fb {
      background-position: -30px -30px; }
    .login_modal .social_set a.tw {
      background-position: -60px -30px; }
    .login_modal .social_set a.gp {
      background-position: -90px -30px; }
    .login_modal .social_set a.ok {
      background-position: -120px -30px; }
    .login_modal .social_set a.li {
      background-position: -150px -30px; }
    .login_modal .social_set a.mail {
      background-position: -180px -30px; }

/*------------------------------------------------------------------------------------------- */
/*--------------------------------- CHECKBOX/RADIO ------------------------------------------ */
/*------------------------------------------------------------------------------------------- */
input[type="checkbox"], input[type="radio"] {
  opacity: 0;
  filter: alpha(opacity=0);
  width: 20px;
  height: 20px;
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer; }

input[type="checkbox"] + .false_checkbox,
input[type="radio"] + .false_radio {
  width: 20px;
  height: 20px;
  border: 1px solid #eee;
  background: #f4f3f4;
  display: inline-block;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35) inset;
  vertical-align: top;
  cursor: pointer;
  margin: 0 5px 0 0; }
  input[type="checkbox"] + .false_checkbox:after,
  input[type="radio"] + .false_radio:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: none;
    margin: -4px 0 0 -4px;
    background-color: #0099cc;
    border-radius: 3px; }

input[type="checkbox"] + .false_checkbox {
  border-radius: 3px; }

input[type="radio"] + .false_radio, input[type="radio"] + .false_radio:after {
  border-radius: 50%; }

input[type="checkbox"]:hover + .false_checkbox,
input[type="radio"]:hover + .false_radio {
  background: #e6e6e6; }

input[type="checkbox"]:checked + .false_checkbox:after,
input[type="radio"]:checked + .false_radio:after {
  display: block; }

/*------------------------------------------------------------------------------------------- */
/*------------------------------------- HINT ------------------------------------------------ */
/*------------------------------------------------------------------------------------------- */
.hint {
  display: inline-block;
  vertical-align: top;
  height: 20px;
  width: 20px;
  margin-left: 3px;
  cursor: pointer;
  font-size: 18px;
  color: #aaa;
  z-index: 100;
  position: relative;
  text-align: center; }
  .hint .fa {
    display: block;
    vertical-align: top;
    line-height: 20px; }
  .hint .hint_text {
    display: none;
    position: absolute;
    padding: 7px;
    background: #444;
    font-family: light;
    color: #fff !important;
    font-size: 14px;
    line-height: 18px;
    border-radius: 3px;
    text-transform: none;
    text-align: left; }
    .hint .hint_text span {
      font-family: bold; }
    .hint .hint_text:before {
      content: "";
      position: absolute;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent; }
  .hint:hover {
    color: #0099cc; }
    .hint:hover .hint_text {
      display: block; }
  .hint.bottom_pos .hint_text {
    top: 25px; }
  .hint.bottom_pos .hint_text:before {
    border-bottom: 6px solid #444;
    top: -6px; }
  .hint.top_pos .hint_text {
    bottom: 25px; }
  .hint.top_pos .hint_text:before {
    border-top: 6px solid #444;
    bottom: -6px; }
  .hint.right_pos .hint_text {
    left: -10px; }
  .hint.right_pos .hint_text:before {
    left: 10px; }
  .hint.left_pos .hint_text {
    right: -5px; }
  .hint.left_pos .hint_text:before {
    right: 10px; }

/*# sourceMappingURL=style.css.map */
