/*-------------------------------------------------------------------
    Fonts
-------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300,700");
@font-face {
  font-family: 'CenturyGothic';
  src: url("../fonts/CenturyGothic/CenturyGothic.eot?#iefix") format("embedded-opentype"), url("../fonts/CenturyGothic/CenturyGothic.woff") format("woff"), url("../fonts/CenturyGothic/CenturyGothic.ttf") format("truetype"), url("../fonts/CenturyGothic/CenturyGothic.svg#CenturyGothic") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'CenturyGothic-Italic';
  src: url("../fonts/CenturyGothic-Italic/CenturyGothic-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/CenturyGothic-Italic/CenturyGothic-Italic.woff") format("woff"), url("../fonts/CenturyGothic-Italic/CenturyGothic-Italic.ttf") format("truetype"), url("../fonts/CenturyGothic-Italic/CenturyGothic-Italic.svg#CenturyGothic-Italic") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'BlissPro-ExtraLight';
  src: url("../fonts/BlissPro-ExtraLight/BlissPro-ExtraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/BlissPro-ExtraLight/BlissPro-ExtraLight.otf") format("opentype"), url("../fonts/BlissPro-ExtraLight/BlissPro-ExtraLight.woff") format("woff"), url("../fonts/BlissPro-ExtraLight/BlissPro-ExtraLight.ttf") format("truetype"), url("../fonts/BlissPro-ExtraLight/BlissPro-ExtraLight.svg#BlissPro-ExtraLight") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'BlissPro-Italic';
  src: url("../fonts/BlissPro-Italic/BlissPro-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/BlissPro-Italic/BlissPro-Italic.otf") format("opentype"), url("../fonts/BlissPro-Italic/BlissPro-Italic.woff") format("woff"), url("../fonts/BlissPro-Italic/BlissPro-Italic.ttf") format("truetype"), url("../fonts/BlissPro-Italic/BlissPro-Italic.svg#BlissPro-Italic") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'BlissPro-Bold';
  src: url("../fonts/BlissPro-Bold/BlissPro-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/BlissPro-Bold/BlissPro-Bold.otf") format("opentype"), url("../fonts/BlissPro-Bold/BlissPro-Bold.woff") format("woff"), url("../fonts/BlissPro-Bold/BlissPro-Bold.ttf") format("truetype"), url("../fonts/BlissPro-Bold/BlissPro-Bold.svg#BlissPro-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'BlissPro-Heavy';
  src: url("../fonts/BlissPro-Heavy/BlissPro-Heavy.eot?#iefix") format("embedded-opentype"), url("../fonts/BlissPro-Heavy/BlissPro-Heavy.otf") format("opentype"), url("../fonts/BlissPro-Heavy/BlissPro-Heavy.woff") format("woff"), url("../fonts/BlissPro-Heavy/BlissPro-Heavy.ttf") format("truetype"), url("../fonts/BlissPro-Heavy/BlissPro-Heavy.svg#BlissPro-Heavy") format("svg");
  font-weight: normal;
  font-style: normal;
}

/*-------------------------------------------------------------------
    General
-------------------------------------------------------------------*/
body,
html {
  height: 100%;
}

body {
  margin: 0;
  font: 14px/1.4 "BlissPro-ExtraLight";
  letter-spacing: 0.025em;
  color: #000;
}

section {
  margin: 0 0 50px;
  overflow: hidden;
}

figure {
  margin: 0;
}

iframe {
  max-width: 100%;
}

img {
  max-width: 100%;
  vertical-align: top;
}

p {
  padding: 0;
}

a {
  text-decoration: none;
  color: #1270ae;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

a:hover, a:active {
  text-decoration: none;
}

a:focus {
  outline: none;
}

/*Container*/
.container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.container_header {
  position: relative;
  max-width: 1230px;
  height: 126px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.container_404 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: inherit;
}

/*Site wrapper*/
.site-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

/*Site main*/
.site-main {
  padding: 0 0 30px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*-------------------------------------------------------------------
    Forms
-------------------------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="search"],
input[type="password"],
textarea {
  font-size: 14px;
  font-family: "BlissPro-ExtraLight";
  padding: 0 10px;
  height: 32px;
  border: 1px solid #ccc;
  color: #000;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  -webkit-appearance: none;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

textarea {
  resize: none;
  height: auto;
  padding-bottom: 7px;
  padding-top: 7px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

input[type="text"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="number"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
input[type="search"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
textarea:-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
textarea:focus {
  border-color: #b3b3b3;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  outline: none;
}

input[type="text"].error,
input[type="email"].error,
input[type="number"].error,
input[type="tel"].error,
input[type="search"].error,
input[type="password"].error,
textarea.error {
  border-color: red;
}

input[type="submit"],
input[type="reset"],
button {
  font-family: "BlissPro-ExtraLight";
  border: none;
  padding: 0;
  cursor: pointer;
}

input[type="submit"]:focus,
input[type="reset"]:focus,
button:focus {
  outline: none;
}

input[type="submit"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/*-------------------------------------------------------------------
    Contact Form
-------------------------------------------------------------------*/
.contact-form {
    margin-bottom: 50px;
}
.contact-form__field + .contact-form__field {
    margin-top: 10px;
}
.contact-form__field input[type=text], 
.contact-form__field input[type=tel], 
.contact-form__field input[type=email], 
.contact-form__field textarea {
    width: 100%;
    margin: 0;
}
.contact-form .btn-primary {
    height: 40px;
    padding: 0 24px;
    min-width: 0;
    font-size: 16px;
}

/*-------------------------------------------------------------------
    Slick Carousel
-------------------------------------------------------------------*/
.slick-slide:focus,
.slick-arrow:focus,
.slick-dots button:focus {
  outline: none;
}

.slick-arrow,
.slick-dots button {
  cursor: pointer;
}

.slick-slide {
  cursor: -webkit-grab;
  cursor: grab;
}

.slick-slide:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  margin: -24px 0 0 0;
  background-color: transparent;
  border: none;
  font-size: 0;
  z-index: 10;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

.slick-arrow:after {
  display: block;
  font: 48px/1 FontAwesome;
}

.slick-arrow:hover {
  color: #1270ae;
}

.slick-prev {
  left: -47px;
}

.slick-prev:after {
  content: '\f104';
}

.slick-next {
  right: -47px;
}

.slick-next:after {
  content: '\f105';
}

/*-------------------------------------------------------------------
    Header
-------------------------------------------------------------------*/
.site-header {
  background-color: #fff;
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index: 20;
  transition: .3s;
}
body:not(.is-admin) .site-header_fixed {
  box-shadow: 0 3px 10px rgba(0,0,0,.2);
}
body:not(.is-admin) .site-header + .site-main {
  padding-top: 126px;
}
body.is-admin .site-header {
    position: relative;    
}

/*Logo*/
.logo {
  margin: 0 20px 0 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.logo a {
  display: block;
}

.logo__img {
  max-width: 100%;
}

/*Primary navigation*/
.nav-primary__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.nav-primary__item {
  position: relative;
  margin: 0 28px;
  padding: 10px 0;
  font: 16px/1 'CenturyGothic';
  letter-spacing: 0.025em;
  color: #000;
}

.nav-primary__item_has-drop {
  position: relative;
}

.nav-primary__item_has-drop:after {
  content: '\f107';
  font-family: FontAwesome;
  position: absolute;
  right: -15px;
  top: 10px;
}

.nav-primary__item:hover {
  z-index: 10;
}

.nav-primary__item:hover > .submenu {
  opacity: 1;
  visibility: visible;
}

.nav-primary__link {
  color: inherit;
  position: relative;
}

.nav-primary__link:hover {
  color: #1270ae;
}

.nav-primary__link_current:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 0;
  height: 1px;
  background-color: #1270ae;
}

.submenu {
  list-style: none;
  padding: 15px 0;
  margin: 0;
  background-color: #f0f0f0;
  width: 300px;
  position: absolute;
  left: 0;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.submenu_inner {
  left: calc(100% + 1px);
  top: -15px;
}

.submenu__item {
  position: relative;
  font-size: 15px;
  line-height: 1.2;
  color: #000;
  margin: 10px 0 0 0;
  padding: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.submenu__item_has-drop:after {
  content: '\f105';
  font-family: FontAwesome;
  position: absolute;
  right: 20px;
  top: 0;
}

.submenu__item:first-child {
  margin-top: 0;
}

.submenu__item:hover > .submenu {
  opacity: 1;
  visibility: visible;
}

.submenu__link {
  color: inherit;
  display: block;
  width: 100%;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

.submenu__link:hover, .submenu__link_current {
  color: #1270ae;
}

/*Callback*/
.callback {
  position: relative;
  text-align: center;
  white-space: nowrap;
  margin: 0 31px 0 20px;
}

.callback:before {
  content: '\f2a0';
  font: 16px/1 FontAwesome;
  color: #d80b8c;
  position: absolute;
  left: -14px;
  top: 0;
  display: block;
}

.callback__phone {
  font: 16px/1 'CenturyGothic';
}

.callback__phone a {
  color: #000;
}

.callback__phone a:hover {
  color: #1270ae;
}

.callback__btn {
  font: 14px/1 'CenturyGothic-Italic';
  color: #d80b8c;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 1px 0 0 0;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

.callback__btn:hover {
  color: #1270ae;
}

/*Languages*/
.lang-switcher {
  position: absolute;
  right: 10px;
  top: 11px;
}

.lang-switcher__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.lang-switcher__lang + .lang-switcher__lang {
  margin-left: 10px;
}

.lang-switcher__lang a:hover {
  color: #d80b8c;
}

/*Social*/
.social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.social_sm {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 29px 0 0 0;
}

.social__link {
  font-size: 20px;
  color: #fff;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  margin: 0 0 0 27px;
  border-width: 3px;
  border-style: solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.social__link:first-child {
  margin-left: 0;
}

.social__link_color-1 {
  background-color: #1270ae;
  border-color: #1270ae;
}

.social__link_color-1:hover {
  color: #1270ae;
}

.social__link_color-2 {
  background-color: #d80b8c;
  border-color: #d80b8c;
}

.social__link_color-2:hover {
  color: #d80b8c;
}

.social__link_color-3 {
  background-color: #fdb913;
  border-color: #fdb913;
}

.social__link_color-3:hover {
  color: #fdb913;
}

.social__link_sm {
  font-size: 18px;
  width: 32px;
  height: 32px;
  border-width: 2px;
}

.social__link:hover {
  background-color: transparent;
}

/*-------------------------------------------------------------------
    Main Slider
-------------------------------------------------------------------*/
.main-slider__item {
  position: relative;
}

.main-slider__item:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  background-color: rgba(76, 51, 148, 0.2);
}

.main-slider__img {
  width: 100%;
  height: 100%;
  max-height: 590px;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-slider__caption {
  color: #fff;
  position: absolute;
  bottom: 59px;
  right: 0;
  left: 0;
  z-index: 10;
}

.main-slider__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-slider__title {
  font: 700 60px/1.2 "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  margin: 0 0 13px;
}

.main-slider__subtitle {
  font-size: 24px;
  line-height: 1.2;
}

.main-slider .slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 0;
  right: 15px;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-slider .slick-dots button {
  background-color: transparent;
  font-size: 0;
  padding: 0;
  margin: 0 0 0 auto;
  width: 24px;
  height: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.main-slider .slick-dots button:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.main-slider .slick-dots .slick-active button {
  width: 46px;
}

.main-slider .slick-dots .slick-active button:after {
  background-color: #fdb913;
}

/*-------------------------------------------------------------------
    Title Box
-------------------------------------------------------------------*/
.title-box {
  text-align: center;
  margin: 0 10px 59px;
}

.title-box__title {
  font: 48px/1.2 "Roboto Condensed", sans-serif;
  margin: 0 0 1px;
}

.title-box__subtitle {
  font-size: 16px;
  line-height: 1.2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.title-box__subtitle:before, .title-box__subtitle:after {
  content: '';
  display: block;
  position: relative;
  top: 1px;
  background-color: #b7b7b7;
  max-width: 100px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 100px;
      -ms-flex: 1 1 100px;
          flex: 1 1 100px;
  height: 1px;
}

.title-box__subtitle:before {
  margin: 0 20px 0 0;
}

.title-box__subtitle:after {
  margin: 0 0 0 20px;
}

.title-box_invert {
  margin-bottom: 0;
  color: #fff;
}

/*-------------------------------------------------------------------
    Services
-------------------------------------------------------------------*/
.services__list .slick-list {
  margin: 0 -15px;
}

.services__list .slick-arrow {
  color: #d80b8c;
}

.services__list .slick-arrow:hover {
  color: #1270ae;
}

.service {
  position: relative;
  background-color: #f0f0f0;
  padding: 0 0 38px 0;
  margin: 0 15px;
}

.service__img {
  width: 100%;
}

.service__caption {
  position: relative;
  z-index: 10;
  background-color: #fff;
  padding: 21px 26px;
  margin: -52px 40px 0;
  min-height: 184px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.service__title {
  font: 24px/1.2 'BlissPro-Heavy';
  margin: 0 0 15px;
}

.service__excerpt {
  line-height: 1.2;
  height: 90px;
  overflow: hidden;
}

.service__btn {
  color: #d80b8c;
  margin-left: auto;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

.service__btn:hover {
  color: #1270ae;
}

/*-------------------------------------------------------------------
    News
-------------------------------------------------------------------*/
.news__list .slick-list {
  margin: 0 -15px;
}

.news__grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.article {
  margin: 0 15px;
}

.article__title {
  font: 700 24px/1.25 "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  border-bottom: 2px solid #010005;
  padding: 0 0 9px;
  margin: 0 0 21px;
}

.article__link {
  color: #0e1128;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

.article__link:hover {
  color: #1270ae;
}

.article__excerpt {
  margin: 0 0 14px;
}

.article__date {
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  color: #1270ae;
}

.article_one-half {
  max-width: calc((100% - 30px * 1)/2);
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 calc((100% - 30px * 1)/2);
      -ms-flex: 1 1 calc((100% - 30px * 1)/2);
          flex: 1 1 calc((100% - 30px * 1)/2);
  margin: 0 30px 22px 0;
}

.article_one-half:nth-child(2n+2) {
  margin-right: 0;
}

.article_sm {
  margin: 0 0 23px;
}

/*-------------------------------------------------------------------
    Single Post
-------------------------------------------------------------------*/
.single-post {
  margin: 0;
}

.single-post__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.single-post__sidebar {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 270px;
      -ms-flex: 1 0 270px;
          flex: 1 0 270px;
  margin: 0 0 0 30px;
}

.single-post__title {
  font: 700 24px/1.2 "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  color: #0e1128;
}

.single-post__date {
  text-transform: uppercase;
  color: #1270ae;
  font-size: 12px;
}

/*-------------------------------------------------------------------
    Catalog
-------------------------------------------------------------------*/
.catalog__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.catalog__item {
  max-width: calc((100% - 30px * 2)/3);
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 calc((100% - 30px * 2)/3);
      -ms-flex: 1 1 calc((100% - 30px * 2)/3);
          flex: 1 1 calc((100% - 30px * 2)/3);
  margin: 0 30px 30px 0;
}

.catalog__item:nth-child(3n+3) {
  margin-right: 0;
}

.catalog__link {
  font: 24px/1 'BlissPro-Heavy';
  color: #010101;
  background-color: #f0f0f0;
  padding: 0 20px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 72px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.catalog__item:hover .catalog__link,
.catalog__link:hover {
  background-color: #1270ae;
  color: #fff;
}

.catalog-details__title {
  font: 24px/1.2 'BlissPro-Heavy';
}

.catalog-details__desc {
  margin: 0 0 60px;
}

.catalog-carousel {
  margin: 30px 0 60px;
}

.catalog-carousel .slick-list {
  margin: 0 -15px;
}

.catalog-carousel__item {
  margin: 0 15px;
}

.catalog-carousel__img {
  display: block;
  margin: 0 auto;
}

/*-------------------------------------------------------------------
    Pagination
-------------------------------------------------------------------*/
.pagination {
  margin: 30px 0 0 0;
}

.pagination__list {
  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;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination__item {
  margin: 0 9px;
  color: #363636;
}

.pagination__link {
  font-size: 16px;
  line-height: 1;
  color: inherit;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

.pagination__link_current {
  font-family: 'BlissPro-Bold';
  color: #1270ae;
}

.pagination__link:hover {
  color: #1270ae;
}

/*-------------------------------------------------------------------
    Page Title
-------------------------------------------------------------------*/
.page-title {
  min-height: 157px;
  padding: 34px 0 46px;
  margin: 0 0 30px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.page-title:after {
  content: '';
  background-color: rgba(76, 51, 148, 0.2);
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  z-index: -1;
}

/*-------------------------------------------------------------------
    Contacts
-------------------------------------------------------------------*/
.contacts {
  margin: 0;
}

.contacts__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contacts__col {
  max-width: 50%;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 50%;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
}

.contacts__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.contact {
  font-style: normal;
  font-size: 16px;
  line-height: 1.9;
  margin: 0 73px 20px 0;
}

.contact:nth-child(2n+2) {
  margin-right: 0;
}

/*-------------------------------------------------------------------
    Materials
-------------------------------------------------------------------*/
.materials {
  margin: 0;
}

/*-------------------------------------------------------------------
    Custom Table
-------------------------------------------------------------------*/
.custom-table {
  margin: 0 0 54px;
}

.custom-table tr {
  border-bottom: 1px solid #959595;
  display: flex;
  align-items: center;
}

.custom-table td {
  padding: 10px;
  font-size: 16px;
  line-height: 1.2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.custom-table td:nth-child(1) {
  padding: 0;
  max-width: 20%;
  flex: 1 1 20%;
}

.custom-table td:nth-child(2) {
  max-width: 70%;
  flex: 1 1 70%;
  padding-right: 30px;
}

.custom-table td:nth-child(3) {
  max-width: 10%;
  flex: 1 1 10%;
}

.custom-table td a {
  font-family: 'BlissPro-Italic';
  text-decoration: underline;
  white-space: nowrap;
}

.custom-table td a:hover {
  text-decoration: none;
}

.custom-table table tr {
  display: table-row;
}

/*-------------------------------------------------------------------
    Footer
-------------------------------------------------------------------*/
.site-footer {
  text-align: center;
  background-color: #282828;
  color: #fff;
}

.site-footer__main {
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 0;
}

/*Footer logo*/
.footer-logo {
  margin: 0 0 50px;
}

.footer-logo__img {
  max-width: 100%;
}

/*Copyright*/
.copyright {
  background-color: #1a1a1a;
  padding: 17px 0 18px;
}

.copyright a {
  transition: color .3s;
}

.copyright a:hover {
  color: #d80b8c;
}

/*-------------------------------------------------------------------
    Misc
-------------------------------------------------------------------*/
.feedback {
    padding-top: 30px;
}
.feedback .title {
    margin-bottom: 20px;
}

.pdf_file {
  padding: 0 0 0 191px;
  width: calc(100% - 191px);
  float: left;
}
.pdf_file li {
  display: flex;
  align-items: center;
  width: 100% !important;
  margin: -41px 0 0 0;
}
.pdf_file A.fpc_delete {
  top: 5px;
}

.page_404 {
  font-size: 20px;
  text-align: center;
  height: 100vh;
}
.page_404 .site-branding {
  margin: 0 0 20px;
}
.page_404 a:hover {
  color: #d80b8c;
}
.text_404 b {
  font: 700 60px/1.2 "Roboto Condensed", sans-serif;
  color: #d80b8c;
}

.btn-primary {
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.025em;
  padding: 18px 20px;
  min-width: 219px;
  -webkit-border-radius: 27px;
          border-radius: 27px;
  background-color: #d80b8c;
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.btn-primary:hover {
  background-color: #1270ae;
}

.title {
  text-transform: uppercase;
  font: 16px/1.2 'BlissPro-Bold';
  margin: 0 0 6px;
}

.fm,
.fmr {
  position: relative;
}

.fm {
  float: left;
}

.fmr {
  float: right;
}






/* Full-width input fields */
input[type=text], input[type=tel], input[type=email], textarea {
  width: calc(100% - 52px);
  margin: 8px 26px;
  display: inline-block;
  box-sizing: border-box;
  font-size:16px;
}

.feedback_message,
.order_message {
  padding-bottom: 7px;
  padding-top: 7px;
  height: 100px;
}

/* Set a style for all buttons */
.feedback-send, .catalog-order-send {
  font-size: 15px;
  line-height: 0.4;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.025em;
  padding: 18px 20px;
  margin: 10px 26px 0;
  min-width: 150px;
  -webkit-border-radius: 27px;
  border-radius: 27px;
  background-color: #d80b8c;
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.feedback-send:hover,
.catalog-order-send:hover {
  background-color: #1270ae;
}

/* Center the image and position the close button */
.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
}

/* The Modal (background) */
.modal {
  display:none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  padding: 0 10px;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  box-sizing: border-box;
}

/* Modal Content Box */
.modal-content {
  background-color: #fefefe;
  margin: 4% auto 15% auto;
  border: 1px solid #888;
  width: 100%;
  max-width: 400px;
  padding-bottom: 30px;
  position: relative;
}

/* The Close Button (x) */
.close {
  position: absolute;
  right: 10px;
  top: 8px;
  color: #000;
  font-size: 35px;
  font-weight: bold;
  height: 18px;
  line-height: 18px;
  transition: color .3s;
}
.close:hover,.close:focus {
  color: #d80b8c;
  cursor: pointer;
}




/* The Modal (background) */
.modal_image {
  display: none;
  position: fixed;
  z-index: 300;
  right: 0;
  left: 0;
  top: 0;
  width: calc(100vw - 34px);
  height: 100vh;
  justify-content: center;
  overflow: auto;
  padding: 17px;
  background-color: rgba(0,0,0,0.8);
  text-align: center;
  box-sizing: border-box;
}
.modal_image .container {
  padding: 0;
}

/* Modal Content Box */
.modal-content_image {
  background-color: #fff;
  width: 100%;
  max-width: 1170px;
  position: relative;
  display: inline-block;
}

/* The Close Button (x) */
.close_image {
  position: absolute;
  right: 0;
  top: 0;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  height: 30px;
  width: 30px;
  background-color: #1270ae;
  line-height: 26px;
  transition: .3s;
}
.close_image:hover,.close:focus {
  background-color: #d80b8c;
  cursor: pointer;
}
.imgcontainer_popup {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 100;
}
.catalog-popup .slick-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.catalog-popup .slick-track {
  display: flex;
  align-items: center;
}
.catalog-popup .slick-slide img {
  vertical-align: top;
  max-height: calc(100vh - 54px);
}
.catalog-popup .slick-arrow {
  background-color: #1270ae;
  color: #fff;
  width: 48px;
  height: 48px;
  line-height: 48px;
  transition: background-color .3s;
}
.catalog-popup .slick-arrow:hover {
  background-color: #d80b8c;
}
.catalog-popup .slick-arrow:after {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
}
.catalog-popup .slick-prev {
  left: 20px;
}
.catalog-popup .slick-next {
  right: 20px;
}

/* Add Zoom Animation */
.animate {
  animation: zoom 0.6s
}
@keyframes zoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}