/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
@import "https://fonts.googleapis.com/css?family=Libre+Franklin:400,500";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

body {
  font-family: "Libre Franklin", sans-serif;
  min-width: 960px;
  line-height: 1;
  background-color: #494C57; }

.first {
  background: url("../images/back_01.jpg") no-repeat;
  width: 100%;
  height: 770px;
  overflow-x: hidden;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-align: center;
  position: relative;
  z-index: 100; }
  .first img {
    display: block;
    margin-bottom: 50px; }
  .first p {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 30px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    max-width: 680px;
    margin-bottom: 50px; }
  .first:before {
    content: '';
    display: block;
    width: 500px;
    height: 500px;
    background-size: 500px;
    position: absolute;
    top: 135px;
    left: calc(50% + 185px);
    z-index: -1; }

.second {
  padding: 70px 0;
  text-align: left;
  background-color: #fff;
  position: relative; }
  .second p {
    max-width: 900px;
    text-align: center;
    margin: 0 auto 74px;
    font-size: 20px;
    line-height: 32px; }

.cards {
  overflow: hidden;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-align: stretch;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-pack: space-between;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap; }
  .cards__item {
    width: 50%;
    padding-right: 70px;
    text-align: center;
    padding-bottom: 20px; }
    .cards__item img {
      margin-bottom: 15px; }
    .cards__item:nth-child(2n) {
      border-left: 1px solid #D8D8D8;
      padding-left: 70px;
      padding-right: 0; }
  .cards__title {
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 10px; }
  .cards__description {
    font-size: 15px;
    line-height: 20px; }

.third {
  -webkit-box-shadow: inset 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
  background: url("../images/back_02.jpg") #ECECEC top center no-repeat;
  width: 100%;
  height: 550px;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-align: center; }
  .third p {
    max-width: 900px;
    text-align: center;
    font-size: 24px;
    color: #FFFFFF;
    letter-spacing: 0.19px;
    line-height: 36px; }

.footer {
  height: 300px;
  background-color: #494C57;
  color: #fff;
  width: 100%;
  text-align: center;
  padding-top: 66px;
  position: relative; }
  .footer__company {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    position: relative; }
  .footer__contacts {
    font-size: 14px;
    line-height: 17px;
    color: #878A92;
    margin-bottom: 20px; }
  .footer__logo {
    margin-bottom: 20px; }
  .footer a {
    display: inline-block;
    font-size: 14px;
    color: #0B90CB;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0 10px; }
    .footer a.active {
      text-decoration: none;
      color: #878A92; }
    .footer a:hover {
      color: #12C99E; }

.btn {
  position: relative;
  min-width: 180px;
  height: 50px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  line-height: 50px;
  border: none;
  cursor: pointer;
  padding: 0 20px;
  border-radius: 4px;
  outline: none;
  text-align: left;
  padding-left: 64px;
  background-image: -webkit-gradient(linear, left top, right top, from(#12C8A0), to(#07B0D6));
  background-image: linear-gradient(90deg, #12C8A0 0%, #07B0D6 100%);
  background-color: #0B90CB; }
  .btn:before {
    content: '';
    display: block;
    width: 20px;
    height: 15px;
    background-repeat: no-repeat;
    background-image: url("../images/icon-mail.png");
    background-size: 20px 15px;
    position: absolute;
    left: 34px;
    top: 17px; }
  .btn:hover {
    background-image: none; }
  .btn:active {
    color: rgba(255, 255, 255, 0.5);
    background-color: #2B3849; }
    .btn:active:before {
      opacity: 0.5; }
  .btn:disabled {
    background-color: #C5C5C5;
    cursor: not-allowed; }

.link {
  color: #0B90CB;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s; }
  .link:hover {
    color: #12C99E; }

.title {
  font-size: 48px;
  line-height: 58px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.17px; }

.subtitle {
  font-size: 36px;
  color: #fff;
  line-height: 44px;
  margin-bottom: 12px; }
  .subtitle_invert {
    color: #000; }

.page_black {
  background-color: #000; }

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100px;
  background-color: #494C57; }

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #F2F2F2;
  width: 100%;
  padding: 50px 0;
  min-height: calc(100vh - 400px); }
  .main__content {
    width: 800px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 1px solid #D8D8D8;
    border-radius: 6px;
    padding: 50px 60px;
    text-align: justify; }
  .main h1,
  .main .title {
    text-shadow: none;
    text-align: left;
    color: #000;
    font-size: 48px;
    margin-bottom: 30px; }
  .main h2,
  .main .subtitle {
    font-size: 24px;
    color: #000;
    margin-top: 30px;
    line-height: 30px;
    margin-bottom: 15px; }
  .main p {
    font-size: 14px;
    line-height: 17px; }
  .main a {
    color: #0B90CB;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s; }
    .main a:hover {
      color: #12C99E; }

.wrapper {
  margin: 0 auto;
  max-width: 1100px;
  min-width: 960px;
  width: 100%;
  padding: 0 50px; }

.popup {
  width: 800px;
  height: 490px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -400px;
  margin-top: -255px;
  z-index: 9999;
  display: none; }
  .popup .title {
    font-size: 32px; }
  .popup__left {
    float: left;
    padding: 30px;
    width: calc(100% - 280px);
    background-color: #fff;
    height: 490px;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 4px; }
    .popup__left p {
      color: #494D57;
      font-size: 15px;
      line-height: 18px;
      margin: 20px 0 30px; }
  .popup__right {
    background-color: #494D57;
    float: right;
    height: 100%;
    width: 280px;
    padding: 80px 20px 30px 30px;
    height: 490px;
    padding-top: 80px;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 4px;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-topleft: 0;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-bottomright: 4px;
    -moz-border-radius-bottomleft: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 0;
    font-size: 15px;
    line-height: 22px;
    color: #fff; }
    .popup__right p {
      margin-bottom: 30px; }
  .popup .cancel {
    position: absolute;
    top: 20px;
    right: 20px; }

.cancel {
  width: 18px;
  height: 18px;
  display: block;
  background-image: url("../images/icon-cancel.png");
  background-repeat: no-repeat;
  background-size: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s; }
  .cancel:hover {
    opacity: .8; }

.company__name {
  font-size: 18px;
  line-height: 21px;
  font-weight: 500; }

.form__footer {
  margin-top: 23px; }
.form__field {
  margin: 20px 0; }
.form__alert {
  float: left;
  font-size: 14px;
  color: #FF0A05;
  height: 44px;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-direction: column; }
.form__control {
  float: right; }

.input {
  width: 100%;
  height: 44px;
  line-height: 44px;
  border: 1px solid #C5C5C5;
  padding: 0 10px;
  outline: none;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  border-radius: 2px;
  font-size: 15px; }
  .input:focus {
    border-color: #217CE3; }
  .input.error {
    border-color: #FF0A05; }

.alert {
  display: none; }
  .alert.visible {
    display: block; }
  .alert_success {
    display: none;
    color: #63B30C; }

.textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #C5C5C5;
  outline: none;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  border-radius: 2px;
  font-size: 15px;
  height: 100px;
  font-family: "Libre Franklin", sans-serif; }
  .textarea:focus {
    border-color: #217CE3; }
  .textarea.error {
    border-color: #FF0A05; }

.overlay {
  position: fixed;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: .8;
  top: 0;
  left: 0;
  display: none; }

/* Retina */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .first:before {
    background-image: url(""); }

  .btn:before {
    background-image: url(""); }

  .cancel {
    background-image: url(""); } }

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