* {
  box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0;
  background: #030303;
  font-size: 16px;
  font-family: "Helvetica", "Arial", sans-serif;
  text-size-adjust: none;
  overflow-x: hidden; }
  html.no-scroll,
  body.no-scroll {
    overflow: hidden; }

html {
  height: 100%; }
  html.admin {
    height: calc(100% - 32px); }

body {
  display: flex;
  flex-direction: column;
  padding: 50px 0 0;
  min-height: 100%; }

body .row {
  box-sizing: border-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap; }

.row.col {
  flex-direction: column; }

.row.top {
  align-items: flex-start; }

.row.middle {
  align-items: center; }

.row.bottom {
  align-items: flex-end; }

.row.left {
  justify-content: flex-start; }

.row.center {
  justify-content: center; }

.row.right {
  justify-content: flex-end; }

.row.nowrap {
  flex-wrap: nowrap; }

.row.between {
  justify-content: space-between; }

.row.around {
  justify-content: space-around; }

img {
  vertical-align: top; }
  img.svg {
    opacity: 0; }

a {
  text-decoration: none;
  animation: all 0.1s ease-out;
  outline: none;
  color: #1b70af; }
  a:active, a:visited, a:focus {
    outline: none; }
  a:hover {
    filter: brightness(1.5); }

p {
  margin: 0 0 25px;
  font-size: 18px;
  line-height: 1.3; }

.intro-p p:first-of-type {
  font-size: 19px;
  margin-bottom: 20px; }

p img {
  border-radius: 8px; }

ul {
  margin: 0;
  padding: 0;
  list-style: none; }
  ul li {
    margin: 0;
    padding: 0; }

ol {
  margin: 20px 0; }
  ol li {
    margin: 10px 0; }

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  line-height: 1; }

h1 {
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
  margin: 0 0 20px; }

h2 {
  font-size: 36px;
  margin: 0 0 40px;
  font-weight: 600;
  text-transform: uppercase; }
  h2::first-letter {
    font-size: 48px; }

h3 {
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 25px; }

h4 {
  font-weight: 400;
  font-size: 18px;
  margin: 0 0 15px; }

h2 + h3 {
  margin: -30px 0 40px; }

strong {
  font-weight: 700; }

blockquote {
  border-left: solid 6px #1b70af;
  padding-left: 30px;
  margin: 35px 0;
  font-style: italic;
  font-weight: bold;
  color: #1b70af; }
  blockquote p {
    margin: 0;
    font-size: 24px; }
  blockquote label {
    display: block;
    font-size: 18px;
    font-weight: normal;
    margin-top: 10px; }
  blockquote:first-child {
    margin-top: 0; }
  blockquote:last-child {
    margin-bottom: 0; }

.container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px; }

.content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto; }

.padding {
  padding-top: 55px;
  padding-bottom: 55px; }

.padding-top {
  padding-top: 55px; }

.padding-bottom {
  padding-bottom: 55px; }

.overlap {
  margin-bottom: -50px; }

.bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }

input:focus {
  outline: 0;
  border: none; }

input:not([type=radio]) {
  width: 100%;
  height: 50px;
  line-height: 50px;
  border: solid 1px #030303;
  color: #030303;
  font-size: 14px;
  margin-bottom: 10px;
  padding: 0 10px;
  border-radius: 3px; }
  input:not([type=radio])::placeholder {
    color: #030303; }
  input:not([type=radio])[type=submit] {
    width: auto;
    margin-top: 20px; }
  input:not([type=radio]):focus {
    outline: none;
    border: solid 1px #030303; }

textarea {
  width: 100%;
  display: block;
  border-radius: 0;
  resize: vertical;
  min-height: 90px;
  height: 90px;
  border: none;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 14px;
  color: #030303;
  border: solid 1px #030303; }
  textarea:focus {
    outline: 0;
    border: solid 1px #030303; }
  textarea::placeholder {
    color: #030303; }

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #1a1a1a;
  box-shadow: 0 0 10px #030303;
  z-index: 10; }
  header .container {
    padding: 0; }
  header .custom-logo-link {
    margin-right: auto;
    background: rgba(255, 255, 255, 0.1); }
    header .custom-logo-link img {
      transition: all 0.1s ease-out; }
    header .custom-logo-link:hover img {
      filter: brightness(1.2); }
  header nav {
    position: relative; }
    header nav ul {
      display: flex;
      height: 100%; }
      header nav ul li a {
        color: #fff;
        font-size: 14px;
        text-transform: uppercase;
        font-weight: normal;
        padding: 0 30px;
        line-height: 50px; }
        header nav ul li a:active, header nav ul li a:visited, header nav ul li a:focus {
          color: #fff; }
        header nav ul li a:hover {
          color: #1b70af;
          filter: brightness(1.5); }
    header nav .caret {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 102px;
      height: 4px;
      background: #1b70af;
      transition: all 0.25s ease-out; }
      header nav .caret.hide {
        display: none; }
  header .burger {
    position: relative;
    display: none;
    width: 32px;
    height: 28px;
    padding: 5px;
    margin-left: auto;
    box-sizing: border-box;
    margin-left: auto;
    cursor: pointer; }
    header .burger span {
      display: block;
      position: absolute;
      height: 3px;
      width: 22px;
      left: 5px;
      top: 5px;
      background: #fff;
      transition: all 0.2s ease-out; }
      header .burger span:nth-child(2) {
        top: 12px; }
      header .burger span:nth-child(3) {
        top: 19px; }
    header .burger:hover span {
      background: #1b70af; }
  header .btn {
    margin-left: auto;
    border-radius: 0;
    font-size: 14px; }

html.admin header {
  top: 32px; }

html.mobile-menu {
  overflow: hidden; }
  html.mobile-menu header .burger span:nth-child(1) {
    top: 11px;
    left: 7px;
    width: 20px;
    transform: rotate(45deg); }
  html.mobile-menu header .burger span:nth-child(2) {
    display: none; }
  html.mobile-menu header .burger span:nth-child(3) {
    width: 20px;
    top: 11px;
    left: 7px;
    transform: rotate(-45deg); }

body.scrolled header {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25); }
  body.scrolled header .main .custom-logo-link img {
    height: 50px !important; }

footer {
  position: relative;
  margin-top: auto;
  width: 100%;
  overflow: hidden;
  color: #696969;
  background: #1a1a1a;
  text-align: center;
  padding: 20px;
  font-size: 14px; }
  footer .content {
    min-height: 70px; }

.btn,
input[type=submit] {
  display: inline-block;
  position: relative;
  color: #fff;
  background: #1b70af;
  white-space: nowrap;
  border-radius: 4px;
  text-transform: uppercase;
  text-shadow: none;
  cursor: pointer;
  height: 50px;
  line-height: 50px;
  padding: 0 35px 0 25px;
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  transition: all 0.1s ease-out;
  border: none; }
  .btn:hover,
  input[type=submit]:hover {
    color: #fff;
    filter: brightness(1.2); }
  .btn:active, .btn:focus, .btn:visited,
  input[type=submit]:active,
  input[type=submit]:focus,
  input[type=submit]:visited {
    color: #fff;
    border: none; }
  .btn:after,
  input[type=submit]:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 8px;
    height: 8px;
    border-right: solid 2px #fff;
    border-bottom: solid 2px #fff;
    transform: translateY(-50%) rotate(-45deg); }

input[type=submit] {
  padding-right: 25px;
  min-width: 100px; }

p + .button,
ul + .button,
ol + .button {
  margin-top: 50px; }

/* loading -------------------------------------------------*/
.loading-anim {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  width: 58px;
  height: 58px;
  left: 50%;
  top: 50%;
  z-index: -100;
  transform: scale(0.8) translate(-70%, -50%);
  transition: opacity 0.25s ease-out 0.25s; }

.loading > *,
.error > *,
.done > * {
  visibility: hidden; }

.tip {
  visibility: visible;
  opacity: 1;
  position: absolute;
  width: 80%;
  left: 50%;
  top: 50%;
  text-align: center;
  font-size: 16px;
  color: #1a1a1a;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease-out 0.25s; }

.tip:empty {
  visibility: hidden;
  opacity: 0; }

.error .tip {
  color: #ec5c42; }

.loading > .loading-anim {
  visibility: visible;
  opacity: 1;
  z-index: 1; }

.circularG {
  position: absolute;
  background-color: #1b70af;
  width: 14px;
  height: 14px;
  transform: scale(0);
  border-radius: 9px;
  animation-name: bounce_circularG;
  animation-duration: 1.1s;
  animation-iteration-count: infinite;
  animation-direction: normal; }

#circularG_1 {
  left: 0;
  top: 23px;
  animation-delay: 0.41s; }

#circularG_2 {
  left: 6px;
  top: 6px;
  animation-delay: 0.55s; }

#circularG_3 {
  top: 0;
  left: 23px;
  animation-delay: 0.69s; }

#circularG_4 {
  right: 6px;
  top: 6px;
  animation-delay: 0.83s; }

#circularG_5 {
  right: 0;
  top: 23px;
  animation-delay: 0.97s; }

#circularG_6 {
  right: 6px;
  bottom: 6px;
  animation-delay: 1.1s; }

#circularG_7 {
  left: 23px;
  bottom: 0;
  animation-delay: 1.24s; }

#circularG_8 {
  left: 6px;
  bottom: 6px;
  animation-delay: 1.38s; }

@keyframes bounce_circularG {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(0.3); } }
.slick-slider .slick-dots {
  text-align: center; }
  .slick-slider .slick-dots li {
    display: inline-block;
    margin: 10px 10px 0;
    line-height: 11px; }
    .slick-slider .slick-dots li button {
      vertical-align: top;
      width: 11px;
      height: 11px;
      font-size: 0;
      background: #fff;
      border-radius: 50%;
      border: none;
      transition: all 0.1s ease-out;
      cursor: pointer; }
      .slick-slider .slick-dots li button:hover {
        background: #1b70af; }
    .slick-slider .slick-dots li.slick-active button {
      background: #1b70af; }

.wpcf7 .submit {
  position: relative;
  text-align: right; }
  .wpcf7 .submit .wpcf7-spinner {
    position: absolute;
    left: 0;
    top: 24px;
    margin: 0;
    background-color: #1b70af; }
.wpcf7 .wpcf7-list-item {
  margin: 0 20px 15px 0;
  white-space: nowrap; }
  .wpcf7 .wpcf7-list-item input {
    vertical-align: top;
    margin: 3px 5px 0 0; }
  .wpcf7 .wpcf7-list-item .wpcf7-list-item-label {
    display: inline-block;
    white-space: normal; }
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  color: #ffb900; }
.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
  color: #dc3232; }
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #1b70af;
  color: #fff;
  text-transform: uppercase;
  text-align: center; }
.wpcf7 .wpcf7-response-output {
  border-radius: 5px; }
.wpcf7 .wpcf7-mail-sent-ok {
  border: 2px solid #1b70af;
  padding: 10px;
  background-color: #f0f8ff;
  color: #333; }

@media (max-width: 1100px) {
  header .container {
    padding: 0; }
  header nav {
    position: fixed;
    top: 82px;
    right: 0;
    height: calc(100vh - 82px);
    min-width: 265px;
    transition: all 0.2s ease-out;
    background: rgba(0, 0, 0, 0.9);
    border: solid 1px rgba(255, 255, 255, 0.2);
    padding: 20px;
    transform: translateX(100%); }
    header nav ul {
      flex-direction: column;
      opacity: 0; }
      header nav ul li a {
        display: block;
        padding: 10px 0;
        line-height: normal; }
      header nav ul li:first-child a {
        padding-top: 0; }
    header nav .caret {
      display: none; }
  header .burger {
    display: block; }
  header .btn {
    margin-left: 20px; }

  html.mobile-menu header nav {
    transform: none; }
    html.mobile-menu header nav ul {
      opacity: 1;
      transition: all 0.25s ease-out 0.25s; }

  html.admin header nav {
    top: 82px;
    height: calc(100% - 82px); } }
@media (max-width: 1024px) {
  h2 {
    font-size: 32px;
    margin-bottom: 35px; }
    h2::first-letter {
      font-size: 44px; }

  h3 {
    font-size: 20px; }

  h2 + h3 {
    margin: -25px 0 35px; }

  blockquote p {
    font-size: 22px; }

  .btn,
  input[type=submit] {
    font-size: 0.8rem; }

  .padding {
    padding-top: 50px;
    padding-bottom: 50px; }

  .padding-top {
    padding-top: 50px; }

  .padding-bottom {
    padding-bottom: 50px; } }
@media (max-width: 782px) {
  html.admin header {
    top: 46px; }
    html.admin header nav {
      top: 96px;
      height: calc(100% - 96px); } }
@media (max-width: 768px) {
  h2 {
    font-size: 28px;
    margin-bottom: 30px; }
    h2::first-letter {
      font-size: 40px; }

  h3 {
    font-size: 18px; }

  h2 + h3 {
    margin: -20px 0 30px; }

  blockquote {
    padding-left: 25px; }
    blockquote p {
      font-size: 20px; }

  .container {
    padding-left: 40px;
    padding-right: 40px; }

  .padding {
    padding-top: 45px;
    padding-bottom: 45px; }

  .padding-top {
    padding-top: 45px; }

  .padding-bottom {
    padding-bottom: 45px; } }
@media (max-width: 600px) {
  h2 + h3 {
    margin-bottom: 30px; }

  header nav {
    min-width: 235px; }

  html.admin.scrolled body header {
    top: 0; }
    html.admin.scrolled body header nav {
      top: 50px;
      height: calc(100% - 50px); }

  header .btn {
    font-size: 12px;
    padding: 0 30px 0 20px; }
    header .btn:after {
      right: 18px; }

  p {
    margin: 0 0 20px;
    font-size: 16px; }

  blockquote p {
    font-size: 18px; }
    blockquote p br {
      display: none; }

  .container {
    padding-left: 30px;
    padding-right: 30px; }

  .padding {
    padding-top: 35px;
    padding-bottom: 35px; }

  .padding-top {
    padding-top: 35px; }

  .padding-bottom {
    padding-bottom: 35px; } }
@media (max-width: 450px) {
  h2 {
    font-size: 26px; }
    h2::first-letter {
      font-size: 38px; }

  .container {
    padding-left: 20px;
    padding-right: 20px; }

  .padding {
    padding-top: 25px;
    padding-bottom: 25px; }

  .padding-top {
    padding-top: 25px; }

  .padding-bottom {
    padding-bottom: 25px; } }
@media (max-width: 400px) {
  header .custom-logo-link {
    margin-right: 15px; }
  header .burger {
    margin: 0 auto 0 0; }
  header nav {
    min-width: calc(100vw - 100px); }
  header .btn {
    margin-left: 0; } }

/*# sourceMappingURL=main.css.map */
