@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box; }

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block; }

*[hidden] {
  display: none; }

ol, ul {
  list-style: none; }

a {
  color: #fff;
  outline: none;
  text-decoration: none; }

a:hover {
  text-decoration: underline; }

html, textarea {
  overflow: auto; }

input {
  vertical-align: middle; }

input, textarea, select {
  outline: none;
  resize: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

img {
  display: block;
  vertical-align: top;
  border: none; }

body {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #222;
  height: 100%;
  width: 100%; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(0, 0, 0, 0.75);
  z-index: 999;
  transition: .3s; }
  .header .info_block, .header .menu {
    display: none; }
  .header .menu_block {
    position: absolute;
    top: 70px;
    left: -101%;
    width: 250px;
    height: calc(var(--vh, 1vh) * 100 - 70px);
    background: rgba(0, 0, 0, 0.75);
    transition: .3s; }
    .header .menu_block.active {
      left: 0; }
    .header .menu_block .menu_mob {
      padding: 10px 0;
      margin: 0 15px 15px;
      display: flex;
      /*border-top: 1px solid #fff;*/
      border-bottom: 1px solid #fff;
      flex-direction: column; }
      .header .menu_block .menu_mob a {
        margin: 5px 0;
        font-size: 16px;
        transition: .3s; }
        .header .menu_block .menu_mob a:hover {
          text-decoration: none;
          color: #ffb800; }
    .header .menu_block .info_block {
      display: block; }
  .header.moved:before {
    left: 0;
    width: 50%; }
  .header.moved:after {
    width: 50%; }
  .header:after, .header:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 0;
    height: 2px;
    transition: .5s; }
  .header:after {
    background: #ffb800; }
  .header:before {
    background: #0075ff; }

.font-16 {
  font-size: 16px;
  text-align: justify !important; }

.info_block {
  display: block;
  padding: 0 15px; }
  .info_block .place {
    margin-top: 15px;
    display: flex;
    align-items: center;
    font-size: 15.7px;
    transition: .3s;
    color: #fff; }
    .info_block .place span {
      display: flex;
      min-width: 25px;
      justify-content: center;
      align-items: center;
      margin-top: 4px;
      padding-right: 9px; }
    .info_block .place:hover {
      text-decoration: none;
      color: #ffb800; }
  .info_block .worktime {
    font-size: 12.2px;
    color: #fff;
    text-align: justify;
    padding-bottom: 5px; }
  .info_block .phones > a,
  .info_block .email > a {
    display: flex;
    align-items: center;
    font-size: 15.7px;
    transition: .3s; }
    .info_block .phones > a span,
    .info_block .email > a span {
      display: flex;
      min-width: 25px;
      justify-content: center;
      align-items: center;
      margin-top: 4px;
      padding-right: 9px; }
    .info_block .phones > a:hover,
    .info_block .email > a:hover {
      text-decoration: none;
      color: #ffb800; }
  .info_block .email {
    margin-top: 5px; }

.logo_mob {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%; }
  .logo_mob img {
    height: 100%; }

.callback {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  color: #fff; }
  .callback .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0075ff;
    transition: .3s; }
  .callback .text {
    display: none;
    padding: 0 10px 0 15px;
    font-size: 16px;
    transition: .3s; }
  .callback:hover {
    color: #ffb800; }

.menu_btn {
  position: fixed;
  top: 22px;
  right: 15px;
  cursor: pointer;
  margin-left: 30px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center; }
  .menu_btn.active {
    z-index: 11; }
    .menu_btn.active span {
      background: transparent; }
      .menu_btn.active span:after {
        top: calc(50% - 1px);
        background: #ffb800;
        transform: rotate(-45deg); }
      .menu_btn.active span:before {
        top: calc(50% - 1px);
        background: #ffb800;
        transform: rotate(45deg); }
  .menu_btn span {
    position: relative;
    width: 27px;
    height: 3px;
    background: #fff; }
    .menu_btn span:after, .menu_btn span:before {
      content: '';
      position: absolute;
      width: inherit;
      height: inherit;
      background: inherit;
      transition: .2s; }
    .menu_btn span:before {
      top: -7px; }
    .menu_btn span:after {
      top: 7px; }

.full_screen {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background: #040e43 url("../images/_promo.jpg");
  background-size: cover; }
  .full_screen .slogan {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 40px;
    color: #fff;
    position: relative;
    z-index: 1; }
    .full_screen .slogan > span {
      display: inline-block;
      margin: 5px 15px;
      background: rgba(0, 0, 0, 0.75);
      padding: 0 15px;
      border-radius: 5px; }
    .full_screen .slogan .color_1 {
      color: #ffb800; }
    .full_screen .slogan .color_2 {
      color: #0075ff; }

.flux_container {
  width: 100%;
  position: relative;
  z-index: 1; }
  .flux_container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: .15;
    background-size: cover; }
  .flux_container.fon_1:before {
    background: url("../img/img4.jpg") center; }

.container {
  padding: 0 15px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto; }

.heading {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  padding: 30px 0; }

.text-center {
  text-align: center; }

.benefits {
  display: flex;
  flex-wrap: wrap; }
  .benefits .item {
    display: flex;
    margin-top: 20px; }
    .benefits .item .icon {
      display: flex;
      justify-content: space-around;
      align-items: center;
      width: 40px;
      height: 40px;
      flex-shrink: 0;
      font-size: 24px;
      color: #ffb800; }
    .benefits .item .info .name {
      min-height: 40px;
      font-weight: 700;
      display: flex;
      color: #0075ff;
      align-items: center;
      font-size: 18px;
      text-transform: uppercase;
      line-height: 20px; }

.our_place {
  margin-top: 40px;
  width: 100%; }
  .our_place .item {
    position: relative;
    width: 100%;
    padding: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    overflow: hidden; }
    .our_place .item img {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      min-height: 100%;
      min-width: 100%; }

.table {
  width: 100%;
  max-width: 500px;
  margin: 15px auto 0; }
  .table .tr {
    display: flex;
    background: rgba(0, 0, 0, 0.1);
    transition: .3s; }
    .table .tr:hover {
      background: #e1b800; }
      .table .tr:hover:nth-child(2n + 2) {
        background: #0075ff; }
    .table .tr:nth-child(2n + 2) {
      background: rgba(0, 0, 0, 0.05); }
    .table .tr .td {
      font-size: 16px;
      padding: 5px 15px;
      width: 50%; }
      .table .tr .td:nth-child(2n + 2) {
        text-align: right;
        font-weight: 700; }

.plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px auto 0;
  width: 100%; }
  .plans .plan {
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 260px;
    padding: 50px 20px;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25); }
    .plans .plan.popular {
      background: #ffb800; }
      .plans .plan.popular .title {
        color: #fff; }
      .plans .plan.popular button {
        background: #0075ff; }
        .plans .plan.popular button:hover {
          background: #FFFFFF;
          color: #0075ff; }
    .plans .plan .info_plan {
      font-size: 13px; }
    .plans .plan .title {
      font-size: 40px; }
      .plans .plan .title small {
        font-size: 14px; }
    .plans .plan ul {
      text-align: left;
      padding: 30px 0;
      width: 100%; }
      .plans .plan ul li {
        padding: 5px;
        font-size: 15px; }
        .plans .plan ul li span.fas {
          margin-right: 10px;
          color: #0075ff; }
    .plans .plan button {
      cursor: pointer;
      width: 100%;
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 10px 30px;
      border-radius: 50px;
      background: #ffb800;
      transition: .3s;
      font-size: 16px;
      color: #fff; }
      .plans .plan button:hover {
        background: #0075ff; }

.contacts {
  background: #040e43; }
  .contacts .container {
    display: flex;
    flex-wrap: wrap; }
  .contacts .heading {
    width: 100%;
    color: #fff; }
  .contacts .info_block {
    padding: 0 0 30px; }

.pb-30 {
  padding-bottom: 15px; }

.pb-20 {
  padding-bottom: 20px; }

.group {
  width: 100%;
  display: flex;
  flex-wrap: wrap; }

.contact_info {
  order: -1;
  width: 100%;
  color: #fff;
  display: flex;
  align-items: center; }

#map {
  width: 100%;
  height: 300px; }

.insta {
  margin-top: 20px;
  display: flex;
  align-items: center; }
  .insta img {
    width: 40px;
    margin-right: 10px; }

.text_about_insta {
  margin-top: 25px;
  font-style: italic;
  position: relative;
  padding: 20px 0 0 30px; }
  .text_about_insta:before {
    content: '"';
    position: absolute;
    top: -15px;
    left: -5px;
    font-size: 60px;
    color: #e1b800; }

.list {
  padding-bottom: 20px; }
  .list li {
    padding: 5px 0 10px 20px; }

.modal_fon {
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.75);
  z-index: 999999999999;
  transition: .3s; }
  .modal_fon.hide {
    visibility: hidden;
    opacity: 0;
    z-index: -1; }
  .modal_fon .modal {
    cursor: initial;
    position: relative;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    background: #fff; }
    .modal_fon .modal h3 {
      font-size: 20px;
      text-align: center; }
    .modal_fon .modal .close {
      position: absolute;
      top: 0;
      right: 0;
      width: 40px;
      height: 40px;
      cursor: pointer; }
      .modal_fon .modal .close:after, .modal_fon .modal .close:before {
        position: absolute;
        top: calc(50% - 1px);
        left: calc(50% - 10px);
        content: '';
        width: 20px;
        height: 1px;
        background: #000; }
      .modal_fon .modal .close:after {
        transform: rotate(-45deg); }
      .modal_fon .modal .close:before {
        transform: rotate(45deg); }
      .modal_fon .modal .close:hover {
        background: #e1e1e1; }

.form {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%; }
  .form:after {
    opacity: 0;
    content: "Вже в найближчий час ми з Вами зв'яжемося";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden; }
  .form.sent:after {
    opacity: 1;
    visibility: initial; }
  .form input[type='text'] {
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid #0075ff;
    transition: .3s; }
    .form input[type='text']:focus {
      border-color: #ffb800; }
    .form input[type='text'].error {
      border-color: red; }
  .form button {
    padding: 10px 20px;
    width: auto;
    background: #0075ff;
    font-size: 16px;
    color: #fff;
    transition: .3s;
    cursor: pointer; }
    .form button:hover {
      color: #000;
      background: #ffb800; }

@media only screen and (min-width: 500px), only screen and (min-device-width: 767px) {
  .plans .plan {
    margin: 0 10px 20px; } }
@media only screen and (min-width: 768px), only screen and (min-device-width: 768px) {
  .full_screen {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    background-size: cover; }
    .full_screen .slogan > span:first-child {
      margin-right: 150px; }
    .full_screen .slogan > span:last-child {
      margin-left: 150px; }

  .pb-30 {
    padding-bottom: 30px; } }
@media only screen and (min-width: 991px), only screen and (min-device-width: 991px) {
  .header {
    height: 90px; }
    .header .logo_mob, .header .menu_btn, .header .menu_block {
      display: none; }
    .header .callback {
      top: 25px; }
      .header .callback .text {
        display: inline-block; }
    .header .menu {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%; }
      .header .menu a {
        font-size: 16px;
        transition: .3s; }
        .header .menu a:hover {
          text-decoration: none;
          color: #ffb800; }
      .header .menu .left_side {
        width: 400px;
        display: flex;
        align-items: center;
        justify-content: end; }
      .header .menu .right_side {
        width: 400px;
        display: flex;
        align-items: center; }
      .header .menu .left_side a {
        display: block;
        margin-left: 15px; }
      .header .menu .right_side a {
        display: block;
        margin-right: 15px; }
      .header .menu .logo {
        height: 100%;
        margin: 0 10px; }
        .header .menu .logo img {
          height: 100%; }
    .header .info_block {
      position: fixed;
      top: 23px;
      right: 15px;
      display: block; }

  .heading {
    padding: 40px 0; }

  .benefits .item {
    width: 33.3333%; }
    .benefits .item .icon {
      width: 60px;
      height: 60px;
      font-size: 30px; }
    .benefits .item .info .name {
      min-height: 60px;
      font-size: 20px;
      line-height: 28px;
      padding-bottom: 10px; }

  .contacts .info_block {
    padding: 0 15px; }

  .contact_info {
    order: 1;
    width: calc(35% - 30px);
    margin-left: 30px; }

  #map {
    width: 65%;
    height: 400px; }

  .plans {
    justify-content: space-between;
    flex-wrap: nowrap; }
    .plans .plan {
      margin: 0 5px 20px; } }

/*# sourceMappingURL=style.css.map */
