.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

@media (min-width: 1400px) {
  .container {
    width: 100%;
    padding: 0 5%;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

.well-lg {
  padding: 24px;
  border-radius: 6px;
}

.well-sm {
  padding: 9px;
  border-radius: 3px;
}

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}

button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
  -o-transition: -o-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  -o-transition: transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

.modal-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-color: #000;
}

.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}

.modal-header {
  min-height: 16.42857143px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.42857143;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}

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

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  line-height: 1.42857143;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

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

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

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

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

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

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

.text-capitalize {
  text-transform: capitalize;
}

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  display: table;
  content: " ";
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}

input[type="file"] {
  display: block;
}

input[type="range"] {
  display: block;
  width: 100%;
}

select[multiple],
select[size] {
  height: auto;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #999;
}

.form-control::-webkit-input-placeholder {
  color: #999;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eee;
  opacity: 1;
}

textarea.form-control {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"] {
    line-height: 34px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}

.form-group {
  margin-bottom: 15px;
}

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}

.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}

.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}

.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}

.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

select.input-sm {
  height: 30px;
  line-height: 30px;
}

textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}

.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

select.form-group-sm .form-control {
  height: 30px;
  line-height: 30px;
}

textarea.form-group-sm .form-control,
select[multiple].form-group-sm .form-control {
  height: auto;
}

.form-group-sm .form-control-static {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

select.input-lg {
  height: 46px;
  line-height: 46px;
}

textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}

.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

select.form-group-lg .form-control {
  height: 46px;
  line-height: 46px;
}

textarea.form-group-lg .form-control,
select[multiple].form-group-lg .form-control {
  height: auto;
}

.form-group-lg .form-control-static {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

.has-feedback {
  position: relative;
}

.has-feedback .form-control {
  padding-right: 42.5px;
}

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}

.input-lg + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}

.input-sm + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}

.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}

.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}

.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}

@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.333333px;
  }
}

@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
  }
}

/* Markup: Skweb (skt.pw) */
@font-face {
  font-family: 'CoreSansWebfont';
  src: url("../fonts/CoreSansA15Thin.woff2") format("woff2"), url("../fonts/CoreSansA15Thin.woff") format("woff"), url("../fonts/CoreSansA15Thin.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'CoreSansWebfont';
  src: url("../fonts/CoreSansA35Light.woff2") format("woff2"), url("../fonts/CoreSansA35Light.woff") format("woff"), url("../fonts/CoreSansA35Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'CoreSansWebfont';
  src: url("../fonts/CoreSansA45Regular.woff2") format("woff2"), url("../fonts/CoreSansA45Regular.woff") format("woff"), url("../fonts/CoreSansA45Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'CoreSansWebfont';
  src: url("../fonts/CoreSansA55Medium.woff2") format("woff2"), url("../fonts/CoreSansA55Medium.woff") format("woff"), url("../fonts/CoreSansA55Medium.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

.full-bg {
  background-position: center center;
  background-size: cover !important;
}

.full-screen-height {
  height: 100%;
  width: 100%;
}

.abs-link {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  display: block;
  overflow: hidden;
  text-indent: -9999px;
}

html,
body {
  height: 100%;
}

body {
  width: 100%;
  color: #000;
  font: 15px CoreSansWebfont,Arial,sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: #0F0F0F;
}

@media (min-width: 768px) {
  body {
    height: 100vh;
    overflow: hidden;
  }
}

a {
  text-decoration: none;
  color: blue;
}

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

button {
  outline: none;
  cursor: pointer;
  background: none;
  border: none;
  display: inline-block;
}

body div.scrollbar-track-y {
  background-color: transparent !important;
  width: 25px !important;
  z-index: 50 !important;
}

body div.scrollbar-track-y .scrollbar-thumb {
  background: none !important;
  border-radius: 30px;
  bottom: 4px;
  left: 0;
  top: 4px;
  width: 100%;
}

body div.scrollbar-track-y .scrollbar-thumb:after {
  content: "";
  display: block;
  clear: both;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  bottom: 0;
  left: 50%;
  position: absolute;
  top: 0;
  width: 5px;
}

body div.scrollbar-track-y .scrollbar-thumb:hover {
  background-color: #ccc;
}

@media (min-width: 768px) {
  .main-page-holder {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 3;
  }
}

.container {
  width: 100%;
  padding: 0 8%;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    padding: 0 4%;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 8%;
  }
}

.global-close-btn {
  position: absolute;
  right: 50px;
  top: 50px;
  width: 20px;
  height: 20px;
  background: none;
  outline: none;
  border: none;
  z-index: 5;
}

@media (max-width: 767px) {
  .global-close-btn {
    top: 40px;
    right: 30px;
  }
}

.global-close-btn:before, .global-close-btn:after {
  content: "";
  display: block;
  clear: both;
  height: 2px;
  background-color: #FEE441;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  width: 135%;
  top: 0;
  margin-top: 8px;
  margin-left: -3px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.global-close-btn:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.tab-content > .tab-pane {
  display: none;
  visibility: hidden;
}

.tab-content > .active {
  display: block;
  visibility: visible;
}

@-webkit-keyframes scrollBottomScale {
  0% {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 1;
  }
  100% {
    top: -120px;
    left: -120px;
    bottom: -120px;
    right: -120px;
    opacity: 0;
  }
}

@keyframes scrollBottomScale {
  0% {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 1;
  }
  100% {
    top: -120px;
    left: -120px;
    bottom: -120px;
    right: -120px;
    opacity: 0;
  }
}

@-webkit-keyframes scale1 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  35% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0.8;
  }
  60% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale1 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  35% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0.8;
  }
  60% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.read-more-btn {
  display: inline-block;
  position: relative;
  font-size: 12px;
  color: #ff5841;
  text-transform: uppercase;
  font-weight: bold;
}

.read-more-btn:hover i:before {
  color: #fff;
  -webkit-transform: scale(1.4);
  -ms-transform: scale(1.4);
  transform: scale(1.4);
}

.read-more-btn:hover i:after {
  background: #fff;
  opacity: 0;
}

.read-more-btn i {
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  width: 36px;
  height: 36px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.read-more-btn i:before {
  content: "";
  display: block;
  clear: both;
  content: '-';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-style: normal;
  font-size: 27px;
  color: #ff5841;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.read-more-btn i:after {
  content: "";
  display: block;
  clear: both;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid #FE5C4A;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.read-more-btn span {
  display: inline-block;
  vertical-align: middle;
  padding-left: 21px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.read-more-btn em {
  font-style: normal;
  display: block;
}

.read-more-btn b {
  display: none;
}

.read-more-btn.collapsed i:before {
  content: '+';
}

.read-more-btn.collapsed b {
  display: block;
}

.read-more-btn.collapsed em {
  display: none;
}

.readmore-link {
  color: #000;
  font-size: 15px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*@media (max-width: 767px) {*/
/*  .readmore-link {*/
/*    font-size: 8vw;*/
/*  }*/
/*}*/

.readmore-link:hover {
  color: #ff5841;
}

.readmore-link:hover:after {
  border-color: transparent;
  background: #FE5C4A;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

.readmore-link:hover span:before {
  background: #fff;
}

.readmore-link:hover span:after {
  border-color: #fff;
}

.readmore-link:after {
  content: "";
  display: block;
  clear: both;
  border-radius: 50%;
  border: 1px solid #FD7E6E;
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -32px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media (max-width: 767px) {
  .readmore-link:after {
    width: 32px;
    height: 32px;
    margin-top: -16px;
  }
}

.readmore-link span {
  padding-right: 90px;
  display: inline-block;
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  .readmore-link span {
    padding-right: 60px;
  }
}

.readmore-link span:after {
  content: "";
  display: block;
  clear: both;
  position: absolute;
  right: 27px;
  top: 50%;
  display: inline-block;
  border: solid #000000;
  border-width: 0 1px 1px 0;
  padding: 5px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: -7px;
}

@media (max-width: 767px) {
  .readmore-link span:after {
    margin-top: -4px;
  }
}

.readmore-link span:before {
  content: "";
  display: block;
  clear: both;
  position: absolute;
  top: 50%;
  height: 1px;
  background: #000;
  right: 25px;
  width: 45px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: -2px;
}

@media (max-width: 767px) {
  .readmore-link span:before {
    width: 30px;
    margin-top: 0;
  }
}

.readmore-link._mod-white {
  color: #fff;
  text-transform: uppercase;
}

.readmore-link._mod-white:hover {
  color: #fff;
}

.readmore-link._mod-white i {
  font-weight: normal;
  font-style: normal;
}

.readmore-link._mod-white span:before {
  background: #fff;
}

.readmore-link._mod-white span:after {
  border-color: #fff;
}

.fake-cursor {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid #FE5C4A;
  width: 28px;
  height: 28px;
  margin-top: 0;
  border-radius: 100%;
  -webkit-transition: 0.3s cubic-bezier(0.75, -0.27, 0.3, 1.33) background-color, 0.3s ease border-color;
  -o-transition: 0.3s cubic-bezier(0.75, -0.27, 0.3, 1.33) background-color, 0.3s ease border-color;
  transition: 0.3s cubic-bezier(0.75, -0.27, 0.3, 1.33) background-color, 0.3s ease border-color;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  top: 0;
  left: 0;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}

@media (max-width: 767px) {
  .fake-cursor {
    display: none;
  }
}

.fake-cursor:before {
  content: "";
  display: block;
  clear: both;
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  background: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
  opacity: 0;
}

.fake-cursor:after {
  content: "";
  display: block;
  clear: both;
  position: absolute;
  top: -11px;
  left: -11px;
  right: -11px;
  bottom: -11px;
  border: 1px solid #FE5C4A;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fake-cursor i {
  position: absolute;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  margin-top: -9px;
  margin-left: -9px;
  background-color: rgba(255, 88, 65, 0.2);
  display: block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  border-radius: 50%;
}

.fake-cursor i:before, .fake-cursor i:after {
  content: "";
  display: block;
  clear: both;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  margin-left: 1px;
  left: 100%;
  display: inline-block;
  border: solid #FD5C49;
  border-width: 0 1px 1px 0;
  padding: 7px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: opacity 0.3s ease,-webkit-transform;
  transition: opacity 0.3s ease,-webkit-transform;
  -o-transition: transform,opacity 0.3s ease;
  transition: transform,opacity 0.3s ease;
  transition: transform,opacity 0.3s ease,-webkit-transform;
}

.fake-cursor i:before {
  left: auto;
  right: 100%;
  margin-right: 2px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.fake-cursor.active {
  border-color: transparent;
  background-color: rgba(253, 92, 73, 0.41);
}

.fake-cursor.active:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.fake-cursor.active.can-zoom {
  border-color: transparent;
  background: #000;
}

.fake-cursor.active.can-zoom:before {
  content: '+';
  color: #fff;
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  text-align: center;
  line-height: 42px;
  z-index: 3;
  font-size: 40px;
  font-weight: 300;
  background: none;
}

.fake-cursor.active.can-zoom:after {
  background: #000;
  border: none;
}

.fake-cursor.active.can-prev {
  border-color: transparent;
  background: #000;
}

.fake-cursor.active.can-prev:before {
  opacity: 0;
}

.fake-cursor.active.can-prev:after {
  background: #FE5C4A;
}

.fake-cursor.active.can-prev i {
  opacity: 1;
  z-index: 3;
}

.fake-cursor.active.can-prev i:before {
  -webkit-transform: rotate(135deg) translateX(0);
  -ms-transform: rotate(135deg) translateX(0);
  transform: rotate(135deg) translateX(0);
  border-color: #fff;
  right: auto;
  left: 20%;
  margin-top: -9px;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.fake-cursor.active.can-prev i:after {
  opacity: 0;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.fake-cursor.active.can-next {
  border-color: transparent;
  background: #000;
}

.fake-cursor.active.can-next:before {
  opacity: 0;
}

.fake-cursor.active.can-next:after {
  background: #FE5C4A;
}

.fake-cursor.active.can-next i {
  opacity: 1;
  z-index: 3;
}

.fake-cursor.active.can-next i:before {
  opacity: 0;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.fake-cursor.active.can-next i:after {
  left: auto;
  right: 35%;
  margin-top: -9px;
  border-color: #fff;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-transform: rotate(-45deg) translateX(0);
  -ms-transform: rotate(-45deg) translateX(0);
  transform: rotate(-45deg) translateX(0);
}

.fake-cursor.can-drag {
  border-color: transparent;
  background-color: transparent;
}

.fake-cursor.can-drag i {
  opacity: 1;
}

.fake-cursor.can-drag i:before {
  -webkit-transform: rotate(135deg) translateX(0);
  -ms-transform: rotate(135deg) translateX(0);
  transform: rotate(135deg) translateX(0);
}

.fake-cursor.can-drag i:after {
  -webkit-transform: rotate(-45deg) translateX(0);
  -ms-transform: rotate(-45deg) translateX(0);
  transform: rotate(-45deg) translateX(0);
}

.fake-cursor.can-drag.active {
  background: transparent;
}

.fake-cursor.can-drag.active i:before {
  right: 60%;
  opacity: 0;
}

.fake-cursor.can-drag.active i:after {
  left: 60%;
  opacity: 0;
}

.fake-cursor.can-drag.nexted {
  border-color: #fff;
  opacity: 1;
}

.fake-cursor.can-drag.nexted:before {
  opacity: 0;
}

.fake-cursor.can-drag.nexted i:before {
  right: 100%;
  opacity: 1;
}

.fake-cursor.can-drag.nexted i:after {
  left: 100%;
  opacity: 1;
}

.fake-cursor.can-drag.movedSlider i:before {
  border-color: #fff;
  margin-right: 15px;
}

.fake-cursor.can-drag.movedSlider i:after {
  border-color: #fff;
  margin-left: 15px;
}

.fake-cursor.can-close {
  border-color: transparent;
  background-color: transparent;
}

.fake-cursor.can-close:before {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  background-color: transparent;
  border: 1px solid #FD5C49;
}

.fake-cursor.can-close i {
  width: 27px;
  height: 27px;
  background: rgba(253, 92, 73, 0.4);
  opacity: 1;
  margin-top: -14px;
  margin-left: -14px;
}

.fake-cursor.can-close i:before, .fake-cursor.can-close i:after {
  content: "";
  display: block;
  clear: both;
  height: 1px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  width: 75%;
  top: 0;
  margin-top: 13px;
  margin-left: 4px;
  padding: 0;
  border: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.fake-cursor.can-close i:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.all-collections-link {
  display: inline-block;
  color: #000;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  background: none;
  outline: none;
  border: none;
}

.all-collections-link:hover {
  color: #FD5C49;
}

.all-collections-link:hover i:after {
  right: 11px;
}

.all-collections-link.btn-actived i:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 19px;
}

.all-collections-link.btn-actived i:after {
  right: 11px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: 18px;
}

.all-collections-link span {
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.all-collections-link i {
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  background: #FE5C4A;
  border: 1px solid #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  z-index: 3;
  width: 40px;
  height: 40px;
  margin-left: 19px;
}

.all-collections-link i:before, .all-collections-link i:after {
  content: "";
  display: block;
  clear: both;
  position: absolute;
  height: 1px;
  left: 11px;
  right: 11px;
  top: 16px;
  background: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.all-collections-link i:after {
  top: auto;
  bottom: 15px;
  right: 18px;
}

._g-show-more-link {
  border-radius: 50%;
  width: 130px;
  height: 130px;
  margin: 0 auto;
  background: #FD5C49;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

._g-show-more-link:hover {
  color: #fff;
  -webkit-box-shadow: 0 0 30px #FD5C49;
  box-shadow: 0 0 30px #FD5C49;
}

._g-show-more-link:hover:before {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  opacity: 0.4;
}

._g-show-more-link:before {
  content: "";
  display: block;
  clear: both;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid #FB6050;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
  opacity: 0;
}

._g-show-more-link span {
  position: relative;
  display: block;
  margin-top: -5px;
}

._g-show-more-link span:after {
  content: "";
  display: block;
  clear: both;
  display: inline-block;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  padding: 5px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  margin-top: 10px;
  top: 100%;
}

._g-plefted {
  padding-left: 71px;
}

@media (max-width: 767px) {
  ._g-plefted {
    padding-left: 0;
  }
}

html.modal-open,
html.modal-open {
  overflow-x: hidden;
}

body.modal-open {
  position: relative;
  overflow: hidden;
  padding-right: 15px !important;
}

body.modal-open .header-index {
  padding-right: 15px;
}

@media (max-width: 767px) {
  body.modal-open {
    padding-right: 0 !important;
  }
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.global-close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 15px;
  height: 15px;
  background: none;
  outline: none;
  border: none;
}

@media (max-width: 767px) {
  .global-close-btn {
    top: 40px;
    right: 30px;
  }
}

.global-close-btn:before, .global-close-btn:after {
  content: "";
  display: block;
  clear: both;
  height: 1px;
  background-color: #80679E;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  width: 135%;
  top: 0;
  margin-top: 8px;
  margin-left: -3px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.global-close-btn:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.all-products-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: none;
  background: #fff;
  padding: 180px 0 120px;
}

@media (max-width: 767px) {
  .all-products-modal {
    padding: 30px 0 20px;
    z-index: 30;
  }
}

.all-products-modal .products-pop-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: 100%;
}

@media (max-width: 767px) {
  .all-products-modal .nav-holder {
    width: 100%;
  }
}

.all-products-modal .container {
  position: relative;
}

@media (max-width: 767px) {
  .all-products-modal .container {
    height: 100%;
  }
}

.all-products-modal .container .global-close-btn {
  width: 35px;
  height: 35px;
  background: #FD5C49;
  border-radius: 50%;
  opacity: 1;
  right: 8%;
}

@media (max-width: 767px) {
  .all-products-modal .container .global-close-btn {
    top: 0px;
  }
}

.all-products-modal .container .global-close-btn:before, .all-products-modal .container .global-close-btn:after {
  width: 14px;
  background: #fff;
  left: 13px;
  top: 8px;
}

.all-products-modal .container .global-close-btn:after {
  content: "";
  display: block;
  clear: both;
}

.all-products-modal .nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 70px;
  position: relative;
}

@media (max-width: 767px) {
  .all-products-modal .nav-wrapper {
    padding: 0 10px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
}

.all-products-modal .nav-title {
  color: #6f6f6f;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  padding-bottom: 4vh;
}

@media (max-width: 767px) {
  .all-products-modal .nav-title {
    font-size: 16px;
  }
}

.all-products-modal .subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

@media (max-width: 767px) {
  .all-products-modal .subnav {
    height: 100%;
  }
}

.all-products-modal .subnav > li {
  position: relative;
}

@media (max-width: 767px) {
  .all-products-modal .subnav > li {
    border-bottom: 1px solid #F2F2F2;
  }
}

@media (max-width: 767px) {
  .all-products-modal .subnav > li:last-child {
    border: none;
  }
}

.all-products-modal .subnav > li > a {
  color: #000;
  display: inline-block;
  font-size: 44px;
  font-weight: 500;
  padding: 2.5vh 0;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

@media (min-width: 768px) and (max-width: 991px) {
  .all-products-modal .subnav > li > a {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .all-products-modal .subnav > li > a {
    font-size: 5vw;
    display: block;
  }
}

.all-products-modal .subnav > li > a:hover {
  color: #ff5841;
}

.all-products-modal .subnav > li .expand {
  display: none;
}

@media (max-width: 767px) {
  .all-products-modal .subnav > li .expand {
    content: "";
    display: block;
    clear: both;
    position: absolute;
    margin-top: -10px;
    right: 5px;
    top: 3vh;
    width: 30px;
    height: 30px;
    background: none;
    text-align: center;
    padding: 0;
  }
  .all-products-modal .subnav > li .expand:after {
    content: "";
    display: block;
    clear: both;
    display: inline-block;
    border: solid #FD5C49;
    border-width: 0 2px 2px 0;
    padding: 5px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -5px;
  }
}

.all-products-modal .subnav > li .expand.active {
  margin-top: -10px;
}

.all-products-modal .subnav > li .expand.active:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

@media (min-width: 768px) {
  .all-products-modal .subnav li.with-drop:after {
    content: "";
    display: block;
    clear: both;
    position: absolute;
    left: 100%;
    margin-left: 10px;
    height: 1px;
    background: #FEA79C;
    top: 50%;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 0;
    opacity: 0;
    margin-top: -1px;
  }
  .all-products-modal .subnav li.with-drop:hover > a {
    color: #ff5841;
  }
  .all-products-modal .subnav li.with-drop:hover:after {
    width: 25px;
    opacity: 1;
  }
  .all-products-modal .subnav li.with-drop:hover .nav-drop {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.all-products-modal .subnav > li.active > a {
  color: #e0e0e0;
}

@media (min-width: 768px) {
  .all-products-modal .subnav .nav-drop.bottomed {
    top: auto;
    bottom: -20px;
  }
}

@media (min-width: 768px) {
  .all-products-modal .subnav .nav-drop {
    position: absolute;
    left: 100%;
    padding-left: 85px;
    top: 0;
    padding-top: 20px;
    text-transform: uppercase;
    width: 290px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
    visibility: hidden;
    opacity: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .all-products-modal .subnav .nav-drop {
    padding-left: 50px;
  }
}

@media (max-width: 767px) {
  .all-products-modal .subnav .nav-drop {
    padding-left: 30px;
    display: none;
  }
}

.all-products-modal .subnav .nav-drop .drop-name {
  display: block;
  color: #bebebe;
  font-size: 12px;
  font-weight: 500;
  padding-bottom: 4vh;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .all-products-modal .subnav .nav-drop ul {
    padding-bottom: 10px;
  }
}

.all-products-modal .subnav .nav-drop ul li a {
  padding: 1.5vh 0 1.5vh;
  display: block;
  font-weight: 500;
  font-size: 17px;
  color: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .all-products-modal .subnav .nav-drop ul li a {
    color: #6f6f6f;
    padding: 5px 0;
  }
}

.all-products-modal .subnav .nav-drop ul li a:hover {
  color: #ff5841;
}

.all-products-modal .subnav .nav-drop ul li:first-child a {
  padding-top: 0;
}

.order-pop-box {
  position: fixed;
  right: 0;
  width: 100%;
  top: 0;
  height: 100%;
  z-index: 100;
  display: none;
}

@media (max-width: 767px) {
  .order-pop-box {
    background: #fff;
  }
}

.order-pop-box .close {
  display: none;
}

@media (max-width: 767px) {
  .order-pop-box .close {
    width: 35px;
    height: 35px;
    background: #FD5C49;
    display: block;
    opacity: 1;
    border-radius: 50%;
    right: 8%;
  }
  .order-pop-box .close:before, .order-pop-box .close:after {
    width: 14px;
    background: #fff;
    left: 13px;
    top: 8px;
  }
  .order-pop-box .close:after {
    content: "";
    display: block;
    clear: both;
  }
}

.order-pop-box .close-button {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.order-pop-box .close-button:hover {
  opacity: 0.5;
}

.order-pop-box .order-wrap {
  position: absolute;
  right: 0;
  width: 100%;
  overflow: hidden;
  top: 0;
  height: 100%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media (min-width: 768px) {
  .order-pop-box .order-wrap {
    width: 0;
  }
}

.order-pop-box .order-holder {
  width: 600px;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

@media (max-width: 767px) {
  .order-pop-box .order-holder {
    width: 100%;
  }
}

.order-pop-box form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 0 110px;
  width: 100%;
}

@media (max-width: 767px) {
  .order-pop-box form {
    padding: 0 8%;
  }
}

.order-pop-box form .form-group {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .order-pop-box form .form-group {
    margin-bottom: 10px;
  }
}

.order-pop-box form .form-subtitle {
  display: block;
  font-size: 11px;
  font-weight: bold;
  color: #ef462e;
  text-transform: uppercase;
  padding-bottom: 20px;
}

.order-pop-box form .form-title {
  display: block;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  font-size: 34px;
  padding-bottom: 7vh;
}

.order-pop-box form .input-wrap .form-control {
  padding-left: 10px;
}

.order-pop-box form .input-wrap .title-label {
  left: 10px;
  font-weight: bold;
}

.order-pop-box form textarea.form-control {
  padding-left: 10px;
  resize: vertical;
}

.order-pop-box form .button-wrap {
  padding-top: 7vh;
}

@media (max-width: 767px) {
  .order-pop-box form .button-wrap {
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  .order-pop-box form .button-wrap .readmore-link {
    display: block;
    padding: 0 0 0 20px;
  }
  .order-pop-box form .button-wrap .readmore-link span:before {
    right: 14px;
    width: 30px;
    margin-top: -1px;
  }
  .order-pop-box form .button-wrap .readmore-link span:after {
    right: 13px;
    margin-top: -6px;
  }
}

@media (min-width: 768px) {
  .order-pop-box.opened .order-wrap {
    width: 600px;
  }
}

.head-flex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.head-flex .logo {
  color: #fff;
  display: block;
  /*margin-left: -20px;*/
  /*padding-left: 79px;*/
  /*position: relative;*/
}

/*@media (max-width: 767px) {*/
/*  .head-flex .logo {*/
/*    margin-left: 0;*/
/*    padding-left: 68px;*/
/*  }*/
/*}*/

.head-flex .logo:hover span {
  color: #ff5841;
}

/*.head-flex .logo img {*/
/*  left: 0;*/
/*  position: absolute;*/
/*  top: 0;*/
/*}*/

/*@media (max-width: 767px) {*/
/*  .head-flex .logo img {*/
/*    width: 56px;*/
/*  }*/
/*}*/

.head-flex .logo .logo-text {
  padding-left: 12px;
  padding-top: 20px;
  font-style: normal;
  display: block;
}

@media (max-width: 767px) {
  .head-flex .logo .logo-text {
    padding-left: 0;
    padding-top: 10px;
  }
}

.head-flex .logo span {
  display: block;
  font-size: 36px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .head-flex .logo span {
    font-size: 27px;
  }
}

.head-flex .logo em {
  display: block;
  font-size: 9px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 4px;
  padding-left: 2px;
  text-transform: uppercase;
  color: #868686;
}

@media (max-width: 767px) {
  .head-flex .logo em {
    font-size: 8px;
    letter-spacing: 2.3px;
  }
}

.head-flex .logo-col {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  width: 430px;
  padding: 3px 0 8px;
}

.head-flex .logo-col:before {
  content: "";
  display: block;
  clear: both;
  background: rgba(255, 255, 255, 0.05);
  height: 90px;
  left: 65%;
  position: absolute;
  top: 0;
  width: 1px;
}

@media (max-width: 767px) {
  .head-flex .logo-col:before {
    display: none;
  }
}

@media (max-width: 767px) {
  .head-flex .logo-col {
    width: 100%;
  }
}

.head-flex .menu-btn {
  height: 50px;
  padding: 0 0 0 75px;
  position: relative;
  font-size: 11px;
}

@media (max-width: 767px) {
  .head-flex .menu-btn {
    padding-left: 50px;
    margin-top: 5px;
  }
}

.head-flex .menu-btn:hover span {
  background: #ff5841;
}

.head-flex .menu-btn:hover span:before {
  background: #ff5841;
}

.head-flex .menu-btn:hover span:after {
  background: #ff5841;
  width: 100%;
}

.head-flex .menu-btn:hover em {
  color: #ff5841;
}

.head-flex .menu-btn span {
  background: #fff;
  display: block;
  height: 2px;
  left: 14px;
  position: absolute;
  top: 24px;
  width: 30px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .head-flex .menu-btn span {
    height: 2px;
    left: 15px;
    right: 15px;
    top: 24px;
  }
}

.head-flex .menu-btn span:before, .head-flex .menu-btn span:after {
  content: "";
  display: block;
  clear: both;
  background-color: #fff;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  height: 2px;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.head-flex .menu-btn span:before {
  top: -9px;
  -webkit-transition-property: background-color, top, -webkit-transform;
  transition-property: background-color, top, -webkit-transform;
  -o-transition-property: background-color, top, transform;
  transition-property: background-color, top, transform;
  transition-property: background-color, top, transform, -webkit-transform;
}

@media (max-width: 767px) {
  .head-flex .menu-btn span:before {
    top: -9px;
  }
}

.head-flex .menu-btn span:after {
  bottom: -9px;
  -webkit-transition-property: width, bottom, -webkit-transform;
  transition-property: width, bottom, -webkit-transform;
  -o-transition-property: width, bottom, transform;
  transition-property: width, bottom, transform;
  transition-property: width, bottom, transform, -webkit-transform;
  width: 60%;
}

@media (max-width: 767px) {
  .head-flex .menu-btn span:after {
    bottom: -9px;
    width: 100%;
  }
}

.head-flex .menu-btn em {
  font-style: normal;
  display: block;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .head-flex .menu-btn em {
    display: none;
  }
}

header {
  left: 0;
  position: absolute;
  top: 70px;
  width: 100%;
  z-index: 26;
}

header:after {
  content: "";
  display: block;
  clear: both;
}

@media (max-width: 767px) {
  header {
    top: 30px;
  }
}

@media (max-width: 767px) and (orientation: landscape) {
  header {
    top: 20px;
  }
}

header .lang-col {
  border-left: 1px solid rgba(255, 255, 255, 0.21);
  padding: 12px 0 12px 33px;
}

@media (max-width: 767px) {
  header .lang-col {
    display: none;
  }
}

header .lang-col .lang-box {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 4;
}

header .lang-col .lang-box .dropdown-backdrop {
  display: none;
}

header .lang-col .lang-box .current-lang {
  color: #fff;
  display: block;
  font-size: 15px;
  font-weight: 500;
  padding: 5px 24px 5px 0;
  position: relative;
}

header .lang-col .lang-box .current-lang:before {
  content: "";
  display: block;
  clear: both;
  border: solid rgba(255, 255, 255, 0.71);
  border-width: 0 1px 1px 0;
  display: inline-block;
  right: 0;
  margin-top: -6px;
  padding: 3px;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

header .lang-col .lang-box .current-lang:hover img {
  border-color: rgba(0, 0, 0, 0.8);
}

header .lang-col .lang-box .current-lang:hover:before {
  border-color: rgba(255, 255, 255, 0.4);
}

header .lang-col .lang-box .current-lang:hover:after {
  border-color: #fff;
}

header .lang-col .lang-box .current-lang img {
  border-radius: 50%;
}

header .lang-col .lang-box.open .langs-drop {
  display: block;
}

header .lang-col .lang-box.open .current-lang img {
  border-color: rgba(255, 255, 255, 0.8);
}

header .lang-col .lang-box.open .current-lang:after {
  border-color: #fff;
}

header .lang-col .langs-drop {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 22px;
  -webkit-box-shadow: 0 0 93px rgba(63, 86, 130, 0.1);
  box-shadow: 0 0 93px rgba(63, 86, 130, 0.1);
  display: none;
  margin-top: 10px;
  padding: 18px 17px 20px 22px;
  position: absolute;
  right: -10px;
  text-align: left;
  top: 100%;
  width: 85px;
}

header .lang-col .langs-list li:last-child a span {
  border-top: 1px solid rgba(124, 124, 124, 0.4);
}

header .lang-col .langs-list a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  font-size: 14px;
  font-weight: bold;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 3px 0 0;
  text-transform: uppercase;
}

header .lang-col .langs-list a:hover {
  color: #ff5841;
}

header .lang-col .langs-list a span {
  display: block;
  padding: 15px 0;
  text-align: center;
  width: 36px;
}

header.header-black .logo {
  color: #000;
}

header.header-black .head-flex .logo-col:before {
  background: #E4E4E4;
}

header.header-black .menu-btn span {
  background: #000;
}

header.header-black .menu-btn span:before, header.header-black .menu-btn span:after {
  background: #000;
}

header.header-black .menu-btn em {
  color: #000;
}

header.header-black .lang-col {
  border-color: #E4E4E4;
}

header.header-black .lang-col .lang-box .current-lang {
  color: #000;
}

header.header-black .lang-col .lang-box .current-lang:before {
  border-color: #000;
}

.site-menu-box {
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

@media (max-width: 767px) {
  .site-menu-box {
    background: #fff;
    height: 100vh;
  }
}

@media (min-width: 768px) {
  .site-menu-box.opened:after {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
    -webkit-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease;
  }
  .site-menu-box.opened .menu-wrap {
    opacity: 1;
    -webkit-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }
  .site-menu-box.opened .head-flex {
    opacity: 1;
    -webkit-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }
}

@media (min-width: 768px) {
  .site-menu-box:after {
    content: "";
    display: block;
    clear: both;
    position: absolute;
    left: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    background: #F57153;
    z-index: 11;
    -webkit-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
  }
}

.site-menu-box .close-button {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .site-menu-box .close-button {
    display: none;
  }
}

.site-menu-box .close-button:hover {
  opacity: 0.5;
}

.site-menu-box .head-flex {
  position: absolute;
  left: 8%;
  top: 70px;
  z-index: 6;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  max-width: 600px;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

@media (max-width: 767px) {
  .site-menu-box .head-flex {
    top: 30px;
    width: auto;
    right: 5%;
    opacity: 1;
  }
}

.site-menu-box .head-flex .logo {
  color: #000;
}

/*@media (max-width: 767px) {*/
/*  .site-menu-box .head-flex .logo {*/
/*    padding-left: 60px;*/
/*  }*/
/*}*/

.site-menu-box .head-flex .logo em {
  color: #868686;
}

/*@media (max-width: 767px) {*/
/*  .site-menu-box .head-flex .menu-btn {*/
/*    position: absolute;*/
/*    right: 0;*/
/*    z-index: 5;*/
/*    margin-top: 0;*/
/*    top: 10px;*/
/*  }*/
/*}*/

.site-menu-box .head-flex .menu-btn:hover span:before, .site-menu-box .head-flex .menu-btn:hover span:after {
  background: #fff;
}

.site-menu-box .head-flex .menu-btn:before {
  content: "";
  display: block;
  clear: both;
  width: 44px;
  height: 44px;
  background: #FD5C49;
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 3px;
}

@media (max-width: 767px) {
  .site-menu-box .head-flex .menu-btn:before {
    width: 36px;
    height: 36px;
  }
}

.site-menu-box .head-flex .menu-btn span {
  background-color: transparent;
}

@media (max-width: 767px) {
  .site-menu-box .head-flex .menu-btn span {
    width: 17px;
    left: 14px;
    top: 20px;
  }
}

.site-menu-box .head-flex .menu-btn span:before {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -10px;
  left: 3px;
}

@media (max-width: 767px) {
  .site-menu-box .head-flex .menu-btn span:before {
    left: 4px;
    top: -6px;
  }
}

.site-menu-box .head-flex .menu-btn span:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 100%;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  bottom: -11px;
  left: 1px;
}

@media (max-width: 767px) {
  .site-menu-box .head-flex .menu-btn span:after {
    bottom: -6px;
    left: 2px;
  }
}

.site-menu-box .head-flex .menu-btn em {
  color: #000;
  font-weight: bold;
}

.site-menu-box .menu-wrap {
  position: absolute;
  width: 70%;
  max-width: 900px;
  min-width: 800px;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

@media (max-width: 767px) {
  .site-menu-box .menu-wrap {
    width: 100%;
    min-width: 0;
    top: 110px;
    height: auto;
    bottom: 0;
    opacity: 1;
  }
}

.site-menu-box .menu-holder {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  left: 0;
  padding-left: 8%;
  position: absolute;
  top: 0;
  width: 80%;
  z-index: 3;
  max-width: 900px;
  min-width: 800px;
}

@media (max-width: 767px) {
  .site-menu-box .menu-holder {
    min-width: 0;
    padding-bottom: 10px;
    padding-right: 7%;
    width: 100%;
    opacity: 1;
    position: static;
    overflow-x: hidden;
    overflow-y: auto;
  }
}

@media (max-width: 767px) and (orientation: landscape) {
  .site-menu-box .menu-holder {
    padding-bottom: 10px;
  }
}

.site-menu-box .menu-holder:before {
  content: "";
  display: block;
  clear: both;
  background: #fff;
  height: 100%;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
  z-index: 3;
  display: none;
}

@media (max-width: 767px) {
  .site-menu-box .menu-holder:before {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .site-menu-box .menu-holder {
    padding-left: 4%;
  }
}

.site-menu-box .menu-flex {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 170px 0 10vh 65px;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
}

@media (max-width: 767px) {
  .site-menu-box .menu-flex {
    height: auto;
    display: block;
    padding: 0 0 15px 0;
  }
}

.site-menu-box .menu-box {
  width: 55%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-bottom: 5vh;
}

@media (max-width: 767px) {
  .site-menu-box .menu-box {
    width: 100%;
    padding: 0 10px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}

.site-menu-box .info-box {
  position: relative;
  padding-top: 4vh;
}

.site-menu-box .info-box:before {
  content: "";
  display: block;
  clear: both;
  height: 2px;
  width: 42px;
  background: #FD5C49;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 767px) {
  .site-menu-box .info-box:before {
    display: none;
  }
}

@media (max-width: 767px) {
  .site-menu-box .info-box .phone-box {
    padding-bottom: 4vh;
  }
}

.site-menu-box .info-box .phone-box .tel {
  color: #000;
  display: inline-block;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .site-menu-box .info-box .phone-box .tel {
    font-size: 21px;
  }
}

.site-menu-box .info-box .phone-box .adr {
  color: #727272;
  display: block;
  font-size: 15px;
}

@media (max-width: 767px) {
  .site-menu-box .info-box .phone-box .adr {
    font-size: 14px;
  }
}

.site-menu-box .info-box .mail-row {
  display: none;
}

@media (max-width: 767px) {
  .site-menu-box .info-box .mail-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    text-align: center;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.site-menu-box .info-box .mail-row a {
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  font-weight: bold;
}

.site-menu-box .info-box .mail-row .xs-soc-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 25px;
  text-decoration: none;
  color: #000;
  font-size: 12px;
}

.site-menu-box .info-box .mail-row .xs-soc-link span {
  display: block;
  vertical-align: middle;
  padding-left: 12px;
}

.site-menu-box .info-box .mail-row .xs-soc-link em {
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  background: none;
  border: 1px solid #ccc;
  border-radius: 50%;
  line-height: 28px;
}

.site-menu-box nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

@media (max-width: 767px) {
  .site-menu-box nav > ul {
    height: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.site-menu-box nav > ul > li {
  position: relative;
}

@media (max-width: 767px) {
  .site-menu-box nav > ul > li {
    width: 100%;
    border-bottom: 1px solid #F2F2F2;
  }
}

@media (min-width: 768px) {
  .site-menu-box nav > ul > li:last-child > a {
    padding-bottom: 0;
  }
}

.site-menu-box nav > ul > li > a {
  color: #000;
  display: inline-block;
  font-size: 37px;
  font-weight: bold;
  padding: 3vh 0;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .site-menu-box nav > ul > li > a {
    font-size: 7vw;
    display: block;
  }
}

@media (max-width: 767px) and (orientation: landscape) {
  .site-menu-box nav > ul > li > a {
    font-size: 20px;
  }
}

.site-menu-box nav > ul > li > a:hover {
  color: #ff5841;
}

.site-menu-box nav > ul li.with-drop:after {
  content: "";
  display: block;
  clear: both;
  position: absolute;
  left: 65%;
  height: 2px;
  background: #FEA79C;
  top: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 0;
  opacity: 0;
  margin-top: -1px;
}

@media (max-width: 767px) {
  .site-menu-box nav > ul li.with-drop:after {
    display: none;
  }
}

.site-menu-box nav > ul li.with-drop .expand {
  display: none;
}

@media (max-width: 767px) {
  .site-menu-box nav > ul li.with-drop .expand {
    content: "";
    display: block;
    clear: both;
    position: absolute;
    margin-top: -13px;
    right: 5px;
    top: 5vh;
    width: 30px;
    height: 30px;
    background: none;
    text-align: center;
    padding: 0;
  }
  .site-menu-box nav > ul li.with-drop .expand:after {
    content: "";
    display: block;
    clear: both;
    display: inline-block;
    border: solid #FD5C49;
    border-width: 0 2px 2px 0;
    padding: 5px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -5px;
  }
}

.site-menu-box nav > ul li.with-drop .expand.active {
  margin-top: -10px;
}

.site-menu-box nav > ul li.with-drop .expand.active:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

@media (min-width: 768px) {
  .site-menu-box nav > ul li.with-drop:hover > a {
    color: #ff5841;
  }
  .site-menu-box nav > ul li.with-drop:hover:after {
    width: 40px;
    opacity: 1;
  }
  .site-menu-box nav > ul li.with-drop:hover .nav-drop {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.site-menu-box nav > ul > li.active > a {
  color: #e0e0e0;
}

.site-menu-box nav > ul .nav-drop {
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .site-menu-box nav > ul .nav-drop {
    width: 290px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 100%;
    padding-left: 60px;
    top: -10px;
  }
}

@media (max-width: 767px) {
  .site-menu-box nav > ul .nav-drop {
    display: none;
    width: 100%;
    padding-left: 30px;
  }
}

.site-menu-box nav > ul .nav-drop .drop-name {
  display: block;
  color: #bebebe;
  font-size: 12px;
  font-weight: 500;
  padding-bottom: 4vh;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .site-menu-box nav > ul .nav-drop .drop-name {
    padding-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .site-menu-box nav > ul .nav-drop ul {
    padding-bottom: 10px;
  }
}

.site-menu-box nav > ul .nav-drop ul li a {
  padding: 2vh 0 1.5vh;
  display: block;
  font-weight: bold;
  font-size: 17px;
  color: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .site-menu-box nav > ul .nav-drop ul li a {
    font-size: 14px;
    font-weight: 500;
    padding: 5px 0;
  }
}

.site-menu-box nav > ul .nav-drop ul li a:hover {
  color: #ff5841;
}

.site-menu-box nav > ul .nav-drop ul li:first-child a {
  padding-top: 0;
}


  .site-menu-box .lang-box {
    padding: 0 30px 0 30px;
    position: relative;
    /*width: 100%;*/
    z-index: 4;
    text-align: center;
  }
  .site-menu-box .lang-box .dropdown-backdrop {
    display: none;
  }
  .site-menu-box .lang-box .current-lang {
    color: #000;
    display: block;
    font-size: 20px;
    font-weight: 500;
    padding: 2px 0 5px 0;
    position: relative;
  }
  .site-menu-box .lang-box .current-lang span {
    display: inline-block;
    position: relative;
  }
  .site-menu-box .lang-box .current-lang span:before {
    content: "";
    display: block;
    clear: both;
    border: solid #000;
    border-width: 0 1px 1px 0;
    display: inline-block;
    left: 50%;
    margin-top: 4px;
    margin-left: -3px;
    padding: 2px;
    position: absolute;
    top: 100%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .site-menu-box .lang-box .current-lang img {
    border-radius: 50%;
  }
  .site-menu-box .lang-box.open .langs-drop {
    display: block;
  }
  .site-menu-box .lang-box.open .current-lang img {
    border-color: rgba(255, 255, 255, 0.8);
  }
  .site-menu-box .lang-box.open .current-lang:after {
    border-color: #fff;
  }
  .site-menu-box .langs-drop {
    background: #FE5C49;
    border-radius: 12px;
    top: 100%;
    display: none;
    left: 50%;
    margin-left: -55px;
    margin-bottom: -1px;
    padding: 12px 20px 10px 20px;
    position: absolute;
    text-align: left;
    width: 75px;
  }
  .site-menu-box .langs-list li:last-child a span {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
  }
  .site-menu-box .langs-list a {
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: inherit;
    padding: 0 3px 0 0;
  }
  .site-menu-box .langs-list a span {
    display: block;
    font-size: 20px;
    padding: 10px 0;
  }

/* INDEX TOP SECT */
.index-top-section {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .index-top-section {
    min-height: 550px;
  }
}

.index-top-section .sect-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

@media (max-width: 767px) {
  .index-top-section .sect-bg {
    background: url(../images/index-top-sect-bg-xs.jpg?v=2) no-repeat 50% 0;
    background-size: cover;
  }
}

.index-top-section .sect-bg .video-bg-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
}

@media (min-width: 768px) {
  .index-top-section .sect-bg .video-bg-wrap {
    display: block;
  }
}

.index-top-section .sect-bg .video-bg-wrap:before {
  content: "";
  display: block;
  clear: both;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #000;
  opacity: 0.4;
}

@media (max-width: 767px) {
  .index-top-section .sect-bg .video-bg-wrap {
    display: none;
  }
}

.index-top-section .sect-bg .video-bg-wrap video {
  min-width: 100%;
  min-height: 100%;
  display: block;
}

.index-top-section .content-box {
  position: absolute;
  bottom: 10%;
  z-index: 5;
  left: 0;
  width: 100%;
  color: #fff;
}

.index-top-section .content-row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 50px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .index-top-section .content-row {
    display: block;
  }
}

@media (max-width: 767px) {
  .index-top-section .content-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}

.index-top-section h1 {
  margin: 0;
  text-transform: uppercase;
  font-size: 3vw;
  line-height: 4vw;
  font-weight: normal;
}

@media (min-width: 1650px) {
  .index-top-section h1 {
    font-size: 3vw;
    line-height: 4vw;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .index-top-section h1 {
    font-size: 3vw;
    line-height: 4vw;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .index-top-section h1 {
    font-size: 5vw;
    line-height: 6vw;
  }
}

.index-top-section .right-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-bottom: 15px;
}

@media (max-width: 767px) {
  .index-top-section .right-text {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-bottom: 8vh;
  }
}

.index-top-section .right-text .diz {
  display: block;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 1.5vw;
  line-height: 2vw;
}

@media (min-width: 1650px) {
  .index-top-section .right-text .diz {
    font-size: 24px;
    line-height: 36px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .index-top-section .right-text .diz {
    font-size: 26px;
    line-height: 38px;
  }
}

@media (max-width: 767px) {
  .index-top-section .right-text .diz {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
  }
}

.index-top-section .right-text .diz span {
  display: block;
  padding-left: 15%;
}

.index-top-section .right-text .diz i {
  font-style: normal;
  font-weight: normal;
  color: #8c7f7b;
}

.index-top-section .right-text .since {
  display: block;
  font-size: 1.5vw;
  color: #ff5841;
  text-transform: uppercase;
  padding-left: 10%;
  white-space: nowrap;
}

@media (min-width: 1650px) {
  .index-top-section .right-text .since {
    font-size: 24px;
    line-height: 36px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .index-top-section .right-text .since {
    font-size: 26px;
    line-height: 38px;
  }
}

@media (max-width: 767px) {
  .index-top-section .right-text .since {
    font-size: 14px;
    font-weight: 500;
  }
}

.index-top-section .scroll-button-wrap {
  margin: 0 auto;
  width: 68px;
  height: 68px;
  display: block;
  position: relative;
}

/*@media (max-width: 767px) {*/
/*  .index-top-section .scroll-button-wrap {*/
/*    display: none;*/
/*  }*/
/*}*/

.index-top-section .scroll-button-wrap:before {
  content: "";
  display: block;
  clear: both;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 1px solid rgba(253, 92, 73, 0.41);
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-animation: scrollBottomScale 3s ease-out infinite;
  animation: scrollBottomScale 3s ease-out infinite;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.index-top-section .scroll-bottom-link {
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

/*@media (max-width: 767px) {*/
/*  .index-top-section .scroll-bottom-link {*/
/*    display: none;*/
/*  }*/
/*}*/

.index-top-section .scroll-bottom-link:hover:after {
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
}

.index-top-section .scroll-bottom-link:hover i:before {
  -webkit-transform: translateY(10px) rotate(45deg);
  -ms-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}

.index-top-section .scroll-bottom-link:after {
  content: "";
  display: block;
  clear: both;
  width: 1px;
  background: #fff;
  height: 48px;
  bottom: 46%;
  position: absolute;
  left: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.index-top-section .scroll-bottom-link i {
  display: block;
  width: 68px;
  height: 68px;
  min-width: 68px;
  position: relative;
}

.index-top-section .scroll-bottom-link i:before {
  content: "";
  display: block;
  clear: both;
  display: inline-block;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  padding: 4px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  left: 50%;
  margin-left: -4px;
  top: 40%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.index-top-section .scroll-bottom-link i:after {
  content: "";
  display: block;
  clear: both;
  border: 1px solid rgba(253, 92, 73, 0.81);
  border-radius: 50%;
  -webkit-animation: scale1 3s ease-out infinite;
  animation: scale1 3s ease-out infinite;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.index-top-section .scroll-bottom-link span {
  display: block;
  vertical-align: middle;
  padding-left: 30px;
  font-weight: 500;
  white-space: nowrap;
}

.index-top-section .scroll-bottom-link span em {
  font-style: normal;
  opacity: 0.3;
}

.index-white-content {
  background: #fff;
  padding: 180px 0 120px;
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  .index-white-content {
    padding: 45px 0 30px;
    width: 100%;
    overflow: hidden;
  }
}

.index-white-content .sect-holder {
  padding-left: 7%;
}

@media (max-width: 767px) {
  .index-white-content .sect-holder {
    padding-left: 0;
  }
}

.index-white-content .pics-box {
  padding-left: 20%;
  margin-bottom: -5%;
  position: relative;
}

@media (min-width: 768px) and (max-width: 991px) {
  .index-white-content .pics-box {
    padding-left: 5%;
    margin-bottom: -10%;
  }
}

@media (max-width: 767px) {
  .index-white-content .pics-box {
    padding-left: 0;
    margin-bottom: 60px;
  }
}

.index-white-content .pics-box .pics-text {
  position: absolute;
  left: 5%;
  top: 16%;
  z-index: 10;
  width: 37%;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .index-white-content .pics-box .pics-text {
    width: 400px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .index-white-content .pics-box .pics-text {
    position: static;
    width: 100%;
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .index-white-content .pics-box .pics-text {
    position: static;
    width: 100%;
    padding: 0 8%;
    margin-bottom: 25px;
  }
}

.index-white-content .pics-box .pics-text h2 {
  margin: 0;
  font-size: 3.5vw;
  line-height: 5vw;
  font-weight: 300;
  text-transform: uppercase;
}

@media (min-width: 1400px) {
  .index-white-content .pics-box .pics-text h2 {
    font-size: 52px;
    line-height: 72px;
    width: 570px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .index-white-content .pics-box .pics-text h2 {
    font-size: 40px;
    line-height: 56px;
  }
}

@media (max-width: 767px) {
  .index-white-content .pics-box .pics-text h2 {
    font-size: 5.5vw;
    line-height: 9vw;
    font-weight: normal;
  }
}

.index-white-content .pics-box .pics-text h2 b {
  font-weight: 500;
}

@media (max-width: 767px) {
  .index-white-content .pics-box .pics-text h2 b {
    font-weight: bold;
  }
}

.index-white-content .pics-box .abs-text {
  position: absolute;
  top: 22%;
  right: 5%;
  width: 100%;
  text-align: right;
  color: #ff5841;
}

@media (max-width: 767px) {
  .index-white-content .pics-box .abs-text {
    right: auto;
    top: auto;
    position: relative;
    margin-top: -40vw;
  }
}

.index-white-content .pics-box .abs-text .since {
  display: block;
  text-transform: uppercase;
  font-size: 24px;
  padding-bottom: 10%;
  padding-right: 5%;
}

@media (max-width: 767px) {
  .index-white-content .pics-box .abs-text .since {
    position: absolute;
    top: -40vw;
    left: auto;
    right: -15%;
    font-size: 14px;
    font-weight: 500;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}

.index-white-content .pics-box .abs-text .vg {
  display: block;
  font-size: 38vw;
  line-height: 35vw;
  font-weight: 300;
}

@media (max-width: 767px) {
  .index-white-content .pics-box .abs-text .vg {
    font-size: 70vw;
    margin-left: -15%;
  }
}

@media (min-width: 768px) {
  .index-white-content .effect-image-left {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
    z-index: 5;
    width: 55%;
    margin-bottom: -50px;
  }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 991px) {
  .index-white-content .effect-image-left {
    width: 60%;
  }
}

@media (min-width: 768px) {
  .index-white-content .effect-image-left img {
    position: absolute;
    display: block;
    width: auto;
    max-height: 100%;
  }
  .index-white-content .effect-image-left:after {
    content: "";
    display: block;
    clear: both;
    padding-top: 120%;
  }
}

@media (max-width: 767px) {
  .index-white-content .effect-image-left {
    text-align: left;
    width: 70%;
    margin-left: 8%;
    overflow: hidden;
    z-index: 7;
    position: relative;
  }
  .index-white-content .effect-image-left img {
    display: block;
    max-width: 150%;
    width: 150%;
    -o-object-fit: cover;
    object-fit: cover;
    margin-left: -30%;
  }
}

.index-white-content .vert-abs-text {
  position: absolute;
  top: 30%;
  left: 5%;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  font-size: 10px;
  text-transform: uppercase;
  color: #6f6f6f;
  letter-spacing: 10px;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}

@media (max-width: 767px) {
  .index-white-content .vert-abs-text {
    display: none;
  }
}

.index-white-content .vert-abs-text span {
  display: block;
}

.index-white-content .right-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  .index-white-content .right-image {
    padding-right: 8%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.index-white-content .right-image img {
  max-width: 40%;
}

@media (max-width: 767px) {
  .index-white-content .right-image img {
    max-width: 50%;
  }
}

.index-white-content .text-row {
  padding: 0 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

@media (min-width: 768px) and (max-width: 991px) {
  .index-white-content .text-row {
    padding: 0 5%;
  }
}

@media (max-width: 767px) {
  .index-white-content .text-row {
    display: block;
    padding: 0 8%;
  }
}

.index-white-content .text-row p {
  font-size: 23px;
  line-height: 35px;
  margin: 0 0 20px;
}

@media (max-width: 767px) {
  .index-white-content .text-row p {
    font-size: 17px;
    line-height: 26px;
  }
}

.index-white-content .text-row .col {
  width: 45%;
}

@media (max-width: 767px) {
  .index-white-content .text-row .col {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .index-white-content .text-row .col:last-child {
    padding-top: 90px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .index-white-content .text-row .col:last-child {
    padding-top: 160px;
  }
}

.index-white-content .text-row .col:last-child p {
  font-size: 29px;
  line-height: 40px;
}

@media (max-width: 767px) {
  .index-white-content .text-row .col:last-child p {
    font-size: 22px;
    line-height: 35px;
  }
  .index-white-content .text-row .col:last-child p br {
    display: none !important;
  }
}

.index-black-content {
  padding: 90px 0 60px;
  width: 100%;
  overflow: hidden;
  color: #fff;
  position: relative;
}

@media (max-width: 767px) {
  .index-black-content {
    padding: 75px 0 40px;
    width: 100%;
    overflow: hidden;
  }
}

@media (min-width: 768px) {
  .index-black-content._mod-incontacts {
    padding-top: 8vw;
  }
  .index-black-content._mod-incontacts .main-gal {
    margin-bottom: 7vw;
  }
}

.index-black-content .text-content {
  position: relative;
}

.index-black-content .text-content h2 {
  text-transform: uppercase;
  color: #ff5841;
  margin: 0 0 110px;
  font-weight: 300;
  font-size: 52px;
  line-height: 72px;
}

@media (max-width: 767px) {
  .index-black-content .text-content h2 {
    font-size: 6vw;
    line-height: 9vw;
    margin-bottom: 35px;
  }
  .index-black-content .text-content h2 br {
    display: none !important;
  }
}

.index-black-content .text-content h2 b {
  font-weight: 500;
}

.index-black-content .content-row {
  position: relative;
  padding: 0 10% 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 1200px;
}

@media (max-width: 767px) {
  .index-black-content .content-row {
    display: block;
    padding: 0;
  }
}

.index-black-content .content-row .ring-bg {
  position: absolute;
  right: 0;
  top: 0;
}

.index-black-content .content-row .col {
  width: 45%;
}

@media (max-width: 767px) {
  .index-black-content .content-row .col {
    width: 100%;
    padding-bottom: 30px;
  }
}

/*@media (min-width: 768px) {*/
/*  .index-black-content .content-row .col:last-child {*/
/*    padding-top: 180px;*/
/*  }*/
/*}*/

@media (max-width: 767px) {
  .index-black-content .content-row .col p:last-child {
    margin-bottom: 10px;
  }
}

.index-black-content .content-row p {
  font-size: 23px;
  line-height: 35px;
  font-weight: 300;
  margin: 0 0 50px;
}

@media (max-width: 767px) {
  .index-black-content .content-row p {
    font-size: 17px;
    line-height: 25px;
    font-weight: normal;
    opacity: 0.8;
    margin-bottom: 25px;
  }
}

.index-black-content .content-row p.big {
  font-weight: normal;
  font-size: 29px;
  line-height: 43px;
}

@media (max-width: 767px) {
  .index-black-content .content-row p.big {
    font-size: 22px;
    line-height: 33px;
    opacity: 1;
  }
}

.index-black-content .content-row .plefted {
  padding-left: 45px;
}

@media (max-width: 767px) {
  .index-black-content .content-row .plefted {
    padding-left: 20px;
  }
}

.index-black-content .collapse-holder {
  padding-top: 50px;
}

.index-black-content .author-wrap {
  padding-bottom: 50px;
}

@media (max-width: 767px) {
  .index-black-content .author-wrap {
    padding-bottom: 30px;
  }
}

.index-black-content .consist-box {
  margin-top: 70px;
}

@media (max-width: 767px) {
  .index-black-content .consist-box {
    margin-top: 30px;
  }
}

.index-black-content .author-box {
  position: relative;
  display: inline-block;
}

.index-black-content .author-box .name {
  display: block;
  text-transform: uppercase;
  font-size: 35px;
  font-weight: bold;
  text-align: right;
  padding-bottom: 40px;
}

@media (max-width: 767px) {
  .index-black-content .author-box .name {
    font-size: 10vw;
    text-align: left;
    padding-bottom: 20px;
  }
}

.index-black-content .author-box .author-pic {
  position: relative;
  width: 290px;
}

@media (max-width: 767px) {
  .index-black-content .author-box .author-pic {
    width: 100%;
  }
}

.index-black-content .author-box .author-pic img {
  display: block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.index-black-content .author-box .scale-image {
  position: relative;
  overflow: hidden;
  background: #000;
}

@media (max-width: 767px) {
  .index-black-content .author-box .scale-image {
    width: 85%;
  }
}

.index-black-content .author-box .scale-image .image-holder {
  position: absolute;
  width: 115%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.2);
  -ms-transform: translate(-50%, -50%) scale(1.2);
  transform: translate(-50%, -50%) scale(1.2);
}

@media (max-width: 767px) {
  .index-black-content .author-box .scale-image .image-holder {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.index-black-content .author-box .scale-image:after {
  content: "";
  display: block;
  clear: both;
  padding-top: 135%;
}

@media (max-width: 767px) {
  .index-black-content .author-box .scale-image:after {
    display: none;
  }
}

.index-black-content .author-box .image-desc {
  position: absolute;
  left: 15%;
  bottom: 10%;
  width: 120%;
  font-size: 14px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .index-black-content .author-box .image-desc {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .index-black-content .author-box .image-desc {
    font-size: 12px;
  }
}

.index-black-content .author-box .image-desc hr {
  border-color: #FD5C49;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .index-black-content .author-box .image-desc hr {
    margin-bottom: 10px;
    opacity: 0.4;
  }
}

.index-black-content .author-box .image-desc b {
  display: block;
  font-weight: 500;
  padding-bottom: 5px;
  text-transform: uppercase;
  color: #fff;
}

.index-black-content .author-box .image-desc span {
  display: block;
  font-weight: normal;
  text-transform: uppercase;
}

.index-black-content .consist {
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 35px;
  padding-bottom: 40px;
  padding-left: 60px;
}

@media (max-width: 767px) {
  .index-black-content .consist {
    padding-left: 40px;
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 20px;
  }
}

.index-black-content .consist i {
  color: #4d4d4d;
  font-style: normal;
  font-weight: normal;
}

.index-black-content .consist em {
  display: block;
  margin-left: -65px;
  font-style: normal;
  color: #4d4d4d;
  font-size: 24px;
}

@media (max-width: 767px) {
  .index-black-content .consist em {
    font-size: 18px;
  }
}

.index-black-content .etc {
  display: block;
  color: #818181;
  font-size: 11px;
  line-height: 19px;
  text-transform: uppercase;
  padding-left: 60px;
}

@media (max-width: 767px) {
  .index-black-content .etc {
    padding-left: 40px;
    font-size: 10px;
    line-height: 18px;
  }
}

.index-black-content .gal-title {
  display: block;
  font-size: 17vw;
  font-weight: 300;
  color: #ff5841;
  line-height: 20vw;
  margin-left: -4vw;
  margin-top: -50px;
}

@media (max-width: 767px) {
  .index-black-content .gal-title {
    margin-top: 0;
    font-weight: normal;
    margin-bottom: 30px;
  }
}

.index-black-content .carousel-wrapper {
  padding: 0 0 0 8%;
}

.index-black-content .collect-carousel .swiper-slide {
  width: 25%;
  position: relative;
}

@media (max-width: 767px) {
  .index-black-content .collect-carousel .swiper-slide {
    width: 230px;
  }
}

.index-black-content .collect-carousel .swiper-slide a.abs-link {
  z-index: 6;
  top: 30%;
  height: 40%;
  left: 10%;
  width: 80%;
}

@media (min-width: 768px) {
  .index-black-content .collect-carousel .swiper-slide a.abs-link:hover + .holder:before {
    opacity: 0;
  }
  .index-black-content .collect-carousel .swiper-slide a.abs-link:hover + .holder img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .index-black-content .collect-carousel .swiper-slide a.abs-link:hover + .holder i {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  .index-black-content .collect-carousel .swiper-slide a.abs-link:hover + .holder b {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

.index-black-content .collect-carousel .swiper-slide .holder {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.index-black-content .collect-carousel .swiper-slide .holder:before {
  content: "";
  display: block;
  clear: both;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 3;
}

.index-black-content .collect-carousel .swiper-slide .holder img {
  width: 100%;
}

@media (min-width: 768px) {
  .index-black-content .collect-carousel .swiper-slide .holder img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

.index-black-content .collect-carousel .swiper-slide .desc {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 5;
  padding: 10px;
}

.index-black-content .collect-carousel .swiper-slide .desc i {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 45px;
  font-style: normal;
  letter-spacing: 1px;
  font-weight: 500;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media (max-width: 767px) {
  .index-black-content .collect-carousel .swiper-slide .desc i {
    padding-bottom: 10px;
  }
}

.index-black-content .collect-carousel .swiper-slide .desc b {
  font-weight: 500;
  color: #fff;
  display: block;
  text-transform: uppercase;
  font-size: 41px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media (max-width: 767px) {
  .index-black-content .collect-carousel .swiper-slide .desc b {
    font-size: 20px;
  }
}

.index-black-content .collect-carousel .buttons-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-right: 3%;
}

@media (max-width: 767px) {
  .index-black-content .collect-carousel .buttons-wrapper {
    display: none;
  }
}

.index-black-content .collect-carousel .button-next,
.index-black-content .collect-carousel .button-prev {
  padding: 0;
  width: 46px;
  height: 46px;
  border: none;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

.index-black-content .collect-carousel .button-next:after,
.index-black-content .collect-carousel .button-prev:after {
  content: "";
  display: block;
  clear: both;
  position: absolute;
  display: inline-block;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  padding: 6px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 50%;
  left: 11px;
  margin-top: -7px;
}

.index-black-content .collect-carousel .button-next:hover:after,
.index-black-content .collect-carousel .button-prev:hover:after {
  border-color: #FE5C4A;
}

.index-black-content .collect-carousel .button-prev:after {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  left: 19px;
}

.index-black-content .collect-carousel .scrollbar-wrapper {
  position: relative;
  margin: 50px 0 10px;
  padding-right: 4%;
}

@media (max-width: 767px) {
  .index-black-content .collect-carousel .scrollbar-wrapper {
    margin: 25px 0 0;
  }
}

.index-black-content .collect-carousel .scrollbar-wrapper .swiper-scrollbar {
  height: 1px;
  background: rgba(127, 127, 127, 0.2);
}

.index-black-content .collect-carousel .scrollbar-wrapper .swiper-scrollbar-drag {
  height: 1px;
  background: #B6B6B6;
}

.xs-show-more-carousel {
  display: none;
}

@media (max-width: 767px) {
  .xs-show-more-carousel {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #ff5841;
    padding: 10px 0;
    text-transform: uppercase;
  }
}

.cat-carousel .swiper-slide {
  width: 270px;
  position: relative;
  margin-left: 5%;
}

@media (max-width: 767px) {
  .cat-carousel .swiper-slide {
    margin-bottom: 10px;
  }
}

.cat-carousel .swiper-slide a {
  display: block;
  width: 100%;
  position: relative;
}

.cat-carousel .swiper-slide a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.cat-carousel .swiper-slide img {
  width: 100%;
  margin-bottom: 25px;
  display: block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .cat-carousel .swiper-slide img {
    margin-bottom: 10px;
  }
}

.cat-carousel .swiper-slide .desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  z-index: 5;
  width: 100%;
  padding: 0 10%;
  color: #000;
}

@media (max-width: 767px) {
  .cat-carousel .swiper-slide .desc {
    display: block;
    padding: 0;
  }
}

.cat-carousel .swiper-slide .desc i {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-style: normal;
  letter-spacing: 1px;
  font-weight: 500;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media (max-width: 767px) {
  .cat-carousel .swiper-slide .desc i {
    font-size: 11px;
  }
}

.cat-carousel .swiper-slide .desc b {
  font-weight: bold;
  display: block;
  text-transform: uppercase;
  font-size: 16px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media (max-width: 767px) {
  .cat-carousel .swiper-slide .desc b {
    font-size: 13px;
  }
}

.cat-carousel .swiper-slide .collect-desc {
  display: block;
}

.cat-carousel .swiper-slide .collect-desc i {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #ff5841;
  padding-bottom: 20px;
  font-style: normal;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .cat-carousel .swiper-slide .collect-desc i {
    font-size: 10px;
    color: #c7c7c7;
    padding-bottom: 10px;
  }
}

.cat-carousel .swiper-slide .collect-desc b {
  display: block;
  font-weight: 500;
  font-size: 30px;
  color: #000;
}

@media (max-width: 767px) {
  .cat-carousel .swiper-slide .collect-desc b {
    font-size: 16px;
  }
}

.cat-carousel .scrollbar-wrapper {
  position: relative;
  margin: 50px 0 10px;
  padding-right: 4%;
  padding-left: 8%;
}

@media (max-width: 767px) {
  .cat-carousel .scrollbar-wrapper {
    display: none;
  }
}

.cat-carousel .scrollbar-wrapper .swiper-scrollbar {
  height: 1px;
  background: #F6F6F6;
}

.cat-carousel .scrollbar-wrapper .swiper-scrollbar-drag {
  height: 1px;
  background: #767676;
}

.store-carousel-sect {
  background: #fff;
  padding: 35px 0 0;
  position: relative;
}

.store-carousel-sect .bg {
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

/*@media (max-width: 767px) {*/
/*  .store-carousel-sect {*/
/*    padding: 35px 0 0;*/
/*  }*/
/*}*/

.store-carousel-sect .sect-container {
  padding-left: 8%;
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  .store-carousel-sect .sect-container {
    padding-right: 8%;
  }
}

@media (max-width: 767px) {
  .store-carousel-sect .content-full-tabs {
    display: none;
  }
}

.store-carousel-sect h2 {
  font-size: 52px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  margin: 0 0 55px;
}

@media (max-width: 767px) {
  .store-carousel-sect h2 {
    font-size: 6vw;
    margin-bottom: 0;
  }
}

.store-carousel-sect .store-tabs-wrap {
  margin-bottom: 55px;
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  .store-carousel-sect .store-tabs-wrap {
    margin-bottom: 10px;
  }
}

.center-button-wrap {
  text-align: center;
}
.pb20 {
  padding-bottom: 20px;
}
.pt20 {
  padding-top: 20px;
}
.p0 {
  padding: 0px;
}

.store-carousel-sect .center-button-wrap {
  text-align: center;
  position: relative;
  z-index: 3;
}

/*@media (max-width: 767px) {*/
  .store-carousel-sect .center-button-wrap .readmore-link {
    background: #FD5C49;
    padding: 21px 0;
    color: #fff;
    display: block;
    width: 100%;
    font-size: 14px;
  }
  .store-carousel-sect .center-button-wrap .readmore-link:after {
    display: none;
  }
  .store-carousel-sect .center-button-wrap .readmore-link span {
    padding-right: 0;
  }
  .store-carousel-sect .center-button-wrap .readmore-link span:after, .store-carousel-sect .center-button-wrap .readmore-link span:before {
    display: none;
  }
/*}*/

.store-carousel-sect .visit-link {
  display: none;
}

@media (max-width: 767px) {
  .store-carousel-sect .visit-link {
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    color: #ff5841;
    font-size: 12px;
    margin-top: -4px;
  }
}

@media (max-width: 767px) {
  .store-carousel-sect .head-xs-row {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .store-carousel-sect .cat-carousel {
    display: block;
    overflow: visible;
  }
  .store-carousel-sect .cat-carousel .swiper-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .store-carousel-sect .cat-carousel .swiper-wrapper {
    padding: 0 8% 30px;
  }
}

@media (max-width: 767px) {
  .store-carousel-sect .cat-carousel .swiper-wrapper .swiper-slide {
    width: 50%;
    margin-left: 0;
    padding-right: 10px;
    /*display: none;*/
  }
  /*.store-carousel-sect .cat-carousel .swiper-wrapper .swiper-slide:nth-child(2n) {*/
  /*  padding-right: 0;*/
  /*  padding-left: 10px;*/
  /*}*/
  /*.store-carousel-sect .cat-carousel .swiper-wrapper .swiper-slide:nth-child(-n+4) {*/
  /*  display: block;*/
  /*}*/
}

.content-full-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 85px;
}

.content-full-tabs li {
  padding-left: 60px;
}

.content-full-tabs li:first-child {
  padding-left: 0;
}

.content-full-tabs li a {
  display: block;
  color: #D8D8D8;
  font-size: 23px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.content-full-tabs li a:hover {
  color: #ff5841;
}

.content-full-tabs li.active a {
  color: #ff5841;
}

.exclusive-sect {
  padding: 255px 0 140px;
  color: #fff;
  position: relative;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .exclusive-sect {
    padding: 160px 0px 0px;
  }
}

.exclusive-sect .vert-abs-text {
  position: absolute;
  top: 30%;
  left: 3%;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  font-size: 10px;
  text-transform: uppercase;
  color: #6f6f6f;
  letter-spacing: 10px;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}

@media (max-width: 767px) {
  .exclusive-sect .vert-abs-text {
    display: none;
  }
}

.exclusive-sect .vert-abs-text span {
  display: block;
}

@media (max-width: 767px) {
  .exclusive-sect .readmore-link {
    display: none;
  }
}

.exclusive-sect .heading-box {
  width: 100%;
  padding-left: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 75px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .exclusive-sect .heading-box {
    padding-left: 45%;
  }
}

@media (max-width: 767px) {
  .exclusive-sect .heading-box {
    display: none;
  }
}

.exclusive-sect .heading-box span {
  display: block;
  text-transform: uppercase;
  font-size: 24px;
  padding-left: 10px;
  font-weight: 500;
}

.exclusive-sect .heading-box span:last-child {
  margin-top: 60px;
}

.exclusive-sect .heading-box span i {
  display: block;
  margin-left: -80px;
  color: #4d4d4d;
  font-style: normal;
  font-weight: normal;
}

.exclusive-sect .vg-text {
  position: absolute;
  right: -3%;
  top: 20%;
  display: block;
  font-size: 28vw;
  line-height: 35vw;
  font-weight: 300;
  color: #ff5841;
}

@media (max-width: 767px) {
  .exclusive-sect .vg-text {
    right: 0;
    width: 100%;
    text-align: center;
    top: 250px;
    font-size: 50vw;
  }
}

.exclusive-sect .twopics-box {
  position: relative;
  padding-left: 10%;
  margin-bottom: -30%;
}

@media (max-width: 767px) {
  .exclusive-sect .twopics-box {
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-bottom: 30px;
  }
}

.exclusive-sect .twopics-box .pic1 {
  width: 40%;
}

@media (max-width: 767px) {
  .exclusive-sect .twopics-box .pic1 {
    margin-left: auto;
    width: 50%;
  }
}

.exclusive-sect .twopics-box .pic2 {
  margin-left: 5%;
  margin-top: -20%;
}

@media (min-width: 768px) {
  .exclusive-sect .twopics-box .effect-image-left {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
    z-index: 5;
    width: 55%;
  }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 991px) {
  .exclusive-sect .twopics-box .effect-image-left {
    width: 60%;
  }
}

@media (min-width: 768px) {
  .exclusive-sect .twopics-box .effect-image-left img {
    position: absolute;
    display: block;
    width: auto;
    max-height: 100%;
  }
  .exclusive-sect .twopics-box .effect-image-left:after {
    content: "";
    display: block;
    clear: both;
    padding-top: 140%;
  }
}

@media (max-width: 767px) {
  .exclusive-sect .twopics-box .effect-image-left {
    text-align: left;
    width: 70%;
    margin-left: 8%;
    overflow: hidden;
    z-index: 7;
    position: relative;
  }
  .exclusive-sect .twopics-box .effect-image-left img {
    display: block;
    max-width: 150%;
    width: 150%;
    -o-object-fit: cover;
    object-fit: cover;
    margin-left: -30%;
  }
}

.exclusive-sect .text-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  z-index: 6;
}

@media (max-width: 767px) {
  .exclusive-sect .text-row {
    position: static;
    display: block;
  }
}

.exclusive-sect .text-row .col {
  width: 40%;
  padding-top: 220px;
}

@media (max-width: 767px) {
  .exclusive-sect .text-row .col {
    width: 100%;
    padding-top: 0;
  }
}

.exclusive-sect .text-row .col:first-child {
  width: 55%;
  padding-top: 0;
}

@media (max-width: 767px) {
  .exclusive-sect .text-row .col:first-child {
    width: 100%;
  }
}

.exclusive-sect .text-row h3 {
  margin: 0 0 35px;
  font-size: 4vw;
  line-height: 6vw;
  text-transform: uppercase;
  font-weight: 300;
}

@media (max-width: 767px) {
  .exclusive-sect .text-row h3 {
    position: absolute;
    left: 8%;
    top: 80px;
    font-size: 10vw;
    line-height: 11vw;
  }
}

.exclusive-sect .text-row p {
  font-size: 23px;
  line-height: 35px;
  color: #888888;
  margin: 0 0 60px;
}

@media (max-width: 767px) {
  .exclusive-sect .text-row p {
    margin-bottom: 40px;
    font-size: 17px;
    line-height: 25px;
  }
}

.exclusive-sect .text-row p.big {
  font-size: 29px;
  line-height: 43px;
  color: #fff;
}

@media (max-width: 767px) {
  .exclusive-sect .text-row p.big {
    font-size: 22px;
    line-height: 31px;
  }
}

.full-red-xs-link {
  display: none;
}

@media (max-width: 767px) {
  .full-red-xs-link {
    width: 100%;
    display: block;
    background: #FE5C4A;
    padding: 22px 0;
    text-align: center;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
  }
  .full-red-xs-link span {
    display: inline-block;
    position: relative;
    padding-right: 30px;
  }
  .full-red-xs-link span:before {
    content: "";
    display: block;
    clear: both;
    position: absolute;
    top: 50%;
    margin-left: 15px;
    margin-top: -5px;
    left: 100%;
    display: inline-block;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    padding: 5px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .full-red-xs-link span:after {
    content: "";
    display: block;
    clear: both;
    background: #fff;
    height: 1px;
    width: 28px;
    position: absolute;
    left: 100%;
    top: 50%;
  }
}

.about-top-sect {
  background: #424244;
  height: 100vh;
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media (max-width: 767px) {
  .about-top-sect {
    height: auto;
  }
}

.about-top-sect .sect-bg {
  background-size: cover !important;
  bottom: -10%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.about-top-sect .sect-bg:before {
  content: "";
  display: block;
  clear: both;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
}

.about-top-sect .sect-content {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  bottom: 3%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 130px;
  width: 100%;
  z-index: 3;
}

@media (max-width: 767px) {
  .about-top-sect .sect-content {
    display: block;
    padding-bottom: 40px;
    padding-top: 150px;
    position: static;
  }
}

.about-top-sect .plefted {
  position: relative;
}

.about-top-sect .quart-text {
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  left: 55%;
  letter-spacing: 15px;
  line-height: 30px;
  position: absolute;
  text-transform: uppercase;
  top: -50px;
}

@media (max-width: 767px) {
  .about-top-sect .quart-text {
    display: none;
  }
}

.about-top-sect .right-text {
  padding-left: 55%;
}

@media (max-width: 767px) {
  .about-top-sect .right-text {
    padding-left: 0;
  }
}

.about-top-sect p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 26px;
  font-weight: 300;
  line-height: 40px;
  margin: 0;
}

@media (min-width: 1400px) and (max-height: 700px) {
  .about-top-sect p {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .about-top-sect p {
    font-size: 6vw;
    line-height: 8vw;
  }
}

.about-top-sect h1 {
  font-size: 11vw;
  font-weight: 500;
  line-height: 10vw;
  margin: 0 0 0 -10px;
}

@media (min-width: 1500px) {
  .about-top-sect h1 {
    font-size: 180px;
    line-height: 150px;
  }
}

@media (min-width: 1400px) and (max-height: 700px) {
  .about-top-sect h1 {
    font-size: 160px;
    line-height: 140px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .about-top-sect h1 {
    font-size: 15vw;
    line-height: 14vw;
  }
}

@media (max-width: 767px) {
  .about-top-sect h1 {
    font-size: 15vw;
    line-height: 17vw;
    margin-bottom: 30px;
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .effect-image {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: 10px 0 100px;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .effect-image img {
    position: absolute;
  }
  .effect-image:after {
    content: "";
    display: block;
    clear: both;
    padding-top: 40%;
  }
}

footer {
  padding: 0 0 40px;
  position: relative;
  z-index: 10;
  background: #F5F5F5;
}

@media (max-width: 767px) {
  footer {
    padding-bottom: 30px;
  }
}

footer .footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 65px 0 30px;
}

@media (max-width: 767px) {
  footer .footer-top {
    display: block;
    padding: 30px 0 20px;
  }
}

footer .footer-top .right-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media (max-width: 767px) {
  footer .footer-top .right-col {
    display: block;
  }
}

footer .footer-nav {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 767px) {
  footer .footer-nav {
    display: block;
    margin-bottom: 20px;
  }
}

footer .footer-nav li {
  padding-left: 4vw;
  text-align: center;
}

@media (max-width: 767px) {
  footer .footer-nav li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  footer .footer-nav li:last-child {
    border: none;
  }
}

footer .footer-nav li:first-child {
  padding-left: 0;
}

footer .footer-nav li a {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
}

@media (max-width: 767px) {
  footer .footer-nav li a {
    display: block;
    font-size: 14px;
    padding: 13px 0;
  }
}

@media (min-width: 768px) {
  footer .footer-nav li a:hover {
    color: #ff5841;
  }
}

footer .footer-nav li.active a {
  color: #727272;
}

footer .soc-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: -9px;
  margin-right: 10px;
}

@media (max-width: 767px) {
  footer .soc-list {
    display: none;
  }
}

footer .soc-list li {
  margin-right: 25px;
}

footer .soc-list a {
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #FD6150;
}

footer .soc-list a:hover {
  background: #fff;
}

@media (max-width: 767px) {
  footer .phone-col {
    text-align: center;
    margin-bottom: 20px;
  }
}

footer .phone-col .tel {
  display: block;
  font-size: 15px;
  color: #000;
  font-weight: bold;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  footer .phone-col .tel {
    font-size: 7vw;
    padding-bottom: 5px;
  }
}

footer .phone-col .adr {
  display: block;
  font-size: 12px;
  color: #727272;
}

footer .mail-col {
  padding-left: 5vw;
}

@media (max-width: 767px) {
  footer .mail-col {
    padding-left: 0;
    text-align: center;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

footer .mail-col a {
  font-size: 12px;
  color: #ff5841;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 767px) {
  footer .mail-col a {
    margin-right: 16px;
  }
}

footer .mail-col .soc-xs-wrap {
  display: none;
}

@media (max-width: 767px) {
  footer .mail-col .soc-xs-wrap {
    display: block;
    border-left: 1px solid #2A2A2A;
    padding-left: 15px;
    margin-right: 0;
  }
}

footer .mail-col .xs-soc-link {
  display: none;
}

@media (max-width: 767px) {
  footer .mail-col .xs-soc-link {
    display: block;
    color: #fff;
    margin-right: 0;
  }
  footer .mail-col .xs-soc-link span {
    display: inline-block;
    vertical-align: middle;
    padding-right: 10px;
  }
  footer .mail-col .xs-soc-link em {
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    width: 26px;
    height: 26px;
    background: #EAEAEA;
    border-radius: 50%;
    line-height: 26px;
  }
}

@media (max-width: 767px) {
  footer .footer-bottom {
    border-top: 1px solid #ccc;
    padding-top: 15px;
  }
}

footer .copy {
  display: block;
  color: #5c5c5c;
  font-size: 11px;
}

@media (max-width: 767px) {
  footer .copy {
    text-align: center;
  }
}

footer.black-footer {
  background: none;
  padding-top: 45px;
}

@media (max-width: 767px) {
  footer.black-footer {
    padding-top: 0;
  }
}

footer.black-footer .footer-top {
  border-top: 1px solid #262626;
}

@media (max-width: 767px) {
  footer.black-footer .footer-top {
    border: none;
  }
}

@media (max-width: 767px) {
  footer.black-footer .footer-bottom {
    border-color: #1E1E1E;
  }
}

footer.black-footer .footer-nav a {
  color: #fff;
}

@media (max-width: 767px) {
  footer.black-footer .footer-nav li {
    border-color: rgba(255, 255, 255, 0.1);
  }
}

footer.black-footer .footer-nav li.active a {
  color: #343434;
}

footer.black-footer .soc-list a {
  background: #1C1C1C;
  border-color: transparent;
}

footer.black-footer .soc-list a:hover {
  background: #333;
}

footer.black-footer .phone-col .tel {
  color: #fff;
}

@media (min-width: 768px) {
  footer.black-footer .mail-col a {
    color: #fff;
  }
}

@media (max-width: 767px) {
  footer.black-footer .mail-col .xs-soc-link {
    color: #fff;
  }
  footer.black-footer .mail-col .xs-soc-link em {
    background: #1C1C1C;
  }
}

.fix-circle {
  border-radius: 50%;
  width: 50%;
  border: 1px solid rgba(243, 243, 243, 0.1);
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 25%;
}

@media (max-width: 767px) {
  .fix-circle {
    display: none;
  }
}

.fix-circle:after {
  content: "";
  display: block;
  clear: both;
  padding-top: 100%;
}

.contacts-top-section {
  position: relative;
  height: 100vh;
  max-height: 900px;
  min-height: 600px;
  width: 100%;
  background: #010103;
}

@media (max-width: 767px) {
  .contacts-top-section {
    min-height: 500px;
    max-height: none;
    height: calc(var(--vh, 1vh) * 100);
  }
}

.contacts-top-section .sect-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: url(../images/bg-contacts.jpg) no-repeat 50% 0%;
  background-size: cover;
}

.contacts-top-section .sect-content {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
  z-index: 5;
  color: #fff;
}

@media (max-width: 767px) {
  .contacts-top-section .sect-content {
    bottom: 5%;
  }
}

.contacts-top-section .heading-box {
  padding-bottom: 5vh;
}

.contacts-top-section .heading-box h1 {
  text-transform: uppercase;
  margin: 0;
  font-size: 80px;
  line-height: 80px;
  color: #ff5841;
  font-weight: normal;
}

@media (min-width: 768px) and (max-width: 991px) {
  .contacts-top-section .heading-box h1 {
    font-size: 60px;
    line-height: 65px;
  }
}

@media (max-width: 767px) {
  .contacts-top-section .heading-box h1 {
    font-size: 10vw;
    line-height: 11vw;
  }
}

.contacts-top-section .plefted {
  padding-left: 70px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .contacts-top-section .plefted {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .contacts-top-section .plefted {
    padding-left: 0;
  }
}

.contacts-top-section .content-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .contacts-top-section .content-row {
    display: block;
  }
}

.contacts-top-section .content-row .col-label {
  display: block;
  font-size: 12px;
  color: #888888;
  font-weight: 500;
  text-transform: uppercase;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .contacts-top-section .content-row .col-label {
    padding-bottom: 10px;
  }
}

.contacts-top-section .content-row .phone {
  display: block;
  font-size: 3vw;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .contacts-top-section .content-row .phone {
    font-size: 6vw;
  }
}

.contacts-top-section .content-row .link-wrap {
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .contacts-top-section .content-row .link-wrap {
    display: inline-block;
  }
}

.contacts-top-section .content-row a {
  text-transform: uppercase;
  color: #ff5841;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
}

.contacts-top-section .content-row .soc-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 37px;
  height: 37px;
  background: rgba(183, 183, 183, 0.16);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .contacts-top-section .content-row .soc-link {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    line-height: 35px;
    margin-left: 10px;
  }
}

.contacts-top-section .content-row .soc-link:hover {
  background: rgba(183, 183, 183, 0.3);
}

.contacts-top-section .work-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .contacts-top-section .work-row {
    display: block;
  }
}

.contacts-top-section .work-row .adr {
  display: block;
  font-size: 3vw;
  text-transform: uppercase;
  padding-bottom: 10px;
}

@media (max-width: 767px) {
  .contacts-top-section .work-row .adr {
    font-size: 6vw;
  }
}

.contacts-top-section .work-row .city {
  display: block;
  font-size: 19px;
  text-transform: uppercase;
}

.contacts-top-section .worktime {
  padding-left: 8vw;
  padding-top: 10px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .contacts-top-section .worktime {
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .contacts-top-section .worktime {
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 10px;
  }
}

.contacts-top-section .work-time-row {
  display: table-row;
  font-size: 12px;
}

.contacts-top-section .work-time-row span {
  display: table-cell;
  padding-right: 20px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  padding-bottom: 10px;
}

.contacts-top-section .work-time-row i {
  display: table-cell;
  font-style: normal;
  font-weight: 500;
  padding-bottom: 10px;
}

.map-section {
  position: relative;
  width: 100%;
}

.map-section .map-box {
  height: 420px;
  width: 100%;
  position: relative;
  background: #000;
}

.map-section .map-box .map {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.map-section .zoom-buttons {
  position: absolute;
  z-index: 5;
  left: 20px;
  bottom: 45px;
  border-radius: 15px;
  background: #fff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.map-section .zoom-buttons button {
  width: 40px;
  height: 40px;
  text-align: center;
  font-weight: 500;
  line-height: 40px;
  display: block;
  border: none;
  outline: none;
  background: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: #000;
  font-size: 26px;
}

.map-section .zoom-buttons button:hover {
  background: #FD5C49;
  color: #fff;
}

.map-section .zoom-buttons .zoom-in {
  border-bottom: 1px solid #ECECEC;
}

.map-section .zoom-buttons .zoom-out {
  position: relative;
}

.map-section .zoom-buttons .zoom-out:hover:after {
  background: #fff;
}

.map-section .zoom-buttons .zoom-out:after {
  content: "";
  display: block;
  clear: both;
  height: 3px;
  width: 14px;
  background: #000;
  position: absolute;
  top: 45%;
  left: 50%;
  margin-left: -7px;
}

.form-type input.form-control {
  border-color: transparent;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  height: 54px;
  color: #000;
  font-size: 16px;
  padding-left: 25px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  background: none;
  z-index: 3;
  font-weight: 500;
}

.form-type input.form-control::-webkit-input-placeholder {
  color: transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-type input.form-control:-moz-placeholder {
  color: transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-type input.form-control::-moz-placeholder {
  color: transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-type input.form-control:-ms-input-placeholder {
  color: transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .form-type input.form-control {
    padding-left: 20px;
    height: 50px;
    font-size: 15px;
  }
}

.form-type .input-wrap {
  position: relative;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: 1px solid #E7E7E7;
  overflow: hidden;
}

.form-type .input-wrap.error-wrap {
  border-color: #F29BA0;
}

.form-type .input-wrap.input-disabled {
  opacity: 0.5;
  border-color: #ddd;
}

.form-type .input-wrap label.error {
  position: absolute;
  top: 100%;
  left: 12px;
  margin-top: -6px;
  padding: 2px 20px 3px;
  font-weight: normal;
  background-color: #EC1939;
  border-radius: 10px;
  color: #fff;
  font-size: 12px;
}

.form-type .input-wrap label.valid {
  opacity: 0;
}

.form-type .input-wrap .form-control {
  padding-top: 25px;
}

.form-type .input-wrap input.input-small {
  padding-top: 6px;
}

.form-type .input-wrap textarea.textarea-small {
  padding-top: 15px;
}

.form-type .input-wrap .title-label {
  position: absolute;
  display: block;
  z-index: 3;
  left: 25px;
  color: #000;
  top: 50%;
  font-size: 12px;
  line-height: 19px;
  font-weight: 500;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  will-change: transform,font-size,color;
  pointer-events: none;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .form-type .input-wrap .title-label {
    left: 20px;
  }
}

.form-type .input-wrap.input_not_empty .title-label {
  -webkit-transform: translateY(-21px);
  -ms-transform: translateY(-21px);
  transform: translateY(-21px);
  font-size: 10px;
  color: #7f8493;
}

@media (max-width: 767px) {
  .form-type .input-wrap.input_not_empty .title-label {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.form-type .input-wrap.input_not_empty .title-label-textarea {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  top: 15px;
}

.form-type .input-wrap.input_focused {
  border-color: #F09788;
  background-color: transparent;
}

.form-type .input-wrap.input_focused input::-webkit-input-placeholder {
  color: #ccc;
}

.form-type .input-wrap.input_focused input:-moz-placeholder {
  color: #ccc;
}

.form-type .input-wrap.input_focused input::-moz-placeholder {
  color: #ccc;
}

.form-type .input-wrap.input_focused input:-ms-input-placeholder {
  color: #ccc;
}

.form-type .input-wrap.input_focused .title-label {
  -webkit-transform: translateY(-21px);
  -ms-transform: translateY(-21px);
  transform: translateY(-21px);
  font-size: 10px;
  color: rgba(0, 0, 0, 0.7);
}

.form-type .input-wrap.input_disabled {
  border-color: transparent;
}

.form-type .input-wrap.input_disabled .form-control {
  padding: 0 0 0 25px;
  background: #F7F5F9;
}

@media (max-width: 767px) {
  .form-type .input-wrap.input_disabled .form-control {
    padding-left: 20px;
  }
}

.form-type .input-wrap.input_disabled .title-label {
  display: none;
}

.form-type .form-group {
  margin-bottom: 35px;
}

.form-type .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .form-type .form-row {
    display: block;
    margin-bottom: 20px;
  }
}

.form-type .form-row .form-col {
  margin-left: 40px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 767px) {
  .form-type .form-row .form-col {
    margin-left: 0;
    margin-bottom: 10px;
  }
}

.form-type .form-row .form-col:first-child {
  margin-left: 0;
}

.form-type textarea.form-control {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #DFDFDF;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-left: 25px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  padding-bottom: 17px;
}

@media (max-width: 767px) {
  .form-type textarea.form-control {
    padding-left: 20px;
  }
}

.form-type textarea.form-control::-webkit-input-placeholder {
  color: #000;
  font-weight: bold;
  font-size: 12px;
}

.form-type textarea.form-control:-moz-placeholder {
  color: #000;
  font-weight: bold;
  font-size: 12px;
}

.form-type textarea.form-control::-moz-placeholder {
  color: #000;
  font-weight: bold;
  font-size: 12px;
}

.form-type textarea.form-control:-ms-input-placeholder {
  color: #000;
  font-weight: bold;
  font-size: 12px;
}

.form-type textarea.form-control:focus {
  border-color: #EF9787;
}

.form-type .button-wrap {
  text-align: center;
  padding-top: 20px;
}

@media (max-width: 767px) {
  .form-type .button-wrap {
    padding-top: 10px;
  }
}

.form-type .button-wrap button {
  font-size: 21px;
}

.form-type .button-wrap button span:before {
  height: 2px;
  width: 50px;
  right: 20px;
}

.form-type .button-wrap button span:after {
  border-width: 0 2px 2px 0;
  right: 22px;
}

@media (max-width: 767px) {
  .form-type .button-wrap .readmore-link {
    background: #FD5C49;
    padding: 10px 0;
    color: #fff;
    display: block;
    width: 100%;
    font-size: 14px;
  }
  .form-type .button-wrap .readmore-link:after {
    display: none;
  }
  .form-type .button-wrap .readmore-link span {
    padding-right: 0;
  }
  .form-type .button-wrap .readmore-link span:after, .form-type .button-wrap .readmore-link span:before {
    display: none;
  }
}

.js_formWrapper {
  position: relative;
}

.js_formWrapper:before {
  content: "";
  display: block;
  clear: both;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #fff;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.js_formWrapper .succesIcon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  z-index: 15;
  border: 3px solid #FF4235;
  padding: 13px 10px 0 8px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: -40px;
  margin-left: -40px;
}

.js_formWrapper .succesIcon svg {
  width: 70px;
  height: 70px;
}

.js_formWrapper .succesIcon polyline {
  display: none;
  fill: none;
  stroke: #FF4235;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 80;
  -webkit-animation: succesIconAnim 0.7s ease-in-out 1 paused;
  *-webkit-animation-name: succesIconAnim;
  *-webkit-animation-duration: 0.7s;
  *-webkit-animation-timing-function: ease-in-out;
  *-webkit-animation-iteration-count: 1;
  *-webkit-animation-play-state: paused;
}

.js_formWrapper.successed:before {
  opacity: 0.9;
  visibility: visible;
}

.js_formWrapper.successed .succesIcon {
  opacity: 1;
  visibility: visible;
}

.js_formWrapper.successed .succesIcon polyline {
  display: inline;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

.contact-form-section {
  padding: 75px 0 65px;
  background: #fff;
  position: relative;
}

@media (max-width: 767px) {
  .contact-form-section {
    padding: 40px 0 50px;
  }
}

.contact-form-section .success-info-box {
  position: absolute;
  width: 500px;
  height: auto;
  top: 50%;
}

.contact-form-section .form-title {
  display: block;
  font-size: 31px;
  font-weight: 500;
  padding-bottom: 45px;
  padding-left: 25px;
}

@media (max-width: 767px) {
  .contact-form-section .form-title {
    font-size: 8vw;
    padding-left: 0;
  }
}

.contact-form-section .contact-form {
  padding-left: 70px;
  position: relative;
}

@media (max-width: 767px) {
  .contact-form-section .contact-form {
    padding-left: 0;
  }
}

@-webkit-keyframes succesIconAnim {
  from {
    stroke-dashoffset: 80;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.collections-section {
  padding-top: 210px;
  background: #fff;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .collections-section {
    padding: 110px 8% 20px;
  }
}

.collections-section .collect-heading {
  padding-bottom: 60px;
  text-align: center;
}

@media (max-width: 767px) {
  .collections-section .collect-heading {
    border-top: 1px solid #EFEFEF;
    padding-top: 20px;
    padding-bottom: 30px;
  }
}

.collections-section .collect-heading .button-wrap {
  padding-bottom: 15px;
}

.collections-section .collect-heading h1 {
  margin: 0;
  font-size: 9vw;
  line-height: 10vw;
  font-weight: 500;
  color: #ff5841;
  text-transform: uppercase;
}

.collections-section .collect-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0 8%;
  position: relative;
}

@media (max-width: 767px) {
  .collections-section .collect-container {
    display: block;
    padding: 0;
  }
}

.collections-section .cent-circle {
  width: 50%;
  border: 1px solid #E6E6E7;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .collections-section .cent-circle {
    display: none;
  }
}

.collections-section .cent-circle:after {
  content: "";
  display: block;
  clear: both;
  padding-top: 100%;
}

.collections-section .left-side {
  width: 180px;
  padding-top: 20px;
}

@media (max-width: 767px) {
  .collections-section .left-side {
    display: none;
  }
}

.collections-section .side-nav {
  width: 100%;
}

.collections-section .side-nav li {
  position: relative;
}

.collections-section .side-nav li:before {
  content: "";
  display: block;
  clear: both;
  position: absolute;
  right: 100%;
  margin-right: 30px;
  top: 50%;
  height: 1px;
  background: #E4E4E5;
  width: 30vw;
  opacity: 0;
}

.collections-section .side-nav li a {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: #9e9e9e;
  display: block;
  padding: 15px 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.collections-section .side-nav li a:hover {
  color: #FE5C4A;
}

.collections-section .side-nav li.active:before {
  opacity: 1;
}

.collections-section .side-nav li.active a {
  color: #000;
}

.collections-section .content-column {
  padding-left: 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (min-width: 768px) and (max-width: 991px) {
  .collections-section .content-column {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .collections-section .content-column {
    padding-left: 0;
  }
}

.collections-section .collect-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 14vw;
}

@media (max-width: 767px) {
  .collections-section .collect-list {
    display: block;
  }
}

.collections-section .collect-list .item {
  width: 50%;
  padding-right: 15%;
  margin-bottom: 80px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .collections-section .collect-list .item {
    padding-right: 10%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .collections-section .collect-list .item {
    padding-right: 10%;
  }
}

@media (max-width: 767px) {
  .collections-section .collect-list .item {
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    margin-bottom: 40px;
  }
}

@media (min-width: 768px) {
  .collections-section .collect-list .item:nth-child(2n) {
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
  }
}

.collections-section .collect-list .item img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .collections-section .collect-list .item img {
    max-height: 45vw;
  }
}

.collections-section .collect-list .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 27vw;
  position: relative;
  padding: 10px 15%;
}

@media (max-width: 767px) {
  .collections-section .collect-list .item a {
    height: 65vw;
  }
}

.collections-section .collect-list .item a:before {
  content: "";
  display: block;
  clear: both;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #F7F7F7;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media (min-width: 768px) {
  .collections-section .collect-list .item a:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  .collections-section .collect-list .item a:hover span {
    color: #FD5C49;
    top: 62%;
  }
  .collections-section .collect-list .item a:hover:before {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.collections-section .collect-list .item a span {
  position: absolute;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  text-transform: uppercase;
  color: #000;
  display: block;
  left: 100%;
  top: 60%;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  margin-left: 20px;
  width: 50%;
  text-align: right;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}

@media (max-width: 767px) {
  .collections-section .collect-list .item a span {
    margin-left: 15px;
  }
}

.collections-section .show-more-wrap {
  padding-left: 3%;
}

.collection-view-section {
  padding-top: 230px;
  background: #fff;
  padding-bottom: 20px;
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  .collection-view-section {
    padding-top: 120px;
  }
}

.collection-view-section .sect-heading {
  padding-bottom: 50px;
}

@media (max-width: 767px) {
  .collection-view-section .sect-heading {
    padding-bottom: 20px;
  }
}

.collection-view-section .sect-heading .heading-row {
  padding-right: 60px;
}

@media (max-width: 767px) {
  .collection-view-section .sect-heading .heading-row {
    padding-right: 0;
  }
}

.collection-view-section .sect-heading .breadcrumbs {
  padding-bottom: 10px;
}

@media (max-width: 767px) {
  .collection-view-section .sect-heading .breadcrumbs {
    display: none;
  }
}

.collection-view-section .sect-heading .button-wrap {
  text-align: center;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.breadcrumbs li {
  position: relative;
  padding: 0 20px;
}

.breadcrumbs li:first-child {
  padding-left: 0;
}

.breadcrumbs li:first-child:before {
  display: none;
}

.breadcrumbs li:last-child {
  padding-right: 0;
}

.breadcrumbs li:before {
  content: "";
  display: block;
  clear: both;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 5px;
  background: #D8D8D8;
}

.breadcrumbs li a {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: #929292;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumbs li a:hover {
  color: #000;
}

.similar-items-sect {
  background: #fff;
  padding: 70px 0;
}

@media (max-width: 767px) {
  .similar-items-sect {
    padding: 30px 0 40px;
  }
}

.similar-items-sect h3 {
  text-transform: uppercase;
  font-weight: 500;
  color: #000;
  font-size: 31px;
  margin: 0 0 35px;
}

@media (max-width: 767px) {
  .similar-items-sect h3 {
    font-size: 7vw;
    margin-bottom: 30px;
  }
}

.similar-items-sect .container {
  padding-right: 0;
}

@media (max-width: 767px) {
  .similar-items-sect .container {
    padding-right: 8%;
  }
}

.similar-items-sect .similar-carousel .swiper-slide {
  margin-left: 0;
  margin-right: 5%;
  width: 290px;
}

@media (max-width: 767px) {
  .similar-items-sect .similar-carousel .swiper-slide {
    width: 100%;
    margin-right: 0;
    padding: 0 30px;
  }
}

.similar-items-sect .similar-carousel .swiper-slide a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 270px;
  height: 280px;
  padding: 10px 15%;
  position: relative;
}

@media (max-width: 767px) {
  .similar-items-sect .similar-carousel .swiper-slide a {
    width: 100%;
    height: 70vw;
  }
}

.similar-items-sect .similar-carousel .swiper-slide a:before {
  content: "";
  display: block;
  clear: both;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #F7F7F7;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.similar-items-sect .similar-carousel .swiper-slide a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.similar-items-sect .similar-carousel .swiper-slide a:hover:before {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.similar-items-sect .similar-carousel .swiper-slide a:hover span {
  color: #FD5C49;
  top: 62%;
}

.similar-items-sect .similar-carousel .swiper-slide a img {
  max-height: 220px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
}

@media (max-width: 767px) {
  .similar-items-sect .similar-carousel .swiper-slide a img {
    max-height: 40vw;
  }
}

.similar-items-sect .similar-carousel .swiper-slide a span {
  position: absolute;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  text-transform: uppercase;
  color: #000;
  display: block;
  left: 100%;
  top: 60%;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  margin-left: 20px;
  width: 50%;
  text-align: right;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}

@media (max-width: 767px) {
  .similar-items-sect .similar-carousel .swiper-slide a span {
    margin-left: 10px;
  }
}

.similar-items-sect .similar-carousel .swiper-pagination {
  display: none;
}

@media (max-width: 767px) {
  .similar-items-sect .similar-carousel .swiper-pagination {
    display: block;
    position: static;
    margin-top: 30px;
  }
  .similar-items-sect .similar-carousel .swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px;
    width: 6px;
    height: 6px;
  }
  .similar-items-sect .similar-carousel .swiper-pagination .swiper-pagination-bullet-active {
    background: #FE5C4A;
  }
}

.similar-items-sect .similar-carousel .scrollbar-wrapper {
  position: relative;
  margin: 50px 0 10px;
  padding-right: 8%;
}

@media (max-width: 767px) {
  .similar-items-sect .similar-carousel .scrollbar-wrapper {
    display: none;
  }
}

.similar-items-sect .similar-carousel .scrollbar-wrapper .swiper-scrollbar {
  height: 1px;
  background: rgba(127, 127, 127, 0.2);
}

.similar-items-sect .similar-carousel .scrollbar-wrapper .swiper-scrollbar-drag {
  height: 1px;
  background: #B6B6B6;
}

.item-view-box {
  width: 100%;
  position: relative;
}

.item-view-box .view-top-info {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .item-view-box .view-top-info {
    margin-bottom: 20px;
  }
}

.item-view-box .view-top-info .info-holder {
  padding: 0 100px;
  text-align: center;
}

@media (max-width: 767px) {
  .item-view-box .view-top-info .info-holder {
    padding: 0;
  }
}

.item-view-box .view-top-info .info-frame {
  position: relative;
}

.item-view-box .view-top-info .gallery-carousel .swiper-pagination {
  position: absolute;
  top: 0;
  bottom: auto;
}

.item-view-box .view-top-info .gallery-carousel .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  width: 6px;
  height: 6px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.item-view-box .view-top-info .gallery-carousel .swiper-pagination .swiper-pagination-bullet-active {
  background: #FE5C4A;
}

@media (max-width: 767px) {
  .item-view-box .view-top-info .gallery-carousel .swiper-pagination {
    display: block;
    position: static;
    margin-bottom: 20px;
    margin-top: 10px;
  }
}

.item-view-box .view-top-info .image {
  position: relative;
  padding: 50px 0;
  z-index: 3;
}

@media (max-width: 767px) {
  .item-view-box .view-top-info .image {
    padding: 20px 8%;
  }
}

.item-view-box .view-top-info .image img {
  margin: 0 auto;
}

@media (min-width: 768px) {
  .item-view-box .view-top-info .image img {
    height: 378px;
  }
}

.item-view-box .view-top-info .abs-text {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}

@media (max-width: 767px) {
  .item-view-box .view-top-info .abs-text {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    position: static;
  }
}

.item-view-box .view-top-info h1 {
  text-transform: uppercase;
  color: #ff5841;
  font-size: 10vw;
  font-weight: 500;
  margin: 0;
}

.item-view-box .view-top-info .right-info {
  position: absolute;
  right: 0;
  top: 10px;
}

@media (max-width: 767px) {
  .item-view-box .view-top-info .right-info {
    position: static;
  }
}

.item-view-box .view-top-info .right-info .gramm {
  display: block;
  font-weight: 300;
  color: #FD5B49;
  font-size: 40px;
}

@media (max-width: 767px) {
  .item-view-box .view-top-info .right-info .gramm {
    font-size: 24px;
    font-weight: normal;
  }
}

.item-view-box .item-nav-link {
  position: absolute;
  top: 160px;
  display: block;
  left: 40px;
  text-align: center;
  color: #929292;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .item-view-box .item-nav-link {
    display: none;
  }
}

.item-view-box .item-nav-link:hover {
  color: #FD5C49;
}

.item-view-box .item-nav-link:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.item-view-box .item-nav-link span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  padding-bottom: 20px;
}

.item-view-box .item-nav-link img {
  max-width: 60px;
  display: block;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.item-view-box .item-nav-link.next-item {
  left: auto;
  right: 40px;
}

.item-view-box .view-chars-info {
  padding: 0 8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .item-view-box .view-chars-info {
    display: block;
  }
}

.item-view-box .view-chars-info .chars-col {
  padding: 0 4%;
}

@media (max-width: 767px) {
  .item-view-box .view-chars-info .chars-col {
    padding: 0 0 10px;
  }
}

.item-view-box .view-chars-info .chars-item {
  padding-bottom: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .item-view-box .view-chars-info .chars-item {
    padding-bottom: 10px;
  }
}

.item-view-box .view-chars-info .char-label {
  display: block;
  color: #8e8e8e;
  font-size: 10px;
  text-transform: uppercase;
  width: 80px;
  min-width: 80px;
  text-align: right;
  padding-top: 3px;
}

.item-view-box .view-chars-info .char-info {
  padding-left: 40px;
}

@media (max-width: 767px) {
  .item-view-box .view-chars-info .char-info {
    padding-left: 20px;
  }
}

.item-view-box .view-chars-info .char-info span {
  display: block;
  padding-bottom: 10px;
  font-size: 17px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .item-view-box .view-chars-info .char-info span {
    font-size: 14px;
  }
}

@-webkit-keyframes orderButton {
  0% {
    height: 1px;
    width: 0;
  }
  40% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

@keyframes orderButton {
  0% {
    height: 1px;
    width: 0;
  }
  40% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

.order-full-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 40px;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 65px 0;
  position: relative;
}

.order-full-btn:before {
  content: "";
  display: block;
  clear: both;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  height: 100%;
  background: #FD6051;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

@media (max-width: 767px) {
  .order-full-btn {
    padding: 20px 0;
    font-size: 6vw;
    font-weight: bold;
  }
}

.order-full-btn:hover {
  color: #FD6051;
}

.order-full-btn:hover:before {
  background: #000;
}

.order-full-btn:hover span:after {
  border-color: #FD6051;
  -webkit-transform: translateX(7px) rotate(-45deg);
  -ms-transform: translateX(7px) rotate(-45deg);
  transform: translateX(7px) rotate(-45deg);
}

.order-full-btn:hover span:before {
  background: #FD6051;
  -webkit-transform: translateX(7px);
  -ms-transform: translateX(7px);
  transform: translateX(7px);
}

.order-full-btn span {
  display: inline-block;
  padding: 0 100px;
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  .order-full-btn span {
    padding: 0 50px 0 10px;
  }
}

.order-full-btn span:after {
  content: "";
  display: block;
  clear: both;
  display: inline-block;
  vertical-align: middle;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  padding: 8px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 50%;
  margin-top: -8px;
  position: absolute;
  right: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.order-full-btn span:before {
  content: "";
  display: block;
  clear: both;
  position: absolute;
  right: -2px;
  height: 1px;
  background: #fff;
  width: 55px;
  top: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .order-full-btn span:before {
    width: 30px;
  }
}

.main-gallery-box {
  position: relative;
}

.main-gallery-box .gal-pagenavi {
  text-align: left;
  padding-bottom: 40px;
  font-size: 15px;
  padding-left: 40px;
  font-weight: 500;
}

.main-gallery-box .gal-pagenavi .current {
  color: #fff;
  display: inline-block;
  vertical-align: middle;
}

.main-gallery-box .gal-pagenavi .all {
  display: inline-block;
  vertical-align: middle;
  color: #5a5a5a;
}

.main-gallery-box .gal-pagenavi .name {
  display: inline-block;
  vertical-align: middle;
  font-size: 10px;
  color: #fff;
  padding-left: 20px;
  margin-top: -2px;
}

div.main-gal {
  width: 100%;
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  div.main-gal {
    margin-bottom: 60px;
  }
}

div.main-gal .swiper-slide {
  width: 100%;
}

div.main-gal a {
  outline: none;
  display: block;
}

div.main-gal a img {
  display: block;
  width: 100%;
}

div.main-gal .zoom-pic-link {
  width: 60px;
  height: 60px;
  background: #000;
  border-radius: 50%;
  text-align: center;
  line-height: 59px;
  color: #fff;
  display: block;
  position: absolute;
  z-index: 3;
  left: 50%;
  margin-top: -30px;
  top: 50%;
  margin-left: -30px;
  font-size: 64px;
  font-weight: 300;
}

div.main-gal .button-prev {
  position: absolute;
  z-index: 10;
}

@media (min-width: 768px) {
  div.main-gal .button-prev {
    background: none;
    margin-top: 0;
    left: 0;
    top: 0;
    height: 100%;
    width: 30%;
  }
}

div.main-gal .button-next {
  z-index: 10;
  position: absolute;
}

@media (min-width: 768px) {
  div.main-gal .button-next {
    background: none;
    margin-top: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 30%;
  }
}

@media all and (min-width: 800px) {
  .fancybox-container .fancybox-thumbs {
    top: auto;
    width: auto;
    bottom: 0;
    left: 0;
    right: 0;
    height: 95px;
    padding: 10px 10px 5px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.3);
  }
}

.fancybox-container.fancybox-show-thumbs .fancybox-inner {
  right: 0;
  bottom: 95px;
}

.ie11 .order-full-btn:before,
.edge .order-full-btn:before {
  height: 100%;
}

.no-edge .order-full-btn:before {
  height: auto;
}

.no-edge .order-full-btn.animate:before {
  -webkit-animation: orderButton 2s ease forwards;
  animation: orderButton 2s ease forwards;
}

/** ------------------------------ */

.head-flex .logo svg {
  -webkit-transition: fill .4s ease;
  -o-transition: fill .4s ease;
  transition: fill .4s ease;
  fill: #ffffff;
}
.head-flex .logo:hover svg {
  fill: #ff5841;
}

.index-black-content .content-row .col-50 {
  width: 45%;
}
@media (max-width: 767px) {
  .index-black-content .content-row .col-50 {
    width: 100%;
  }
  .readmore-link:after {
    right: 10px;
  }
}
.col-bordered {
  /*border: 1px white solid;*/
  padding: 30px;
  font-size: 10px;
  margin-bottom: 5vh;
}
.index-black-content .content-row .col-bordered p {
  font-size: 16px;
  line-height: 24px;
}
.index-top-section h1 .readmore-link {
  font-size: inherit !important;
}
.index-top-section h1,
.index-top-section h1 a,
.index-top-section h1 a:visited {
  color: #ffffff;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.index-top-section h1 a:hover {
  color: #ff5841;
}
.bottom-link {
  display: block;
  text-align: center;
  margin-bottom: 10px;
}
.video-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  background: black;
  opacity: 0.3;
}
@media (max-width: 767px) {
  .blog-sect .swiper-slide p {
    display: none;
  }
}
.mr10 {
  margin-right: 10px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mt0 {
  margin-top: 0 !important;
}
.pr10 {
  padding-right: 10px !important;
}
.pb0 {
  padding-bottom: 0 !important;
}
.pt0 {
  padding-top: 0 !important;
}
.dflex {
  display: flex;
}
/* ------------------------------------ */
.index-top-section .bottom-link em {
  display: block;
}
.pb140 {
  padding-bottom: 140px;
}
.index-black-content h2 {
  font-size: 52px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 55px;
}
@media (max-width: 767px) {
  .index-black-content h2 {
    font-size: 6vw;
    margin-bottom: 20px;
  }
}
.work-items .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.work-items .work-item {
  width: 50%;
  margin-bottom: 0;
}
.work-items .work-item.more a,
.work-items .work-item.more a:hover,
.work-items .work-item.more a:visited {
  color: #fff;
}
.work-items .work-item.more {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;

  color: #fff;
  text-transform: uppercase;

  padding: 20px;
  font-size: 15px;
  font-weight: bold;
  background: #201F2C;
}
@media (min-width: 576px) {
  .work-items .work-item {
    width: 50%;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .work-items .work-item {
    width: 25%;
    margin-bottom: 0;
  }
}

.work-menu {
  background-color: #201F2C;
}
.index-black-content .work-title {
  margin-bottom: 30px;
}
.work-menu {
  margin-bottom: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}
.work-menu .container div a,
.work-menu .container div a:visited,
.work-menu .container div a:hover {
  color: #fff;
}
.work-menu .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
.work-menu .container div {
  display: inline-block;
  margin: 3px 15px;
}
.w-100 {
  width: 100% !important;
}
.mt-20 {
  margin-top: 20px;
}