@charset "UTF-8";
@font-face {
  font-family: Roboto;
  src: url(../fonts/Roboto-Regular.ttf); }

@font-face {
  font-family: RobotoBold;
  src: url(../fonts/Roboto-Bold.ttf); }

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: 16px;
  font: inherit;
  vertical-align: baseline;
  font-family: "Roboto", sans-serif; }

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

body {
  line-height: 1;
  min-width: 320px;
  overflow-x: hidden;
  background: #fff; }

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; }

a {
  -webkit-transition: color .3s;
  transition: color .3s; }

/*глобальные настройки*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

a {
  text-decoration: none;
  -webkit-transition: color .3s, background .3s;
  transition: color .3s, background .3s;
  color: #3051aa; }
  a:hover {
    color: #FCBB2D; }

p:not(:last-child) {
  margin-bottom: 10px; }

img {
  height: auto;
  max-width: 100%; }

b, strong, .strong {
  font-family: 'RobotoBold', sans-serif;
  font-weight: bold; }

h1, h2, h3 {
  margin-bottom: 30px;
  font-family: 'RobotoBold', sans-serif; }

h1 {
  font-size: 1.875em; }

h2 {
  font-size: 1.625em; }

h3 {
  font-size: 1.375em; }

ul, ol {
  margin-bottom: 15px;
  padding-left: 30px; }
  ul li, ol li {
    padding: 5px 0; }

ul {
  list-style-type: disc; }

ol {
  list-style-type: decimal; }

.container {
  width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative; }

.title-section {
  margin-bottom: 50px;
  padding: 10px 0;
  font-family: 'RobotoBold', sans-serif;
  font-size: 2.5em;
  position: relative; }

.title-desc {
  font-size: 1.25em;
  line-height: 30px; }

.mask {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1050; }

html.overflow {
  overflow: hidden; }
  html.overflow .modal {
    overflow-y: auto; }

.hidden {
  display: none; }

.label-checkbox {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 35px;
  margin-right: 15px;
  font-size: 13px; }
  .label-checkbox::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    bottom: -4px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #b7c3cc; }

input[type=checkbox] {
  width: 1px;
  height: 1px;
  margin: 0; }

input[type=checkbox]:checked + label:before {
  content: "\2713";
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 17px;
  color: #333;
  text-align: center;
  line-height: 15px; }

.btn {
  display: inline-block;
  padding: 16px 22px;
  border-radius: 30px;
  border: none;
  cursor: pointer; }

.scrollTop {
  padding-top: 3px;
  position: fixed;
  right: 30px;
  bottom: -30px;
  background: #aa50a1;
  width: 50px;
  height: 30px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  text-align: center;
  -webkit-transition: bottom .3s, background .3s;
  transition: bottom .3s, background .3s; }
  .scrollTop.vis {
    bottom: 0; }
  .scrollTop:hover {
    background: #b460ac; }
  .scrollTop i {
    font-size: 1.375em;
    color: #fff; }

.modal-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1060;
  visibility: hidden; }
  .modal-box.vis {
    visibility: visible; }
  .modal-box .modal {
    padding: 40px;
    width: 600px;
    background: #fff;
    border: 2px solid #aa50a1;
    position: relative;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    -webkit-transition: -webkit-transform .9s;
    transition: -webkit-transform .9s;
    transition: transform .9s;
    transition: transform .9s, -webkit-transform .9s; }
    .modal-box .modal.open {
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1); }
    .modal-box .modal .close {
      position: absolute;
      right: 10px;
      top: 10px;
      font-size: 1.125em;
      color: #aa50a1; }
    .modal-box .modal .title {
      margin-bottom: 30px;
      font-family: 'MontserratBold', sans-serif;
      font-size: 1.25em;
      color: #3051aa; }
    .modal-box .modal form {
      text-align: center; }
      .modal-box .modal form .input {
        display: block;
        padding: 15px 25px;
        margin-bottom: 15px;
        width: 100%;
        border: 1px solid #ccc; }
      .modal-box .modal form .submit {
        padding: 15px 40px; }

header {
  padding: 40px 0;
  min-height: 100vh;
  background: transparent;
  position: relative; }
  header .phone-box {
    margin-bottom: 30px;
    text-align: right; }
    header .phone-box a {
      font-size: 1.5em;
      color: #fff; }
      header .phone-box a:hover {
        color: #FCBB2D; }
  header .logo-box {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
    header .logo-box a {
      display: block; }
    header .logo-box .text-box {
      margin-top: 20px; }
      header .logo-box .text-box p {
        text-transform: uppercase;
        color: #fff; }
      header .logo-box .text-box .name {
        font-family: 'RobotoBold', sans-serif;
        font-size: 3.125em;
        letter-spacing: 4px; }
      header .logo-box .text-box .desc {
        font-size: 1.125em; }
  header .next-box {
    position: absolute;
    left: 50%;
    bottom: 30px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%); }
    header .next-box a {
      color: #fff;
      font-size: 5em; }

.section {
  padding: 30px 0;
  background: #fff; }

.section-cert .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.section-cert .item {
  padding: 15px;
  width: 50%; }

.section-cert .left {
  text-align: center; }
  .section-cert .left img {
    max-width: 300px; }

.section-map {
  padding: 0;
  height: 500px; }

footer {
  padding: 40px 0;
  background: #8A8977; }
  footer p {
    color: #fff; }
  footer .copy {
    font-size: 0.875em; }

@media only screen and (max-width: 1200px) {
  .container {
    width: 980px; } }

@media only screen and (max-width: 992px) {
  .container {
    width: 750px; } }

@media only screen and (max-width: 768px) {
  .container {
    width: 100%; }
  .section-cert .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
    .section-cert .flex-box .item {
      width: 100%;
      text-align: center; }
  .section-map {
    height: 300px; } }
