@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");
.jq-checkbox,
.jq-radio {
  position: relative;
  display: inline-block;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.jq-checkbox input,
.jq-radio input {
  position: absolute;
  z-index: -1;
  margin: 0;
  padding: 0;
  opacity: 0;
}

.jq-file {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.jq-file input {
  position: absolute;
  top: 0;
  right: 0;
  height: auto;
  margin: 0;
  padding: 0;
  opacity: 0;
  font-size: 100px;
  line-height: 1em;
}

.jq-file__name {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.jq-selectbox,
.jq-select-multiple {
  position: relative;
  display: inline-block;
}

.jq-selectbox select,
.jq-select-multiple select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
}

.jq-selectbox li,
.jq-select-multiple li {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.jq-selectbox {
  z-index: 10;
}

.jq-selectbox__select {
  position: relative;
}

.jq-selectbox__select-text {
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.jq-selectbox__dropdown {
  position: absolute;
}

.jq-selectbox__search input {
  -webkit-appearance: textfield;
}

.jq-selectbox__search input::-webkit-search-cancel-button,
.jq-selectbox__search input::-webkit-search-decoration {
  -webkit-appearance: none;
}

.jq-selectbox__dropdown ul {
  position: relative;
  overflow: auto;
  overflow-x: hidden;
  list-style: none;
  -webkit-overflow-scrolling: touch;
}

.jq-select-multiple ul {
  position: relative;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.jq-number {
  display: inline-block;
}

.jq-number__field input {
  -moz-appearance: textfield;
  text-align: left; /* для Opera Presto */
}

.jq-number__field input::-webkit-inner-spin-button,
.jq-number__field input::-webkit-outer-spin-button {
  margin: 0; /* в каких-то браузерах присутствует отступ */
  -webkit-appearance: none;
}

.jq-checkbox,
.jq-radio {
  vertical-align: -4px;
  width: 16px;
  height: 16px;
  margin: 0 4px 0 0;
  border: 1px solid #C3C3C3;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#E6E6E6));
  background: linear-gradient(#FFF, #E6E6E6);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), inset -1px -1px #FFF, inset 1px -1px #FFF;
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), inset -1px -1px #FFF, inset 1px -1px #FFF;
  cursor: pointer;
}

.jq-checkbox.focused,
.jq-radio.focused {
  border: 1px solid #08C;
}

.jq-checkbox.disabled,
.jq-radio.disabled {
  opacity: 0.55;
}

.jq-checkbox {
  border-radius: 3px;
}

.jq-checkbox.checked .jq-checkbox__div {
  width: 8px;
  height: 4px;
  margin: 3px 0 0 3px;
  border-bottom: 2px solid #666;
  border-left: 2px solid #666;
  -webkit-transform: rotate(-50deg);
  -ms-transform: rotate(-50deg);
      transform: rotate(-50deg);
}

.jq-radio {
  border-radius: 50%;
}

.jq-radio.checked .jq-radio__div {
  width: 10px;
  height: 10px;
  margin: 3px 0 0 3px;
  border-radius: 50%;
  background: #777;
  -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.7);
          box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.7);
}

.jq-file {
  width: 270px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.jq-file input {
  cursor: pointer;
}

.jq-file__name {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 34px;
  padding: 0 80px 0 10px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  background: #FFF;
  -webkit-box-shadow: inset 1px 1px #F1F1F1;
          box-shadow: inset 1px 1px #F1F1F1;
  font: 14px/32px Arial, sans-serif;
  color: #333;
}

.jq-file__browse {
  position: absolute;
  top: 1px;
  right: 1px;
  padding: 0 10px;
  border-left: 1px solid #CCC;
  border-radius: 0 4px 4px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#E6E6E6));
  background: linear-gradient(#FFF, #E6E6E6);
  -webkit-box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 14px/32px Arial, sans-serif;
  color: #333;
  text-shadow: 1px 1px #FFF;
}

.jq-file:hover .jq-file__browse {
  background: -webkit-gradient(linear, left top, left bottom, from(#F6F6F6), to(#E6E6E6));
  background: linear-gradient(#F6F6F6, #E6E6E6);
}

.jq-file:active .jq-file__browse {
  background: #F5F5F5;
  -webkit-box-shadow: inset 1px 1px 3px #DDD;
          box-shadow: inset 1px 1px 3px #DDD;
}

.jq-file.focused .jq-file__name {
  border: 1px solid #5794BF;
}

.jq-file.disabled,
.jq-file.disabled .jq-file__name,
.jq-file.disabled .jq-file__browse {
  border-color: #CCC;
  background: #F5F5F5;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #888;
}

.jq-number {
  position: relative;
  vertical-align: middle;
  padding: 0 36px 0 0;
}

.jq-number__field {
  width: 100px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  -webkit-box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
}

.jq-number__field:hover {
  border-color: #B3B3B3;
}

.jq-number__field input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 8px 9px;
  border: none;
  outline: none;
  background: none;
  font: 14px Arial, sans-serif;
  color: #333;
}

.jq-number__spin {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 14px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#E6E6E6));
  background: linear-gradient(#FFF, #E6E6E6);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-shadow: 1px 1px #FFF;
  cursor: pointer;
}

.jq-number__spin.minus {
  top: auto;
  bottom: 0;
}

.jq-number__spin:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#F6F6F6), to(#E6E6E6));
  background: linear-gradient(#F6F6F6, #E6E6E6);
}

.jq-number__spin:active {
  background: #F5F5F5;
  -webkit-box-shadow: inset 1px 1px 3px #DDD;
          box-shadow: inset 1px 1px 3px #DDD;
}

.jq-number__spin:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 11px;
  width: 0;
  height: 0;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #999;
  border-left: 5px solid transparent;
}

.jq-number__spin.minus:after {
  top: 5px;
  border-top: 5px solid #999;
  border-right: 5px solid transparent;
  border-bottom: none;
  border-left: 5px solid transparent;
}

.jq-number__spin.minus:hover:after {
  border-top-color: #000;
}

.jq-number__spin.plus:hover:after {
  border-bottom-color: #000;
}

.jq-number.focused .jq-number__field {
  border: 1px solid #5794BF;
}

.jq-number.disabled .jq-number__field,
.jq-number.disabled .jq-number__spin {
  border-color: #CCC;
  background: #F5F5F5;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #888;
}

.jq-number.disabled .jq-number__spin:after {
  border-bottom-color: #AAA;
}

.jq-number.disabled .jq-number__spin.minus:after {
  border-top-color: #AAA;
}

.jq-selectbox {
  vertical-align: middle;
  cursor: pointer;
}

.jq-selectbox__select {
  height: 32px;
  padding: 0 45px 0 10px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#E6E6E6));
  background: linear-gradient(#FFF, #E6E6E6);
  -webkit-box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 14px/32px Arial, sans-serif;
  color: #333;
  text-shadow: 1px 1px #FFF;
}

.jq-selectbox__select:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#F6F6F6), to(#E6E6E6));
  background: linear-gradient(#F6F6F6, #E6E6E6);
}

.jq-selectbox__select:active {
  background: #F5F5F5;
  -webkit-box-shadow: inset 1px 1px 3px #DDD;
          box-shadow: inset 1px 1px 3px #DDD;
}

.jq-selectbox.focused .jq-selectbox__select {
  border: 1px solid #5794BF;
}

.jq-selectbox.disabled .jq-selectbox__select {
  border-color: #CCC;
  background: #F5F5F5;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #888;
}

.jq-selectbox__select-text {
  display: block;
  width: 100%;
}

.jq-selectbox .placeholder {
  color: #888;
}

.jq-selectbox__trigger {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 100%;
  border-left: 1px solid #CCC;
}

.jq-selectbox__trigger-arrow {
  position: absolute;
  top: 14px;
  right: 12px;
  width: 0;
  height: 0;
  border-top: 5px solid #999;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #000;
}

.jq-selectbox.disabled .jq-selectbox__trigger-arrow {
  border-top-color: #AAA;
}

.jq-selectbox__dropdown {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: 2px 0 0;
  padding: 0;
  border: 1px solid #CCC;
  border-radius: 4px;
  background: #FFF;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font: 14px/18px Arial, sans-serif;
}

.jq-selectbox__search {
  margin: 5px;
}

.jq-selectbox__search input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 5px 27px 6px 8px;
  border: 1px solid #CCC;
  border-radius: 3px;
  outline: none;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==") no-repeat 100% 50%;
  -webkit-box-shadow: inset 1px 1px #F1F1F1;
          box-shadow: inset 1px 1px #F1F1F1;
  color: #333;
}

.jq-selectbox__not-found {
  margin: 5px;
  padding: 5px 8px 6px;
  background: #F0F0F0;
  font-size: 13px;
}

.jq-selectbox ul {
  margin: 0;
  padding: 0;
}

.jq-selectbox li {
  min-height: 18px;
  padding: 5px 10px 6px;
  color: #231F20;
}

.jq-selectbox li.selected {
  background-color: #A3ABB1;
  color: #FFF;
}

.jq-selectbox li:hover {
  background-color: #08C;
  color: #FFF;
}

.jq-selectbox li.disabled {
  color: #AAA;
}

.jq-selectbox li.disabled:hover {
  background: none;
}

.jq-selectbox li.optgroup {
  font-weight: bold;
}

.jq-selectbox li.optgroup:hover {
  background: none;
  color: #231F20;
  cursor: default;
}

.jq-selectbox li.option {
  padding-left: 25px;
}

.jq-select-multiple {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  background: #FFF;
  -webkit-box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 14px/18px Arial, sans-serif;
  color: #333;
  cursor: default;
}

.jq-select-multiple.focused {
  border: 1px solid #5794BF;
}

.jq-select-multiple.disabled {
  border-color: #CCC;
  background: #F5F5F5;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #888;
}

.jq-select-multiple ul {
  margin: 0;
  padding: 0;
}

.jq-select-multiple li {
  padding: 3px 9px 4px;
  list-style: none;
}

.jq-select-multiple li:first-child {
  border-radius: 3px 3px 0 0;
}

.jq-select-multiple li:last-child {
  border-radius: 0 0 3px 3px;
}

.jq-select-multiple li.selected {
  background: #08C;
  color: #FFF;
}

.jq-select-multiple li.disabled {
  color: #AAA;
}

.jq-select-multiple li.optgroup {
  font-weight: bold;
}

.jq-select-multiple li.option {
  padding-left: 25px;
}

.jq-select-multiple.disabled li.selected,
.jq-select-multiple li.selected.disabled {
  background: #CCC;
  color: #FFF;
}

input[type=email].styler,
input[type=password].styler,
input[type=search].styler,
input[type=tel].styler,
input[type=text].styler,
input[type=url].styler,
textarea.styler {
  padding: 8px 9px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  -webkit-box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 14px Arial, sans-serif;
  color: #333;
}

input[type=search].styler {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea.styler {
  overflow: auto;
}

input[type=email].styler:hover,
input[type=password].styler:hover,
input[type=search].styler:hover,
input[type=tel].styler:hover,
input[type=text].styler:hover,
input[type=url].styler:hover,
textarea.styler:hover {
  border-color: #B3B3B3;
}

input[type=email].styler:hover:focus,
input[type=password].styler:hover:focus,
input[type=search].styler:hover:focus,
input[type=tel].styler:hover:focus,
input[type=text].styler:hover:focus,
input[type=url].styler:hover:focus,
textarea.styler:hover:focus {
  border-color: #CCC;
  border-top-color: #B3B3B3;
  outline: none;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

button.styler,
input[type=button].styler,
input[type=submit].styler,
input[type=reset].styler {
  overflow: visible;
  padding: 8px 11px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  outline: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#E6E6E6));
  background: linear-gradient(#FFF, #E6E6E6);
  -webkit-box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 14px Arial, sans-serif;
  color: #333;
  text-shadow: 1px 1px #FFF;
  cursor: pointer;
}

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

button.styler:not([disabled]):hover,
input[type=button].styler:not([disabled]):hover,
input[type=submit].styler:not([disabled]):hover,
input[type=reset].styler:not([disabled]):hover,
input[type=reset].styler:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#F6F6F6), to(#E6E6E6));
  background: linear-gradient(#F6F6F6, #E6E6E6);
}

button.styler:active,
input[type=button].styler:active,
input[type=submit].styler:active,
input[type=reset].styler:active {
  background: #F5F5F5;
  -webkit-box-shadow: inset 1px 1px 3px #DDD;
          box-shadow: inset 1px 1px 3px #DDD;
}

button.styler[disabled],
input[type=button].styler[disabled],
input[type=submit].styler[disabled] {
  border-color: #CCC;
  background: #F5F5F5;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #888;
}

/*! jQuery UI - v1.12.1 - 2018-10-24
* http://jqueryui.com
* Includes: core.css, slider.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
* Copyright jQuery Foundation and other contributors; Licensed MIT */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
  /* support: IE8 */
}

.ui-front {
  z-index: 100;
}

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

/* Icons
----------------------------------*/
.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  -webkit-filter: inherit;
          filter: inherit;
}

.ui-slider-horizontal {
  height: 0.8em;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}

.ui-widget-content a {
  color: #333333;
}

.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}

.ui-widget-header a {
  color: #333333;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #cccccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}

.ui-visual-focus {
  -webkit-box-shadow: 0 0 3px 1px rgb(94, 158, 214);
          box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #ffffff;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  filter: Alpha(Opacity=70);
  /* support: IE8 */
  font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  filter: Alpha(Opacity=35);
  /* support: IE8 */
  background-image: none;
}

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
  /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}

.ui-widget-header .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url("images/ui-icons_555555_256x240.png");
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url("images/ui-icons_ffffff_256x240.png");
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("images/ui-icons_777620_256x240.png");
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("images/ui-icons_cc0000_256x240.png");
}

.ui-button .ui-icon {
  background-image: url("images/ui-icons_777777_256x240.png");
}

/* positioning */
.ui-icon-blank {
  background-position: 16px 16px;
}

.ui-icon-caret-1-n {
  background-position: 0 0;
}

.ui-icon-caret-1-ne {
  background-position: -16px 0;
}

.ui-icon-caret-1-e {
  background-position: -32px 0;
}

.ui-icon-caret-1-se {
  background-position: -48px 0;
}

.ui-icon-caret-1-s {
  background-position: -65px 0;
}

.ui-icon-caret-1-sw {
  background-position: -80px 0;
}

.ui-icon-caret-1-w {
  background-position: -96px 0;
}

.ui-icon-caret-1-nw {
  background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}

/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa;
  opacity: 0.3;
  filter: Alpha(Opacity=30);
  /* support: IE8 */
}

.ui-widget-shadow {
  -webkit-box-shadow: 0px 0px 5px #666666;
  box-shadow: 0px 0px 5px #666666;
}

/**
* Fonts
*/
@font-face {
  font-family: "snellrh";
  src: local("☺"), url("fonts/SnellRoundhand.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SF";
  src: url("fonts/SFProText-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Avenir";
  src: url("fonts/AvenirNext-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Avenir";
  src: url("fonts/AvenirNext-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Avenir";
  src: url("fonts/AvenirNext-DemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Hel_Cond";
  src: url("fonts/Helios_Cond.eot");
  src: local("☺"), url("fonts/Helios_Cond.woff") format("woff"), url("fonts/Helios_Cond.ttf") format("truetype"), url("fonts/Helios_Cond.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GothamProMedium";
  src: url("fonts/GothamProMedium.eot");
  src: local("☺"), url("fonts/GothamProMedium.woff") format("woff"), url("fonts/GothamProMedium.ttf") format("truetype"), url("fonts/GothamProMedium.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
/** Generated by FG **/
/**
* END Fonts
*/
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-pull-11 {
  right: 91.66666667%;
}

.col-xs-pull-10 {
  right: 83.33333333%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-8 {
  right: 66.66666667%;
}

.col-xs-pull-7 {
  right: 58.33333333%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-5 {
  right: 41.66666667%;
}

.col-xs-pull-4 {
  right: 33.33333333%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-2 {
  right: 16.66666667%;
}

.col-xs-pull-1 {
  right: 8.33333333%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-push-11 {
  left: 91.66666667%;
}

.col-xs-push-10 {
  left: 83.33333333%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-8 {
  left: 66.66666667%;
}

.col-xs-push-7 {
  left: 58.33333333%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-5 {
  left: 41.66666667%;
}

.col-xs-push-4 {
  left: 33.33333333%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-2 {
  left: 16.66666667%;
}

.col-xs-push-1 {
  left: 8.33333333%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
.container {
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  width: 1516px;
  max-width: 100%;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.uppercase, .text-uppercase {
  text-transform: uppercase;
}

.btn {
  border: 2px solid #131313;
  outline: none;
  border-radius: 0;
  font-size: 16px;
  padding: 16px 68px 17px 68px;
  line-height: 1;
  text-decoration: none;
  background: transparent;
  color: #131313;
  display: inline-block;
  cursor: pointer;
}

.btn-blue {
  background: #007fbc;
}

.btn-lg {
  font-size: 30px;
  padding: 14px 26px;
}

.btn-default {
  min-width: 180px;
  border: 2px solid #131313;
  color: #131313;
  background: #fff;
  text-decoration: none;
}
.btn-default:hover, .btn-default:active, .btn-default:focus {
  color: #131313;
  text-decoration: none;
}

.btn-warning {
  color: #fff;
  background-color: #b49e53;
  border-color: #b49e53;
  font-size: 18px;
}

.btn-warning:focus,
.btn-warning.focus {
  color: #fff;
  background-color: #a6924c;
}

.btn-warning:hover {
  color: #fff;
  background-color: #a6924c;
}

.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #a6924c;
}

.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #a6924c;
  border-color: #985f0d;
}

.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}

.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning .badge {
  color: #f0ad4e;
  background-color: #ffffff;
}

label {
  margin-bottom: 0;
  vertical-align: middle;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none !important;
}
.slick-slide a {
  outline: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots {
  position: absolute;
  bottom: 16px;
  right: 66px;
  margin: 0;
  padding: 0;
}
.slick-dots li {
  display: inline-block;
  margin: 0 0 0 15px;
  padding: 0;
  line-height: 0;
}
.slick-dots li button {
  display: block;
  height: 14px;
  width: 14px;
  background: rgba(255, 255, 255, 0.55);
  outline: none !important;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  text-indent: -900px;
  overflow: hidden;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}
.slick-dots li.slick-active button {
  background: #fff;
}

.slick-arrow {
  display: inline-block;
  height: 66px;
  width: 66px;
  overflow: hidden;
  text-indent: -900px;
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
  float: left;
  z-index: 2;
}
.white-arrows .slick-arrow {
  background: #e3e3e3;
}
.slick-arrow.slick-disabled {
  opacity: 0.7;
  cursor: default;
}
.slick-arrow .ic {
  height: 100%;
  width: 100%;
  display: block;
  fill: #593f37;
  height: 19px;
  width: 27px;
  margin: 0 auto;
}
.slick-arrow.slick-prev {
  left: 0;
}
.slick-arrow.slick-next {
  right: 0;
}
.slick-arrow.slick-next:before {
  content: "";
  display: block;
  width: 1px;
  height: 33px;
  background: #c1b2ad;
  left: 0;
  top: 50%;
  margin-top: -16px;
  position: absolute;
}

html {
  height: 100vh;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: "Conv_GothamPro", sans-serif;
  font-weight: normal;
  font-size: 18px;
  color: #000;
  overflow-x: hidden;
  background: #fff;
}
body.home {
  background: initial;
}
@media screen and (max-width: 1599px) {
  body {
    font-size: 14px;
  }
}

.middle {
  padding-left: 5%;
  padding-right: 5%;
  overflow-x: hidden;
}

::-webkit-input-placeholder {
  font-size: inherit;
  color: inherit;
  font-weight: normal;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

::-moz-placeholder {
  font-size: inherit;
  color: inherit;
  font-weight: normal;
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

:-moz-placeholder {
  font-size: inherit;
  color: inherit;
  font-weight: normal;
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

:-ms-input-placeholder {
  font-size: inherit;
  color: inherit;
  font-weight: normal;
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #a6924c;
}

.full-image {
  width: 100%;
  height: auto;
}

.h1, h1 {
  font-size: 50px;
  text-transform: uppercase;
  font-size: 30px;
  font-family: "Conv_GothamPro", sans-serif;
}

.title-post {
  font-size: 48px;
  line-height: normal;
}

h2, .h2, h3, .h3, h4, .h4 {
  font-weight: normal;
  color: inherit;
  font-family: "Conv_GothamPro", sans-serif;
}

h2, .h2 {
  font-size: 24px;
}

.p2 {
  font-size: 17px;
}

.p3 {
  font-size: 16px;
}

.t2 {
  font-size: 24px;
  font-weight: bold;
}

.no-pt {
  padding-top: 0 !important;
}

a {
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.hiddendiv {
  display: none !important;
}

.clearleft {
  clear: left;
}

.clearright {
  clear: right;
}

@media screen and (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .hide-pc {
    display: none !important;
  }
}

@media screen and (min-width: 981px) {
  .hide-from-980 {
    display: none !important;
  }
}

@media screen and (max-width: 980px) {
  .hide-to-980 {
    display: none !important;
  }
}

.inline {
  display: inline;
}

.word-break {
  word-break: break-word;
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flexbox:after, .flexbox:before {
  display: none !important;
}

.flex-wrap,
.flexbox-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.align-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.align-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.align-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.align-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.align-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.items-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-end, .items-bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flex-column > * {
  width: 100%;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.left {
  float: left;
}

.right {
  float: right;
}

.cf:after, .clearfix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.btn-grey,
.btn-gray {
  color: #fff;
  border: #131e25;
  -webkit-box-shadow: inset 0 -4px 0 #131e25;
          box-shadow: inset 0 -4px 0 #131e25;
  background: #324049;
  text-transform: none;
  height: 49px;
}
.btn-grey:hover, .btn-grey:focus, .btn-grey:active,
.btn-gray:hover,
.btn-gray:focus,
.btn-gray:active {
  background: #131e25;
  -webkit-box-shadow: inset 0 -4px 0 #131e25;
          box-shadow: inset 0 -4px 0 #131e25;
  outline: none !important;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.texr-left {
  text-align: left;
}

.upper, .uppercase, .text-uppercase {
  text-transform: uppercase;
}

.text-gray {
  color: #bdbdbd;
}

.text-bold, .bold, .strong {
  font-weight: bold;
}

.text-blue {
  color: #36ade6;
}

.subtitle {
  margin-left: 50%;
  text-align: center;
  font-size: 30px;
}

.btn-full {
  width: 100%;
  text-align: center;
}

.nowrap {
  white-space: nowrap;
}

.btn-dark {
  color: #fff;
  font-size: 16px;
  background: #4c2925;
  display: inline-block;
  line-height: 1;
  padding: 10px;
  text-align: center;
  min-width: 200px;
  text-decoration: none;
}

.btn-border {
  font-size: 16px;
  display: inline-block;
  color: #4c2925;
  border: 2px solid #4c2925;
  line-height: 1;
  padding: 8px 10px;
  text-align: center;
  min-width: 200px;
  text-decoration: none;
}

.f-2 {
  font-family: "century", serif;
}

.title-page {
  font-size: 50px;
  margin-bottom: 31px;
}

.block-white {
  background: #fff;
}
.block-white .content {
  color: #262626;
}

.block-shadow {
  -webkit-box-shadow: 0 9px 29px rgba(0, 0, 0, 0.26);
          box-shadow: 0 9px 29px rgba(0, 0, 0, 0.26);
}

@media screen and (min-width: 981px) {
  .hide-pc {
    display: none !important;
  }
}

@media screen and (min-width: 1200px) {
  .hide-1200 {
    display: none !important;
  }
}

@media screen and (max-width: 1199px) {
  .hide-max-1200 {
    display: none !important;
  }
}

.p0 {
  padding: 0;
  margin-bottom: 16px;
  /* height: 1px; */
  line-height: 1px;
}

textarea.materialize-textarea {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  line-height: normal;
  overflow-y: hidden;
  padding: 15px 0;
  resize: none;
  min-height: 3em;
  height: 3em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.header-page {
  padding-top: 40px;
  margin-bottom: 20px;
}

.title-page {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 44px;
  text-transform: none;
}
@media screen and (max-width: 767px) {
  .title-page {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

.block-subtitle {
  font-size: 30px;
}

.relative {
  position: relative;
}

@media screen and (min-width: 768px) {
  .buttons-filter {
    display: none;
  }
}

.post-item img {
  max-width: 100%;
  height: auto;
}
.post-item a {
  color: inherit;
  text-decoration: none;
}

.mb40, .mb-40 {
  margin-bottom: 40px;
}

.mb60, .mb-60 {
  margin-bottom: 60px;
}

.title-sidebar {
  font-size: 30px;
}

.pagination {
  margin-bottom: 40px;
}
.pagination > a, .pagination > span {
  margin: 0 2px;
}
.pagination span {
  font-weight: bold;
}

.block-offers {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .block-offers {
    margin: 15px auto;
  }
}

.fancy-video {
  position: relative;
}
.fancy-video img {
  width: 100%;
}
.fancy-video .play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.fancy-video .play-icon .ic {
  fill: #fff;
}

.jq-selectbox__select {
  height: 44px;
  background: #fff !important;
  border: 1px solid #000;
  border-radius: 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  min-width: 320px;
}

.jq-selectbox__select-text {
  line-height: 44px;
}

.jq-selectbox__trigger {
  border-left: none;
}
.jq-selectbox__trigger .jq-selectbox__trigger-arrow {
  border-top-color: #000;
  top: 19px;
}

.btn-gold {
  background: #a6924c;
  border-radius: 0px;
  height: 44px;
  line-height: 38px;
  border: none;
  font-size: 18px;
  text-transform: none;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 30px;
  padding-right: 10px;
  padding: 2px 0 0;
  width: 297px;
  text-align: center;
  background: linear-gradient(129deg, #bfa554 0%, #977c29 100%);
  text-transform: uppercase;
}
.btn-gold span {
  vertical-align: middle;
}
.btn-gold .fb-circle {
  border: none;
}
@media screen and (max-width: 767px) {
  .btn-gold .fb-circle {
    height: 31.5px;
    width: 31.5px;
  }
}
.btn-gold .fb-circle .icon-fb {
  margin-top: 0;
  top: -2px;
  height: 24px;
  width: 11px;
}
@media screen and (max-width: 767px) {
  .btn-gold .fb-circle .icon-fb {
    height: 18px;
    width: 8px;
    top: -6px;
  }
}
.btn-gold:hover {
  background: #a6924c;
  color: #000;
  text-decoration: none;
}

/* Get the bourbon mixin from http://bourbon.io */
/* Reset */
.flip-clock-wrapper * {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-clock-wrapper a {
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}

.flip-clock-wrapper ul {
  list-style: none;
}

.flip-clock-wrapper.clearfix:before,
.flip-clock-wrapper.clearfix:after {
  content: " ";
  display: table;
}

.flip-clock-wrapper.clearfix:after {
  clear: both;
}

.flip-clock-wrapper.clearfix {
  *zoom: 1;
}

/* Main */
.flip-clock-wrapper {
  font: normal 11px "Helvetica Neue", Helvetica, sans-serif;
  -webkit-user-select: none;
}

.flip-clock-meridium {
  background: none !important;
  -webkit-box-shadow: 0 0 0 !important;
          box-shadow: 0 0 0 !important;
  font-size: 36px !important;
}

.flip-clock-meridium a {
  color: #313333;
}

.timer__count {
  width: 100%;
  margin: 0;
  background: url(../img/timer-bg.png);
  padding-top: 17px;
  text-align: center;
}

.flip-clock-wrapper {
  text-align: center;
  position: relative;
  display: inline-block;
}

.flip-clock-wrapper:before,
.flip-clock-wrapper:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.flip-clock-wrapper:after {
  clear: both;
}

/* Skeleton */
.flip-clock-wrapper ul {
  position: relative;
  float: left;
  margin: 3px;
  width: 39px;
  height: 65px;
  font-size: 38px;
  font-weight: bold;
  line-height: 63px;
  border-radius: 6px;
  color: #fff;
  border-radius: 4px;
}

.flip-clock-wrapper ul li {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 63px;
  text-decoration: none !important;
}

.flip-clock-wrapper ul li:first-child {
  z-index: 2;
}

.flip-clock-wrapper ul li a {
  display: block;
  height: 100%;
  -webkit-perspective: 200px;
  perspective: 200px;
  margin: 0 !important;
  overflow: visible !important;
  cursor: default !important;
}

.flip-clock-wrapper ul li a div {
  z-index: 1;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  font-size: 38px;
  overflow: hidden;
  outline: 1px solid transparent;
}

.flip-clock-wrapper ul li a div .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.flip-clock-wrapper ul li a div.up {
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  top: 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.31);
}

.flip-clock-wrapper ul li a div.up:after {
  content: "";
  position: absolute;
  top: 44px;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.4);
}

.flip-clock-wrapper ul li a div.down {
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  bottom: 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.flip-clock-wrapper ul li a div div.inn {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 200%;
  text-shadow: 0 1px 1px #000, 1px 0px 1px #000, -1px 0px 1px #000, 0px -1px 1px #000;
  text-align: center;
  background-color: #202020;
  border-radius: 6px;
  font-size: 38px;
}

.flip-clock-wrapper ul li a div.up div.inn {
  top: 0;
}

.flip-clock-wrapper ul li a div.down div.inn {
  bottom: 0;
  color: #d6d6d6;
}

/* PLAY */
.flip-clock-wrapper ul.play li.flip-clock-before {
  z-index: 3;
}

.flip-clock-wrapper .flip {
  -webkit-box-shadow: 0 0px 0px 1px #363636, 0 0px 0 2px #181818, 0 -1px 0px 2px #363636, 0 -2px 0 2px #181818, 0 -3px 0px 2px #363636, 0 -4px 0 2px #181818;
          box-shadow: 0 0px 0px 1px #363636, 0 0px 0 2px #181818, 0 -1px 0px 2px #363636, 0 -2px 0 2px #181818, 0 -3px 0px 2px #363636, 0 -4px 0 2px #181818;
}

.flip-clock-wrapper ul.play li.flip-clock-active {
  -webkit-animation: asd 0.5s 0.5s linear both;
  animation: asd 0.5s 0.5s linear both;
  z-index: 5;
}

.flip-clock-divider {
  float: left;
  display: inline-block;
  position: relative;
  width: 20px;
  height: 100px;
}

.flip-clock-divider:first-child {
  width: 0;
}

.flip-clock-dot {
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  border-radius: 50%;
  -webkit-box-shadow: inset 0 1px 0px rgba(0, 0, 0, 0.75), 0 1px 0 rgba(255, 255, 255, 0.08);
          box-shadow: inset 0 1px 0px rgba(0, 0, 0, 0.75), 0 1px 0 rgba(255, 255, 255, 0.08);
  background: #212121;
  left: 5px;
}

.flip-clock-divider .flip-clock-label {
  position: absolute;
  bottom: 8px;
  right: -86px;
  color: black;
  text-shadow: none;
  text-align: center;
  font-size: 14px;
  color: #737373;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.75);
  text-transform: uppercase;
}
.flip-clock-divider .flip-clock-label.lbl-2 {
  width: 90px;
  right: -90px;
}
.flip-clock-divider .flip-clock-label.lbl-3 {
  width: 127px;
  right: -127px;
}

.flip-clock-dot.top {
  top: 22px;
}

.flip-clock-dot.bottom {
  bottom: 53px;
}

@-webkit-keyframes asd {
  0% {
    z-index: 2;
  }
  20% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}
@keyframes asd {
  0% {
    z-index: 2;
  }
  20% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}
.flip-clock-wrapper ul.play li.flip-clock-active .down {
  z-index: 2;
  -webkit-animation: turn 0.5s 0.5s linear both;
  animation: turn 0.5s 0.5s linear both;
}

@-webkit-keyframes turn {
  0% {
    -webkit-transform: rotateX(90deg);
  }
  100% {
    -webkit-transform: rotateX(0deg);
  }
}
@keyframes turn {
  0% {
    -webkit-transform: rotateX(90deg);
            transform: rotateX(90deg);
  }
  100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
}
.flip-clock-wrapper ul.play li.flip-clock-before .up {
  z-index: 2;
  -webkit-animation: turn2 0.5s linear both;
  animation: turn2 0.5s linear both;
}

@-webkit-keyframes turn2 {
  0% {
    -webkit-transform: rotateX(0deg);
  }
  100% {
    -webkit-transform: rotateX(-90deg);
  }
}
@keyframes turn2 {
  0% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
  100% {
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
  }
}
.flip-clock-wrapper ul li.flip-clock-active {
  z-index: 3;
}

/* SHADOW */
.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, black));
  background: linear, top, rgba(0, 0, 0, 0.1) 0%, black 100%;
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: linear, to bottom, rgba(0, 0, 0, 0.1) 0%, black 100%;
  -webkit-animation: show 0.5s linear both;
  animation: show 0.5s linear both;
}

.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, black));
  background: linear, top, rgba(0, 0, 0, 0.1) 0%, black 100%;
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: linear, to bottom, rgba(0, 0, 0, 0.1) 0%, black 100%;
  -webkit-animation: hide 0.5s 0.3s linear both;
  animation: hide 0.5s 0.3s linear both;
}

/*DOWN*/
.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow {
  background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, rgba(0, 0, 0, 0.1)));
  background: linear, top, black 0%, rgba(0, 0, 0, 0.1) 100%;
  background: -ms-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: linear, to bottom, black 0%, rgba(0, 0, 0, 0.1) 100%;
  -webkit-animation: show 0.5s linear both;
  animation: show 0.5s linear both;
}

.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow {
  background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, rgba(0, 0, 0, 0.1)));
  background: linear, top, black 0%, rgba(0, 0, 0, 0.1) 100%;
  background: -ms-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: linear, to bottom, black 0%, rgba(0, 0, 0, 0.1) 100%;
  -webkit-animation: hide 0.5s 0.3s linear both;
  animation: hide 0.5s 0.2s linear both;
}

@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.site-header {
  background: #000;
  color: #fff;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
  height: 80px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .site-header {
    height: 63px;
  }
}
.site-header .button-mob-club > a {
  border: 1px solid #fff;
  display: inline-block;
  font-size: 18px;
  text-transform: uppercase;
  padding: 10px 15px;
  line-height: 22px;
  margin-top: 18px;
  margin-left: 20px;
  text-decoration: none;
}
.front-page .site-header .button-mob-club > a {
  border: 1px solid #000;
}
.front-page .uk-active .button-mob-club a {
  border: 1px solid #fff;
}
.front-page .uk-active .button-mob-club a:hover {
  border-color: #a6924c;
}

.open.site-header .button-mob-club > a {
  display: none;
}

@media screen and (min-width: 768px) {
  .site-header .button-mob-club {
    display: none;
  }
}
.site-header .navbar-header .navbar-nav {
  padding: 0;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  margin-right: 5%;
  margin-top: 23px;
  margin-bottom: 0;
}
.home-landing .site-header .navbar-header .navbar-nav {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .site-header .navbar-header .navbar-nav {
    display: none;
    position: absolute;
    right: 100%;
    width: 100%;
    -webkit-transition: right 300ms;
    transition: right 300ms;
    margin: 80px 0 0;
    background: inherit;
    max-height: 100vh;
    padding-bottom: 80px;
    overflow-y: auto;
  }
}
.site-header .navbar-header .navbar-nav > li {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
}
.home-landing .site-header .navbar-header .navbar-nav > li {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  padding-left: 15px;
  padding-right: 15px;
}
.home-landing .site-header .navbar-header .navbar-nav > li a {
  white-space: nowrap;
}
.home-landing .site-header .navbar-header .navbar-nav > li.menu-item-fb {
  margin-left: auto;
  margin-top: -24px;
}
@media screen and (max-width: 767px) {
  .site-header .navbar-header .navbar-nav > li {
    display: block;
  }
}
.site-header .navbar-header .navbar-nav li {
  list-style: none;
  text-transform: uppercase;
}
.site-header .navbar-header .navbar-nav li a {
  color: inherit;
  text-decoration: none;
  display: block;
}
.site-header .navbar-header .navbar-nav li a.active {
  color: #a6924c;
}
.site-header .navbar-header .navbar-nav li:hover > a, .site-header .navbar-header .navbar-nav li.current-menu-item > a {
  color: #a6924c;
}
.site-header .navbar-header .navbar-nav li > a {
  padding: 6px 15px;
}
.site-header .navbar-header .navbar-nav li.li-btn > a {
  border: 1px solid #fff;
  display: inline-block;
}
.front-page .site-header .navbar-header .navbar-nav li.li-btn > a {
  border: 1px solid #000;
}
.site-header .navbar-header .navbar-nav li.li-btn:hover > a {
  border-color: #a6924c;
}
.site-header .navbar-header .navbar-nav li .sub-menu {
  display: none;
  overflow: hidden;
  position: absolute;
  background: #000;
  padding: 30px 20px 15px;
  max-width: 100%;
}
.site-header .navbar-header .navbar-nav li .sub-menu li {
  margin-bottom: 6px;
}
.site-header .navbar-header .navbar-nav li .sub-menu a {
  color: rgba(255, 255, 255, 0.55);
}
.site-header .navbar-header .navbar-nav li .sub-menu a:hover {
  color: #a6924c;
}
.site-header .navbar-header .navbar-nav li .sub-menu:before {
  content: "";
  display: block;
  background: #a6924c;
  position: absolute;
  height: 2px;
  width: 28px;
  top: 7px;
  left: 15px;
}
.site-header .navbar-header .navbar-nav li.li-btn .sub-menu:before {
  display: none !important;
}
.site-header.uk-active {
  background: #000 url(../img/bg_menu_active.png) no-repeat center !important;
  background-size: cover;
  color: #fff !important;
}
@media screen and (max-width: 767px) {
  .site-header.uk-active {
    background-position: center top !important;
    background-size: auto 130px !important;
  }
}
.home-landing .site-header.uk-active .navbar-nav li.menu-item-fb {
  display: none;
}
.front-page:not(.home-landing) .site-header.uk-active .navbar-nav li.menu-item-fb {
  display: none;
}
.front-page:not(.home-landing) .site-header.uk-active .navbar-nav li.li-btn > a {
  border: 1px solid #fff;
}
.front-page:not(.home-landing) .site-header.uk-active .navbar-nav li.li-btn:hover > a {
  border-color: #a6924c;
}
.front-page:not(.home-landing) .site-header.uk-active .navbar-nav li .sub-menu {
  background: #000;
}
.front-page:not(.home-landing) .site-header.uk-active .navbar-nav li .sub-menu a {
  color: rgba(255, 255, 255, 0.55);
}
.front-page:not(.home-landing) .site-header.uk-active .navbar-nav li .sub-menu a:hover {
  color: #a6924c;
}
.front-page:not(.home-landing) .site-header.uk-active .navbar-nav li .sub-menu::before {
  background: #a6924c;
}
.site-header.opening .navbar-header .navbar-nav li .sub-menu {
  position: relative;
}
.site-header.open .navbar-header {
  background: #000;
  max-height: 100vh;
  overflow-y: auto;
}
.front-page .site-header.open .navbar-header {
  background: #fff;
}
.home-landing .site-header.open .navbar-header {
  background: #000;
}
@media screen and (max-width: 767px) {
  .front-page .site-header.open .navbar-header,
  .site-header.open .navbar-header .navbar-nav {
    right: 0;
  }
}
.front-page .site-header.open .navbar-header li.li-btn > a,
.site-header.open .navbar-header .navbar-nav li.li-btn > a {
  border: none;
}
.front-page .site-header.open .navbar-header li.li-btn:hover > a,
.site-header.open .navbar-header .navbar-nav li.li-btn:hover > a {
  border: none;
}
.front-page .site-header.open .navbar-header .sub-menu,
.site-header.open .navbar-header .navbar-nav .sub-menu {
  position: relative;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .front-page .site-header.open .navbar-header .sub-menu,
  .site-header.open .navbar-header .navbar-nav .sub-menu {
    display: none;
  }
}
.site-header.open.uk-active .navbar-header {
  background: #000;
}
.site-header.search-open .navbar-header .navbar-nav {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .site-header.search-open .navbar-header .search-toggle {
    display: none;
  }
}

.logo-box:hover {
  text-decoration: none;
}

.custom-logo-link {
  margin-right: 5%;
  margin-top: 8px;
}

.front-page .uk-active .custom-logo-link {
  display: block;
}
@media screen and (max-width: 767px) {
  .front-page .uk-active .custom-logo-link {
    display: inline-block;
  }
}

.logo-box .logo-text {
  font-size: 18px;
  white-space: nowrap;
  font-family: "Conv_GothamPro", sans-serif;
}

@media screen and (max-width: 767px) {
  .home-landing .site-header.open .navbar-nav {
    padding-top: 0;
    margin-top: 0;
    z-index: 2;
    height: 100vh;
    background: #bfa554;
    padding-top: 110px;
    background: linear-gradient(98deg, #bfa554 0%, #977c29 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#bfa554", endColorstr="#977c29", GradientType=1);
  }
  .home-landing .site-header.open .navbar-nav li {
    text-align: center;
    margin-bottom: 1.5em;
  }
  .home-landing .site-header.open .navbar-nav li.menu-item-fb {
    margin-top: 0;
    display: block;
  }
  .home-landing .site-header.open .navbar-nav li a {
    font-size: 24px;
    text-transform: uppercase;
  }
  .home-landing .site-header.open .navbar-nav li a.active {
    color: #000;
  }
  .home-landing .site-header.open .navbar-nav li a .ic {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
button {
  -webkit-appearance: none;
}

.btn-menu-left {
  margin: 28px 30px 0;
  display: block;
  outline: none;
  border: none;
  background: transparent;
}
.btn-menu-left .icon-bar {
  height: 2px;
  width: 44px;
  display: block;
  background: #b89a4a;
}
.btn-menu-left .icon-bar + .icon-bar {
  margin-top: 8px;
}

.bar-left-menu {
  background: url(../img/bg-left-menu.jpg);
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: cover;
  width: 360px;
  margin-top: 80px;
  max-width: 100%;
  padding-top: 80px;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .bar-left-menu {
    margin-top: 63px;
    padding-top: 20px;
  }
}
.bar-left-menu .uk-close svg {
  height: 25px;
  width: 25px;
}
.bar-left-menu .logo-left-menu {
  display: block;
  width: 280px;
  width: 140px;
  float: left;
  max-width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .bar-left-menu .logo-left-menu {
    width: 100px;
    width: 95px;
    float: none;
    margin-bottom: 30px;
    margin-top: -20px;
  }
}
.bar-left-menu ul.nav {
  display: block;
  width: 300px;
  float: right;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .bar-left-menu ul.nav {
    float: none;
  }
}
.bar-left-menu ul.nav li {
  display: block;
  margin-bottom: 18px;
}
.bar-left-menu ul.nav li a {
  font-size: 24px;
  color: #ebd486;
}
@media screen and (max-width: 767px) {
  .bar-left-menu ul.nav li a {
    font-size: 20px;
  }
}
.bar-left-menu .icons_soc_mob_menu {
  float: right;
  margin-top: -55px;
}
.bar-left-menu .icons_soc_mob_menu img {
  height: 50px;
}
.bar-left-menu .fb-2-link-header {
  float: right;
}
.bar-left-menu .fb-2-link-header .fb-disc {
  width: 40px;
  height: 40px;
}
.bar-left-menu #bs-example-navbar-collapse-2:before {
  content: "";
  height: 2px;
  width: 97px;
  display: block;
  background: #87753d;
  margin-bottom: 28px;
  margin-left: 30px;
}
.bar-left-menu #menu-menu-top-1 li a {
  color: #fff;
}

.icons_soc_header {
  margin: 6px 15px 0 0px;
}
.icons_soc_header a {
  margin-left: 15px;
}

.fb-img-2 {
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 17px 0px rgba(50, 50, 50, 0.19);
          box-shadow: 0px 0px 17px 0px rgba(50, 50, 50, 0.19);
}

.navbar-toggle {
  border: none;
  background: transparent;
  margin-left: auto;
  cursor: pointer;
  margin-top: 20px;
  outline: none;
  height: 44px;
}
.home-landing .navbar-toggle {
  text-align: right;
  width: 42px;
  margin-right: 8px;
  position: relative;
  z-index: 3;
}
.navbar-toggle span {
  display: block;
  height: 3px;
  width: 57px;
  background: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.home-landing .navbar-toggle span {
  width: auto;
}
.navbar-toggle span.icon-bar_1 {
  margin-top: 0;
  margin-bottom: 17px;
}
.home-landing .navbar-toggle span.icon-bar_1 {
  margin-bottom: 6px;
}
.home-landing .navbar-toggle span.icon-bar_2 {
  margin-left: 3px;
}
.navbar-toggle span.icon-bar_3 {
  display: none;
}
.home-landing .navbar-toggle span.icon-bar_3 {
  display: block;
  margin-top: 6px;
  margin-left: 6px;
}
.front-page .navbar-toggle span {
  background: #000;
}
.home-landing .navbar-toggle span {
  background: #fff;
}
.uk-active .navbar-toggle span {
  background: #fff;
}
.open.site-header .navbar-toggle span {
  background: #a6924c;
}
.home-landing .open.site-header .navbar-toggle span {
  background: #fff;
}
.open.site-header .navbar-toggle span.icon-bar_1 {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0;
}
.open.site-header .navbar-toggle span.icon-bar_2 {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: -3px;
  margin-left: 0;
}
.open.site-header .navbar-toggle span.icon-bar_3 {
  display: none;
}
.navbar-toggle:hover span {
  background: #a6924c;
}

.slider-main-wrap {
  position: relative;
}
.slider-main-wrap .slider-main {
  height: 100%;
  min-width: 1px;
  width: 100%;
}
.slider-main-wrap .slider-main .slide-item .image img {
  width: 100%;
  height: auto;
}
.slider-main-wrap .slider-main:not(.slick-slider) {
  display: block;
}
.slider-main-wrap .slider-main:not(.slick-slider) .slide-item + .slide-item {
  display: none;
}

.cart-block .cart-block-header {
  font-size: 16px;
  text-align: center;
}
.cart-block .icon-cart {
  height: 24px;
  width: 24px;
}
@media screen and (max-width: 767px) {
  .cart-block {
    width: 79px;
    margin: 0 auto;
    float: none;
  }
}

.slider-main-wrap .slider-main-landing {
  background: #000 url(../img/bg-header.jpg) no-repeat center;
  background-size: cover;
}
.slider-main-wrap .slider-main-landing .image {
  max-height: 100%;
  padding-top: 85px;
  padding-bottom: 20px;
  height: 100%;
  position: relative;
}
.slider-main-wrap .slider-main-landing .land-logo {
  color: #fff;
  text-align: right;
  margin: auto;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .slider-main-wrap .slider-main-landing .land-logo {
    width: 250px;
    padding-bottom: 60px;
    height: auto;
  }
}
.slider-main-wrap .slider-main-landing .land-logo .land-logo-img {
  height: 80%;
  width: auto;
  max-height: 683px;
  background: transparent;
  background-repeat: no-repeat;
  background-size: contain;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .slider-main-wrap .slider-main-landing .land-logo .land-logo-img {
    height: auto;
    margin-bottom: 15px;
  }
}
.slider-main-wrap .slider-main-landing .land-logo .land-logo-img img {
  width: auto;
  max-height: 100%;
  display: inline-block;
}
.slider-main-wrap .slider-main-landing .land-logo .site-name {
  font-size: 30px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .slider-main-wrap .slider-main-landing .land-logo .site-name {
    font-size: 14px;
  }
}

.fb-disc,
.fb-circle {
  border-radius: 50%;
  display: inline-block;
  text-align: center;
}

.fb-circle {
  border: 1px solid #000;
  height: 38px;
  width: 38px;
}

.fb-disc {
  background: #a6924c;
  height: 60px;
  width: 60px;
}
.menu-item-fb .fb-disc {
  margin-top: 5px;
}

.icon-fb {
  vertical-align: middle;
  position: relative;
  top: 50%;
  margin-top: -26px;
}
.fb-circle .icon-fb {
  height: 22px;
  width: 10px;
}
.fb-disc .icon-fb {
  height: 38px;
  width: 18px;
}

.wrap__search-menu {
  position: relative;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
@media screen and (max-width: 767px) {
  .wrap__search-menu {
    float: right;
    position: static;
  }
}
.wrap__search-menu button {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
.wrap__search-menu button.search-toggle {
  margin: 22px 22px 0 20px;
}
@media screen and (max-width: 767px) {
  .wrap__search-menu button.search-toggle {
    margin-right: 10px;
    margin-top: 15px;
  }
  .wrap__search-menu button.search-toggle .svg_close {
    display: none;
  }
  .search-open .wrap__search-menu button.search-toggle .img_lupa {
    display: none;
  }
  .search-open .wrap__search-menu button.search-toggle .svg_close {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .wrap__search-menu button.search-toggle .svg_close {
    display: none;
  }
}
.wrap__search-menu .search_box {
  position: absolute;
  height: 100%;
  width: 100%;
  background: transparent;
  left: 0 !important;
  top: 0 !important;
  padding: 0;
  margin: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.wrap__search-menu .search_box.uk-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .wrap__search-menu .search_box.uk-open {
    top: 63px !important;
    background: #000;
    height: 63px;
  }
  .uk-active .wrap__search-menu .search_box.uk-open {
    background: #000 url(../img/bg_menu_active.png) no-repeat center -63px !important;
    background-size: auto 130px !important;
  }
}
.wrap__search-menu .search_box form {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .wrap__search-menu .search_box form {
    padding: 0 15px 15px;
  }
}
.wrap__search-menu .search_box form .search-input {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  margin-right: auto;
  font-size: 35px;
  padding: 0 15px;
  background: transparent;
  color: #72757a;
  border: none;
  outline: none;
  font-style: italic;
  border-bottom: 2px solid #a6924c;
  font-family: Gotham, sans-serif;
  font-weight: 300;
  height: 50px;
  margin-top: 17px;
}
@media screen and (max-width: 767px) {
  .wrap__search-menu .search_box form .search-input {
    height: 46px;
    max-width: 100%;
    margin-top: 5px;
    min-width: 100px;
  }
}
.wrap__search-menu .search_box form .search-submit {
  margin: 22px 22px 0 20px;
}
@media screen and (max-width: 767px) {
  .wrap__search-menu .search_box form .search-submit {
    margin-left: -46px;
    float: left;
    margin-top: 8px;
    margin-right: 0;
    margin: 0;
    min-width: 46px;
  }
}

.slider-main-wrap {
  position: relative;
  height: 100vh;
  margin-top: -80px;
  min-height: 660px;
}
@media screen and (max-width: 767px) {
  .home-landing .slider-main-wrap {
    min-height: 550px;
  }
}
.slider-main-wrap .slick-track {
  height: 100%;
}
.slider-main-wrap .slide-item {
  position: relative;
}
.slider-main-wrap .slide-item .image .img-bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .slider-main-wrap .slide-item .image .img-bg.img-bg-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .slider-main-wrap .slide-item .image .img-bg.img-bg-mob {
    display: none;
  }
}
.slider-main-wrap .slide-item .btns-box {
  position: absolute;
  z-index: 3;
  width: 100%;
  bottom: 0;
  left: 0;
}
.slider-main-wrap .slide-item .btns-box .btn {
  display: inline-block;
}
.slider-main-wrap .slider-main-nav-wrap {
  width: 40%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.slider-main-wrap.slider-main-wtrap-with-mask .slide-item:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40%;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(65%, rgba(255, 255, 255, 0.6)), color-stop(90%, #fff));
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 65%, #fff 90%);
}
.slider-main-wrap.slider-main-wtrap-with-mask .slider-main-nav-wrap {
  position: relative;
  margin-top: 35px;
}

.slider-main-nav .slick-list {
  overflow: visible;
}
.slider-main-nav .slide-nav-item {
  text-align: center;
  position: relative;
  font-family: "Cormorant Garamond";
  color: #a6924c;
  font-size: 30px;
  cursor: pointer;
  text-align: center;
}
.slider-main-wtrap-with-mask .slider-main-nav .slide-nav-item {
  color: #131313;
}
.slider-main-nav .slide-nav-item .slide-nav-item-inner {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  padding-right: 35px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  line-height: 1;
}
.slider-main-nav .slide-nav-item .dig {
  text-align: center;
  display: inline-block;
}
.slider-main-nav .slide-nav-item .line {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  width: 28px;
  background: #c3a44e;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.slider-main-wtrap-with-mask .slider-main-nav .slide-nav-item .line {
  background: #131313;
}
.slider-main-nav .slide-nav-item.slick-active .slide-nav-item-inner {
  font-size: 41px;
  padding-bottom: 35px;
  top: -25px;
}
.slider-main-nav .slide-nav-item.slick-active .slide-nav-item-inner .line {
  left: 50%;
  bottom: 15px;
  margin-left: -14px;
  top: auto;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.slider-main-nav .slide-nav-item.slick-active + .slick-slide .slide-nav-item-inner .line {
  left: auto;
  right: 0;
  top: 50%;
}

.grid-block {
  margin-left: -45px;
  margin-right: -45px;
}
@media screen and (max-width: 767px) {
  .grid-block {
    margin-left: 0;
    margin-right: 0;
    display: block;
  }
}
.grid-block .grid-items {
  padding-left: 45px;
  padding-right: 45px;
}
@media screen and (max-width: 767px) {
  .grid-block .grid-items {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.grid-block .grid-items .post-item {
  margin-bottom: 50px;
}
.grid-block .grid-items .post-item .item_cat {
  font-size: 18px;
}
.grid-block .grid-items .post-item .item_title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: normal;
  font-size: 24px;
}
.grid-block .figure {
  margin-bottom: 5px;
}

.has_line {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.has_line:after {
  content: "";
  display: block;
  margin-bottom: 10px;
  margin-right: -200px;
  height: 1px;
  background: #a6924c;
  margin-left: 69px;
  width: 100%;
  opacity: 0.4;
  min-width: 20000px;
}

.block-categories {
  padding-top: 60px;
  padding-bottom: 260px;
  margin-bottom: 36px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .block-categories {
    padding-bottom: 15px;
    padding-top: 15px;
  }
}
.block-categories .title-block {
  margin-bottom: 65px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .block-categories .title-block {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 767px) {
  .block-categories .block-categories-content {
    display: block;
  }
}
.block-categories .block-categories-content .cat-col {
  padding: 0;
  background: #e8e8e8;
}
@media screen and (max-width: 767px) {
  .block-categories .block-categories-content .cat-col {
    display: block;
    margin-bottom: 15px;
  }
}
.block-categories .block-categories-content .cat-col .image {
  margin: 0;
  position: relative;
  padding-top: 100%;
}
.block-categories .block-categories-content .cat-col .image a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.block-categories .block-categories-content .cat-col .image img {
  -webkit-filter: grayscale(100);
          filter: grayscale(100);
  -webkit-transition: -webkit-filter 300ms;
  transition: -webkit-filter 300ms;
  transition: filter 300ms;
  transition: filter 300ms, -webkit-filter 300ms;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .block-categories .block-categories-content .cat-col .image {
    height: auto;
  }
}
.block-categories .block-categories-content .cat-col .cat-item-anons {
  max-height: 50%;
  height: 50%;
  padding: 15px 35px;
}
@media screen and (min-width: 768px) {
  .block-categories .block-categories-content .cat-col .cat-item-anons {
    padding: 100% 0px 0;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .block-categories .block-categories-content .cat-col .cat-item-anons {
    height: auto;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (min-width: 768px) {
  .block-categories .block-categories-content .cat-col .cat-item-anons .cat-item-inner {
    padding: 15px 35px;
    position: absolute;
    left: 0;
    top: 50%;
    bottom: 0;
    right: 0;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
.block-categories .block-categories-content .cat-col .cat-item-anons h3 {
  font-family: "century", serif, serif;
  font-size: 35px;
}
.block-categories .block-categories-content .cat-col:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.block-categories .block-categories-content .cat-col.cat-col-2 .image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.block-categories:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: -20px;
  background-image: url(../img/bg-news-box.png);
  background-repeat: no-repeat;
  background-position: 0 bottom;
  height: 322px;
  width: 1446px;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .block-categories:after {
    display: none;
  }
}

.block-about {
  padding-top: 80px;
  padding-bottom: 70px;
  margin-bottom: 60px;
  position: relative;
  min-height: 660px;
}
.home-landing .block-about {
  min-height: 100vh;
  height: auto;
}
@media screen and (max-width: 767px) {
  .block-about {
    margin-bottom: 35px;
    height: auto;
    padding: 30px 0 0;
  }
}
.block-about .title-block {
  margin-bottom: 60px;
  white-space: nowrap;
}
.block-about .title-block.title-gal40 {
  text-align: center;
  font-size: 70px;
  color: rgba(29, 29, 29, 0.6);
}
.block-about .title-block.title-gal40 span {
  display: inline-block;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .block-about .title-block {
    margin-bottom: 30px;
  }
}
.block-about .content > .row {
  min-height: 500px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.home-landing .block-about .content > .row {
  height: auto;
  max-height: none;
}
.block-about .content > .row > .col-md-6 {
  width: 50%;
}
.block-about .content > .row .text-col {
  position: relative;
  z-index: 2;
}
.home-landing .block-about .content > .row .text-col:before {
  content: "";
  display: block !important;
  position: absolute;
  left: -30px;
  top: -50px;
  width: 55%;
  height: 100%;
  z-index: 0;
  border-top: 1px solid #ceba7d;
  border-left: 1px solid #ceba7d;
}
.block-about .content > .row .about-block-text {
  position: relative;
}
.block-about .content > .row .about-col-img {
  position: relative;
  z-index: 0;
}
.block-about .content > .row .about-col-img img {
  max-height: 100%;
  height: auto;
  width: auto;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .block-about .content > .row {
    display: block;
    max-height: none;
    height: auto;
  }
  .block-about .content > .row .about-col-img {
    padding-right: 0;
  }
  .home-landing .block-about .content > .row .about-col-img {
    padding: 0;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .home-landing .block-about .content > .row .about-col-img:after {
    content: "";
    display: block !important;
    position: absolute;
    bottom: 0;
    left: 0px;
    background-image: url(../img/bg-woman.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 251px;
    width: 1200px;
    max-width: 100%;
    z-index: 1;
    visibility: visible;
    -webkit-transform: translate(0, 50%);
        -ms-transform: translate(0, 50%);
            transform: translate(0, 50%);
  }
}
@media screen and (max-width: 767px) {
  .block-about .content > .row > .col-md-6 {
    width: 100%;
  }
}
.block-about .content > .row:after {
  content: "";
  display: block !important;
  position: relative;
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
  bottom: 0;
  left: -100px;
  background-image: url(../img/bg-woman.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  height: 251px;
  width: 1200px;
  max-width: 100%;
  z-index: 1;
  visibility: visible;
}
.home-landing .block-about .content > .row:after {
  left: 8%;
  bottom: -135px;
  background-image: url(../img/bg-gal-40-box.png);
}
@media screen and (max-width: 767px) {
  .block-about .content > .row:after {
    display: none !important;
  }
}
.block-about .content .about-entry {
  margin-bottom: 2em;
  padding-left: 40px;
}
.block-about .content .about-entry ul {
  padding-left: 20px;
}
.home-landing .block-about .content .about-entry {
  padding-left: 0;
  font-size: 111%;
}
@media screen and (max-width: 1199px) {
  .block-about .content .about-entry {
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .block-about .content .about-entry {
    padding-left: 0px;
    padding-top: 30px;
  }
}
.block-about .content .about-entry p {
  margin-bottom: 1.5em;
}
.block-about .more-link {
  text-align: center;
}
.block-about .more-link .btn {
  text-transform: uppercase;
  padding: 12px 28px;
}
.home-landing .block-about .more-link .btn {
  padding: 3px 28px;
}

.block-about {
  margin-bottom: 50px;
}

.block-about .content a {
  color: #a6924c;
}

.block-about .content > .row {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-height: none;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.block-about .content > .row:after {
  position: relative;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  z-index: 0;
  margin-top: -80px;
}

@media all and (min-width: 1600px) {
  .block-about .content .about-entry {
    font-size: 16px;
  }
  .block-about .content > .row:after {
    margin-top: -40px;
  }
}
@media all and (max-width: 767px) {
  .block-about {
    margin-bottom: 25px;
  }
}
.bradcrumbs-container {
  margin-bottom: 2em;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bradcrumbs-container a, .bradcrumbs-container .current {
  color: #888888;
}
.bradcrumbs-container a:hover {
  color: #a6924c;
  text-decoration: none;
}
.bradcrumbs-container .delimiter {
  height: 1px;
  width: 22px;
  margin-left: 15px;
  margin-right: 15px;
  background: #a6924c;
  opacity: 0.4;
}
.bradcrumbs-container:after {
  margin-bottom: 0;
}

.big-image-post {
  height: 100vh;
  min-height: 660px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .big-image-post {
    height: 100vw;
    min-height: 0;
  }
}
.big-image-post img {
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.big-image-post + .bradcrumbs-container {
  margin-top: -3em;
}

.has-mask {
  position: relative;
}
.has-mask:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 50%;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(60%, rgba(255, 255, 255, 0.6)), color-stop(96%, #fff));
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 60%, #fff 96%);
}

.row-top-post .caption_cat {
  margin-right: 45px;
}

.content-news .col-md-6 {
  padding-right: 3%;
}
.content-news .col-md-6 ~ .col-md-6 {
  padding-left: 6%;
}

.share-icon-block {
  padding-left: 6%;
  margin-bottom: 40px;
}
.share-icon-block .social-sharing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.share-icon-block .social-sharing .before-sharebutton-text {
  text-transform: uppercase;
  margin-right: 40px;
  float: none;
}

.category-page .btn-wrap {
  margin-bottom: 40px;
}

.btn-load-more.loading {
  opacity: 0.7;
  cursor: default;
}

.post_entry_data .item_date {
  line-height: 1.2;
}

.breadcrumbs-container {
  margin-top: 2.5em;
}
@media screen and (max-width: 767px) {
  .authors-page .breadcrumbs-container {
    font-size: 13.55px;
  }
}

.authors-categories li {
  list-style: none;
  font-size: 24px;
  margin-bottom: 0.8em;
}
.authors-categories li.active {
  font-weight: bold;
}

.content-authors .author-item {
  margin-bottom: 40px;
}
.content-authors .author-item .image {
  margin: 0 0 10px;
}
.content-authors .author-item .image img {
  max-width: 100%;
  height: auto;
}
.content-authors .author-item .author-item-data .name {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .content-authors .author-item .author-item-data .name {
    font-size: 18px;
  }
}
.content-authors .author-item .author-item-data .category_author {
  font-size: 20px;
}

.single-post-top,
.autor-page-top {
  margin-bottom: 40px;
}
.single-post-top .title-page-block,
.autor-page-top .title-page-block {
  margin-bottom: 2em;
}
.single-post-top .title-page,
.autor-page-top .title-page {
  margin-bottom: 0;
  line-height: 1.3;
}
.single-post-top .amount,
.autor-page-top .amount {
  font-weight: bold;
  font-size: 30px;
  margin-left: 12px;
}

.autor-page-top h1.title-page {
  font-size: 26px;
}

.autor-page-top div.title-page {
  font-size: 15px;
}

.tbl-params {
  border: none;
  width: 820px;
  max-width: 100%;
}

@media screen and (max-width: 639px) {
  .tbl-params {
    width: 100%;
  }
}
.tbl-params a {
  text-decoration: underline;
  color: #a6924c;
}

.tbl-params .td-lbl {
  padding-right: 30px;
}

@media screen and (max-width: 639px) {
  .tbl-params .td-lbl {
    display: block;
  }
}
.tbl-params .td-lbl strong {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  font-family: "GothamProMedium", sans-serif;
}

.tbl-params .td-lbl table {
  width: 100%;
  margin-bottom: 15px;
}

.tbl-params .td-lbl table .td-1 {
  width: 80%;
  padding-left: 25px;
  padding-right: 15px;
}

@media screen and (max-width: 639px) {
  .tbl-params .td-lbl table .td-1 {
    padding-left: 0;
  }
}
.tbl-params .td-lbl table .td-2 {
  padding-left: 25px;
  padding-right: 30px;
}

@media screen and (max-width: 639px) {
  .tbl-params .td-lbl table .td-2 {
    padding: 0;
  }
}
.tbl-params .td-txt {
  width: 80%;
  padding-left: 30px;
}

@media screen and (max-width: 639px) {
  .tbl-params .td-txt {
    display: block;
    padding: 0;
  }
}
.mask-und-text {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

#stozhar-video {
  position: absolute;
  display: block;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
}

@media screen and (max-width: 767px) {
  #stozhar-video {
    background-size: contain;
    background-position: center;
    background-image: url(../img/bg-gastro.jpg) !important;
    background-color: #841f2f;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 768px) {
  #stozhar-video {
    background: #000 !important;
  }
}
@media screen and (max-width: 639px) {
  #stozhar-video {
    top: 63px;
  }
}
.top-banner-box {
  color: #fff;
  text-align: center;
  position: relative;
  width: 1400px;
  max-width: 100%;
  padding: 20px 20px;
  margin: auto;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .top-banner-box {
    top: 40%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}
.top-banner-title {
  font-family: "century";
  font-size: 117px;
  text-transform: uppercase;
  margin-bottom: 0.28em;
}

@media screen and (max-width: 991px) {
  .top-banner-title {
    font-size: 80px;
  }
}
@media screen and (max-width: 767px) {
  .top-banner-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .top-banner-text {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .title-page-g {
    font-size: 24px;
  }
}
.post-item-g {
  font-size: 18px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .post-item-g {
    display: block;
  }
}
@media (min-width: 768px) {
  .post-item-g {
    margin-bottom: 90px;
    padding-bottom: 90px;
    position: relative;
  }
  .post-item-g:after {
    content: "";
    display: block !important;
    height: 1px;
    background: #a6924c;
    width: 44000px;
    bottom: 0;
    left: 260px;
    position: absolute;
  }
}
.post-item-g .post-g-img {
  width: 40%;
}

@media screen and (max-width: 767px) {
  .post-item-g .post-g-img {
    width: auto;
    margin-bottom: 15px;
  }
}
.post-item-g .post-g-entry {
  width: 50%;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (max-width: 767px) {
  .post-item-g .post-g-entry {
    width: auto;
  }
}
.post-item-g .post-g-title {
  font-size: 48px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .post-item-g .post-g-title {
    font-size: 24px;
  }
}
.post-item-g .post-g-anons {
  margin-bottom: 2em;
}

.post-item-g .btn-g-more {
  display: inline-block;
  color: #fff;
  background: #ccb267;
  height: 44px;
  line-height: 44px;
  font-size: 20px;
  width: 240px;
  text-align: center;
}

.post-item-g .btn-g-more:hover {
  background: #b89a4a;
  text-decoration: none;
}

.link-other-box {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1em;
  margin-bottom: 1em;
  background: rgba(184, 154, 74, 0.72);
  padding-left: 15px;
  border: 1px solid #b89a4a;
}

@media screen and (min-width: 992px) {
  .link-other-box {
    width: calc(53% + 267px);
  }
}
@media screen and (max-width: 639px) {
  .link-other-box {
    display: block;
    text-align: center;
    padding-right: 60px;
    position: relative;
    min-height: 65px;
  }
}
.link-other-box .strong {
  font-size: 110%;
  font-weight: 600;
  margin-right: 20px;
  text-decoration: underline;
}

@media screen and (max-width: 639px) {
  .link-other-box .strong {
    display: block;
    margin-right: 0;
    margin-bottom: 7px;
  }
}
.link-other-box a {
  color: #000;
}

.link-other-box a:hover {
  color: #000;
}

.link-other-box p {
  margin: 0;
}

.link-other-box .link-other-arrow {
  margin-left: auto;
  background: #b89a4a;
  padding: 15px;
}

.link-other-box .link-other-arrow .ic {
  height: 40px;
  width: 40px;
}

@media screen and (max-width: 639px) {
  .link-other-box .link-other-arrow {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60px;
  }
  .link-other-box .link-other-arrow .ic {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
  }
}
.single-description-box,
.author-description-box {
  background: #ededed;
  padding: 42px 15px 40px;
  margin-bottom: 40px;
}
.single-description-box .descr,
.author-description-box .descr {
  margin-bottom: 1em;
}
.single-description-box .connect .bold,
.author-description-box .connect .bold {
  margin-right: 10px;
}
.single-description-box .connect .bold + span,
.author-description-box .connect .bold + span {
  word-break: break-word;
}

.block-gallery .figure {
  margin: 0;
}
.block-gallery .first-row-gallery {
  margin-bottom: 50px;
}

.title-block-posts {
  margin-bottom: 40px;
}

.parthners-list {
  margin-top: 50px;
  margin-bottom: 60px;
}
.parthners-list .parthner-item {
  margin-bottom: 30px;
  text-align: center;
}

.filter-video .lbl {
  margin-right: 15px;
}

.block-filter {
  width: 320px;
}
.block-filter .h2 {
  font-size: 30px;
  text-transform: uppercase;
}
.block-filter ul li {
  list-style: none;
}
.block-filter ul li.active {
  font-weight: bold;
}
.block-filter ul li > a {
  color: inherit;
  text-decoration: none;
}

.ui-slider-horizontal {
  position: relative;
  margin-top: 45px;
  margin-left: 12px;
  margin-right: 40px;
}
.ui-slider-horizontal:after {
  content: "";
  display: block;
  left: 0;
  right: -22px;
  top: 50%;
  background: #000;
  height: 2px;
  margin-top: -1px;
  position: absolute;
}
.ui-slider-horizontal .ui-slider-range {
  background: transparent;
  border: none;
}
.ui-slider-horizontal .ui-slider-handle {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  background: #000;
  outline: none;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.ui-slider-horizontal .ui-slider-handle .lbl-price-slider {
  position: absolute;
  left: 50%;
  top: -24px;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  color: #000;
}

.products-list .item-product {
  margin-bottom: 90px;
}
.products-list .item-product .product-item-title {
  font-weight: normal;
  word-break: break-word;
}
.products-list .item-product .author-book {
  margin-bottom: 20px;
}
.products-list .item-product .price {
  font-size: 30px;
  font-weight: bold;
}
.products-list .item-product .button-more {
  width: 50%;
}
.products-list .item-product .button-more .btn {
  text-align: center;
  padding: 12px 10px;
  width: 210px;
  max-width: 100%;
  min-width: 0;
}

.uk-modal-dialog {
  padding-top: 60px;
}

.modal-close {
  background: transparent;
  border: none;
  outline: none;
  position: absolute;
  padding: 5px;
  top: 7px;
  right: 8px;
  cursor: pointer;
}
.modal-close .icon-close {
  fill: #000;
  height: 36px;
  width: 36px;
}
.modal-dark .modal-close .icon-close {
  fill: #fff;
}

.modal-dark {
  background: #000;
  color: #fff;
}

.modal-dialog-author {
  width: 860px;
  max-width: 100%;
}
.modal-dialog-author .modal-form-content {
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
}
.modal-dialog-author .modal-form-content .form-row {
  margin-bottom: 40px;
}
.modal-dialog-author .modal-form-content .form-row input[type=text], .modal-dialog-author .modal-form-content .form-row input[type=tel], .modal-dialog-author .modal-form-content .form-row input[type=email] {
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid #fff;
  font-size: 18px;
  color: #fff;
  padding: 15px 0;
}
.modal-dialog-author .modal-form-content .form-row.form-submit {
  margin-bottom: 20px;
}
.modal-dialog-author .modal-form-content .form-row.form-submit [type=submit] {
  background: #fff;
  color: #000;
  cursor: pointer;
  width: 280px;
  height: 44px;
  font-size: 18px;
  border: none;
  outline: none;
}

.modal-logo {
  margin-bottom: 2px;
}

.modal-dialog-cart {
  width: 925px;
  max-width: 100%;
}

.about-page .sup-title {
  font-size: 18px;
}
.about-page .title-page {
  margin-top: 10px;
}
.about-page .content-about blockquote {
  font-size: 36.81px;
  margin: 2em 16% 2em 8%;
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.4;
}
.about-page .content-about blockquote p {
  display: inline;
  color: #fff;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .about-page .content-about blockquote {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.list-tbl {
  width: 100%;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .list-tbl {
    display: block;
  }
}
.list-tbl td, .list-tbl th {
  padding-top: 20px;
  padding-left: 35px;
}
@media screen and (max-width: 767px) {
  .list-tbl td, .list-tbl th {
    display: block;
  }
}
.list-tbl h4, .list-tbl h3 {
  font-size: 24px;
  font-weight: normal;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 43px;
}
.list-tbl h4:before, .list-tbl h3:before {
  content: "";
  display: block;
  float: left;
  margin-left: -35px;
  height: 18px;
  width: 18px;
  background: url(../img/list-circle.png) no-repeat 0 center;
  margin-top: 7px;
}

.tbl-plans {
  width: 100%;
  border-collapse: collapse;
}
.tbl-plans th, .tbl-plans td {
  padding: 7px 0;
  border: none;
}
.tbl-plans th + td, .tbl-plans th + th, .tbl-plans td + td, .tbl-plans td + th {
  text-align: center;
}
.tbl-plans th.td_1, .tbl-plans td.td_1 {
  text-align: left;
}
.tbl-plans th.td_3, .tbl-plans td.td_3 {
  background: #d7d7d7;
}
.tbl-plans th.td_4, .tbl-plans td.td_4 {
  background: #1b1b1b;
  color: #fff;
}
.tbl-plans th {
  font-weight: normal;
  font-size: inherit;
  padding-bottom: 40px;
  vertical-align: top;
  padding-top: 20px;
}
.tbl-plans th.td_1 {
  text-transform: uppercase;
  padding-bottom: 30px;
}
.tbl-plans tbody tr + tr {
  border-top: 1px solid #000;
}
.tbl-plans tfoot td.td_1 {
  padding-left: 30px;
  font-size: 13px;
}
.tbl-plans tfoot td + td {
  font-weight: bold;
}

#cart-page {
  margin-bottom: 30px;
  width: 600px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.cart-col-thumb {
  padding: 0 27px;
}

.col-product-cart-data {
  padding: 0 27px;
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}

.field-wrapper {
  margin-bottom: 15px;
}
.field-wrapper input, .field-wrapper textarea {
  height: 44px;
  width: 100%;
  background: #fff;
  outline: none;
  padding: 3px 6px;
  border: 1px solid #000;
}

.link-back-from-order a {
  text-decoration: underline;
}

.products-slider-block {
  margin-bottom: 40px;
}
.products-slider-block .products-slider {
  margin-left: -75px;
  margin-right: -75px;
}
.products-slider-block .products-slider .item-product {
  padding: 0 75px;
}
.products-slider-block .products-slider .item-product .product-item-title {
  margin-bottom: 0;
}
.products-slider-block .products-slider .item-product .author-book {
  margin-bottom: 2em;
}
.products-slider-block .products-slider .item-product .price {
  font-size: 30px;
  font-weight: bold;
}
.products-slider-block .slick-dots {
  position: relative;
  width: 100%;
  text-align: center;
}
.text-members {
  margin-bottom: 150px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 125%;
}
@media screen and (max-width: 767px) {
  .text-members {
    margin-bottom: 36px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.home-landing #members {
  background-image: url(../img/bg-authors-top.png);
  background-position: center 0;
  background-repeat: no-repeat;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .home-landing #members {
    background-image: none;
  }
}
.home-landing #members .members-top {
  padding-left: 32%;
}
@media screen and (max-width: 767px) {
  .home-landing #members .members-top {
    padding-left: 0;
  }
}
.home-landing #members ._inner-bottom-block:after {
  display: none;
}

.members-items {
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (max-width: 1199px) {
  .members-items {
    margin-right: -5px;
    margin-left: -5px;
  }
}
@media screen and (max-width: 767px) {
  .members-items {
    margin-left: 0;
    margin-right: 0;
  }
}

.item-member {
  margin-bottom: 80px;
  padding-left: 45px;
  padding-right: 45px;
}
@media screen and (max-width: 1199px) {
  .item-member {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .item-member {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 45px;
  }
  .item-member .name {
    margin-top: 7px;
  }
  .item-member .member-delimiter {
    margin-left: 70px;
    border-bottom: 1px solid #a28c4a;
    margin-top: 43px;
    margin-right: -25px;
  }
  .item-member .member-delimiter:after {
    content: "";
    display: block;
    float: left;
    height: 19px;
    width: 19px;
    background: #a28c4a;
    border-radius: 50%;
    margin-left: -27px;
    margin-top: -10px;
  }
}
.item-member .member-avatar {
  padding-top: 122%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.item-member .name {
  font-size: 20px;
  padding-top: 4px;
}
@media screen and (max-width: 767px) {
  .item-member .name {
    font-size: 20px;
  }
}
.item-member .member-item-position {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .item-member .member-item-position {
    font-size: 15px;
  }
}

.form-block {
  background: #bfa554;
  background: linear-gradient(98deg, #bfa554 0%, #977c29 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#bfa554", endColorstr="#977c29", GradientType=1);
}

.home-form {
  padding-top: 80px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .home-form {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.home-form .title-has-line {
  text-transform: uppercase;
  font-size: 24px;
  color: inherit;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  margin-bottom: 20px;
}
.home-form .title-has-line:after {
  content: "";
  display: block;
  height: 1px;
  background: #000;
  width: 100%;
  margin-left: 29px;
  margin-bottom: 6px;
  width: 200%;
  margin-right: -200px;
}
@media screen and (max-width: 767px) {
  .home-form .title-has-line:after {
    display: none;
  }
}
.home-form .form-group {
  display: inline-block;
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .home-form .form-group {
    padding-left: 0;
    padding-right: 0;
  }
}
.home-form .form-group input[type=email], .home-form .form-group input[type=text] {
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .home-form .form-group input {
    width: 100%;
  }
}
.home-form .form-agree {
  clear: both;
  margin-bottom: 30px;
}
.home-form .form-agree .jq-checkbox {
  background: transparent;
  border: 1px solid #000;
  height: 24px;
  width: 24px;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.home-form .form-agree .jq-checkbox.checked .jq-checkbox__div {
  width: 17px;
  height: 9px;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
}
.home-form .form-rec {
  margin-bottom: 40px;
  display: none;
}
.home-form .form-rec .g-recaptcha {
  display: inline-block;
}
.home-form .form-btn [type=submit] {
  background: #000;
  color: #fff;
}
.home-form .form-btn [type=submit] .ic {
  width: 35px;
  height: 29px;
  fill: #fff;
  margin-left: 38px;
  margin-right: -51px;
}
.home-form .form-btn .ajax-loader {
  margin-right: -20px;
}

.block-autor-2-home {
  padding-top: 114px;
  padding-bottom: 65px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .block-autor-2-home {
    padding-top: 65px;
    padding-bottom: 30px;
  }
}
.home-landing .block-autor-2-home {
  background-image: url(../img/bg-staty-bottom.png);
  background-repeat: no-repeat;
  background-position: center bottom;
}
.block-autor-2-home:after {
  content: "";
  display: block;
  height: 670px;
  width: 620px;
  position: absolute;
  background: url(../img/bg-author-block.png) no-repeat right top;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 50%;
  min-width: 850px;
}
.page-template-front_page .block-autor-2-home:after {
  background: none;
  display: none;
}
@media screen and (max-width: 767px) {
  .block-autor-2-home:after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .block-autor-2-home .content-block {
    display: block;
  }
}
.block-autor-2-home .title-block {
  margin-bottom: 65px;
  margin-top: -23px;
}
@media screen and (max-width: 767px) {
  .block-autor-2-home .title-block {
    margin-bottom: 6px;
    position: relative;
  }
  .block-autor-2-home .title-block span {
    display: inline-block;
    background: #fff;
    padding-right: 22px;
    position: relative;
    z-index: 2;
  }
  .block-autor-2-home .title-block:after {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    background: #ceba7d;
    top: 50%;
    left: 0;
    right: -15px;
    margin-top: 10px;
  }
}
.block-autor-2-home .author-left {
  width: 50%;
  padding-right: 5.8%;
}
@media screen and (max-width: 767px) {
  .block-autor-2-home .author-left {
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .block-autor-2-home .author-left .author-photo {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .block-autor-2-home .author-left .author-photo:after {
    content: "";
    display: block;
    position: absolute;
    border-right: 1px solid #ceba7d;
    border-top: 1px solid #ceba7d;
    right: 0;
    left: 100px;
    top: 0;
    bottom: 52px;
    display: none;
  }
}
.block-autor-2-home .author-left .author-photo img {
  border-radius: 50%;
}
.page-template-front_page .block-autor-2-home .author-left .author-photo img {
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .block-autor-2-home .author-left .author-photo img {
    width: 200px;
    height: 200px;
  }
  .page-template-front_page .block-autor-2-home .author-left .author-photo img {
    width: 100%;
    height: auto;
  }
}
.block-autor-2-home .author-text {
  width: 50%;
  padding-right: 45px;
  padding-left: 88px;
  padding-right: 3.8%;
  padding-left: 5.8%;
}
@media screen and (max-width: 767px) {
  .block-autor-2-home .author-text {
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
.block-autor-2-home .author-text .border {
  border-top: 1px solid #ceba7d;
  border-right: 1px solid #ceba7d;
  padding-top: 138px;
  padding-bottom: 75px;
  margin-bottom: 40px;
  padding-right: 16.6%;
}
@media screen and (max-width: 767px) {
  .block-autor-2-home .author-text .border {
    border: none;
    padding-right: 0;
    padding-top: 0;
    padding-left: 45px;
    padding-bottom: 0;
    margin-bottom: 25px;
    padding-left: 0;
  }
}
.block-autor-2-home .caption-bg {
  margin: 25px auto 0 20%;
}
.page-template-front_page .block-autor-2-home .caption-bg {
  margin: -75px auto 0;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .block-autor-2-home .caption-bg {
    margin-bottom: 40px;
  }
}
.block-autor-2-home .caption-bg img {
  max-width: 66%;
}
.page-template-front_page .block-autor-2-home .caption-bg img {
  max-width: 100%;
}
.fr_block {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .fr_block {
    padding: 20px 0;
    overflow: hidden;
  }
}
.fr_block .title-block span {
  white-space: nowrap;
}
.fr_block .row {
  margin-left: -20px;
  margin-right: -20px;
}
.fr_block .fr_item {
  padding: 20px;
}
.fr_block .fr_item .logo-fr-wrap img {
  max-width: 100%;
  height: auto;
  -webkit-filter: grayscale(100);
          filter: grayscale(100);
  -webkit-transition: -webkit-filter 300ms;
  transition: -webkit-filter 300ms;
  transition: filter 300ms;
  transition: filter 300ms, -webkit-filter 300ms;
}
.fr_block .fr_item .logo-fr-wrap:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.row-search-info {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .row-search-info {
    display: block;
    margin-left: -15px;
    margin-right: -15px;
  }
}
.row-search-info .search-info_item {
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .row-search-info .search-info_item {
    display: block;
    margin: 0 0 5px;
  }
}
.row-search-info .counts-res {
  margin-left: 5vw;
}

@media screen and (max-width: 767px) {
  .row-search-info .counts-res {
    display: block;
    margin-left: 0;
    margin-top: 15px;
  }
}
.row-search-info .counts-res a {
  margin-right: 30px;
  text-transform: uppercase;
  font-size: 18px;
}

.item-search {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .item-search {
    display: block;
  }
}
.item-search .img-search img {
  width: 280px;
  min-width: 200px;
  height: auto;
}

@media screen and (max-width: 767px) {
  .item-search .img-search {
    margin-bottom: 12px;
  }
  .item-search .img-search a {
    display: block;
  }
  .item-search .img-search img {
    width: 100%;
  }
}
.item-search .col-entry-search {
  padding-left: 33px;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .item-search .col-entry-search {
    padding-left: 0;
  }
}
.item-search .post_type {
  font-size: 18px;
  font-style: italic;
  color: #a6924c;
}

.item-search .post_type a {
  color: inherit;
}

.item-search .h2 {
  margin-bottom: 0.7em;
}

.middle-search {
  margin-bottom: 40px;
}

.middle-search h1 {
  white-space: normal;
}

@media screen and (max-width: 767px) {
  .middle-search h1 {
    font-size: 23px;
    margin-bottom: 18px;
    padding: 0;
  }
  .middle-search h1:after {
    display: none;
  }
}
.ui-autocomplete {
  position: absolute;
  padding: 0;
}

.ui-autocomplete li {
  list-style: none;
  padding: 4px 5px;
  border: none !important;
}

.ui-autocomplete li a {
  color: #a6924c;
}

.hightlight {
  font-weight: bold;
}

.link_author_post {
  font-size: 1.6em;
  text-decoration: underline;
}

.logo-text {
  text-transform: uppercase;
  font-size: 52.07px;
  color: #c5af5c;
  display: block;
  font-weight: 100;
  line-height: 1;
}

.bottom-block {
  background: #1f1f1f;
  color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 160px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .bottom-block {
    padding-top: 10px;
    padding-bottom: 12px;
  }
}
.bottom-block .title-has-line {
  text-transform: uppercase;
  font-size: 24px;
  color: inherit;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  margin-bottom: 70px;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .bottom-block .title-has-line {
    white-space: normal;
    padding-left: 15px;
  }
}
.bottom-block .title-has-line:after {
  content: "";
  display: block;
  height: 1px;
  background: #a6924c;
  width: 100%;
  margin-left: 29px;
  margin-bottom: 6px;
  width: 200%;
  margin-right: -200px;
}
.bottom-block .grid-items-1 figure {
  position: relative;
  z-index: 0;
}
.bottom-block .grid-items-1 figure a {
  display: block;
  z-index: 2;
}
.bottom-block .grid-items-1 .item_title {
  max-width: 300px;
  position: relative;
}
.bottom-block .item_cat, .bottom-block .item_title {
  position: relative;
  z-index: 3;
}
.bottom-block ._inner-bottom-block {
  position: relative;
}
.bottom-block ._inner-bottom-block:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -47px;
  left: 0px;
  width: 100%;
  height: 100%;
  height: 272px;
  width: 1312px;
  max-width: 100%;
  z-index: 1;
  background: url(../img/bg-intr-box.png);
  background-position: 0 bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  .bottom-block ._inner-bottom-block:after {
    display: none;
  }
}

.site-footer {
  background: #000;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 10px;
  overflow: hidden;
}
.home-landing .site-footer {
  padding-bottom: 10px;
}
.site-footer .footer-top {
  margin-bottom: 60px;
}
.site-footer .footer-logo {
  display: inline-block;
  font-family: "Conv_GothamPro", sans-serif;
  color: #a6924c;
}
.site-footer .footer-logo .foot-logo-pc {
  width: 145px;
}
.site-footer .footer-logo .site-name {
  font-size: 16px;
  margin-top: 0px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .site-footer .footer-logo .site-name {
    font-size: 14px;
  }
}

.footer-nav li {
  list-style: none;
  text-align: left;
  margin-bottom: 6px;
}

.logo-footer-2 {
  margin-bottom: 25px;
}

.logo-footer-img {
  width: 152px;
}

.footer-bottom {
  width: 100%;
}

.footer-form {
  margin-bottom: 26px;
  margin-top: auto;
}
.footer-form h3 {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 20px;
}
.footer-form .mymail-form-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -40px;
  margin-right: -40px;
}
@media screen and (max-width: 767px) {
  .footer-form .mymail-form-fields {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
}
.footer-form .mymail-form-fields .mymail-wrapper {
  width: 33.3%;
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .footer-form .mymail-form-fields .mymail-wrapper {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.footer-form .mymail-form-fields .mymail-wrapper.form-submit {
  width: 100%;
  text-align: center;
}
.footer-form [type=email], .footer-form [type=text], .footer-form [type=tel], .footer-form textarea {
  background: transparent;
  color: inherit;
  border: none;
  outline: none;
  border-bottom: 1px solid #fff;
  font-size: 18px;
  font-weight: 300;
  font-family: inherit;
  height: 44px;
}
.footer-form .error input[type=email], .footer-form .error input[type=text], .footer-form .error input[type=tel] {
  outline: none;
  border-color: red;
}
.footer-form [type=submit] {
  width: 297px;
  height: 44px;
  border: none;
  outline: none;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: 200px center;
  font-size: 18px;
  font-weight: 300;
  color: #000;
  text-transform: uppercase;
}
.footer-form [type=submit] svg {
  width: 35px;
  height: 29px;
  fill: #000;
  margin-left: 15px;
  margin-right: -15px;
}
.footer-form [type=submit].btn-footer-open-popup {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer-form [type=submit] {
    width: 280px;
    text-indent: -38px;
    background-position: 145px center;
  }
}

.home-landing .footer-bottom {
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .footer-bottom .row {
    display: block;
  }
  .footer-bottom .row .right {
    float: none;
    text-align: center;
    max-width: 100%;
  }
}
.footer-bottom .left {
  font-size: 18px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .footer-bottom .left {
    text-align: center;
    float: none;
  }
  .footer-bottom .left .footer-social {
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.footer-bottom .left .widget_text {
  margin-bottom: 12px;
}
.footer-bottom .left .widget-title {
  text-transform: uppercase;
  font-style: 26.25em;
  font-weight: 300;
  margin-bottom: 0;
}
.footer-bottom .left p {
  margin-bottom: 0;
}
.footer-bottom .right {
  width: 380px;
  max-width: 100%;
  width: 100%;
  margin-bottom: 20px;
}

.footer-social .soc-item {
  margin: 0 5px;
}
.footer-social .ic {
  fill: #fff;
}
.footer-social .ic.icon-fb {
  height: 24px;
  width: 11px;
}
.footer-social .ic.icon-ins {
  height: 23px;
  width: 23px;
}
.footer-social .ic.icon-yt {
  height: 21px;
  width: 31px;
}
.footer-social .fb-disc {
  height: 63px;
  width: 63px;
}
.footer-social .fb-disc .ic {
  fill: #000;
  width: 16px;
  height: 34px;
}

.fb-footer-ic {
  height: 56px;
}

.footer-bottom .left {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.footer-bottom .left > * {
  width: 100%;
}
.footer-bottom .left .widget_text {
  margin: auto 0;
}
.footer-bottom .right {
  height: 100%;
  float: none;
  text-align: center;
}
.footer-bottom .right .socials {
  margin: auto;
}
@media screen and (max-width: 767px) {
  .footer-bottom .right .socials {
    margin-top: 36px;
  }
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom .copyright {
  font-size: 80%;
}

.develop {
  margin-top: auto;
  font-size: 85%;
}
@media screen and (max-width: 767px) {
  .develop {
    margin-top: 12px;
  }
  .develop img {
    height: 25px;
  }
}

.modal-body-form {
  width: 824px;
  max-width: 100%;
}
.modal-body-form .form-popup {
  width: 450px;
  margin: 0 auto;
  max-width: 100%;
}

.modal-body-dark {
  background: #282828;
  color: #fff;
  padding-left: 15px;
  padding-right: 15px;
}
.modal-body-dark .uk-close [stroke*="#"]:not(.uk-preserve) {
  stroke: #fff;
}
.modal-body-dark .uk-close svg line {
  stroke: #fff;
}
.modal-body-dark h3 {
  font-weight: 300;
  font-size: 30px;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .modal-body-dark h3 {
    font-size: 22px;
  }
}
.modal-body-dark .form-group {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .modal-body-dark .form-group {
    margin-bottom: 15px;
  }
}
.modal-body-dark .form-group input, .modal-body-dark .form-group textarea {
  background: transparent;
  color: #fff;
  font-size: 18px;
  height: 36px;
  padding-left: 3px;
  padding-right: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #fff;
  width: 100%;
  outline: none !important;
  font-family: GothamProReg, sans-serif;
}
.modal-body-dark .form-btn {
  text-align: center;
}
.modal-body-dark .form-btn [type=submit] {
  height: 44px;
  width: 297px;
  display: inline-block;
  font-size: 18px;
  background: #fff;
  color: #000;
  border: none;
  outline: none;
  text-transform: uppercase;
}
.modal-body-dark .form-btn [type=submit] .ic {
  height: 29px;
  width: 35px;
  fill: #000;
  margin-left: 26px;
  margin-right: -20px;
}

.go-top {
  position: fixed;
  right: 15px;
  bottom: -250px;
  opacity: 0;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.scrolled-vis .go-top {
  opacity: 1;
  bottom: 25px;
}
.go-top .ic {
  fill: #a6924c;
  width: 27px;
  height: 60px;
}

.xmas {
  height: 100%;
  width: 100%;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  z-index: 9999;
}

.xmas .from div {
  font-family: "quimby-mayoral", sans-serif;
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 10px;
}

.xmas #xmas {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 980px) {
  body {
    height: auto;
  }
  .hide-mob {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .popup-filters {
    display: block !important;
  }
  .hide-pc, .hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .hide-mob, .hidden-mob, .hidden-xs {
    display: none !important;
  }
  .navbar-header {
    display: block;
  }
  .navbar-header:after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
  }
  .btn-menu-left {
    margin: 20px 0 0 15px;
    float: right;
    padding-right: 21px;
  }
  .buttons-filter {
    padding: 13px 15px;
    border-bottom: 1px solid #000;
  }
  .buttons-filter .col-btn {
    width: 50%;
    border-right: 1px solid #000;
  }
  .buttons-filter .col-btn .filters-btn {
    font-size: 14px;
    text-transform: uppercase;
    background: transparent;
    border: none;
    outline: none;
    height: 30px;
    width: 100%;
  }
  .custom-logo-link {
    height: 48px;
    width: 48px;
    margin: 12px 0 0 15px;
    vertical-align: bottom;
    display: inline-block;
  }
  .logo-box {
    float: left;
    display: block;
    white-space: nowrap;
  }
  .logo-box .logo-text {
    font-size: 12.75px;
    vertical-align: bottom;
    display: inline-block;
    vertical-align: 0;
    margin-left: -14px;
  }
  .popup-filters {
    position: absolute;
    background: #fff;
    left: 0;
    right: 0;
    top: 59px;
    padding-top: 15px;
    z-index: 8;
    display: none;
  }
  .popup-filters ul li {
    font-size: 20px;
  }
  .single-post-top,
  .autor-page-top {
    display: block;
  }
  .single-post-top > .col-md-6,
  .autor-page-top > .col-md-6 {
    width: 100%;
  }
  .single-post-top .thumb-in-text,
  .autor-page-top .thumb-in-text {
    margin-bottom: 35px;
    text-align: right;
    margin-right: -15px;
  }
  .block-gallery .container {
    padding-left: 0;
    padding-right: 0;
  }
  .block-gallery .grid-block .grid-items {
    padding-left: 0;
    padding-right: 0;
  }
  .plans {
    overflow-x: auto;
  }
  .tbl-plans td + td {
    padding-left: 10px;
    padding-right: 10px;
  }
  .uk-modal {
    padding-left: 0;
    padding-right: 0;
  }
  .slider-main-nav-wrap {
    display: none;
  }
  .products-list .item-product {
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 40px;
  }
  .products-list .item-product .product-item-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .products-list .item-product .author-book {
    font-weight: bold;
    margin-bottom: 12px;
  }
  .products-list .item-product .bottom-data {
    display: block;
  }
  .products-list .item-product .bottom-data .price {
    font-size: 16px;
  }
  .products-list .item-product .bottom-data .btn-default {
    width: 120px;
    font-size: 14px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    min-width: 120px;
    padding-bottom: 8px;
    padding-top: 7px;
  }
  .uk-modal-title {
    font-size: 20px;
    margin-bottom: 1em;
    margin-top: 1em;
  }
  .order-form-content .list-products .product-cart-item {
    display: block;
  }
  .order-form-content .form-fields {
    display: block;
  }
  .order-form-content .form-fields > div {
    width: 100%;
  }
  .title-post {
    font-size: 20px;
  }
  .single-description-box .connect {
    display: block;
  }
  .single-description-box .connect .bold {
    text-transform: uppercase;
  }
  .single-description-box .connect > span {
    display: block;
  }
}
html {
  --font-10: 0.52vw;
}

.trn-middle {
  font-family: "Conv_GothamPro", sans-serif;
}
.trn-middle p {
  margin: 0;
}

.trn-container {
  padding-left: 7%;
  padding-right: 7%;
}
@media screen and (max-width: 767px) {
  .trn-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.trn-hero {
  display: grid;
}
.trn-hero__bg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column: 1;
  grid-row: 1;
}
@media screen and (min-width: 768px) {
  .trn-hero__bg--right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.trn-hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column: 1;
  grid-row: 1;
  padding: calc(var(--font-10) * 12) 7% 0;
  gap: calc(var(--font-10) * 3.8);
}
@media screen and (max-width: 767px) {
  .trn-hero__container {
    grid-template-columns: 1fr;
    display: block;
    padding: 24px 16px 40px;
  }
}
@media screen and (min-width: 768px) {
  .trn-hero__body {
    padding-bottom: calc(var(--font-10) * 11.7);
  }
}
@media screen and (max-width: 767px) {
  .trn-hero__body {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 8px;
  }
}
.trn-hero__title {
  margin-bottom: calc(var(--font-10) * 2.7);
  margin-top: 0;
  font-family: "Conv_GothamPro", sans-serif;
  font-weight: 400;
  font-size: calc(var(--font-10) * 7);
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .trn-hero__title {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 12px;
    text-align: center;
  }
}
.trn-hero__subtitle {
  font-weight: 400;
  font-size: calc(var(--font-10) * 3.2);
  line-height: 1.74;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: calc(var(--font-10) * 10);
}
@media screen and (max-width: 767px) {
  .trn-hero__subtitle {
    font-size: 18px;
    line-height: 1.11;
    margin-bottom: 20px;
    text-align: center;
  }
}
.trn-hero__subtitle strong,
.trn-hero__subtitle .bold,
.trn-hero__subtitle b,
.trn-hero__subtitle .gold {
  color: #b89a49;
  font-weight: 400 !important;
}
.trn-hero__button {
  margin-bottom: calc(var(--font-10) * 2);
}
@media screen and (max-width: 767px) {
  .trn-hero__button {
    padding-bottom: 16px;
    grid-row: 3;
    grid-column: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.trn-hero__button .btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
}
.trn-hero__timer {
  padding: calc(var(--font-10) * 3.2) calc(var(--font-10) * 2);
  border: 2px solid #000;
}
@media screen and (max-width: 767px) {
  .trn-hero__timer {
    padding: 16px;
    border: 1px solid #000;
  }
}
@media screen and (min-width: 768px) {
  .trn-hero__images {
    padding-bottom: calc(var(--font-10) * 11.7);
  }
}
@media screen and (max-width: 767px) {
  .trn-hero__images {
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .trn-hero__images--bg {
    grid-column: 1;
    grid-row: 1/4;
    -ms-flex-line-pack: end;
        align-content: end;
    margin: 0 -16px;
  }
}
.trn-hero__images--img {
  margin-bottom: calc(var(--font-10) * 2);
}
@media screen and (max-width: 767px) {
  .trn-hero__images--img {
    grid-column: 1;
    grid-row: 1;
  }
}
.trn-hero__images--img img {
  display: block;
  height: auto;
  max-width: 100%;
}
.trn-hero__images--text {
  font-size: 28px;
  font-size: calc(var(--font-10) * 2.8);
  color: #777777;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .trn-hero__images--text {
    grid-column: 1;
    grid-row: 2;
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.trn-hero__images--text strong,
.trn-hero__images--text b,
.trn-hero__images--text .bold {
  color: #1f1f1f;
  font-weight: 400 !important;
}

.trn-timer__head {
  text-align: center;
  color: #777777;
  font-size: calc(var(--font-10) * 3.2);
  line-height: 1;
  margin-bottom: calc(var(--font-10) * 2.4);
}
@media screen and (max-width: 767px) {
  .trn-timer__head {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.trn-timer__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: calc(var(--font-10) * 4);
  text-transform: uppercase;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "GothamProMedium", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .trn-timer__count {
    font-size: 20px;
    line-height: 1;
  }
}
.trn-timer .timer-delim {
  margin: 0 calc(var(--font-10) * 0.8);
  font-size: calc(var(--font-10) * 2);
}
@media screen and (max-width: 767px) {
  .trn-timer .timer-delim {
    margin: 0 2px;
    font-size: 12px;
  }
}

.hero-buy__price {
  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;
  text-transform: uppercase;
  margin-bottom: calc(var(--font-10) * 0.8);
}
@media screen and (max-width: 767px) {
  .hero-buy__price {
    margin-bottom: 4px;
  }
}
.hero-buy__price--text {
  font-weight: 700;
  font-size: calc(var(--font-10) * 3.2);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .hero-buy__price--text {
    font-size: 16px;
  }
}
.hero-buy__price--value {
  color: #bd0400;
  font-size: calc(var(--font-10) * 7.6);
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .hero-buy__price--value {
    font-size: 40px;
  }
}
.hero-buy__oldprice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: calc(var(--font-10) * 3.2);
}
@media screen and (max-width: 767px) {
  .hero-buy__oldprice {
    margin-bottom: 12px;
  }
}
.hero-buy__oldprice--text {
  font-size: calc(var(--font-10) * 2);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .hero-buy__oldprice--text {
    font-size: 12px;
  }
}
.hero-buy__oldprice--value {
  font-size: calc(var(--font-10) * 3.2);
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .hero-buy__oldprice--value {
    font-size: 16px;
  }
}

.btn-trn-gold {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: calc(var(--font-10) * 10);
  border: none;
  outline: none;
  border-radius: 0;
  font-size: calc(var(--font-10) * 2);
  font-weight: 700;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background: -webkit-gradient(linear, left top, right top, from(#b78606), color-stop(49.71%, #ffe44e), to(#b78606));
  background: linear-gradient(90deg, #b78606 0%, #ffe44e 49.71%, #b78606 100%);
  text-decoration: none;
  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;
  text-transform: uppercase;
}
.btn-trn-gold:hover {
  background: -webkit-gradient(linear, left top, right top, from(#835e00), color-stop(49.71%, #ddc439), to(#835e00));
  background: linear-gradient(90deg, #835e00 0%, #ddc439 49.71%, #835e00 100%);
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .btn-trn-gold {
    height: 56px;
    font-size: 14px;
    width: 289px;
  }
}

.btn-form-trn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
  font-size: 32px;
  color: #000;
  font-weight: 700;
  background: #fff;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  width: 100%;
  text-transform: uppercase;
}
.btn-form-trn:hover {
  background: #b89a49;
}
@media screen and (max-width: 767px) {
  .btn-form-trn {
    height: 54px;
    font-size: 18px;
  }
  .btn-form-trn svg {
    height: 26px;
    width: 26px;
  }
}

.trn-b2 {
  padding-top: calc(var(--font-10) * 16);
  padding-bottom: calc(var(--font-10) * 16);
  background-image: url(../img/trn/trn-b2-bg-pc.png);
  background-position: 0 0;
  background-size: calc(var(--font-10) * 83.3) calc(var(--font-10) * 78.3);
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .trn-b2 {
    padding-top: 80px;
    padding-bottom: 80px;
    background-size: contain;
  }
}
.trn-b2__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: calc(var(--font-10) * 5.5);
}
@media screen and (max-width: 767px) {
  .trn-b2__head {
    margin-bottom: 40px;
    gap: 5px;
  }
}
.trn-b2__head--line {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
}
@media screen and (max-width: 767px) {
  .trn-b2__head--line {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55px;
            flex: 0 0 55px;
  }
}
.trn-b2__head--line--gold {
  background: #B89A49;
  position: relative;
}
@media screen and (max-width: 767px) {
  .trn-b2__head--line--gold {
    margin-top: -45px;
  }
}
.trn-b2__head--line--gold::before {
  content: "";
  width: 1px;
  position: absolute;
  left: 0;
  top: 0;
  background: #B89A49;
  height: calc(var(--font-10) * 64.3);
}
@media screen and (max-width: 767px) {
  .trn-b2__head--line--gold::before {
    height: 800px;
  }
}
.trn-b2__title {
  font-family: "Conv_GothamPro", sans-serif;
  font-weight: 400;
  font-size: calc(var(--font-10) * 7);
  line-height: 1.1;
  color: #1f1f1f;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .trn-b2__title {
    font-size: 40px;
    line-height: 1.2;
    white-space: normal;
  }
}
.trn-b2__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .trn-b2__body {
    display: block;
  }
}
.trn-b2__image {
  padding-left: calc(var(--font-10) * 8);
  padding-right: calc(var(--font-10) * 10);
}
@media screen and (max-width: 767px) {
  .trn-b2__image {
    margin-bottom: 32px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
.trn-b2__content {
  padding-top: calc(var(--font-10) * 6.3);
  padding-right: calc(var(--font-10) * 16);
}
@media screen and (max-width: 767px) {
  .trn-b2__content {
    padding-top: 0;
    padding-right: 8px;
    padding-left: 8px;
  }
}
.trn-b2__subtitle {
  font-family: "Conv_GothamPro", sans-serif;
  font-weight: 400;
  font-size: calc(var(--font-10) * 3.2);
  margin-bottom: calc(var(--font-10) * 3.2);
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .trn-b2__subtitle {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px;
  }
}
.trn-b2__list ul {
  padding: 0;
  margin: 0;
}
.trn-b2__list ul li {
  list-style: none;
  margin-bottom: calc(var(--font-10) * 2);
  font-family: "Conv_GothamPro", sans-serif;
  font-weight: 400;
  font-size: calc(var(--font-10) * 1.8);
  line-height: 1.33;
  position: relative;
  padding-left: calc(var(--font-10) * 5.2);
  min-height: calc(var(--font-10) * 3.2);
  color: #777;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .trn-b2__list ul li br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .trn-b2__list ul li {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
    padding-left: 44px;
  }
}
.trn-b2__list ul li b,
.trn-b2__list ul li strong {
  font-weight: 400 !important;
  color: #000;
}
.trn-b2__list ul li::before {
  content: "";
  width: calc(var(--font-10) * 3.2);
  height: calc(var(--font-10) * 3.2);
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/trn/b2-icon-marker.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .trn-b2__list ul li::before {
    height: 32px;
    width: 32px;
  }
}

.trn-b3 {
  padding-top: calc(var(--font-10) * 16);
  padding-bottom: calc(var(--font-10) * 16);
  background: #1f1f1f;
  color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .trn-b3 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.trn-b3__head {
  margin-bottom: calc(var(--font-10) * 5.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(var(--font-10) * 2);
}
@media screen and (max-width: 767px) {
  .trn-b3__head {
    margin-bottom: 40px;
  }
}
.trn-b3__head--line {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: #B89A49;
}
.trn-b3__title {
  font-family: "Conv_GothamPro", sans-serif;
  font-weight: 400;
  font-size: calc(var(--font-10) * 7);
  line-height: 1.1;
  white-space: nowrap;
  text-transform: uppercase;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .trn-b3__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    font-size: 40px;
    line-height: 1;
  }
}
.trn-b3__title--row {
  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;
  gap: 12px;
}
.trn-b3__subtitle {
  text-align: center;
  margin-bottom: calc(var(--font-10) * 4);
  font-weight: 400;
  font-size: calc(var(--font-10) * 3.2);
  line-height: 1.25;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .trn-b3__subtitle {
    margin-bottom: 12px;
    font-size: 24px;
  }
}
.trn-b3__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: calc(var(--font-10) * 1.6);
}
@media screen and (max-width: 767px) {
  .trn-b3__list {
    display: block;
    padding-left: 26px;
    padding-right: 26px;
  }
}
.trn-b3__item {
  text-align: center;
}
.trn-b3__icon {
  margin-bottom: calc(var(--font-10) * 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .trn-b3__icon {
    margin-bottom: 5px;
  }
}
.trn-b3__icon img {
  width: calc(var(--font-10) * 8);
  height: calc(var(--font-10) * 8);
  display: block;
}
@media screen and (max-width: 767px) {
  .trn-b3__icon img {
    height: 80px;
    width: 80px;
  }
}
.trn-b3__label {
  font-weight: 400;
  font-size: calc(var(--font-10) * 1.8);
  line-height: 1.33;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .trn-b3__label {
    font-size: 18px;
  }
}

.trn-b4 {
  padding-top: calc(var(--font-10) * 16);
  padding-bottom: calc(var(--font-10) * 16);
  background: url(../img/trn/b4-bg-left-pc.png) 0 0, url(../img/trn/b4-bg-right-pc.png) right top;
  background-repeat: no-repeat;
  background-size: calc(var(--font-10) * 57.3) calc(var(--font-10) * 92.7), calc(var(--font-10) * 58.3) calc(var(--font-10) * 92.7);
}
@media screen and (max-width: 767px) {
  .trn-b4 {
    padding-top: 80px;
    padding-bottom: 80px;
    background: url(../img/trn/b4-bg-mob.png) 0 0;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
.trn-b4__head {
  margin-bottom: calc(var(--font-10) * 6);
}
@media screen and (max-width: 767px) {
  .trn-b4__head {
    margin-bottom: 40px;
  }
}
.trn-b4__title {
  font-size: calc(var(--font-10) * 7);
  font-weight: 400;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .trn-b4__title {
    color: #1f1f1f;
    font-size: 40px;
    line-height: 1;
  }
}
.trn-b4__wrap-items {
  width: calc(var(--font-10) * 122.7);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc(var(--font-10) * 6);
}
@media screen and (max-width: 767px) {
  .trn-b4__wrap-items {
    width: 100%;
    margin-bottom: 40px;
  }
}
.trn-b4__subtitle {
  font-size: calc(var(--font-10) * 3.2);
  line-height: 1.27;
  margin-bottom: calc(var(--font-10) * 3.2);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .trn-b4__subtitle {
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 1.2;
  }
  .trn-b4__subtitle br {
    display: none;
  }
}
.trn-b4__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--font-10) * 1.6);
}
@media screen and (max-width: 767px) {
  .trn-b4__items {
    display: block;
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }
}
.trn-b4__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: calc(var(--font-10) * 2);
  margin-bottom: calc(var(--font-10) * 2);
}
@media screen and (max-width: 767px) {
  .trn-b4__item {
    margin-bottom: 16px;
    gap: 12px;
  }
}
.trn-b4__item--icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(var(--font-10) * 3.2);
          flex: 0 0 calc(var(--font-10) * 3.2);
}
@media screen and (max-width: 767px) {
  .trn-b4__item--icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32px;
            flex: 0 0 32px;
  }
}
.trn-b4__item--icon img {
  height: calc(var(--font-10) * 3.2);
  width: calc(var(--font-10) * 3.2);
  display: block;
}
@media screen and (max-width: 767px) {
  .trn-b4__item--icon img {
    width: 32px;
    height: 32px;
  }
}
.trn-b4__item--text {
  font-size: calc(var(--font-10) * 1.8);
  line-height: 1.6;
  color: #777;
}
@media screen and (max-width: 767px) {
  .trn-b4__item--text {
    font-size: 16px;
    line-height: 1.5;
  }
}
.trn-b4__item--text b,
.trn-b4__item--text strong {
  color: #000;
  font-weight: 400 !important;
}
.trn-b4__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: calc(var(--font-10) * 1.6) calc(var(--font-10) * 2);
  padding-left: calc(var(--font-10) * 6.5);
  padding-right: calc(var(--font-10) * 6.5);
  margin-bottom: calc(var(--font-10) * 12);
}
@media screen and (max-width: 767px) {
  .trn-b4__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.trn-b4__grid--item {
  background: url(../img/trn/bg-grid-item-sm.png) no-repeat center/100% 100%;
  min-height: calc(var(--font-10) * 25.9);
  padding: calc(var(--font-10) * 3.2);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .trn-b4__grid--item {
    padding: 32px 30px;
    min-height: 208px;
    background: url(../img/trn/bg-grid-item-mob.png) no-repeat center/100% 100%;
  }
}
@media screen and (min-width: 768px) {
  .trn-b4__grid--item:nth-child(5n+1) {
    grid-column: 1/3;
  }
  .trn-b4__grid--item:nth-child(5n+2) {
    grid-column: 3/5;
  }
  .trn-b4__grid--item:nth-child(5n+3) {
    grid-column: 5/7;
  }
  .trn-b4__grid--item:nth-child(5n+4) {
    grid-column: 1/4;
    background: url(../img/trn/bg-grid-item-big.png) no-repeat center/100% 100%;
  }
  .trn-b4__grid--item:nth-child(5n+5) {
    grid-column: 4/7;
    background: url(../img/trn/bg-grid-item-big.png) no-repeat center/100% 100%;
  }
}
.trn-b4__grid--icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.trn-b4__grid--icon img {
  display: block;
  height: calc(var(--font-10) * 7.9) !important;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .trn-b4__grid--icon img {
    height: 79px !important;
  }
}
.trn-b4__grid--title {
  font-size: calc(var(--font-10) * 2.4);
  line-height: 1.5;
  color: #777;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .trn-b4__grid--title {
    font-size: 20px;
    line-height: 1.2;
  }
}
.trn-b4__grid--text {
  font-size: calc(var(--font-10) * 2.4);
  line-height: 1.5;
  color: #000;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .trn-b4__grid--text {
    font-size: 20px;
    line-height: 1.2;
  }
  .trn-b4__grid--text br {
    display: none;
  }
}
.trn-b4__other--head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .trn-b4__other--head {
    display: block;
  }
}
.trn-b4__other--head::before {
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #B89A49;
}
@media screen and (max-width: 767px) {
  .trn-b4__other--head::before {
    display: none;
  }
}
.trn-b4__other--head::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
}
@media screen and (max-width: 767px) {
  .trn-b4__other--head::after {
    display: none;
  }
}
.trn-b4__other--title {
  font-size: calc(var(--font-10) * 7);
  margin: 0;
  font-family: "Conv_GothamPro", sans-serif;
  font-weight: 400;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .trn-b4__other--title {
    font-size: 40px;
  }
}
.trn-b4__other--title__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.trn-b4__other--title__line {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
}
.trn-b4__other--title__line.gold {
  background: #B89A49;
}
.trn-b4__other--title__line.gold::before {
  content: "";
  position: absolute;
  background: #B89A49;
  width: 1px;
  height: 185px;
  left: 0;
  top: 0;
}
.trn-b4__other--list {
  padding-left: calc(var(--font-10) * 6.5);
  padding-right: calc(var(--font-10) * 6.5);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--font-10) * 2);
  padding-bottom: calc(var(--font-10) * 4.9);
  position: relative;
  margin-bottom: calc(var(--font-10) * 10);
}
@media screen and (max-width: 767px) {
  .trn-b4__other--list {
    padding-left: 32px;
    padding-right: 32px;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 32px;
    margin-bottom: 80px;
  }
}
.trn-b4__other--footer {
  width: calc(var(--font-10) * 98.8);
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .trn-b4__other--footer {
    width: auto;
  }
}
.trn-b4__other--text {
  font-size: calc(var(--font-10) * 3.2);
  line-height: 1.6;
  text-transform: uppercase;
  margin-bottom: calc(var(--font-10) * 4);
}
@media screen and (max-width: 767px) {
  .trn-b4__other--text {
    font-size: 28px;
    line-height: 1.23;
    margin-bottom: 32px;
  }
}
.trn-b4__other--text b,
.trn-b4__other--text strong {
  font-weight: 400 !important;
  color: #B89A49;
}

.trn-btn-red {
  background: #bd0400;
  color: #fff;
  font-size: calc(var(--font-10) * 2);
  line-height: 1;
  font-weight: 700;
  width: calc(var(--font-10) * 64.5);
  max-width: 100%;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-transform: uppercase;
  padding: 0;
  height: calc(var(--font-10) * 10);
}
@media screen and (max-width: 767px) {
  .trn-btn-red {
    width: 289px;
    height: 56px;
    font-size: 14px;
  }
}
.trn-btn-red:hover {
  background: #9e0300;
}

.b4-other-list {
  border-left: 1px solid #B89A49;
  border-right: 1px solid #B89A49;
  padding-top: calc(var(--font-10) * 8);
  margin-top: calc(var(--font-10) * -3.5);
}
@media screen and (max-width: 767px) {
  .b4-other-list {
    border: none;
    padding-top: 40px;
    margin-top: 0;
  }
}
.b4-other-list::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  height: calc(var(--font-10) * 2);
  width: calc(var(--font-10) * 38.7);
  border-bottom: 1px solid #B89A49;
}
@media screen and (max-width: 767px) {
  .b4-other-list::after {
    height: 175px;
    width: 80px;
    border-right: 1px solid #B89A49;
  }
}
.b4-other-list__item {
  min-height: calc(var(--font-10) * 25.6);
  padding-top: calc(var(--font-10) * 3.5);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .b4-other-list__item {
    padding-top: 0;
  }
}
.b4-other-list__item--icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: calc(var(--font-10) * 1.5);
}
@media screen and (max-width: 767px) {
  .b4-other-list__item--icon {
    margin-bottom: 12px;
  }
}
.b4-other-list__item--icon img {
  height: calc(var(--font-10) * 6) !important;
  display: block;
}
@media screen and (max-width: 767px) {
  .b4-other-list__item--icon img {
    height: 60px !important;
  }
}
.b4-other-list__item--text {
  color: #777;
  font-size: calc(var(--font-10) * 2.4);
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .b4-other-list__item--text {
    font-size: 20px;
    line-height: 1.2;
  }
}
.b4-other-list__item--text b,
.b4-other-list__item--text strong {
  font-weight: 400 !important;
  color: #000;
}

.trn-b5 {
  background: #000;
  padding-top: calc(var(--font-10) * 16);
  padding-bottom: calc(var(--font-10) * 16);
}
@media screen and (max-width: 767px) {
  .trn-b5 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.trn-b5__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(var(--font-10) * 1);
  margin-bottom: calc(var(--font-10) * 8);
}
@media screen and (max-width: 767px) {
  .trn-b5__head {
    margin-bottom: 62px;
  }
}
.trn-b5__head::after, .trn-b5__head::before {
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #B89A49;
}
.trn-b5__title {
  color: #fff;
  font-size: calc(var(--font-10) * 7);
  font-family: "Conv_GothamPro", sans-serif;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .trn-b5__title {
    font-size: 40px;
  }
}
.trn-b5__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .trn-b5__items {
    display: grid;
    gap: 60px;
    grid-template-columns: 1fr;
  }
}
.trn-b5__item {
  padding: calc(var(--font-10) * 3.2);
  background: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .trn-b5__item {
    padding: 32px;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .trn-b5__item--2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(var(--font-10) * 57.2);
            flex: 0 0 calc(var(--font-10) * 57.2);
  }
}
@media screen and (min-width: 768px) {
  .trn-b5__item--1, .trn-b5__item--3 {
    margin-top: calc(var(--font-10) * 3.2);
    margin-bottom: calc(var(--font-10) * 3.2);
  }
}
.trn-b5__item--inner {
  border: 1px solid #B89A49;
  position: relative;
  padding-bottom: calc(var(--font-10) * 1.8);
  height: 100%;
}
@media screen and (max-width: 767px) {
  .trn-b5__item--inner {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.trn-b5__item--image {
  position: relative;
  margin-bottom: calc(var(--font-10) * 4);
  margin-top: calc(var(--font-10) * -5.5);
}
@media screen and (max-width: 767px) {
  .trn-b5__item--image {
    margin-left: -9px;
    margin-top: -50px;
    margin-bottom: 34px;
  }
}
.trn-b5__item--image .img {
  -webkit-transform: rotate(-4deg);
      -ms-transform: rotate(-4deg);
          transform: rotate(-4deg);
  height: calc(var(--font-10) * 16.5);
  width: calc(var(--font-10) * 21.7);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .trn-b5__item--image .img {
    width: 200px;
    height: 152px;
  }
}
.trn-b5__item--image .img-clip {
  position: absolute;
  left: calc(var(--font-10) * -2);
  top: calc(var(--font-10) * -2);
  width: calc(var(--font-10) * 6.4);
  height: calc(var(--font-10) * 8.2);
}
@media screen and (max-width: 767px) {
  .trn-b5__item--image .img-clip {
    width: 64px;
    height: 81px;
    top: -16px;
    left: -20px;
  }
}
@media screen and (min-width: 768px) {
  .trn-b5__item--image__2 {
    margin-bottom: calc(var(--font-10) * 2);
  }
  .trn-b5__item--image__2 .img {
    height: calc(var(--font-10) * 22.1);
    width: calc(var(--font-10) * 29.5);
  }
  .trn-b5__item--image__2 .img-clip {
    left: calc(var(--font-10) * -2);
    top: calc(var(--font-10) * -2);
    width: calc(var(--font-10) * 7.6);
    height: calc(var(--font-10) * 9.6);
  }
}
.trn-b5__item--body {
  padding-left: calc(var(--font-10) * 4.9);
  padding-right: calc(var(--font-10) * 4.9);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .trn-b5__item--body {
    padding: 0 32px 23px;
  }
}
.trn-b5__item--text {
  font-size: calc(var(--font-10) * 2.8);
  line-height: 1.3;
  margin-bottom: calc(var(--font-10) * 1.6);
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .trn-b5__item--text {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 16px;
  }
}
.trn-b5__item--text b,
.trn-b5__item--text strong {
  font-weight: 500 !important;
  font-family: "GothamProMedium", sans-serif;
}
.trn-b5__item--name {
  text-align: right;
  font-size: calc(var(--font-10) * 2.4);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .trn-b5__item--name {
    font-size: 24px;
  }
}

.trn-b6 {
  padding-top: calc(var(--font-10) * 16);
  padding-bottom: calc(var(--font-10) * 16);
}
@media screen and (max-width: 767px) {
  .trn-b6 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.trn-b6__title {
  font-size: calc(var(--font-10) * 7);
  text-transform: uppercase;
  text-align: center;
  margin-top: 0;
  color: #1f1f1f;
  font-family: "Conv_GothamPro", sans-serif;
}
@media screen and (max-width: 767px) {
  .trn-b6__title {
    margin-bottom: 32px;
    font-size: 40px;
  }
}
.trn-b6__top {
  background: url(../img/trn/b6-bg-pc.png) no-repeat 0 0;
  margin-bottom: calc(var(--font-10) * 14);
}
@media screen and (max-width: 767px) {
  .trn-b6__top {
    background: none;
    margin-bottom: 0;
  }
}
.trn-b6__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(var(--font-10) * 9);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .trn-b6__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 54px;
  }
}
.trn-b6__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(var(--font-10) * 3);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(var(--font-10) * 52);
          flex: 0 0 calc(var(--font-10) * 52);
}
@media screen and (max-width: 767px) {
  .trn-b6__body {
    background: url(../img/trn/b6-bg-mob.png) no-repeat 0 0;
    background-size: contain;
  }
}
.trn-b6__body--img {
  display: block;
  width: calc(var(--font-10) * 33);
  height: calc(var(--font-10) * 17.8) !important;
}
@media screen and (max-width: 767px) {
  .trn-b6__body--img {
    width: 157px;
    height: 84px !important;
    margin-bottom: 37px;
  }
}
.trn-b6__text {
  font-size: calc(var(--font-10) * 1.8);
  line-height: 1.8;
  color: #777;
}
@media screen and (max-width: 767px) {
  .trn-b6__text {
    font-size: 16px;
    line-height: 1.5;
  }
}
.trn-b6__text b,
.trn-b6__text strong {
  color: #000;
  font-weight: 400 !important;
}
.trn-b6__text p {
  margin-bottom: 1.8em;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .trn-b6__text p {
    margin-bottom: 1.5em;
  }
}
.trn-b6__text p:last-of-type {
  margin-bottom: 0;
}
.trn-b6__items {
  background: url(../img/trn/b6-bg-pc.png) no-repeat 0 0;
  margin-bottom: calc(var(--font-10) * 14);
}
@media screen and (max-width: 767px) {
  .trn-b6__items {
    background: none;
    margin-bottom: 80px;
  }
}
.trn-b6__item {
  padding-left: calc(var(--font-10) * 7.5);
  padding-right: calc(var(--font-10) * 10);
}
@media screen and (max-width: 767px) {
  .trn-b6__item {
    padding: 0;
  }
}
.trn-b6__item + .trn-b6__item {
  margin-top: calc(var(--font-10) * 12);
}
@media screen and (max-width: 767px) {
  .trn-b6__item + .trn-b6__item {
    margin-top: 80px;
  }
}
.trn-b6__item--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(var(--font-10) * 10);
  padding-top: calc(var(--font-10) * 8);
  padding-left: calc(var(--font-10) * 8);
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .trn-b6__item--inner {
    display: block;
    padding: 0;
  }
}
.item-even .trn-b6__item--inner {
  padding-right: calc(var(--font-10) * 8);
}
@media screen and (max-width: 767px) {
  .item-even .trn-b6__item--inner {
    padding: 0;
  }
}
.trn-b6__item--inner::after, .trn-b6__item--inner::before {
  content: "";
  position: absolute;
  width: calc(var(--font-10) * 30);
  height: calc(var(--font-10) * 25);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .trn-b6__item--inner::after, .trn-b6__item--inner::before {
    display: none;
  }
}
.trn-b6__item--inner::after {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid #B89A49;
  border-right: 2px solid #B89A49;
}
.trn-b6__item--inner::before {
  top: 0;
  left: 0;
  border-top: 2px solid #B89A49;
  border-left: 2px solid #B89A49;
}
.trn-b6__item--image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(var(--font-10) * 67);
          flex: 0 0 calc(var(--font-10) * 67);
  position: relative;
  z-index: 0;
}
.item-odd .trn-b6__item--image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.item-even .trn-b6__item--image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 767px) {
  .trn-b6__item--image {
    margin-bottom: 24px;
    padding: 8px;
  }
  .trn-b6__item--image::after, .trn-b6__item--image::before {
    content: "";
    position: absolute;
    width: 77px;
    height: 77px;
    z-index: 1;
  }
  .trn-b6__item--image::after {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #B89A49;
    border-right: 2px solid #B89A49;
  }
  .trn-b6__item--image::before {
    top: 0;
    left: 0;
    border-top: 2px solid #B89A49;
    border-left: 2px solid #B89A49;
  }
}
.trn-b6__item--image img {
  display: block;
  width: calc(var(--font-10) * 67);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .trn-b6__item--image img {
    width: 100%;
    z-index: 0;
  }
}
.trn-b6__item--body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(var(--font-10) * 53.5);
          flex: 0 0 calc(var(--font-10) * 53.5);
  position: relative;
  z-index: 2;
}
.item-odd .trn-b6__item--body {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.item-even .trn-b6__item--body {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.trn-b6__item--head {
  font-family: "Great Vibes", cursive;
  margin-bottom: calc(var(--font-10) * 4);
}
@media screen and (max-width: 767px) {
  .trn-b6__item--head {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .trn-b6__item--fio {
    font-size: 50px;
    line-height: 1.15;
    color: #777;
    text-align: center;
  }
}
.trn-b6__item--name {
  font-size: calc(var(--font-10) * 10);
  color: #777;
  display: block;
  line-height: 1;
}
.trn-b6__item--lastname {
  font-size: calc(var(--font-10) * 10);
  color: #777;
  text-align: right;
  display: block;
  line-height: 1;
}
.trn-b6__item--age {
  font-size: calc(var(--font-10) * 6);
  text-align: right;
  color: #B89A49;
  display: block;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .trn-b6__item--age {
    font-size: 40px;
    line-height: 1.15;
    text-align: center;
  }
}
.trn-b6__item--text {
  font-size: calc(var(--font-10) * 1.8);
}
@media screen and (max-width: 767px) {
  .trn-b6__item--text {
    font-size: 16px;
  }
}
.trn-b6__item--text h3,
.trn-b6__item--text h4 {
  margin-bottom: calc(var(--font-10) * 3.2);
  font-size: calc(var(--font-10) * 2.4);
  margin-top: 0;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .trn-b6__item--text h3,
  .trn-b6__item--text h4 {
    font-size: 20px;
    text-align: center;
    line-height: 1.3;
  }
}
.trn-b6__item--text ul {
  padding: 0;
  margin: 0;
}
.trn-b6__item--text ul li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(var(--font-10) * 1.2);
  margin-bottom: calc(var(--font-10) * 1.2);
  line-height: 1.33;
}
@media screen and (max-width: 767px) {
  .trn-b6__item--text ul li {
    font-size: 16px;
    margin-bottom: 12px;
    gap: 8px;
  }
}
.trn-b6__item--text ul li::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(var(--font-10) * 2);
          flex: 0 0 calc(var(--font-10) * 2);
  height: calc(var(--font-10) * 2.4);
  width: calc(var(--font-10) * 2);
  background: url(../img/trn/b2-icon-marker.png) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .trn-b6__item--text ul li::before {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    width: 20px;
    height: 20px;
  }
}
.trn-b6__image {
  padding: calc(var(--font-10) * 2);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(var(--font-10) * 103);
          flex: 0 0 calc(var(--font-10) * 103);
  z-index: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 767px) {
  .trn-b6__image {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    padding: 8px;
    margin-bottom: 20px;
  }
}
.trn-b6__image::before, .trn-b6__image::after {
  content: "";
  position: absolute;
  z-index: 0;
  height: calc(var(--font-10) * 16.6);
  width: calc(var(--font-10) * 15);
}
@media screen and (max-width: 767px) {
  .trn-b6__image::before, .trn-b6__image::after {
    height: 77px;
    width: 77px;
  }
}
.trn-b6__image::before {
  top: 0;
  left: 0;
  border-top: 2px solid #B89A49;
  border-left: 2px solid #B89A49;
}
.trn-b6__image::after {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid #B89A49;
  border-right: 2px solid #B89A49;
}
.trn-b6__image img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.trn-b6__video {
  position: relative;
  height: calc(var(--font-10) * 94);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .trn-b6__video {
    height: 196px;
  }
}
.trn-b6__video .video-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 100%;
  width: 100%;
}
.trn-b6__video .video-btn img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.trn-b6__video .video-btn .btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: calc(var(--font-10) * 18);
  width: calc(var(--font-10) * 18);
}
@media screen and (max-width: 767px) {
  .trn-b6__video .video-btn .btn-play {
    height: 40px;
    width: 40px;
  }
}
.trn-b6__video .video-btn .btn-play img {
  display: block;
  width: 100%;
  height: 100%;
}
.trn-b6__video--player {
  display: none;
  height: 100%;
  width: 100%;
}
.trn-b6__video--player iframe {
  height: calc(var(--font-10) * 94);
  width: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  .trn-b6__video--player iframe {
    height: 196px;
  }
}

.trn-b7 {
  padding-top: calc(var(--font-10) * 16);
  padding-bottom: calc(var(--font-10) * 16);
  background: #1f1f1f;
}
@media screen and (max-width: 767px) {
  .trn-b7 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.trn-b7__container {
  width: calc(var(--font-10) * 123);
  margin: 0 auto;
  padding: calc(var(--font-10) * 6);
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .trn-b7__container {
    width: 343px;
    padding: 12px;
  }
}
.trn-b7__container--corn {
  position: absolute;
  z-index: 0;
  width: calc(var(--font-10) * 15);
  height: calc(var(--font-10) * 16.6);
}
.trn-b7__container--corn_1 {
  border-top: 2px solid #B89A49;
  border-left: 2px solid #B89A49;
  top: 0;
  left: 0;
}
.trn-b7__container--corn_2 {
  border-top: 2px solid #B89A49;
  border-right: 2px solid #B89A49;
  top: 0;
  right: 0;
}
.trn-b7__container--corn_3 {
  border-bottom: 2px solid #B89A49;
  border-right: 2px solid #B89A49;
  bottom: 0;
  right: 0;
}
.trn-b7__container--corn_4 {
  border-bottom: 2px solid #B89A49;
  border-left: 2px solid #B89A49;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .trn-b7__container--corn {
    width: 42px;
    height: 55px;
    border-width: 1px;
  }
}
.trn-b7__box {
  background: #ebd486;
  padding: calc(var(--font-10) * 13.6) calc(var(--font-10) * 18.6);
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .trn-b7__box {
    padding: 44px 24px;
  }
}
.trn-b7__price-old {
  color: #1f1f1f;
  text-transform: uppercase;
  margin-bottom: calc(var(--font-10) * 4.4);
}
@media screen and (max-width: 767px) {
  .trn-b7__price-old {
    margin-bottom: 16px;
  }
}
.trn-b7__price-old--lbl {
  font-size: calc(var(--font-10) * 5.2);
}
@media screen and (max-width: 767px) {
  .trn-b7__price-old--lbl {
    font-size: 16px;
  }
}
.trn-b7__price-old--val {
  font-size: calc(var(--font-10) * 7);
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .trn-b7__price-old--val {
    font-size: 20px;
  }
}
.trn-b7__price-old--val::before {
  content: "";
  position: absolute;
  height: calc(var(--font-10) * 0.52);
  width: 100%;
  background: currentColor;
  top: 60%;
  left: 0;
}
.trn-b7__price-new {
  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;
  margin-bottom: calc(var(--font-10) * 3.2);
  gap: calc(var(--font-10) * 0.8);
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .trn-b7__price-new {
    margin-bottom: 16px;
  }
}
.trn-b7__price-new--lbl {
  font-size: calc(var(--font-10) * 3.2);
  line-height: 1;
  color: #1f1f1f;
}
@media screen and (max-width: 767px) {
  .trn-b7__price-new--lbl {
    font-size: 16px;
  }
}
.trn-b7__price-new--val {
  font-size: calc(var(--font-10) * 7.6);
  color: #BD0400;
}
@media screen and (max-width: 767px) {
  .trn-b7__price-new--val {
    font-size: 40px;
  }
}
.trn-b7__content {
  font-size: calc(var(--font-10) * 3.2);
  line-height: 1.3;
  margin-bottom: calc(var(--font-10) * 3.2);
  text-transform: uppercase;
  color: #1f1f1f;
  margin-bottom: calc(var(--font-10) * 3.2);
}
@media screen and (max-width: 767px) {
  .trn-b7__content {
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
}
.trn-b7__content b,
.trn-b7__content strong {
  font-family: "GothamProMedium", sans-serif;
  font-weight: 500 !important;
}
.trn-b7__payment {
  font-size: calc(var(--font-10) * 2);
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(var(--font-10) * 1.2);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: calc(var(--font-10) * 4);
}
@media screen and (max-width: 767px) {
  .trn-b7__payment {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 32px;
  }
}
.trn-b7__payment img {
  height: calc(var(--font-10) * 4.1);
}
@media screen and (max-width: 767px) {
  .trn-b7__payment img {
    height: 20px;
  }
}
.trn-b7__timer {
  border: 2px solid #1f1f1f;
  margin-bottom: calc(var(--font-10) * 4.8);
  padding: calc(var(--font-10) * 3.2);
}
@media screen and (max-width: 767px) {
  .trn-b7__timer {
    margin-bottom: 32px;
  }
}
.btn-trn-black {
  background: #000;
  border: none;
  outline: none;
  width: 100%;
  height: calc(var(--font-10) * 10);
  color: #fff;
  font-size: calc(var(--font-10) * 2);
  text-transform: uppercase;
  font-weight: 700;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .btn-trn-black {
    height: 40px;
    font-size: 14px;
  }
}
.btn-trn-black:hover {
  background: #9e0300;
}

.trn-b8 {
  padding-top: calc(var(--font-10) * 16);
  padding-bottom: calc(var(--font-10) * 4);
  background-color: #ebd486;
  background-image: url(../img/trn/b8-bg-footer-pc.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: calc(var(--font-10) * 154.7) calc(var(--font-10) * 55.6);
}
@media screen and (max-width: 767px) {
  .trn-b8 {
    background-image: url(../img/trn/b8-bg-footer-mob.png);
    background-size: 374px 328px;
    padding-top: 80px;
    padding-bottom: 21px;
  }
}
.trn-b8__text {
  font-size: calc(var(--font-10) * 7);
  text-transform: uppercase;
  text-align: center;
  color: #1f1f1f;
  line-height: 1.2;
  margin-bottom: calc(var(--font-10) * 8);
}
@media screen and (max-width: 767px) {
  .trn-b8__text {
    font-size: 32px;
    margin-bottom: 25px;
  }
}
.trn-b8__text b,
.trn-b8__text strong {
  font-family: "GothamProMedium", sans-serif;
  font-weight: 500 !important;
}
.trn-b8__button {
  text-align: center;
  margin-bottom: calc(var(--font-10) * 16);
}
.trn-b8__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #000;
  padding-top: calc(var(--font-10) * 1.2);
}
@media screen and (max-width: 767px) {
  .trn-b8__footer {
    padding-top: 12px;
  }
}
.trn-b8__footer--offert {
  font-size: calc(var(--font-10) * 1.2);
}
@media screen and (max-width: 767px) {
  .trn-b8__footer--offert {
    font-size: 12px;
  }
}
.trn-b8__footer--dev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: calc(var(--font-10) * 1.2);
  gap: calc(var(--font-10) * 1.2);
}
@media screen and (max-width: 767px) {
  .trn-b8__footer--dev {
    font-size: 12px;
    gap: 12px;
  }
}
.trn-b8__footer--dev svg {
  height: calc(var(--font-10) * 2.1);
  width: calc(var(--font-10) * 3.1);
}
@media screen and (max-width: 767px) {
  .trn-b8__footer--dev svg {
    height: 21px;
    width: 31px;
  }
}

.input-form:hover {
  border-color: #B89A49 !important;
}
.input-form:focus {
  border-color: #fff !important;
}
.input-form.error {
  border-color: #bd0400 !important;
}
.input-form::-webkit-input-placeholder {
  font-size: inherit;
  color: #a7a7a7;
  font-weight: normal;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.input-form::-moz-placeholder {
  font-size: inherit;
  color: #a7a7a7;
  font-weight: normal;
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.input-form:-moz-placeholder {
  font-size: inherit;
  color: #a7a7a7;
  font-weight: normal;
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.input-form:-ms-input-placeholder {
  font-size: inherit;
  color: #a7a7a7;
  font-weight: normal;
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.input-form:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.input-form:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.input-form:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.input-form:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.phone-wrap {
  position: relative;
}
.phone-wrap .phone-placeholder {
  position: absolute;
}

.error-hint {
  display: none;
  color: #bd0400;
  font-size: calc(var(--font-10) * 1.2);
  padding-top: calc(var(--font-10) * 0.6);
}
@media screen and (max-width: 767px) {
  .error-hint {
    font-size: 12px;
    padding-top: 6px;
  }
}
.error-hint.active {
  display: block;
}

.page-res__middle {
  text-align: center;
  min-height: calc(100vh - 80px);
  background: url(../img/trn/page-res-bg-left-pc.png) no-repeat left top, url(../img/trn/page-res-bg-right-pc.png) no-repeat right top;
  background-size: calc(var(--font-10) * 55.1) calc(var(--font-10) * 98.6), calc(var(--font-10) * 55.3) calc(var(--font-10) * 98.6);
}
@media screen and (max-width: 767px) {
  .page-res__middle {
    background: url(../img/trn/page-res-bg-mob.png) no-repeat center top;
    background-size: contain;
  }
}
.page-res__content {
  padding-top: calc(var(--font-10) * 0.6);
  color: #1f1f1f;
  width: calc(var(--font-10) * 105);
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .page-res__content {
    padding-top: 32px;
    width: auto;
  }
}
.page-res__icon {
  margin-bottom: calc(var(--font-10) * 1);
}
@media screen and (max-width: 767px) {
  .page-res__icon {
    margin-bottom: 32px;
  }
}
.page-res__icon img {
  height: calc(var(--font-10) * 21.4);
  width: calc(var(--font-10) * 21.4);
}
@media screen and (max-width: 767px) {
  .page-res__icon img {
    height: 120px;
    width: 120px;
  }
}
.page-res__title {
  margin-top: 0;
  margin-bottom: calc(var(--font-10) * 2.4);
  font-size: calc(var(--font-10) * 7);
  font-family: "GothamProMedium", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .page-res__title {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 20px;
  }
}
.page-res__text {
  font-size: calc(var(--font-10) * 3);
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: calc(var(--font-10) * 4);
}
@media screen and (max-width: 767px) {
  .page-res__text {
    font-size: 18px;
    margin-bottom: 32px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-res__text br {
    display: none;
  }
}
.page-res__text b,
.page-res__text strong {
  font-weight: inherit !important;
  color: #B89A49;
}
.page-res__button {
  margin-bottom: calc(var(--font-10) * 4);
}
@media screen and (max-width: 767px) {
  .page-res__button {
    margin-bottom: 32px;
  }
}
.page-res__button .btn {
  width: calc(var(--font-10) * 72.5);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .page-res__button .btn {
    width: 289px;
    padding: 0;
  }
}
.page-res__bottom {
  font-size: calc(var(--font-10) * 3);
  line-height: 1.3;
  color: #777;
}
@media screen and (max-width: 767px) {
  .page-res__bottom {
    font-size: 18px;
  }
}

.item-trainings {
  margin-bottom: 60px;
}
.item-trainings__image {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .item-trainings__image {
    margin-bottom: 20px;
  }
}
.item-trainings__image a {
  display: block;
}
.item-trainings__image img {
  display: block;
  height: auto;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .item-trainings__image img {
    height: 220px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.item-trainings__title {
  margin-bottom: 16px;
  margin-top: 0;
  font-family: "GothamProMedium", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.24;
}
@media screen and (max-width: 767px) {
  .item-trainings__title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.item-trainings__excerpt {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .item-trainings__excerpt {
    font-size: 14px;
    line-height: 1.44;
  }
}
.item-trainings__price {
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .item-trainings__price {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
.item-trainings__button .btn {
  height: 44px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 193px;
  color: #000;
}
@media screen and (max-width: 767px) {
  .item-trainings__button .btn {
    width: 100%;
  }
}
.item-trainings__button .btn:hover {
  background: #b89a49;
  border-color: #b89a49;
}

.trainings-filter-menu h2 {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 32px;
  font-weight: 500;
  font-family: "GothamProMedium", sans-serif;
}
@media screen and (max-width: 767px) {
  .trainings-filter-menu h2 {
    display: none;
  }
}
.trainings-filter-menu ul li {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .trainings-filter-menu ul li {
    text-align: center;
  }
}
.trainings-filter-menu ul li a {
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.1;
  color: #000;
}
@media screen and (max-width: 767px) {
  .trainings-filter-menu ul li a {
    padding: 10px 8px;
    font-size: 18px;
    line-height: 1.5;
  }
}
.trainings-filter-menu ul li.active a {
  font-weight: 700;
}

.trainings-filter__wrap {
  padding: 0 16px 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .trainings-filter__wrap {
    display: none;
  }
}
.trainings-filter__button {
  background: #fff;
  padding-top: 12px;
}
.trainings-filter__button button {
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #b89a49;
  gap: 8px;
  font-family: "GothamProMedium", sans-serif;
  font-size: 14px;
  color: #000;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: none;
  -webkit-box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1490196078);
  position: relative;
  z-index: 2;
}
.trainings-filter__content {
  padding-top: 16px;
  background: #fff;
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 16px;
  right: 16px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.f-opened > .trainings-filter__content {
  visibility: visible;
  opacity: 1;
}
.trainings-filter__list {
  padding: 0;
  margin: 0;
  text-align: center;
  padding-bottom: 8px;
}
.trainings-filter__list li {
  margin-bottom: 16px;
  list-style: none;
  display: block;
}
@media screen and (max-width: 767px) {
  .trainings-filter__list li a {
    padding: 10px 8px;
    font-size: 18px;
    line-height: 1.5;
    text-transform: uppercase;
    display: inline-block;
  }
}
.trainings-filter__list li.active a {
  font-weight: 700;
}
.trainings-filter__mask {
  position: fixed;
  background: rgba(0, 0, 0, 0.2);
  left: 0;
  right: 0;
  top: 63px;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.f-opened > .trainings-filter__mask {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .trainings-content {
    margin-left: -5%;
    margin-right: -5%;
  }
}/*# sourceMappingURL=style.css.map */