/*--------------------------------------------------------------
# Sass variables color
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Mixins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Base styles
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Global Settings
--------------------------------------------------------------*/
@import url(../vendor/normalize.css);
@import url(../vendor/bootstrap-grid.css);
@import url(../vendor/slick.css);
@import url(../vendor/slick-theme.css);
@import url(../vendor/jquery.fancybox.css);
/* line 4, ../scss/base/_base.scss */
.container {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-width: 320px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}

/* line 8, ../scss/base/_base.scss */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* line 17, ../scss/base/_base.scss */
.clr {
  clear: both;
}

/* line 21, ../scss/base/_base.scss */
img {
  max-width: 100%;
}

/* line 25, ../scss/base/_base.scss */
a {
  border-bottom: 2px solid #b20000;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
/* line 32, ../scss/base/_base.scss */
a:hover {
  border-color: transparent;
}

/* line 37, ../scss/base/_base.scss */
html {
  box-sizing: border-box;
  height: 100%;
  font-size: 62.5%;
}

/* line 43, ../scss/base/_base.scss */
body {
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  line-height: 28px;
  font-size: calc(17px + 1 * ((100vw - 320px) / 1440));
  height: 100%;
  background: #0d1114 url(../Images/bg.svg);
  color: #bcbcbc;
  position: relative;
}
@media (max-width: 767px) {
  /* line 43, ../scss/base/_base.scss */
  body {
    background-size: cover;
  }
}
/* line 57, ../scss/base/_base.scss */
body.over_hide {
  overflow: hidden;
}
/* line 62, ../scss/base/_base.scss */
body.nothome:before, body.nothome:after {
  display: none;
}

/* line 69, ../scss/base/_base.scss */
p {
  margin-bottom: 30px;
}

/* line 73, ../scss/base/_base.scss */
.m-10 {
  margin: 0 10px;
}

/* line 76, ../scss/base/_base.scss */
.mr-10 {
  margin: 0 10px 0 0 !important;
}

/* line 80, ../scss/base/_base.scss */
.title {
  margin: 40px 0 20px 0;
  color: #fff;
  font-size: 30px;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
/* line 90, ../scss/base/_base.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 20px;
  padding: 0;
  color: #fff;
  font-weight: 700;
  line-height: 120%;
}

/* line 103, ../scss/base/_base.scss */
h1 {
  font-size: calc(26px + 6 * ((100vw - 320px) / 1440));
}

/* line 107, ../scss/base/_base.scss */
h2 {
  font-size: calc(24px + 4 * ((100vw - 320px) / 1440));
}

/* line 111, ../scss/base/_base.scss */
h3 {
  font-size: calc(22px + 4 * ((100vw - 320px) / 1440));
}

/* line 115, ../scss/base/_base.scss */
h4 {
  font-size: calc(20px + 4 * ((100vw - 320px) / 1440));
}

/* line 119, ../scss/base/_base.scss */
h5 {
  font-size: 18px;
}

/* line 123, ../scss/base/_base.scss */
h6 {
  font-size: 16px;
}

/* line 127, ../scss/base/_base.scss */
ul {
  margin-bottom: 30px;
  padding-left: 20px;
  list-style: none;
}
/* line 132, ../scss/base/_base.scss */
ul li {
  position: relative;
  padding-left: 28px;
}
/* line 136, ../scss/base/_base.scss */
ul li:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 14px;
  height: 3px;
  border-radius: 1px;
  background: #b20000;
  box-shadow: 0 1px 3px rgba(178, 0, 0, 0.5);
  transition: all 0.4s ease-out;
  transform: perspective(1px) translate(0, 0) translateZ(0) skewX(-13deg);
}
/* line 150, ../scss/base/_base.scss */
ul li:hover:before {
  transform: translate(3px, 0);
}

/* line 157, ../scss/base/_base.scss */
ol {
  margin-bottom: 30px;
  padding-left: 36px;
}
/* line 161, ../scss/base/_base.scss */
ol li {
  padding-left: 10px;
}

/* line 167, ../scss/base/_base.scss */
mark {
  padding: 0 7px;
  border-radius: 6px;
  background: #22282d;
  color: #bcbcbc;
}

/* line 174, ../scss/base/_base.scss */
.text-center {
  text-align: center;
}

/* line 178, ../scss/base/_base.scss */
delete,
.t-line {
  text-decoration: line-through;
}

/* line 183, ../scss/base/_base.scss */
.t-under {
  text-decoration: underline;
}

/* line 188, ../scss/base/_base.scss */
.code-block {
  background: #20252a;
  color: #4a5661;
  padding: 15px;
  line-height: 34px;
}
/* line 194, ../scss/base/_base.scss */
.code-block span {
  color: #b20000;
}

/* line 198, ../scss/base/_base.scss */
.bg-grey-d {
  background: #171b1e;
}

/* line 202, ../scss/base/_base.scss */
.box, .box-first, .box-large, .box-nested, .box-row {
  position: relative;
  box-sizing: border-box;
  margin-bottom: 30px;
  background: #22282d;
  border-radius: 2px;
  overflow: hidden;
  text-align: left;
}
/* line 211, ../scss/base/_base.scss */
.box p, .box-first p, .box-large p, .box-nested p, .box-row p {
  margin: 0;
}

/* line 215, ../scss/base/_base.scss */
.box, .box-first, .box-large, .box-nested, .box-row {
  padding: 15px;
}

/* line 219, ../scss/base/_base.scss */
.box-nested {
  background: #101316;
}

/* line 223, ../scss/base/_base.scss */
.box-first {
  background: #171b1e;
}

/* line 227, ../scss/base/_base.scss */
.box-large {
  height: 100px;
}

/* line 231, ../scss/base/_base.scss */
.p-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* line 236, ../scss/base/_base.scss */
.p-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* line 241, ../scss/base/_base.scss */
.p-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* line 246, ../scss/base/_base.scss */
#map {
  height: 400px;
  margin: 0;
  padding: 0;
}

/* line 252, ../scss/base/_base.scss */
.img-rond {
  border-radius: 6px;
}

/* line 256, ../scss/base/_base.scss */
.cursive-red {
  font-family: cursive;
  color: #b20000;
}
/* line 259, ../scss/base/_base.scss */
.cursive-red.headline {
  font-size: 35px;
}

/*--------------------------------------------------------------
# Form Elements Style
--------------------------------------------------------------*/
/* line 271, ../scss/base/_base.scss */
form.searchbar {
  text-align: center;
}
/* line 273, ../scss/base/_base.scss */
form.searchbar input {
  width: 50%;
}
/* line 276, ../scss/base/_base.scss */
form.searchbar #elasticsearch-searchinputautocomplete-list {
  text-align: left;
  width: 48%;
  position: absolute;
  background: #22282d;
  z-index: 100;
  left: 26%;
  padding: 10px;
  border-radius: 0 0 10px 10px;
}

/* line 289, ../scss/base/_base.scss */
.input-bg {
  position: relative;
  z-index: 2;
  display: inline-block;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 48px;
  margin: 0;
  padding: 0;
  border: 1px solid #30383f;
  border-radius: 6px;
  background: #0d1114;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  outline: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-out;
  transform: perspective(1px) translateZ(0) skewX(-13deg);
}
/* line 309, ../scss/base/_base.scss */
.input-bg:hover {
  border: 1px solid #280000;
}
/* line 313, ../scss/base/_base.scss */
.input-bg.focus {
  border: 1px solid #b20000;
}
/* line 317, ../scss/base/_base.scss */
.input-bg.length {
  border: 1px solid #b20000;
}
/* line 321, ../scss/base/_base.scss */
.input-bg.error {
  border: 1px solid #970f0f;
}
/* line 325, ../scss/base/_base.scss */
.input-bg input[type="date"],
.input-bg input[type="datetime"],
.input-bg input[type="datetime-local"],
.input-bg input[type="email"],
.input-bg input[type="month"],
.input-bg input[type="number"],
.input-bg input[type="password"],
.input-bg input[type="range"],
.input-bg input[type="search"],
.input-bg input[type="tel"],
.input-bg input[type="text"],
.input-bg input[type="time"],
.input-bg input[type="url"],
.input-bg input[type="week"],
.input-bg select {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  margin: 0;
  padding: 0 15px;
  border: 0 !important;
  border-radius: 6px;
  background: #0d1114;
  color: #fff;
  box-shadow: none !important;
  outline: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 48px;
  transition: all 0.2s ease;
  transform: perspective(1px) translateZ(0) skewX(13deg);
  backface-visibility: hidden;
}

/* line 361, ../scss/base/_base.scss */
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="range"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  margin: 0;
  padding: 0 15px;
  border: 1px solid #30383f;
  border-radius: 6px;
  background: #0d1114;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  outline: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 48px;
  transition: all 0.2s ease;
}
/* line 393, ../scss/base/_base.scss */
input[type="date"]:hover,
input[type="datetime"]:hover,
input[type="datetime-local"]:hover,
input[type="email"]:hover,
input[type="month"]:hover,
input[type="number"]:hover,
input[type="password"]:hover,
input[type="range"]:hover,
input[type="search"]:hover,
input[type="tel"]:hover,
input[type="text"]:hover,
input[type="time"]:hover,
input[type="url"]:hover,
input[type="week"]:hover,
select:hover {
  border: 1px solid #280000;
}
/* line 397, ../scss/base/_base.scss */
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="range"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="week"]:focus,
select:focus {
  border: 1px solid #b20000;
}
/* line 401, ../scss/base/_base.scss */
input[type="date"].length,
input[type="datetime"].length,
input[type="datetime-local"].length,
input[type="email"].length,
input[type="month"].length,
input[type="number"].length,
input[type="password"].length,
input[type="range"].length,
input[type="search"].length,
input[type="tel"].length,
input[type="text"].length,
input[type="time"].length,
input[type="url"].length,
input[type="week"].length,
select.length {
  border: 1px solid #b20000;
}
/* line 404, ../scss/base/_base.scss */
input[type="date"].error,
input[type="datetime"].error,
input[type="datetime-local"].error,
input[type="email"].error,
input[type="month"].error,
input[type="number"].error,
input[type="password"].error,
input[type="range"].error,
input[type="search"].error,
input[type="tel"].error,
input[type="text"].error,
input[type="time"].error,
input[type="url"].error,
input[type="week"].error,
select.error {
  border: 1px solid #970f0f;
}

/* line 409, ../scss/base/_base.scss */
input[type=submit] {
  transition: all 0.2s ease;
}

/* line 413, ../scss/base/_base.scss */
.text-shadow {
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
}

/* line 417, ../scss/base/_base.scss */
blockquote {
  margin-bottom: 20px;
  padding: 10px 20px;
  border-left: 2px solid #b20000;
  color: #777777;
  font-style: italic;
  line-height: 160%;
  font-size: calc(16px + 4 * ((100vw - 320px) / 1440));
}
/* line 426, ../scss/base/_base.scss */
blockquote .blockquote__footer {
  position: relative;
  color: #fff;
  font-size: calc(15px + 1 * ((100vw - 320px) / 1440));
}
/* line 431, ../scss/base/_base.scss */
blockquote .blockquote__footer:before {
  content: "\2014 \00A0";
}

/* line 437, ../scss/base/_base.scss */
.btn-submit {
  padding: 0 !important;
}
/* line 440, ../scss/base/_base.scss */
.btn-submit.w100 {
  width: 100%;
  height: 48px;
}

/* line 446, ../scss/base/_base.scss */
.btn input[type="submit"] {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: #fff;
  outline: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transform: perspective(1px) translateZ(0) skewX(0deg);
}

/* line 460, ../scss/base/_base.scss */
.btn.btn-perspective input[type="submit"] {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: #fff;
  outline: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transform: perspective(1px) translateZ(0) skewX(13deg);
}

/* line 474, ../scss/base/_base.scss */
.btn-active.btn-perspective input[type="submit"] {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: #fff;
  outline: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transform: perspective(1px) translateZ(0) skewX(13deg);
}

/* line 488, ../scss/base/_base.scss */
.btn-active input[type="submit"] {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: #fff;
  outline: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transform: perspective(1px) translateZ(0) skewX(0deg);
}

/* line 502, ../scss/base/_base.scss */
select {
  font-size: 16px !important;
}

/* line 506, ../scss/base/_base.scss */
textarea {
  width: 100%;
  min-height: 150px;
  margin: 0 !important;
  padding: 10px;
  border: 1px solid #30383f;
  border-radius: 6px;
  background: #0d1114;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  outline: none;
  font-size: 16px !important;
  transition: all 0.2s ease-out;
}
/* line 520, ../scss/base/_base.scss */
textarea:hover {
  border: 1px solid #280000;
}
/* line 524, ../scss/base/_base.scss */
textarea:focus {
  border: 1px solid #b20000;
}
/* line 528, ../scss/base/_base.scss */
textarea.length {
  border: 1px solid #b20000;
}
/* line 531, ../scss/base/_base.scss */
textarea.error {
  border: 1px solid #970f0f;
}

/* line 537, ../scss/base/_base.scss */
#elasticsearch-searchinputautocomplete-list .search-hint {
  color: #646464;
}

/*--------------------------------------------------------------
# Custom Checkbox Style
--------------------------------------------------------------*/
/* line 546, ../scss/base/_base.scss */
.checkbox {
  position: absolute;
  z-index: -1;
  margin: 10px 0 0 20px;
  opacity: 0;
}

/* line 553, ../scss/base/_base.scss */
.checkbox + label {
  position: relative;
  display: flex;
  align-items: center;
  height: 20px;
  line-height: 20px;
  margin: 10px 0;
  padding: 0 0 0 30px;
  cursor: pointer;
}

/* line 563, ../scss/base/_base.scss */
label a {
  margin-left: 4px;
  border: 0;
  color: #b20000;
  text-shadow: 0 2px 6px rgba(178, 0, 0, 0.5);
  text-decoration: underline;
}
/* line 570, ../scss/base/_base.scss */
label a:hover {
  text-decoration: none;
}

/* line 575, ../scss/base/_base.scss */
.checkbox + label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 2px solid #280000;
  border-radius: 4px;
  transition: 0.2s;
}

/* line 590, ../scss/base/_base.scss */
.checkbox.error + label:before {
  border-color: #970f0f;
}

/* line 594, ../scss/base/_base.scss */
.checkbox:hover + label:before {
  border-color: #b20000;
}

/* line 598, ../scss/base/_base.scss */
.checkbox:checked + label:before {
  border-color: #b20000;
  box-shadow: 0 0px 6px rgba(178, 0, 0, 0.5);
}

/* line 602, ../scss/base/_base.scss */
.checkbox:checked + label {
  color: #fff;
  transition: 0.2s;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
}

/* line 608, ../scss/base/_base.scss */
.checkbox + label:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  background: #b20000;
  opacity: 0;
  transition: 0.2s;
}

/* line 620, ../scss/base/_base.scss */
.checkbox:checked + label:after {
  box-shadow: 0 0px 6px rgba(178, 0, 0, 0.5);
  opacity: 1;
}

/* line 625, ../scss/base/_base.scss */
.checkbox:disabled + label {
  color: #293137;
}

/* line 629, ../scss/base/_base.scss */
.checkbox:disabled + label:before {
  border: 2px solid #171b1e;
  background: #0d1114;
}

/*--------------------------------------------------------------
# Custom Radio Style
--------------------------------------------------------------*/
/* line 638, ../scss/base/_base.scss */
.radio {
  position: absolute;
  z-index: -1;
  margin: 10px 0 0 20px;
  opacity: 0;
}

/* line 645, ../scss/base/_base.scss */
.radio + label {
  position: relative;
  display: flex;
  align-items: center;
  height: 20px;
  margin: 10px 0;
  padding: 0 0 0 30px;
  font-size: 16px;
  cursor: pointer;
}

/* line 656, ../scss/base/_base.scss */
.radio + label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 2px solid #280000;
  border-radius: 100%;
  font-size: 11px;
  transition: 0.2s;
}

/* line 672, ../scss/base/_base.scss */
.radio:hover + label:before {
  border-color: #b20000;
}

/* line 676, ../scss/base/_base.scss */
.radio:checked + label:before {
  border-color: #b20000;
  box-shadow: 0 0 6px rgba(178, 0, 0, 0.5);
}

/* line 682, ../scss/base/_base.scss */
.radio:checked + label {
  color: #fff;
  transition: 0.2s;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
}

/* line 688, ../scss/base/_base.scss */
.radio + label:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #b20000;
  opacity: 0;
  transition: 0.2s;
}

/* line 701, ../scss/base/_base.scss */
.radio:checked + label:after {
  box-shadow: 0 0px 6px rgba(178, 0, 0, 0.5);
  opacity: 1;
}

/* line 706, ../scss/base/_base.scss */
.radio:disabled + label {
  color: #293137;
}

/* line 710, ../scss/base/_base.scss */
.radio:disabled + label:before {
  border: 2px solid #171b1e;
  background: #0d1114;
}

/* line 716, ../scss/base/_base.scss */
.dflex {
  align-items: flex-start;
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

/*--------------------------------------------------------------
# Table Style
--------------------------------------------------------------*/
/* line 726, ../scss/base/_base.scss */
table {
  width: 100%;
  margin-bottom: 10px;
  border-collapse: collapse;
  background: #20252a;
}

/* line 733, ../scss/base/_base.scss */
th {
  background: #101518;
  color: #b20000;
}

/* line 738, ../scss/base/_base.scss */
th,
td {
  padding: 1.5rem 1rem;
  border: 0;
  text-align: left;
}

/* line 745, ../scss/base/_base.scss */
tbody tr:nth-child(odd) {
  background: #1b2024;
}

/*--------------------------------------------------------------
# Button Style
--------------------------------------------------------------*/
/* line 753, ../scss/base/_base.scss */
.btn-active {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 40px;
  margin: 0;
  padding: 0 20px;
  border: 0;
  border: 1px solid #b20000 !important;
  border-radius: 6px;
  background: linear-gradient(17deg, #650000 0%, #b20000 100%);
  color: #fff !important;
  box-shadow: 0 3px 10px rgba(178, 0, 0, 0.5);
  outline: none;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
@media (max-width: 1050px) {
  /* line 753, ../scss/base/_base.scss */
  .btn-active {
    height: 40px;
    font-size: 14px;
  }
}
/* line 761, ../scss/base/_base.scss */
.btn-active:hover {
  color: #bcbcbc !important;
  border: 1px solid #30383f !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}
/* line 764, ../scss/base/_base.scss */
.btn-active:hover:after {
  opacity: 1;
}
/* line 769, ../scss/base/_base.scss */
.btn-active:after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: -1;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 6px;
  border: 1px solid #30383f !important;
  background: linear-gradient(17deg, #22282d 0%, #30383f 100%);
  opacity: 0;
  transition: all 0.2s ease-out;
}
/* line 773, ../scss/base/_base.scss */
.btn-active.btn-perspective {
  margin-right: 4px !important;
  font-style: italic;
  transform: perspective(1px) translateZ(0) skewX(-13deg);
}
/* line 778, ../scss/base/_base.scss */
.btn-active.btn-perspective span {
  transform: perspective(1px) translateZ(0) skewX(13deg);
  backface-visibility: hidden;
}

/* line 785, ../scss/base/_base.scss */
.btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 40px;
  margin: 0;
  padding: 0 20px;
  border: 0;
  border: 1px solid #30383f;
  border-radius: 6px;
  background: linear-gradient(17deg, #22282d 0%, #30383f 100%);
  color: #bcbcbc;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  outline: none;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
@media (max-width: 1050px) {
  /* line 785, ../scss/base/_base.scss */
  .btn {
    height: 40px;
    font-size: 14px;
  }
}
/* line 793, ../scss/base/_base.scss */
.btn:hover {
  border: 1px solid #b20000;
  color: #fff;
  box-shadow: 0 3px 10px rgba(178, 0, 0, 0.5);
}
/* line 796, ../scss/base/_base.scss */
.btn:hover:after {
  opacity: 1;
}
/* line 800, ../scss/base/_base.scss */
.btn:hover input[type="submit"] {
  color: #fff;
}
/* line 805, ../scss/base/_base.scss */
.btn:after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: -1;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 6px;
  border: 1px solid #b20000;
  background: linear-gradient(17deg, #650000 0%, #b20000 100%);
  opacity: 0;
  transition: all 0.2s ease-out;
}
/* line 809, ../scss/base/_base.scss */
.btn.disable {
  color: #374048;
  pointer-events: none;
}
/* line 814, ../scss/base/_base.scss */
.btn input[type="submit"]:disabled {
  color: #374048 !important;
  pointer-events: none;
}
/* line 819, ../scss/base/_base.scss */
.btn input[type="submit"] {
  color: #bcbcbc;
}
/* line 823, ../scss/base/_base.scss */
.btn.btn-perspective {
  margin-right: 4px !important;
  margin-left: 4px !important;
  font-style: italic;
  transform: perspective(1px) translateZ(0) skewX(-13deg);
}
/* line 829, ../scss/base/_base.scss */
.btn.btn-perspective span {
  transform: perspective(1px) translateZ(0) skewX(13deg);
  backface-visibility: hidden;
}
/* line 834, ../scss/base/_base.scss */
.btn.btn-perspective input[type="submit"] {
  color: #bcbcbc;
}
/* line 840, ../scss/base/_base.scss */
.btn.btn-perspective:hover input[type="submit"] {
  color: #fff;
}

/*--------------------------------------------------------------
# Typography Page
--------------------------------------------------------------*/
@media (max-width: 1200px) {
  /* line 853, ../scss/base/_base.scss */
  .typography .col-6 {
    flex-basis: 100%;
    max-width: 100%;
    padding: 0 15px;
  }
}
/* line 859, ../scss/base/_base.scss */
.typography .btn {
  margin-bottom: 15px;
}
/* line 862, ../scss/base/_base.scss */
.typography .title {
  font-weight: 800;
  font-size: 20px;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
}

/* line 869, ../scss/base/_base.scss */
#js-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
# Tabs Style
--------------------------------------------------------------*/
/* line 879, ../scss/base/_base.scss */
.tab-wrapper {
  display: block;
  margin: auto;
  text-align: center;
}

/* line 885, ../scss/base/_base.scss */
.tab-content-wrapper {
  position: relative;
}

/* line 889, ../scss/base/_base.scss */
.tabs {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 80px;
  padding: 0 15px;
  border-radius: 5px;
}
@media (max-width: 991px) {
  /* line 889, ../scss/base/_base.scss */
  .tabs {
    flex-wrap: wrap;
  }
}
/* line 901, ../scss/base/_base.scss */
.tabs li:before {
  display: none;
}

/* line 906, ../scss/base/_base.scss */
.tab-link {
  position: relative;
  z-index: 5;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
  padding: 44px 0;
  border: 1px solid #141a1e;
  border-right: 1px solid #12171b;
  background: #141a1e;
  box-shadow: 0 4px 10px transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: perspective(1px) translate(0, 0) skewX(-13deg);
  -ms-flex-preferred-size: 16.66666667%;
}
@media (max-width: 991px) {
  /* line 906, ../scss/base/_base.scss */
  .tab-link {
    transform: perspective(1px) translate(0, 0) skewX(0deg);
  }
}
/* line 925, ../scss/base/_base.scss */
.tab-link:first-child {
  border-radius: 5px 0 0 5px;
}
/* line 929, ../scss/base/_base.scss */
.tab-link:last-child {
  border-radius: 0 5px 5px 0;
}
/* line 933, ../scss/base/_base.scss */
.tab-link:hover {
  z-index: 7;
}
/* line 936, ../scss/base/_base.scss */
.tab-link:hover > span {
  color: #b20000;
}
/* line 939, ../scss/base/_base.scss */
.tab-link:hover > span .icon-svg {
  fill: #b20000;
  transform: translate(0, -2px);
}
/* line 946, ../scss/base/_base.scss */
.tab-link:active {
  z-index: 8;
  border-color: #b20000 !important;
  background: #b20000;
  box-shadow: 0 4px 10px rgba(178, 0, 0, 0.5);
  transform: perspective(1px) translate(0, 5px) skewX(-13deg);
}
@media (max-width: 991px) {
  /* line 946, ../scss/base/_base.scss */
  .tab-link:active {
    transform: perspective(1px) translateZ(0) skewX(0deg);
  }
}
/* line 957, ../scss/base/_base.scss */
.tab-link:active > span {
  color: #fff;
}
/* line 960, ../scss/base/_base.scss */
.tab-link:active > span .icon-svg {
  width: 38px;
  height: 38px;
  fill: #fff;
  transform: translate(0, 2px);
}
/* line 969, ../scss/base/_base.scss */
.tab-link.active {
  z-index: 8;
  border-color: #b20000 !important;
  background: #b20000;
  box-shadow: 0 4px 10px rgba(178, 0, 0, 0.5);
}
/* line 975, ../scss/base/_base.scss */
.tab-link.active:hover span {
  color: #fff;
}
/* line 978, ../scss/base/_base.scss */
.tab-link.active:hover span .icon-svg {
  fill: #fff;
  transform: translate(0, 0px);
}
/* line 986, ../scss/base/_base.scss */
.tab-link:last-child:after {
  display: none;
}
/* line 991, ../scss/base/_base.scss */
.tab-link > span {
  display: block;
  color: #fff;
  transition: all 0.3s ease;
  transform: perspective(1px) translateZ(0) skewX(13deg);
}
@media (max-width: 991px) {
  /* line 991, ../scss/base/_base.scss */
  .tab-link > span {
    transform: perspective(1px) translateZ(0) skewX(0deg);
  }
}
/* line 1001, ../scss/base/_base.scss */
.tab-link > span span {
  display: block;
}
/* line 1006, ../scss/base/_base.scss */
.tab-link .icon-svg {
  width: 38px;
  height: 38px;
  fill: #fff;
  transition: all 0.3s ease;
}

/* line 1014, ../scss/base/_base.scss */
.tab-content {
  position: absolute;
  top: 0;
  display: flex;
  overflow: hidden;
  list-style: none;
  opacity: 0;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transform: translateX(50px);
}

/* line 1025, ../scss/base/_base.scss */
.tab-content.active {
  position: relative;
  z-index: 2;
  height: auto;
  opacity: 1;
  transition-delay: 0.3s;
  transform: translateX(0px);
}

@keyframes fadeIn {
  100% {
    opacity: 1;
    transform: none;
  }
}
/*--------------------------------------------------------------
# Custom Google Map Style
--------------------------------------------------------------*/
/* line 1045, ../scss/base/_base.scss */
.gm-style .gm-style-iw-c {
  padding: 25px !important;
  background-color: #333333;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.8);
  border-radius: 6px;
}

/* line 1052, ../scss/base/_base.scss */
.gm-style .gm-style-iw-t::after {
  background: linear-gradient(45deg, #333333 50%, rgba(51, 51, 51, 0) 51%, rgba(51, 51, 51, 0) 100%);
  box-shadow: -1px 1px 1px 0 rgba(0, 0, 0, 0.8);
  content: "";
  height: 15px;
  left: 0;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 15px;
}

/* line 1064, ../scss/base/_base.scss */
.gm-style .gm-style-iw-d {
  overflow: hidden !important;
}

/* line 1067, ../scss/base/_base.scss */
.gm-style .gm-ui-hover-effect {
  display: none !important;
}

/* line 1071, ../scss/base/_base.scss */
div#gm-close-btn {
  width: 15px;
  cursor: pointer;
  height: 15px;
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 20;
}

/* line 1081, ../scss/base/_base.scss */
div#gm-close-btn svg {
  width: 15px;
  height: 15px;
  fill: #bcbcbc;
  transition: all 0.3s ease;
}
/* line 1087, ../scss/base/_base.scss */
div#gm-close-btn svg:hover {
  fill: #b20000;
}

/* line 1092, ../scss/base/_base.scss */
.icon-svg {
  transition: all 0.3s ease;
}

/* added by MF */
/* line 1097, ../scss/base/_base.scss */
.flex {
  display: flex;
}

/* line 1102, ../scss/base/_base.scss */
.flowpack-searchplugin-search ol {
  list-style: none;
  padding-left: 0;
}
/* line 1105, ../scss/base/_base.scss */
.flowpack-searchplugin-search ol li {
  padding-left: 0;
}
/* line 1109, ../scss/base/_base.scss */
.flowpack-searchplugin-search .small-item-list {
  display: flex;
  flex-wrap: wrap;
  margin: 3em 0;
}
/* line 1113, ../scss/base/_base.scss */
.flowpack-searchplugin-search .small-item-list .sidebar__info-posts-item {
  flex: 0 0 25%;
  max-width: 32%;
}
/* line 1116, ../scss/base/_base.scss */
.flowpack-searchplugin-search .small-item-list .sidebar__info-posts-item .sidebar__info-posts-desc {
  padding: 10px 0;
}

/*--------------------------------------------------------------
# Vendor css
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Sprites icons
--------------------------------------------------------------*/
/* line 1, ../scss/base/_sprite.scss */
.icon-svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* line 8, ../scss/base/_sprite.scss */
.icon-svg-close {
  font-size: 51.2rem;
  width: 0.625em;
}

/* line 12, ../scss/base/_sprite.scss */
.icon-svg-facebook {
  font-size: 51.2rem;
  width: 0.625em;
}

/* line 16, ../scss/base/_sprite.scss */
.icon-svg-instagram {
  font-size: 51.2rem;
  width: 0.875em;
}

/* line 20, ../scss/base/_sprite.scss */
.icon-svg-next-arrow {
  font-size: 25.6rem;
  width: 1.75em;
}

/* line 24, ../scss/base/_sprite.scss */
.icon-svg-prev-arrow {
  font-size: 25.6rem;
  width: 1.75em;
}

/* line 28, ../scss/base/_sprite.scss */
.icon-svg-search {
  font-size: 51.2rem;
  width: 1em;
}

/* line 32, ../scss/base/_sprite.scss */
.icon-svg-twitter {
  font-size: 51.2rem;
  width: 1em;
}

/* line 36, ../scss/base/_sprite.scss */
.icon-svg-w-1 {
  font-size: 46.4rem;
  width: 1.10345em;
}

/* line 40, ../scss/base/_sprite.scss */
.icon-svg-w-2 {
  font-size: 51.2rem;
  width: 1em;
}

/* line 44, ../scss/base/_sprite.scss */
.icon-svg-w-3 {
  font-size: 51.2rem;
  width: 1em;
}

/* line 48, ../scss/base/_sprite.scss */
.icon-svg-w-4 {
  font-size: 48rem;
  width: 1.06667em;
}

/* line 52, ../scss/base/_sprite.scss */
.icon-svg-w-5 {
  font-size: 44.8rem;
  width: 1.14286em;
}

/* line 56, ../scss/base/_sprite.scss */
.icon-svg-w-6 {
  font-size: 38.6rem;
  width: 1.32642em;
}

/* line 60, ../scss/base/_sprite.scss */
.icon-svg-youtube {
  font-size: 51.2rem;
  width: 1.125em;
}

/* line 64, ../scss/base/_sprite.scss */
.icon-svg-zoom {
  font-size: 44.8rem;
  width: 1em;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* line 1, ../scss/components/_preloader.scss */
.page-loader {
  position: fixed;
  z-index: 999999;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/* line 9, ../scss/components/_preloader.scss */
.page-loader:before {
  content: "";
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 50%;
  background-color: #0d1114;
}

/* line 19, ../scss/components/_preloader.scss */
.page-loader:after {
  content: "";
  position: fixed;
  bottom: 0%;
  left: 0%;
  width: 100%;
  height: 50%;
  background-color: #0d1114;
}

/* line 29, ../scss/components/_preloader.scss */
.page-loader.loaded:before {
  top: 0;
  height: 0;
  -moz-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
  -o-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
  -webkit-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
  transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
}

/* line 38, ../scss/components/_preloader.scss */
.page-loader.loaded:after {
  bottom: 0;
  height: 0;
  -moz-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
  -o-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
  -webkit-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
  transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
}

/* line 47, ../scss/components/_preloader.scss */
.page-loader.loaded {
  height: 0;
  z-index: -100;
  -moz-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
  -o-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
  -webkit-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
  transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
}

/* line 56, ../scss/components/_preloader.scss */
.page-loader.loaded .iconload:before {
  opacity: 0;
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* line 81, ../scss/components/_preloader.scss */
.page-loader .iconload:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  z-index: 200;
  width: 60px;
  height: 60px;
  border: 2px solid #b20000;
  border-top-color: #fff;
  border-radius: 50%;
  -moz-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
  -o-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
  -webkit-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
  transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes animate-preloader2 {
  0% {
    transform: perspective(1px) translateZ(0) skewX(13deg) rotate(0deg);
  }
  100% {
    transform: perspective(1px) translateZ(0) skewX(13deg) rotate(360deg);
  }
}
@keyframes animate-preloader2 {
  0% {
    transform: perspective(1px) translateZ(0) skewX(13deg) rotate(0deg);
  }
  100% {
    transform: perspective(1px) translateZ(0) skewX(13deg) rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Header Styles
--------------------------------------------------------------*/
/* line 3, ../scss/layout/_header.scss */
header.pages {
  height: auto;
}
/* line 6, ../scss/layout/_header.scss */
header.pages .container {
  position: initial;
}
@media (max-width: 991px) {
  /* line 6, ../scss/layout/_header.scss */
  header.pages .container {
    position: relative;
  }
}
/* line 15, ../scss/layout/_header.scss */
header .pages__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 183px 0 80px 0;
}
@media (max-width: 991px) {
  /* line 15, ../scss/layout/_header.scss */
  header .pages__head {
    padding: 100px 15px 20px;
  }
}
/* line 26, ../scss/layout/_header.scss */
header .pages__head .block__title {
  margin-bottom: 0;
}
/* line 30, ../scss/layout/_header.scss */
header .pages__head .path {
  z-index: 5;
  margin-top: 44px;
}
/* line 34, ../scss/layout/_header.scss */
header .pages__head .path span {
  color: #b20000;
}
/* line 37, ../scss/layout/_header.scss */
header .pages__head .path span:after {
  content: "/";
  display: inline-block;
  padding: 0 5px;
  color: #3c4750;
}
/* line 44, ../scss/layout/_header.scss */
header .pages__head .path span:last-child:after {
  display: none;
}
/* line 49, ../scss/layout/_header.scss */
header .pages__head .path a {
  position: relative;
  border-bottom: 1px solid transparent;
  color: #3c4750;
}
/* line 54, ../scss/layout/_header.scss */
header .pages__head .path a:hover {
  border-color: #3c4750;
}
/* line 62, ../scss/layout/_header.scss */
header .pages__head.black-bg:after {
  content: "";
  /*background: url("../Images/pattern-1.png");*/
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.01;
}

/* line 78, ../scss/layout/_header.scss */
.header__top {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  padding: 10px 15px;
}
/* line 86, ../scss/layout/_header.scss */
.header__top .burger-wrapper {
  display: none;
}
@media (max-width: 991px) {
  /* line 78, ../scss/layout/_header.scss */
  .header__top {
    padding: 10px 0;
  }
  /* line 93, ../scss/layout/_header.scss */
  .header__top.scrolled {
    overflow: visible;
  }
  /* line 97, ../scss/layout/_header.scss */
  .header__top .burger-wrapper {
    position: absolute;
    display: block;
    width: 53px;
    height: 53px;
    z-index: 2200;
    overflow: hidden;
    top: auto;
    right: 0;
  }
  /* line 108, ../scss/layout/_header.scss */
  .header__top .burger {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  /* line 117, ../scss/layout/_header.scss */
  .header__top .hamRotate.active {
    transform: rotate(45deg);
  }
  /* line 120, ../scss/layout/_header.scss */
  .header__top .hamRotate180.active {
    transform: rotate(180deg);
  }
  /* line 124, ../scss/layout/_header.scss */
  .header__top .line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #fff;
    stroke-width: 5.5;
    stroke-linecap: round;
  }
  /* line 131, ../scss/layout/_header.scss */
  .header__top .burger .top {
    stroke-dasharray: 40 160;
  }
  /* line 134, ../scss/layout/_header.scss */
  .header__top .burger .middle {
    stroke-dasharray: 40 142;
    transform-origin: 50%;
    transition: transform 400ms;
  }
  /* line 139, ../scss/layout/_header.scss */
  .header__top .burger .bottom {
    stroke-dasharray: 40 85;
    transform-origin: 50%;
    transition: transform 400ms, stroke-dashoffset 400ms;
  }
  /* line 144, ../scss/layout/_header.scss */
  .header__top .burger.active .top {
    stroke-dashoffset: -64px;
  }
  /* line 147, ../scss/layout/_header.scss */
  .header__top .burger.active .middle {
    transform: rotate(90deg);
  }
  /* line 150, ../scss/layout/_header.scss */
  .header__top .burger.active .bottom {
    stroke-dashoffset: -64px;
  }
}
/* line 155, ../scss/layout/_header.scss */
.header__top .btn-active {
  z-index: 2200 !important;
}
/* line 159, ../scss/layout/_header.scss */
.header__top.scrolled {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  padding: 0 15px !important;
  background: rgba(13, 17, 20, 0.7);
  box-shadow: 0px 1px 4px -1px rgba(0, 0, 0, 0.1);
  animation: show-top 1 0.3s cubic-bezier(0.21, 0.67, 0.58, 1);
  animation-fill-mode: forwards;
  -webkit-backdrop-filter: blur(55px) saturate(180%);
  backdrop-filter: blur(45px) saturate(180%);
  will-change: auto;
}
@media (max-width: 991px) {
  /* line 159, ../scss/layout/_header.scss */
  .header__top.scrolled {
    padding: 10px 0 !important;
  }
}
/* line 178, ../scss/layout/_header.scss */
.header__top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* line 185, ../scss/layout/_header.scss */
.header__logo {
  margin-top: 15px;
  z-index: 2200;
  width: 250px;
  height: 43px;
  display: flex;
}
@media (max-width: 991px) {
  /* line 185, ../scss/layout/_header.scss */
  .header__logo {
    width: 130px;
    height: auto;
  }
}
@media (max-width: 575px) {
  /* line 185, ../scss/layout/_header.scss */
  .header__logo {
    overflow: hidden;
    height: auto;
  }
  /* line 201, ../scss/layout/_header.scss */
  .header__logo img {
    width: 130px;
    max-width: 130px;
  }
}
/* line 207, ../scss/layout/_header.scss */
.header__logo a {
  width: 100%;
  border: 0;
}
/* line 211, ../scss/layout/_header.scss */
.header__logo a:hover {
  opacity: 0.8;
}
/* line 215, ../scss/layout/_header.scss */
.header__logo a img {
  max-height: 43px;
  height: 100%;
}
/* line 222, ../scss/layout/_header.scss */
.header .btn-active {
  z-index: 2000;
}
/* line 227, ../scss/layout/_header.scss */
.header__menu {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  /* line 233, ../scss/layout/_header.scss */
  .header__menu .btn-active {
    height: 27px;
    margin-right: 45px !important;
    padding: 0 10px;
    font-size: 12px;
  }
}
/* line 241, ../scss/layout/_header.scss */
.header__menu nav {
  font-size: calc(15px + 1 * ((100vw - 320px) / 1440));
}
@media (max-width: 991px) {
  /* line 241, ../scss/layout/_header.scss */
  .header__menu nav {
    position: fixed;
    overflow: auto;
    top: 0;
    right: -50%;
    z-index: 2100;
    display: block;
    width: 50%;
    height: 100vh;
    background: #000;
    box-shadow: 0 0 3px rgba(42, 42, 42, 0.1);
    transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
  }
  /* line 257, ../scss/layout/_header.scss */
  .header__menu nav ul {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    padding: 70px 0 0 0;
  }
  /* line 264, ../scss/layout/_header.scss */
  .header__menu nav ul li {
    width: 100%;
  }
  /* line 267, ../scss/layout/_header.scss */
  .header__menu nav ul li.sub {
    position: relative;
  }
  /* line 270, ../scss/layout/_header.scss */
  .header__menu nav ul li.sub:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 49px;
    height: 49px;
    background: url(../Images/angle-bt.svg) center center no-repeat;
    background-size: 12px;
    opacity: 0.4;
    transition: all 0.3s ease-out;
    transform: scale(1, -1);
  }
  /* line 284, ../scss/layout/_header.scss */
  .header__menu nav ul li.sub.open:after {
    transform: scale(-1, 1);
  }
  /* line 288, ../scss/layout/_header.scss */
  .header__menu nav ul li.sub > a:after {
    display: none;
  }
  /* line 293, ../scss/layout/_header.scss */
  .header__menu nav ul li .submenu {
    position: relative;
    top: auto;
    left: auto;
    display: none;
    width: 100%;
    height: auto;
    border: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transition: auto;
    transform: translate(0, 0);
  }
  /* line 307, ../scss/layout/_header.scss */
  .header__menu nav ul li .submenu li {
    padding-left: 15px;
  }
  /* line 310, ../scss/layout/_header.scss */
  .header__menu nav ul li .submenu li a {
    position: relative;
    font-weight: 600;
    text-transform: inherit;
  }
  /* line 315, ../scss/layout/_header.scss */
  .header__menu nav ul li .submenu li a:before {
    content: "";
    position: absolute;
    top: 17px;
    left: 0;
    width: 8px;
    height: 2px;
    border-radius: 1px;
    background: #3c4750;
    opacity: 1;
    transition: all 0.3s ease-out;
    transform: translate(-4px, 0);
  }
  /* line 329, ../scss/layout/_header.scss */
  .header__menu nav ul li .submenu li a:hover {
    background: inherit;
    color: #fff;
  }
  /* line 337, ../scss/layout/_header.scss */
  .header__menu nav ul li a {
    display: block;
    margin: 0 !important;
    padding: 10px 15px;
  }
  /* line 342, ../scss/layout/_header.scss */
  .header__menu nav ul li a.active, .header__menu nav ul li a:hover {
    border-bottom: 1px solid #22282d;
    background: #22282d;
    color: #fff;
  }
  /* line 351, ../scss/layout/_header.scss */
  .header__menu nav.active {
    right: 0;
    display: block;
  }
}
@media (max-width: 575px) {
  /* line 241, ../scss/layout/_header.scss */
  .header__menu nav {
    right: -100%;
    width: 100%;
  }
  /* line 360, ../scss/layout/_header.scss */
  .header__menu nav.active {
    right: 0;
  }
}
/* line 364, ../scss/layout/_header.scss */
.header__menu nav ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 15px 0 0;
  list-style: none;
}
/* line 371, ../scss/layout/_header.scss */
.header__menu nav ul li {
  position: relative;
  padding: 0;
  cursor: pointer;
}
/* line 376, ../scss/layout/_header.scss */
.header__menu nav ul li:before {
  display: none;
}
/* line 380, ../scss/layout/_header.scss */
.header__menu nav ul li a {
  display: inline-block;
  margin: 0 15px;
  padding: 20px 0;
  border: 0;
  color: #bcbcbc;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  /* line 380, ../scss/layout/_header.scss */
  .header__menu nav ul li a {
    margin: 0 13px;
    font-size: 14px;
  }
}
/* line 395, ../scss/layout/_header.scss */
.header__menu nav ul li a:hover {
  color: #fff;
}
/* line 398, ../scss/layout/_header.scss */
.header__menu nav ul li a:hover.btn {
  color: #fff;
}
/* line 403, ../scss/layout/_header.scss */
.header__menu nav ul li a.active {
  color: #fff;
}
/* line 408, ../scss/layout/_header.scss */
.header__menu nav ul li .submenu {
  position: absolute;
  top: 100%;
  left: 15px;
  z-index: 20;
  flex-direction: column;
  width: 250px;
  padding: 5px;
  border: 1px solid #30383f;
  border-radius: 5px;
  background: linear-gradient(17deg, #22282d 0%, #30383f 100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translate(0, 10px);
}
/* line 424, ../scss/layout/_header.scss */
.header__menu nav ul li .submenu li {
  width: 100%;
  padding: 0;
}
/* line 428, ../scss/layout/_header.scss */
.header__menu nav ul li .submenu li a {
  display: inline-block;
  width: 100%;
  margin: 0;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 22px;
  padding: 7px 12px;
  border: 0;
  border-radius: 3px;
  font-size: 15px;
}
/* line 440, ../scss/layout/_header.scss */
.header__menu nav ul li .submenu li a:hover {
  padding-left: 15px;
  color: #b20000;
}
/* line 449, ../scss/layout/_header.scss */
.header__menu nav ul li:hover > a {
  color: #fff;
}
/* line 453, ../scss/layout/_header.scss */
.header__menu nav ul li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 1px);
}
/* line 460, ../scss/layout/_header.scss */
.header__menu nav ul li.sub > a {
  position: relative;
}
/* line 463, ../scss/layout/_header.scss */
.header__menu nav ul li.sub > a:after {
  content: '';
  width: 8px;
  margin-left: 10px;
  height: 10px;
  display: inline-block;
  transform: rotate(180deg);
  background: url("../Images/angle-bt.svg") right center no-repeat;
}

/*--------------------------------------------------------------
# Home Top Wrapper
--------------------------------------------------------------*/
/* line 484, ../scss/layout/_header.scss */
.top__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  position: relative;
}
/* line 495, ../scss/layout/_header.scss */
.top__wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  z-index: -1;
  width: 936px;
  height: 1021px;
  /*background: url("../Images/left_hair.png") no-repeat;*/
}
@media (max-width: 1200px) {
  /* line 495, ../scss/layout/_header.scss */
  .top__wrapper:before {
    display: none;
  }
}
/* line 509, ../scss/layout/_header.scss */
.top__wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  right: 5%;
  z-index: -1;
  width: 727px;
  height: 445px;
  /*background: url("../Images/top_hair.png") no-repeat;*/
}
@media (max-width: 1200px) {
  /* line 509, ../scss/layout/_header.scss */
  .top__wrapper:after {
    display: none;
  }
}
/* line 524, ../scss/layout/_header.scss */
.top__wrapper.e404 .top__wrapper-title {
  color: #b20000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 100%;
  font-size: calc(90px + 80 * ((100vw - 320px) / 1440));
}
/* line 532, ../scss/layout/_header.scss */
.top__wrapper.e404 p {
  margin: 20px 0;
  text-align: center;
}
/* line 537, ../scss/layout/_header.scss */
.top__wrapper.e404 .btn-active {
  z-index: 0;
}

/* line 542, ../scss/layout/_header.scss */
.top__wrapper-title h1 {
  margin-bottom: 24px;
  color: #b20000;
  font-family: cursive;
  text-shadow: 0 2px 6px rgba(178, 0, 0, 0.5);
  font-weight: 400;
  text-align: center;
  line-height: 100%;
  margin-top: 0;
  font-size: calc(50px + 44 * ((100vw - 320px) / 1440));
}
/* line 555, ../scss/layout/_header.scss */
.top__wrapper-title h1 span {
  color: #fff;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
  font-weight: 200;
}

/* line 562, ../scss/layout/_header.scss */
.top__wrapper-description h2 {
  color: #fff;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
  font-weight: 100;
  line-height: 120%;
  text-align: center;
  font-size: calc(20px + 10 * ((100vw - 320px) / 1440));
}

/*--------------------------------------------------------------
# Header Background Style
--------------------------------------------------------------*/
/* line 576, ../scss/layout/_header.scss */
.black-bg {
  position: relative;
}
/* line 579, ../scss/layout/_header.scss */
.black-bg:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: #000;
  opacity: 0.1;
}

@keyframes show-top {
  0% {
    opacity: 0;
    transform: translateY(-25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hide-top {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-25px);
  }
}
/*--------------------------------------------------------------
# Header Title Style
--------------------------------------------------------------*/
/* line 618, ../scss/layout/_header.scss */
.block__title p.text-center {
  margin-bottom: 50px;
}

/* line 623, ../scss/layout/_header.scss */
.block__title h3,
.pages__head .block__title h2 {
  position: relative;
  margin-bottom: 60px;
  color: #fff;
  font-weight: 100;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
  font-size: calc(30px + 11 * ((100vw - 320px) / 1440));
}
@media (max-width: 600px) {
  /* line 623, ../scss/layout/_header.scss */
  .block__title h3,
  .pages__head .block__title h2 {
    margin-bottom: 70px;
  }
}
/* line 639, ../scss/layout/_header.scss */
.block__title h3 span,
.pages__head .block__title h2 span {
  color: #b20000;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(178, 0, 0, 0.5);
}
/* line 645, ../scss/layout/_header.scss */
.block__title h3:after,
.pages__head .block__title h2:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 150px;
  height: 1px;
  background: radial-gradient(closest-side, #b20000, rgba(188, 188, 188, 0));
  transform: translate(-50%, 0);
}
/* line 656, ../scss/layout/_header.scss */
.block__title h3:before,
.pages__head .block__title h2:before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 100px;
  height: 1px;
  background: radial-gradient(closest-side, #bcbcbc, rgba(188, 188, 188, 0));
  transform: translate(-50%, 0);
}

/* line 668, ../scss/layout/_header.scss */
.pages__head .block__title h2 {
  margin-bottom: 0;
  font-size: calc(26px + 15 * ((100vw - 320px) / 1440));
}
@media (max-width: 600px) {
  /* line 668, ../scss/layout/_header.scss */
  .pages__head .block__title h2 {
    margin-bottom: 0;
  }
}

/* line 677, ../scss/layout/_header.scss */
section {
  /*
    Fix by MF: this overflow destroys the sticky sidebar behavior: https://www.stackovercloud.com/2020/09/02/making-elements-stick-in-css-using-position-sticky/
    Use only on mobile!
   */
  padding: 80px 0;
}
@media (max-width: 850px) {
  /* line 677, ../scss/layout/_header.scss */
  section {
    overflow: hidden;
  }
}
@media (max-width: 991px) {
  /* line 677, ../scss/layout/_header.scss */
  section {
    padding: 40px 0;
  }
}

/* line 693, ../scss/layout/_header.scss */
.showmore {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0 0 0;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Home Header Slider
--------------------------------------------------------------*/
/* line 5, ../scss/components/_header-slider.scss */
.slider__top .slider__nav .prev-button {
  position: absolute;
  top: 450px;
  transform: translate(0, -24px);
  left: 24px;
  z-index: 7;
  border: 0;
}
/* line 13, ../scss/components/_header-slider.scss */
.slider__top .slider__nav .prev-button:active svg {
  transform: translate(-10px, 0);
}
/* line 18, ../scss/components/_header-slider.scss */
.slider__top .slider__nav .next-button {
  position: absolute;
  top: 450px;
  transform: translate(0, -24px);
  right: 24px;
  z-index: 7;
  border: 0;
}
/* line 26, ../scss/components/_header-slider.scss */
.slider__top .slider__nav .next-button:active svg {
  transform: translate(10px, 0);
}
/* line 31, ../scss/components/_header-slider.scss */
.slider__top .slider__nav svg {
  opacity: 0.5;
  width: 54px;
  height: 34px;
  transform: none;
}
/* line 37, ../scss/components/_header-slider.scss */
.slider__top .slider__nav svg:hover {
  opacity: 1;
}
@media (max-width: 1200px) {
  /* line 3, ../scss/components/_header-slider.scss */
  .slider__top .slider__nav {
    display: none;
  }
}
/* line 47, ../scss/components/_header-slider.scss */
.slider__top .slick-dots {
  bottom: 40px;
}
/* line 50, ../scss/components/_header-slider.scss */
.slider__top .slick-dots li {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  transform: none;
  box-shadow: none;
  background: transparent;
  border: 2px solid #bcbcbc;
}
/* line 59, ../scss/components/_header-slider.scss */
.slider__top .slick-dots li:hover {
  border: 2px solid #b20000;
}
/* line 62, ../scss/components/_header-slider.scss */
.slider__top .slick-dots li:hover:before {
  opacity: 0;
  width: 10px;
  height: 10px;
  left: 5px;
  top: 5px;
  transform: none;
  background: #b20000;
  border-radius: 100%;
}
/* line 73, ../scss/components/_header-slider.scss */
.slider__top .slick-dots li:before {
  opacity: 0;
  width: 10px;
  height: 10px;
  left: 5px;
  transform: none;
  top: 5px;
  background: #b20000;
  border-radius: 100%;
}
/* line 85, ../scss/components/_header-slider.scss */
.slider__top .slick-dots li.slick-active {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  border: 2px solid #b20000;
  box-shadow: 0 1px 2px rgba(178, 0, 0, 0.5);
}
/* line 92, ../scss/components/_header-slider.scss */
.slider__top .slick-dots li.slick-active:before {
  width: 10px;
  height: 10px;
  left: 5px;
  transform: none;
  top: 5px;
  background: #b20000;
  border-radius: 100%;
  opacity: 1;
}
/* line 103, ../scss/components/_header-slider.scss */
.slider__top .slick-dots li.slick-active:hover:before {
  opacity: 1;
}
/* line 109, ../scss/components/_header-slider.scss */
.slider__top-item {
  height: 100%;
  position: relative;
  vertical-align: middle;
}
/* line 114, ../scss/components/_header-slider.scss */
.slider__top-item:before {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background: rgba(13, 17, 20, 0.8);
  width: 100%;
  height: 100%;
  z-index: 0;
}
/* line 126, ../scss/components/_header-slider.scss */
.slider__top-item.slick-active .slider__top-title {
  animation-name: SliderUpDown;
  animation-duration: 1s;
  opacity: 1;
  transform: translateY(0);
}
/* line 132, ../scss/components/_header-slider.scss */
.slider__top-item.slick-active .slider__top-text {
  animation-name: SliderDownUp;
  animation-duration: 1s;
  opacity: 1;
  transform: translateY(0);
}
/* line 139, ../scss/components/_header-slider.scss */
.slider__top-item.slick-active .btn-active {
  animation-name: SliderDownUp;
  animation-duration: 1.3s;
  opacity: 1;
  transform: translateY(0);
}
/* line 148, ../scss/components/_header-slider.scss */
.slider__top-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 900px;
  z-index: 5;
  color: #fff;
}
@media (max-width: 1200px) {
  /* line 148, ../scss/components/_header-slider.scss */
  .slider__top-content {
    height: 700px;
  }
}
@media (max-width: 767px) {
  /* line 148, ../scss/components/_header-slider.scss */
  .slider__top-content {
    height: 600px;
    text-align: center;
    align-items: center;
  }
}
/* line 168, ../scss/components/_header-slider.scss */
.slider__top-title {
  opacity: 0;
  transform: translateY(-50px);
  font-size: calc(40px + 38 * ((100vw - 320px) / 1440));
  line-height: 100%;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}
/* line 178, ../scss/components/_header-slider.scss */
.slider__top-text {
  opacity: 0;
  transform: translateY(50px);
  color: #bcbcbc;
  font-size: calc(17px + 5 * ((100vw - 320px) / 1440));
  line-height: 34px;
  font-weight: 300;
  margin: 50px 0;
}
@media (max-width: 991px) {
  /* line 178, ../scss/components/_header-slider.scss */
  .slider__top-text {
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  /* line 178, ../scss/components/_header-slider.scss */
  .slider__top-text {
    margin: 40px 0;
  }
}
/* line 196, ../scss/components/_header-slider.scss */
.slider__top .btn-active {
  opacity: 0;
  transform: translateY(50px);
  font-size: 18px;
  padding: 25px 40px;
}
@media (max-width: 1200px) {
  /* line 196, ../scss/components/_header-slider.scss */
  .slider__top .btn-active {
    font-size: 16px;
    padding: 15px 20px;
  }
}

@keyframes SliderUpDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes SliderDownUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 238, ../scss/components/_header-slider.scss */
.fadeInUpSD {
  -webkit-animation-name: fadeInUpSD;
  animation-name: fadeInUpSD;
}

/*--------------------------------------------------------------
# Home Header Single Image
--------------------------------------------------------------*/
/* line 3, ../scss/components/_header-single-image.scss */
.single__top-item {
  height: 100%;
  position: relative;
  vertical-align: middle;
  background-attachment: fixed !important;
}
/* line 9, ../scss/components/_header-single-image.scss */
.single__top-item:before {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background: rgba(13, 17, 20, 0.8);
  width: 100%;
  height: 100%;
  z-index: 0;
}
/* line 21, ../scss/components/_header-single-image.scss */
.single__top-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 900px;
  z-index: 5;
  color: #fff;
}
@media (max-width: 1200px) {
  /* line 21, ../scss/components/_header-single-image.scss */
  .single__top-content {
    height: 700px;
  }
}
@media (max-width: 767px) {
  /* line 21, ../scss/components/_header-single-image.scss */
  .single__top-content {
    height: 600px;
    text-align: center;
    align-items: center;
  }
}
/* line 42, ../scss/components/_header-single-image.scss */
.single__top-title {
  font-size: calc(46px + 42 * ((100vw - 320px) / 1440));
  line-height: 100%;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}
/* line 50, ../scss/components/_header-single-image.scss */
.single__top-text {
  color: #bcbcbc;
  font-size: calc(17px + 5 * ((100vw - 320px) / 1440));
  line-height: 34px;
  font-weight: 300;
  margin: 50px 0;
}
@media (max-width: 991px) {
  /* line 50, ../scss/components/_header-single-image.scss */
  .single__top-text {
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  /* line 50, ../scss/components/_header-single-image.scss */
  .single__top-text {
    margin: 25px 0;
  }
}
/* line 66, ../scss/components/_header-single-image.scss */
.single__top .btn-active {
  font-size: 18px;
  padding: 25px 40px;
}
@media (max-width: 1200px) {
  /* line 66, ../scss/components/_header-single-image.scss */
  .single__top .btn-active {
    font-size: 16px;
    padding: 15px 20px;
  }
}

/*--------------------------------------------------------------
# Home Header Video Background
--------------------------------------------------------------*/
/* line 1, ../scss/components/_header-video.scss */
.wrapper__video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* line 14, ../scss/components/_header-video.scss */
.single__top.video-background .single__top-item {
  height: 100%;
  position: relative;
  vertical-align: middle;
}
/* line 19, ../scss/components/_header-video.scss */
.single__top.video-background .single__top-item:before {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background: rgba(13, 17, 20, 0.8) url("../Images/video-pattern.svg");
  width: 100%;
  height: 100%;
  z-index: 0;
}
/* line 31, ../scss/components/_header-video.scss */
.single__top.video-background .single__top-title {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(0deg, #650000 0%, #b20000 100%);
  -webkit-background-clip: text;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(178, 0, 0, 0.3);
  -webkit-text-fill-color: transparent;
}
/* line 40, ../scss/components/_header-video.scss */
.single__top.video-background .btn {
  font-size: 18px;
  padding: 25px 40px;
  border: 0;
}
@media (max-width: 1200px) {
  /* line 40, ../scss/components/_header-video.scss */
  .single__top.video-background .btn {
    font-size: 16px;
    padding: 15px 20px;
  }
}
/* line 50, ../scss/components/_header-video.scss */
.single__top.video-background .btn:after {
  border: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
# Our Experience Styles
--------------------------------------------------------------*/
/* line 1, ../scss/components/_our-experience.scss */
.why-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
/* line 6, ../scss/components/_our-experience.scss */
.why-trust__block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  text-transform: uppercase;
}
@media (max-width: 1050px) {
  /* line 6, ../scss/components/_our-experience.scss */
  .why-trust__block {
    width: 100%;
  }
}
/* line 17, ../scss/components/_our-experience.scss */
.why-trust__block.title h3 {
  display: flex;
  flex-direction: column;
  padding: 200px 0;
  background: url(../Images/exp.svg) 50% 50% no-repeat;
  background-size: contain;
  color: #fff;
  font-weight: 100;
  line-height: 100%;
  text-align: center;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
  font-size: calc(30px + 45 * ((100vw - 320px) / 1440));
}
@media (max-width: 1050px) {
  /* line 17, ../scss/components/_our-experience.scss */
  .why-trust__block.title h3 {
    margin-bottom: 40px;
    padding: 20px 0;
  }
}
@media (max-width: 767px) {
  /* line 17, ../scss/components/_our-experience.scss */
  .why-trust__block.title h3 {
    position: relative;
    flex-direction: row;
    margin-bottom: 60px;
    padding: 0 15px;
    background: none;
  }
  /* line 42, ../scss/components/_our-experience.scss */
  .why-trust__block.title h3:after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 150px;
    height: 1px;
    background: radial-gradient(closest-side, #b20000, rgba(188, 188, 188, 0));
    transform: translate(-50%, 0);
  }
  /* line 53, ../scss/components/_our-experience.scss */
  .why-trust__block.title h3:before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    width: 100px;
    height: 1px;
    background: radial-gradient(closest-side, #bcbcbc, rgba(188, 188, 188, 0));
    transform: translate(-50%, 0);
  }
}
/* line 65, ../scss/components/_our-experience.scss */
.why-trust__block.title h3 span {
  display: block;
  color: #b20000;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(178, 0, 0, 0.5);
}
@media (max-width: 767px) {
  /* line 65, ../scss/components/_our-experience.scss */
  .why-trust__block.title h3 span {
    margin-left: 15px;
  }
}

/*--------------------------------------------------------------
# Counter Number Styles
--------------------------------------------------------------*/
/* line 83, ../scss/components/_our-experience.scss */
.counter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 5px 0 0 5px;
  background: #141a1e;
}
@media (max-width: 1050px) {
  /* line 83, ../scss/components/_our-experience.scss */
  .counter {
    border-radius: 0;
  }
}
@media (max-width: 600px) {
  /* line 83, ../scss/components/_our-experience.scss */
  .counter {
    padding: 0;
  }
}
/* line 99, ../scss/components/_our-experience.scss */
.counter__item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 50%;
  padding: 100px 0;
  box-shadow: 0 0 10px transparent;
  text-align: center;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  /* line 99, ../scss/components/_our-experience.scss */
  .counter__item {
    padding: 60px 15px;
  }
}
@media (max-width: 480px) {
  /* line 99, ../scss/components/_our-experience.scss */
  .counter__item {
    width: 100%;
    padding: 50px 15px;
    border-bottom: 1px solid #22282d;
  }
  /* line 119, ../scss/components/_our-experience.scss */
  .counter__item:last-child {
    border: 0;
  }
  /* line 123, ../scss/components/_our-experience.scss */
  .counter__item:after, .counter__item:before {
    display: none !important;
  }
}
/* line 129, ../scss/components/_our-experience.scss */
.counter__item:hover {
  background: #b20000;
  color: #fff;
  box-shadow: 0 5px 15px #0d1114;
}
/* line 134, ../scss/components/_our-experience.scss */
.counter__item:hover .counter__number {
  color: #fff;
}
/* line 138, ../scss/components/_our-experience.scss */
.counter__item:hover span {
  color: #fff;
}
/* line 143, ../scss/components/_our-experience.scss */
.counter__item:nth-child(1):after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: linear-gradient(to left, #22282d, rgba(188, 188, 188, 0) 75%);
}
/* line 153, ../scss/components/_our-experience.scss */
.counter__item:nth-child(1):before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0px;
  width: 1px;
  height: 100%;
  background: linear-gradient(to top, #22282d, rgba(188, 188, 188, 0) 75%);
}
/* line 163, ../scss/components/_our-experience.scss */
.counter__item:nth-child(2):before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #22282d, rgba(188, 188, 188, 0) 75%);
}
/* line 173, ../scss/components/_our-experience.scss */
.counter__item:nth-child(3):before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0px;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, #22282d, rgba(188, 188, 188, 0) 75%);
}
/* line 183, ../scss/components/_our-experience.scss */
.counter__item p {
  width: 100%;
  margin-bottom: 0;
  font-weight: 100;
  text-transform: initial;
  font-size: calc(16px + 4 * ((100vw - 320px) / 1440));
}
/* line 191, ../scss/components/_our-experience.scss */
.counter__item span {
  color: #b20000;
  font-weight: 600;
  line-height: 100%;
  transition: all 0.3s ease;
  font-size: calc(30px + 36 * ((100vw - 320px) / 1440));
}
/* line 200, ../scss/components/_our-experience.scss */
.counter__number {
  color: #b20000;
  font-weight: 600;
  line-height: 100%;
  transition: all 0.3s ease;
  animation-duration: 1s;
  animation-delay: 0s;
  font-size: calc(30px + 36 * ((100vw - 320px) / 1440));
}

/*--------------------------------------------------------------
# Team block Styles
--------------------------------------------------------------*/
/* line 3, ../scss/pages/_team.scss */
.team__block {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
/* line 9, ../scss/pages/_team.scss */
.team__item {
  flex-basis: 25%;
  max-width: 25%;
  margin-bottom: 40px;
  padding: 0 15px;
}
@media (max-width: 1050px) {
  /* line 9, ../scss/pages/_team.scss */
  .team__item {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (max-width: 500px) {
  /* line 9, ../scss/pages/_team.scss */
  .team__item {
    flex-basis: 100%;
    max-width: 100%;
  }
}
/* line 28, ../scss/pages/_team.scss */
.team__item:hover .team__image:before {
  opacity: 1;
  visibility: visible;
}
/* line 32, ../scss/pages/_team.scss */
.team__item:hover .team__image .team__info {
  opacity: 1;
}
/* line 36, ../scss/pages/_team.scss */
.team__item:hover .team__name {
  opacity: 1;
  transform: translate(0, 0);
  transition-delay: .15s;
}
/* line 42, ../scss/pages/_team.scss */
.team__item:hover .team__specialty {
  opacity: 1;
  transform: translate(0, 0);
  transition-delay: .25s;
}
/* line 49, ../scss/pages/_team.scss */
.team__item a {
  text-decoration: none;
}
/* line 53, ../scss/pages/_team.scss */
.team__item a:hover .team__image img {
  opacity: 1;
  filter: saturate(1);
}
/* line 61, ../scss/pages/_team.scss */
.team__image {
  position: relative;
  overflow: hidden;
  z-index: 4;
  height: 492px;
  padding: 0 0 100% 0;
  border-radius: 5px;
  background: #0d1114;
  box-shadow: 0px 36px 0px -30px #0d1114, -36px 0px 0px -30px #0d1114, 0px -36px 0px -30px #0d1114, 36px 0px 0px -30px #0d1114, 0 0 0 2px #0d1114;
  transition: all 0.3s ease;
}
@media (max-width: 500px) {
  /* line 61, ../scss/pages/_team.scss */
  .team__image {
    height: 370px;
  }
}
/* line 77, ../scss/pages/_team.scss */
.team__image img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
/* line 86, ../scss/pages/_team.scss */
.team__image .team__info {
  position: absolute;
  bottom: 20px;
  z-index: 100;
  left: 20px;
  transition-delay: 0.10s;
  transition: all 0.45s cubic-bezier(0.23, 0.88, 0.34, 0.99);
}
/* line 95, ../scss/pages/_team.scss */
.team__image:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  transition: all 0.3s ease;
  transition-delay: .15s;
  opacity: 0;
  visibility: hidden;
  content: '';
  border-radius: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(13, 17, 20, 0.9) 0%, rgba(178, 0, 0, 0) 100%);
}
@media (max-width: 1050px) {
  /* line 95, ../scss/pages/_team.scss */
  .team__image:before {
    opacity: 1;
    visibility: visible;
  }
}
/* line 117, ../scss/pages/_team.scss */
.team__name {
  color: #fff;
  opacity: 0;
  transform: translate(0, 20px);
  font-size: calc(20px + 2 * ((100vw - 320px) / 1440));
  font-weight: 700;
  transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
  transition-delay: 0s;
}
@media (max-width: 1050px) {
  /* line 117, ../scss/pages/_team.scss */
  .team__name {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/* line 132, ../scss/pages/_team.scss */
.team__specialty {
  color: #bcbcbc;
  opacity: 0;
  transform: translate(0, 20px);
  font-size: calc(16px + 0 * ((100vw - 320px) / 1440));
  transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
  transition-delay: 0s;
}
@media (max-width: 1050px) {
  /* line 132, ../scss/pages/_team.scss */
  .team__specialty {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/* line 149, ../scss/pages/_team.scss */
.modal-custom .modal-team-body {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media (max-width: 500px) {
  /* line 149, ../scss/pages/_team.scss */
  .modal-custom .modal-team-body {
    flex-direction: column;
    align-items: center;
  }
}
/* line 161, ../scss/pages/_team.scss */
.modal-custom .modal-team-left {
  flex: 0 0 200px;
  opacity: 0;
  transition-duration: 0.7s;
  transition-property: transform, opacity;
  transform: translateY(-50px);
}
@media (max-width: 500px) {
  /* line 161, ../scss/pages/_team.scss */
  .modal-custom .modal-team-left {
    flex: 0 0 auto;
  }
}
/* line 172, ../scss/pages/_team.scss */
.modal-custom .modal-team-left img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}
@media (max-width: 500px) {
  /* line 172, ../scss/pages/_team.scss */
  .modal-custom .modal-team-left img {
    width: auto;
    height: 100%;
  }
}
/* line 185, ../scss/pages/_team.scss */
.modal-custom .modal-team-img {
  position: relative;
  height: 300px;
}
@media (max-width: 500px) {
  /* line 185, ../scss/pages/_team.scss */
  .modal-custom .modal-team-img {
    width: 140px;
    height: 200px;
  }
}
/* line 194, ../scss/pages/_team.scss */
.modal-custom .modal-team-img img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
/* line 205, ../scss/pages/_team.scss */
.modal-custom .modal-team-right {
  width: calc(100% - 220px);
  padding-left: 15px;
  text-align: left;
}
@media (max-width: 500px) {
  /* line 205, ../scss/pages/_team.scss */
  .modal-custom .modal-team-right {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}
/* line 217, ../scss/pages/_team.scss */
.modal-custom .modal-team-name {
  margin: 0;
  color: #fff;
  opacity: 0;
  font-weight: 700;
  transition-duration: 0.7s;
  transition-property: transform, opacity;
  transform: translateY(-50px);
  font-size: calc(20px + 2 * ((100vw - 320px) / 1440));
}
@media (max-width: 500px) {
  /* line 217, ../scss/pages/_team.scss */
  .modal-custom .modal-team-name {
    margin: 20px 0 5px 0;
  }
}
/* line 232, ../scss/pages/_team.scss */
.modal-custom .modal-team-specialty {
  margin: 0 0 10px 0;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #30383f;
  opacity: 0;
  transition-duration: 0.7s;
  transition-property: transform, opacity;
  transform: translateY(50px);
  font-size: calc(15px + 1 * ((100vw - 320px) / 1440));
}
/* line 243, ../scss/pages/_team.scss */
.modal-custom .modal-team-text {
  opacity: 0;
  font-size: 16px;
  line-height: 24px;
  transition-duration: 0.7s;
  transition-property: transform, opacity;
  transform: translateY(50px);
}
/* line 251, ../scss/pages/_team.scss */
.modal-custom .modal-team-text p {
  margin-bottom: 20px;
}
/* line 256, ../scss/pages/_team.scss */
.modal-custom .modal-team-progressbar {
  width: 100%;
  opacity: 0;
  font-size: 16px;
  line-height: 24px;
  margin-top: 20px;
  transition-duration: 0.9s;
  transition-property: transform, opacity;
  transform: translateY(50px);
}

/*--------------------------------------------------------------
# Carousels Home (Last From Blog, People Reviews, Clients)
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Slick Carousel Custom Styles
--------------------------------------------------------------*/
/* line 5, ../scss/components/_carousels.scss */
.slider__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  /* line 5, ../scss/components/_carousels.scss */
  .slider__nav {
    justify-content: center;
  }
}
/* line 15, ../scss/components/_carousels.scss */
.slider__nav a {
  height: 30px;
  padding: 0 15px;
  transition: all 0.1s ease !important;
  transform: translate(0, 0);
}
@media (max-width: 600px) {
  /* line 15, ../scss/components/_carousels.scss */
  .slider__nav a {
    height: 24px;
  }
}
/* line 25, ../scss/components/_carousels.scss */
.slider__nav a:active {
  box-shadow: none;
  transform: translate(0, 2px) perspective(1px) translateZ(0) skewX(-13deg);
}
@media (max-width: 600px) {
  /* line 25, ../scss/components/_carousels.scss */
  .slider__nav a:active {
    transform: translate(0, 1px) perspective(1px) translateZ(0) skewX(-13deg);
  }
}
/* line 35, ../scss/components/_carousels.scss */
.slider__nav svg {
  width: 24px;
  height: 14px;
  transform: perspective(1px) translateZ(0) skewX(13deg);
}
@media (max-width: 600px) {
  /* line 35, ../scss/components/_carousels.scss */
  .slider__nav svg {
    width: 17px;
    height: 11px;
  }
}

/*--------------------------------------------------------------
# People Reviews Carousel
--------------------------------------------------------------*/
/* line 54, ../scss/components/_carousels.scss */
.reviewshome__slider {
  display: flex;
  min-width: 0;
  margin: 0 -20px;
}
@media (max-width: 600px) {
  /* line 54, ../scss/components/_carousels.scss */
  .reviewshome__slider {
    margin: 0 -15px;
  }
}
/* line 63, ../scss/components/_carousels.scss */
.reviewshome__slider .slick-list {
  padding: 20px 0;
}
/* line 66, ../scss/components/_carousels.scss */
.reviewshome__slider .slick-list .slick-track {
  display: flex;
}
/* line 72, ../scss/components/_carousels.scss */
.reviewshome__item {
  height: auto;
  margin: 0 20px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #0d1114;
  box-shadow: 0px 36px 0px -34px #0d1114, -32px 0px 0px -30px #0d1114, 0px -32px 0px -30px #0d1114, 32px 0px 0px -30px #0d1114, 0 0 0 2px #0d1114;
  outline: none;
  transition: all 0.3s ease;
  transform: translate(0, 0);
}
@media (max-width: 500px) {
  /* line 72, ../scss/components/_carousels.scss */
  .reviewshome__item {
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: none !important;
  }
}
/* line 92, ../scss/components/_carousels.scss */
.reviewshome__item:hover {
  border: 1px solid transparent;
  box-shadow: 0 36px 0 -34px #22282d, -32px 0 0 -30px #22282d, 0 -32px 0 -30px #22282d, 32px 0 0 -30px #22282d, 0 0 0 2px #b20000;
  transform: translate(0, -3px);
}
/* line 98, ../scss/components/_carousels.scss */
.reviewshome__item:hover .reviewshome__avatar img {
  filter: saturate(1);
}
/* line 104, ../scss/components/_carousels.scss */
.reviewshome__user {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
/* line 110, ../scss/components/_carousels.scss */
.reviewshome__avatar {
  position: relative;
  flex: 0 0 100px;
  overflow: hidden;
  width: 100px;
  height: 100px;
  margin-right: 20px;
  border: 2px solid #b20000;
  border-radius: 100%;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  /* line 110, ../scss/components/_carousels.scss */
  .reviewshome__avatar {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
  }
}
/* line 127, ../scss/components/_carousels.scss */
.reviewshome__avatar img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 1;
  filter: saturate(0);
  transition: all 0.3s ease;
}
/* line 141, ../scss/components/_carousels.scss */
.reviewshome__name {
  margin-bottom: 5px;
  color: #b20000;
  font-size: calc(18px + 2 * ((100vw - 320px) / 1440));
}
/* line 147, ../scss/components/_carousels.scss */
.reviewshome__spec {
  font-size: calc(16px + 2 * ((100vw - 320px) / 1440));
}
/* line 151, ../scss/components/_carousels.scss */
.reviewshome__text {
  font-style: italic;
}

/*--------------------------------------------------------------
# Clients Carousel
--------------------------------------------------------------*/
/* line 160, ../scss/components/_carousels.scss */
.clients {
  position: relative;
}
/* line 163, ../scss/components/_carousels.scss */
.clients__slider {
  display: flex;
  min-width: 0;
  margin: 0 -15px;
}
@media (max-width: 500px) {
  /* line 163, ../scss/components/_carousels.scss */
  .clients__slider {
    margin: 0 -10px;
  }
}
/* line 172, ../scss/components/_carousels.scss */
.clients__slider .slick-list {
  padding: 20px 0;
}
/* line 175, ../scss/components/_carousels.scss */
.clients__slider .slick-list .slick-track {
  display: flex;
}
/* line 181, ../scss/components/_carousels.scss */
.clients__image {
  margin: 0 15px;
  padding: 15px 30px;
  box-shadow: 0 36px 0 -35px #22282d, -31px 0 0 -30px #22282d, 0 -31px 0 -30px #22282d, 31px 0 0 -30px #22282d, 0 0 0 1px #22282d;
  outline: none;
  text-align: center;
  transition: all 0.7s ease;
}
@media (max-width: 500px) {
  /* line 181, ../scss/components/_carousels.scss */
  .clients__image {
    margin: 0 10px;
    padding: 10px 20px;
  }
}
/* line 195, ../scss/components/_carousels.scss */
.clients__image:hover {
  box-shadow: 0 36px 0 -35px #22282d, -31px 0 0 -30px #22282d, 0 -31px 0 -30px #22282d, 31px 0 0 -30px #22282d, 0 0 0 1px #b20000;
}
/* line 200, ../scss/components/_carousels.scss */
.clients__image.slick-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* line 205, ../scss/components/_carousels.scss */
.clients__image.slick-slide img {
  object-fit: contain;
  width: 112px;
  height: 68px;
}

/* line 214, ../scss/components/_carousels.scss */
.slick-dots {
  bottom: 0;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
/* line 220, ../scss/components/_carousels.scss */
.slick-dots li {
  width: 20px;
  height: 9px;
  margin: 0 5px;
  border: 1px solid #30383f;
  border-radius: 2px;
  background: #fff;
  background: linear-gradient(17deg, #22282d 0%, #30383f 100%);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  transform: perspective(1px) translate(0, 0) translateZ(0) skewX(-13deg);
}
/* line 232, ../scss/components/_carousels.scss */
.slick-dots li:hover:before {
  opacity: 1;
  transform: perspective(1px) translate(0, -1px) translateZ(0) skewX(0deg);
}
/* line 238, ../scss/components/_carousels.scss */
.slick-dots li:before {
  width: 20px;
  height: 9px;
  border-color: #b20000;
  border-radius: 2px;
  background: linear-gradient(17deg, #650000 0%, #b20000 100%);
  box-shadow: 0 1px 4px rgba(178, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s ease;
  transform: perspective(1px) translate(0, -1px) translateZ(0) skewX(0deg);
}
/* line 250, ../scss/components/_carousels.scss */
.slick-dots li.slick-active {
  width: 32px;
}
/* line 254, ../scss/components/_carousels.scss */
.slick-dots li.slick-active:before {
  width: 32px;
  border-color: #b20000;
  background: linear-gradient(17deg, #650000 0%, #b20000 100%);
  box-shadow: 0 1px 4px rgba(178, 0, 0, 0.5);
  opacity: 1;
}

/*--------------------------------------------------------------
# Sign Up For Our Newsletter Home
--------------------------------------------------------------*/
/* line 1, ../scss/components/_newsletter.scss */
.newsletter {
  position: relative;
  padding: 140px 0;
}
@media (max-width: 850px) {
  /* line 1, ../scss/components/_newsletter.scss */
  .newsletter {
    padding: 70px 0;
  }
}

/* line 11, ../scss/components/_newsletter.scss */
.newsletter__block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* line 17, ../scss/components/_newsletter.scss */
.newsletter__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
  color: #b20000;
  font-weight: 600;
  line-height: 130%;
  text-align: center;
  text-shadow: 0 2px 6px rgba(178, 0, 0, 0.5);
  font-size: calc(24px + 16 * ((100vw - 320px) / 1440));
}
@media (max-width: 850px) {
  /* line 17, ../scss/components/_newsletter.scss */
  .newsletter__title {
    margin-bottom: 40px;
  }
}
/* line 33, ../scss/components/_newsletter.scss */
.newsletter__title span {
  color: #fff;
  font-weight: 100;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
}
/* line 41, ../scss/components/_newsletter.scss */
.newsletter__form .dflex {
  justify-content: center;
}
@media (max-width: 600px) {
  /* line 41, ../scss/components/_newsletter.scss */
  .newsletter__form .dflex {
    flex-direction: column;
    align-items: center;
  }
}
/* line 50, ../scss/components/_newsletter.scss */
.newsletter__form .form-item {
  width: 20%;
  margin: 0 20px;
  padding: 10px 0;
}
@media (max-width: 1200px) {
  /* line 50, ../scss/components/_newsletter.scss */
  .newsletter__form .form-item {
    width: 25%;
  }
}
@media (max-width: 850px) {
  /* line 50, ../scss/components/_newsletter.scss */
  .newsletter__form .form-item {
    width: 44%;
    margin: 0 10px;
  }
}
@media (max-width: 600px) {
  /* line 50, ../scss/components/_newsletter.scss */
  .newsletter__form .form-item {
    width: 280px;
    margin: 0 !important;
  }
}
@media (max-width: 850px) {
  /* line 69, ../scss/components/_newsletter.scss */
  .newsletter__form .form-item:last-child {
    width: 280px;
    margin: 0 !important;
  }
}
/* line 76, ../scss/components/_newsletter.scss */
.newsletter__form .form-item:first-child {
  margin-left: 0;
}
/* line 80, ../scss/components/_newsletter.scss */
.newsletter__form .form-item:last-child {
  margin-right: 0;
}
/* line 84, ../scss/components/_newsletter.scss */
.newsletter__form .form-item .input-bg {
  height: 50px;
}
@media (max-width: 850px) {
  /* line 84, ../scss/components/_newsletter.scss */
  .newsletter__form .form-item .input-bg {
    height: inherit;
  }
}
/* line 91, ../scss/components/_newsletter.scss */
.newsletter__form .form-item .input-bg input {
  height: 48px;
}
@media (max-width: 850px) {
  /* line 91, ../scss/components/_newsletter.scss */
  .newsletter__form .form-item .input-bg input {
    height: inherit;
  }
}
/* line 100, ../scss/components/_newsletter.scss */
.newsletter__form .form-item .btn-active {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 50px;
  text-align: center;
}
@media (max-width: 850px) {
  /* line 100, ../scss/components/_newsletter.scss */
  .newsletter__form .form-item .btn-active {
    height: 40px;
  }
}

/*--------------------------------------------------------------
# Footer Style
--------------------------------------------------------------*/
/* line 1, ../scss/layout/_footer.scss */
.footer {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 60px;
  color: #3c4750;
}
@media (max-width: 500px) {
  /* line 1, ../scss/layout/_footer.scss */
  .footer {
    padding: 0 0 30px 0;
  }
}
/* line 11, ../scss/layout/_footer.scss */
.footer__item {
  width: 25%;
  padding: 60px 25px 0 0;
}
@media (max-width: 1050px) {
  /* line 11, ../scss/layout/_footer.scss */
  .footer__item {
    width: 50%;
  }
}
@media (max-width: 500px) {
  /* line 11, ../scss/layout/_footer.scss */
  .footer__item {
    width: 100%;
    padding: 30px 0 0 0;
  }
}
/* line 24, ../scss/layout/_footer.scss */
.footer__item:first-child {
  font-size: 14px;
}
/* line 27, ../scss/layout/_footer.scss */
.footer__item:first-child p {
  margin: 17px 0 30px;
}
/* line 32, ../scss/layout/_footer.scss */
.footer__item .logo {
  max-width: 80%;
}
/* line 37, ../scss/layout/_footer.scss */
.footer__item-title {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
}
/* line 44, ../scss/layout/_footer.scss */
.footer__item-links {
  margin-top: 30px;
}
/* line 47, ../scss/layout/_footer.scss */
.footer__item-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* line 52, ../scss/layout/_footer.scss */
.footer__item-links ul li {
  padding: 0;
}
/* line 55, ../scss/layout/_footer.scss */
.footer__item-links ul li a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 0;
  font-size: 16px;
  padding-left: 10px;
  border-color: transparent;
  color: #3c4750;
}
@media (max-width: 1050px) {
  /* line 55, ../scss/layout/_footer.scss */
  .footer__item-links ul li a {
    margin: 1px 0;
  }
}
/* line 69, ../scss/layout/_footer.scss */
.footer__item-links ul li a:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 4px;
  height: 3px;
  border-radius: 100%;
  background: #3c4750;
  opacity: 1;
  transition: all 0.2s ease-out;
  transform: translate(-4px, 0);
}
/* line 84, ../scss/layout/_footer.scss */
.footer__item-links ul li a:hover {
  padding-left: 14px;
  color: #fff;
}
/* line 88, ../scss/layout/_footer.scss */
.footer__item-links ul li a:hover:before {
  background: #b20000;
  transform: translate(0px, 0);
}
/* line 95, ../scss/layout/_footer.scss */
.footer__item-links ul li:before {
  display: none;
}
/* line 103, ../scss/layout/_footer.scss */
.footer.black-bg:after {
  content: "";
  /*background: url("../Images/pattern-1.png");*/
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.01;
}

/*--------------------------------------------------------------
# Contact Footer Style
--------------------------------------------------------------*/
/* line 120, ../scss/layout/_footer.scss */
.form-input, form input, form select {
  padding: 15px;
}

/* line 126, ../scss/layout/_footer.scss */
.contact__block {
  display: flex;
}
@media (max-width: 991px) {
  /* line 126, ../scss/layout/_footer.scss */
  .contact__block {
    flex-direction: column;
  }
}
/* line 134, ../scss/layout/_footer.scss */
.contact__info {
  flex: 0 0 450px;
  padding-right: 70px;
  font-weight: 300;
  font-size: calc(16px + 4 * ((100vw - 320px) / 1440));
}
@media (max-width: 991px) {
  /* line 134, ../scss/layout/_footer.scss */
  .contact__info {
    flex: 0 0 auto;
    margin-bottom: 70px;
    padding: 0;
  }
}
/* line 147, ../scss/layout/_footer.scss */
.contact__title h3 {
  margin-bottom: 40px;
  color: #fff;
  font-weight: 200;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
  font-size: calc(26px + 8 * ((100vw - 320px) / 1440));
}
/* line 155, ../scss/layout/_footer.scss */
.contact__title h3 span {
  color: #b20000;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(178, 0, 0, 0.5);
}
/* line 162, ../scss/layout/_footer.scss */
.contact__phone {
  margin: 30px 0;
  color: #fff;
  font-weight: 200;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
  font-size: calc(26px + 8 * ((100vw - 320px) / 1440));
}
/* line 170, ../scss/layout/_footer.scss */
.contact__phone span {
  color: #b20000;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(178, 0, 0, 0.5);
}
/* line 176, ../scss/layout/_footer.scss */
.contact__phone a {
  border-color: transparent;
}
/* line 179, ../scss/layout/_footer.scss */
.contact__phone a:hover {
  border-color: #b20000;
}
/* line 185, ../scss/layout/_footer.scss */
.contact .form-input {
  padding: 15px 0;
}
/* line 189, ../scss/layout/_footer.scss */
.contact .form-textarea {
  padding: 15px 0 0;
}
/* line 193, ../scss/layout/_footer.scss */
.contact__email {
  margin: 20px 0;
}
/* line 197, ../scss/layout/_footer.scss */
.contact__social {
  display: flex;
  margin-top: 40px;
}
/* line 201, ../scss/layout/_footer.scss */
.contact__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: 15px;
  border: 2px solid #fff;
  border-radius: 100%;
  transition: all 0.2s ease;
  transform: translate(0, 0);
}
/* line 213, ../scss/layout/_footer.scss */
.contact__social a:hover {
  transform: translate(0, -2px);
}
/* line 217, ../scss/layout/_footer.scss */
.contact__social a svg {
  height: 20px;
  fill: #fff;
  transition: all 0.2s ease;
}
/* line 223, ../scss/layout/_footer.scss */
.contact__social a.facebook:hover {
  border-color: #3b5998;
}
/* line 226, ../scss/layout/_footer.scss */
.contact__social a.facebook:hover svg {
  fill: #3b5998;
}
/* line 231, ../scss/layout/_footer.scss */
.contact__social a.twitter:hover {
  border-color: #00acee;
}
/* line 234, ../scss/layout/_footer.scss */
.contact__social a.twitter:hover svg {
  fill: #00acee;
}
/* line 239, ../scss/layout/_footer.scss */
.contact__social a.instagram:hover {
  border-color: #c13584;
}
/* line 242, ../scss/layout/_footer.scss */
.contact__social a.instagram:hover svg {
  fill: #c13584;
}
/* line 247, ../scss/layout/_footer.scss */
.contact__social a.youtube:hover {
  border-color: #c4302b;
}
/* line 250, ../scss/layout/_footer.scss */
.contact__social a.youtube:hover svg {
  fill: #c4302b;
}
/* line 257, ../scss/layout/_footer.scss */
.contact__form {
  flex: 1 1 100%;
}
@media (max-width: 991px) {
  /* line 257, ../scss/layout/_footer.scss */
  .contact__form {
    flex: 1 1 auto;
  }
}
/* line 264, ../scss/layout/_footer.scss */
.contact__form .btn-submit {
  margin-top: 30px;
}
@media (max-width: 480px) {
  /* line 264, ../scss/layout/_footer.scss */
  .contact__form .btn-submit {
    width: 100%;
  }
}
/* line 272, ../scss/layout/_footer.scss */
.contact__form .form-checkbox {
  flex-basis: 100%;
}
/* line 276, ../scss/layout/_footer.scss */
.contact__form form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
/* line 284, ../scss/layout/_footer.scss */
.contact__form-name {
  flex-basis: 100%;
}
/* line 288, ../scss/layout/_footer.scss */
.contact__form-phone {
  flex-basis: 49%;
}
@media (max-width: 1050px) {
  /* line 288, ../scss/layout/_footer.scss */
  .contact__form-phone {
    flex-basis: 100%;
  }
}
/* line 296, ../scss/layout/_footer.scss */
.contact__form-50 {
  flex-basis: 49%;
}
@media (max-width: 1050px) {
  /* line 296, ../scss/layout/_footer.scss */
  .contact__form-50 {
    flex-basis: 100%;
  }
}
/* line 304, ../scss/layout/_footer.scss */
.contact__form-100 {
  flex-basis: 100%;
}
@media (max-width: 1050px) {
  /* line 304, ../scss/layout/_footer.scss */
  .contact__form-100 {
    flex-basis: 100%;
  }
}
/* line 312, ../scss/layout/_footer.scss */
.contact__form-email {
  flex-basis: 49%;
}
@media (max-width: 1050px) {
  /* line 312, ../scss/layout/_footer.scss */
  .contact__form-email {
    flex-basis: 100%;
  }
}
/* line 320, ../scss/layout/_footer.scss */
.contact__form-comment {
  flex-basis: 100%;
}
/* line 324, ../scss/layout/_footer.scss */
.contact__map {
  overflow: hidden;
  margin-bottom: 60px;
  border-radius: 5px;
}
/* line 330, ../scss/layout/_footer.scss */
.contact .form-message {
  width: 100%;
}
/* line 333, ../scss/layout/_footer.scss */
.contact .form-message .message {
  opacity: 0;
  transition: all 0.4s ease-out;
}
/* line 337, ../scss/layout/_footer.scss */
.contact .form-message .message.showr {
  opacity: 1;
}
/* line 344, ../scss/layout/_footer.scss */
.contact .form-input label.error {
  display: none !important;
}
/* line 348, ../scss/layout/_footer.scss */
.contact .form-errors {
  display: none !important;
}
/* line 352, ../scss/layout/_footer.scss */
.contact .btn-submit {
  position: relative;
}
/* line 355, ../scss/layout/_footer.scss */
.contact .btn-submit:before {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
  opacity: 0;
  z-index: 200;
  width: 20px;
  height: 20px;
  border: 2px solid #b20000;
  border-top-color: transparent;
  border-radius: 50%;
  transition: all 0.2s ease;
  animation: animate-preloader2 1s linear infinite;
}
/* line 371, ../scss/layout/_footer.scss */
.contact .btn-submit.sending {
  pointer-events: none;
}
/* line 373, ../scss/layout/_footer.scss */
.contact .btn-submit.sending input {
  padding-left: 36px;
}
/* line 376, ../scss/layout/_footer.scss */
.contact .btn-submit.sending:before {
  left: 10px;
  opacity: 1;
}
/* line 382, ../scss/layout/_footer.scss */
.contact .btn-submit.success {
  pointer-events: none;
}
/* line 384, ../scss/layout/_footer.scss */
.contact .btn-submit.success input {
  padding-left: 36px;
}
/* line 387, ../scss/layout/_footer.scss */
.contact .btn-submit.success:before {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  left: 10px;
  opacity: 1;
  z-index: 200;
  width: 20px;
  height: 20px;
  border: 0;
  background: url("../Images/check.svg") left center no-repeat;
  transition: all 0.2s ease;
  transform: perspective(1px) translateZ(0) skewX(13deg);
  animation: none;
}
/* line 404, ../scss/layout/_footer.scss */
.contact .btn-submit.error {
  pointer-events: none;
  border: 1px solid #cf1414 !important;
  background: linear-gradient(17deg, #890d0d 0%, #cf1414 100%) !important;
  box-shadow: 0 2px 6px rgba(207, 20, 20, 0.6) !important;
}
/* line 410, ../scss/layout/_footer.scss */
.contact .btn-submit.error:after {
  border: 1px solid #cf1414 !important;
  background: linear-gradient(17deg, #890d0d 0%, #cf1414 100%) !important;
}
/* line 415, ../scss/layout/_footer.scss */
.contact .btn-submit.error input {
  padding-left: 36px;
}
/* line 419, ../scss/layout/_footer.scss */
.contact .btn-submit.error:before {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  left: 10px;
  opacity: 1;
  z-index: 200;
  width: 20px;
  height: 20px;
  border: 0;
  background: url("../Images/error.svg") left center no-repeat;
  transition: all 0.2s ease;
  transform: perspective(1px) translateZ(0) skewX(13deg);
  animation: none;
}

/*--------------------------------------------------------------
# About Page Style
--------------------------------------------------------------*/
/* line 2, ../scss/pages/_about.scss */
.about .container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1050px) {
  /* line 2, ../scss/pages/_about.scss */
  .about .container {
    flex-direction: column;
  }
}
/* line 11, ../scss/pages/_about.scss */
.about__text {
  width: 70%;
  padding-left: 30px;
  font-weight: 500;
  line-height: 160%;
  font-size: calc(14px + 4 * ((100vw - 320px) / 1440));
}
@media (max-width: 1050px) {
  /* line 11, ../scss/pages/_about.scss */
  .about__text {
    width: 100%;
    padding: 0;
  }
}
/* line 23, ../scss/pages/_about.scss */
.about__text h1 {
  font-size: calc(24px + 26 * ((100vw - 320px) / 1440));
}
/* line 28, ../scss/pages/_about.scss */
.about__image {
  position: relative;
  overflow: hidden;
  width: 30%;
  height: 660px;
  border-radius: 5px;
}
@media (max-width: 1050px) {
  /* line 28, ../scss/pages/_about.scss */
  .about__image {
    width: 100%;
    height: 350px;
    margin-bottom: 20px;
  }
}
/* line 41, ../scss/pages/_about.scss */
.about__image img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
/* line 52, ../scss/pages/_about.scss */
.about .why-trust__block {
  width: 100%;
}
/* line 56, ../scss/pages/_about.scss */
.about .counter {
  width: 100%;
  border-radius: 0;
}
/* line 61, ../scss/pages/_about.scss */
.about .counter__item {
  width: 25%;
}
@media (max-width: 1050px) {
  /* line 61, ../scss/pages/_about.scss */
  .about .counter__item {
    width: 50%;
    padding: 60px 15px;
  }
}
@media (max-width: 480px) {
  /* line 61, ../scss/pages/_about.scss */
  .about .counter__item {
    width: 100%;
  }
}
/* line 73, ../scss/pages/_about.scss */
.about .counter__item:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#22282d), color-stop(75%, rgba(188, 188, 188, 0)));
  background: linear-gradient(to top, rgba(188, 188, 188, 0) 0%, #22282d 50%, rgba(188, 188, 188, 0) 100%);
}
/* line 90, ../scss/pages/_about.scss */
.about .counter__item:last-child:before {
  display: none;
}
/* line 94, ../scss/pages/_about.scss */
.about .counter__item:after {
  display: none;
}

/*--------------------------------------------------------------
# Services Page Style
--------------------------------------------------------------*/
/* line 4, ../scss/pages/_services.scss */
.services__block a {
  display: block;
  border: 0;
  height: 100%;
  padding-bottom: 30px;
}
/* line 11, ../scss/pages/_services.scss */
.services__block.center {
  text-align: center;
}
/* line 14, ../scss/pages/_services.scss */
.services__block.center .services__item-img {
  width: auto;
  margin: 0 auto;
}
/* line 20, ../scss/pages/_services.scss */
.services__item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 6px;
  transition: all 0.3s ease;
  transform: translate(0, 0);
}
@media (max-width: 767px) {
  /* line 20, ../scss/pages/_services.scss */
  .services__item {
    padding: 30px 15px;
  }
}
/* line 37, ../scss/pages/_services.scss */
.services__item:before {
  content: '';
  position: absolute;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(178, 0, 0, 0.5);
  transition: all 0.3s ease;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  overflow: hidden;
  border: 1px solid #b20000;
  background: linear-gradient(17deg, #650000 0%, #b20000 100%);
}
/* line 54, ../scss/pages/_services.scss */
.services__item:hover {
  transform: translate(0, -5px);
}
/* line 57, ../scss/pages/_services.scss */
.services__item:hover:before {
  opacity: 1;
  overflow: visible;
}
/* line 63, ../scss/pages/_services.scss */
.services__item:hover .services__item-img .icon-svg {
  fill: #fff;
}
/* line 67, ../scss/pages/_services.scss */
.services__item:hover .services__item-desc-title, .services__item:hover .services__item-desc-text {
  color: #fff;
}
/* line 73, ../scss/pages/_services.scss */
.services__item-img {
  flex: 0 0 82px;
  width: 82px;
}
@media (max-width: 767px) {
  /* line 73, ../scss/pages/_services.scss */
  .services__item-img {
    flex: 0 0 auto;
    width: 60px;
    margin-right: 0;
    margin-bottom: 0;
  }
}
/* line 84, ../scss/pages/_services.scss */
.services__item-img .icon-svg {
  font-size: 3.917em;
  fill: #b20000;
}
@media (max-width: 767px) {
  /* line 84, ../scss/pages/_services.scss */
  .services__item-img .icon-svg {
    width: 100%;
  }
}
/* line 94, ../scss/pages/_services.scss */
.services__item-desc-title {
  margin: 20px 0;
  color: #fff;
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: calc(20px + 4 * ((100vw - 320px) / 1440));
}
@media (max-width: 767px) {
  /* line 94, ../scss/pages/_services.scss */
  .services__item-desc-title {
    margin: 10px 0;
  }
}
/* line 106, ../scss/pages/_services.scss */
.services__item-desc-text {
  font-weight: 300;
}
@media (max-width: 1050px) {
  /* line 111, ../scss/pages/_services.scss */
  .services .tab-link {
    padding: 22px 0;
  }
  /* line 114, ../scss/pages/_services.scss */
  .services .tab-link img {
    height: 28px;
  }
}
@media (max-width: 767px) {
  /* line 121, ../scss/pages/_services.scss */
  .services .tabs {
    flex-wrap: wrap;
    padding: 0;
  }
  /* line 126, ../scss/pages/_services.scss */
  .services .tab-link {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
    margin-right: -1px;
    margin-bottom: -1px;
    padding: 15px 0;
    border-color: #12171b;
    transform: perspective(1px) translate(0, 0) skewX(0deg);
  }
  /* line 135, ../scss/pages/_services.scss */
  .services .tab-link span {
    transform: perspective(1px) translate(0, 0) skewX(0deg);
  }
  /* line 140, ../scss/pages/_services.scss */
  .services .tab-link:nth-child(3) {
    border-radius: 0 5px 0 0;
  }
  /* line 144, ../scss/pages/_services.scss */
  .services .tab-link:nth-child(4) {
    border-radius: 0 0 0 5px;
  }
  /* line 148, ../scss/pages/_services.scss */
  .services .tab-link:last-child {
    border-radius: 0 0 5px 0;
  }
  /* line 152, ../scss/pages/_services.scss */
  .services .tab-link:first-child {
    border-radius: 5px 0 0 0;
  }
}
@media (max-width: 1050px) {
  /* line 158, ../scss/pages/_services.scss */
  .services .tab-content {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  /* line 164, ../scss/pages/_services.scss */
  .services .tabs {
    margin-bottom: 40px;
  }
}
/* line 168, ../scss/pages/_services.scss */
.services .container {
  overflow: hidden;
}
/* line 172, ../scss/pages/_services.scss */
.services .tab-content {
  padding: 0;
}
@media (max-width: 1050px) {
  /* line 176, ../scss/pages/_services.scss */
  .services .tab-content .services__image {
    flex: 0 0 100%;
    height: 295px;
    margin-bottom: 30px;
  }
  /* line 182, ../scss/pages/_services.scss */
  .services .tab-content .services__text {
    width: 100%;
    padding-left: 0;
  }
}
@media (max-width: 480px) {
  /* line 189, ../scss/pages/_services.scss */
  .services .tab-content .services__image {
    height: 200px;
  }
}
/* line 194, ../scss/pages/_services.scss */
.services .tab-content:hover .services__image img {
  filter: saturate(1);
}
/* line 198, ../scss/pages/_services.scss */
.services .tab-content .services__image {
  position: relative;
  flex: 0 0 564px;
  overflow: hidden;
  height: 395px;
  border-radius: 5px;
}
/* line 205, ../scss/pages/_services.scss */
.services .tab-content .services__image img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
/* line 216, ../scss/pages/_services.scss */
.services .tab-content .services__text {
  width: 100%;
  padding-left: 30px;
}
/* line 222, ../scss/pages/_services.scss */
.services .tab-content h2 {
  margin-bottom: 20px;
  font-weight: 700;
}
/* line 227, ../scss/pages/_services.scss */
.services .tab-content.active {
  display: flex;
}

/*--------------------------------------------------------------
# Portfolio Page Style
--------------------------------------------------------------*/
@media (max-width: 767px) {
  /* line 3, ../scss/pages/_portfolio.scss */
  .portfolio .tab-wrapper {
    position: relative;
    overflow-y: scroll;
  }
  /* line 8, ../scss/pages/_portfolio.scss */
  .portfolio .tabs {
    justify-content: flex-start;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  /* line 14, ../scss/pages/_portfolio.scss */
  .portfolio .filter-button {
    background: #141a1e;
    border-radius: 5px;
    padding: 0;
  }
}
/* line 22, ../scss/pages/_portfolio.scss */
.portfolio .filter-button .tab-link {
  padding: 15px 0;
}
@media (max-width: 991px) {
  /* line 22, ../scss/pages/_portfolio.scss */
  .portfolio .filter-button .tab-link {
    flex-basis: 33.333333%;
    max-width: 33.333333%;
    border-radius: 5px;
  }
}
@media (max-width: 767px) {
  /* line 22, ../scss/pages/_portfolio.scss */
  .portfolio .filter-button .tab-link {
    flex-basis: 50%;
    max-width: 50%;
    padding: 10px 0;
    font-size: 14px;
  }
}
/* line 40, ../scss/pages/_portfolio.scss */
.portfolio .grid-portfolio {
  display: grid;
  justify-content: space-between;
  margin: 0 -1%;
  padding: 0 0 40px 0;
}
@media (max-width: 767px) {
  /* line 40, ../scss/pages/_portfolio.scss */
  .portfolio .grid-portfolio {
    margin: 0;
  }
}
/* line 50, ../scss/pages/_portfolio.scss */
.portfolio .grid-portfolio .portfolio-item {
  overflow: hidden;
  width: 23%;
  margin: 0 1% 2%;
  font-size: 18px;
}
@media (max-width: 1200px) {
  /* line 50, ../scss/pages/_portfolio.scss */
  .portfolio .grid-portfolio .portfolio-item {
    width: 31%;
  }
}
@media (max-width: 991px) {
  /* line 50, ../scss/pages/_portfolio.scss */
  .portfolio .grid-portfolio .portfolio-item {
    width: 48%;
  }
}
@media (max-width: 767px) {
  /* line 50, ../scss/pages/_portfolio.scss */
  .portfolio .grid-portfolio .portfolio-item {
    width: 100%;
    margin: 0 0 20px;
  }
}
/* line 73, ../scss/pages/_portfolio.scss */
.portfolio .grid-portfolio .portfolio-item:hover .portfolio-image img {
  opacity: 0.1;
}
/* line 78, ../scss/pages/_portfolio.scss */
.portfolio .grid-portfolio .portfolio-item:hover .portfolio-title {
  color: #fff;
  transform: translate(0, 5px);
}
@media (max-width: 991px) {
  /* line 78, ../scss/pages/_portfolio.scss */
  .portfolio .grid-portfolio .portfolio-item:hover .portfolio-title {
    transform: translate(0, 0);
  }
}
/* line 87, ../scss/pages/_portfolio.scss */
.portfolio .grid-portfolio .portfolio-item:hover .portfolio-subtitle {
  opacity: 1;
  overflow: visible;
  transform: translate(0, 20px);
}
/* line 94, ../scss/pages/_portfolio.scss */
.portfolio .grid-portfolio .portfolio-item .portfolio-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 480px;
  border-radius: 5px;
  background: #000;
}
@media (max-width: 767px) {
  /* line 94, ../scss/pages/_portfolio.scss */
  .portfolio .grid-portfolio .portfolio-item .portfolio-image {
    height: 380px;
  }
}
/* line 106, ../scss/pages/_portfolio.scss */
.portfolio .grid-portfolio .portfolio-item .portfolio-image img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  transition: all 0.8s ease;
}
/* line 118, ../scss/pages/_portfolio.scss */
.portfolio .grid-portfolio .portfolio-item .portfolio-title {
  margin: 24px 0 5px 0;
  color: #898989;
  font-weight: 200;
  font-size: 28px;
  text-align: center;
  line-height: 34px;
  transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
  transform: translate(0, 0);
}
@media (max-width: 991px) {
  /* line 118, ../scss/pages/_portfolio.scss */
  .portfolio .grid-portfolio .portfolio-item .portfolio-title {
    color: #fff;
    transform: translate(0, 0);
  }
}
/* line 134, ../scss/pages/_portfolio.scss */
.portfolio .grid-portfolio .portfolio-item .portfolio-subtitle {
  color: #898989;
  font-weight: 200;
  opacity: 0;
  overflow: hidden;
  transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
  transform: translate(0, 0);
}
@media (max-width: 991px) {
  /* line 134, ../scss/pages/_portfolio.scss */
  .portfolio .grid-portfolio .portfolio-item .portfolio-subtitle {
    opacity: 1;
    overflow: visible;
    transform: translate(0, 20px);
  }
}
/* line 149, ../scss/pages/_portfolio.scss */
.portfolio .grid-portfolio .portfolio-item a {
  position: relative;
  display: block;
  border: 0;
}
/* line 155, ../scss/pages/_portfolio.scss */
.portfolio .grid-portfolio .portfolio-item .portfolio-desc {
  position: absolute;
  bottom: -1px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px;
}

/*--------------------------------------------------------------
# Portfolio Carousel Home
--------------------------------------------------------------*/
/* line 176, ../scss/pages/_portfolio.scss */
.portfolio__block {
  padding: 0 5px;
  position: relative;
}
@media (max-width: 1200px) {
  /* line 176, ../scss/pages/_portfolio.scss */
  .portfolio__block {
    grid-template-columns: repeat(auto-fill, 33.33333%);
  }
}
@media (max-width: 991px) {
  /* line 176, ../scss/pages/_portfolio.scss */
  .portfolio__block {
    padding: 0 3px;
  }
}
@media (max-width: 767px) {
  /* line 176, ../scss/pages/_portfolio.scss */
  .portfolio__block {
    grid-template-columns: repeat(auto-fill, 50%);
  }
}
@media (max-width: 480px) {
  /* line 176, ../scss/pages/_portfolio.scss */
  .portfolio__block {
    grid-template-columns: repeat(auto-fill, 100%);
  }
}
/* line 197, ../scss/pages/_portfolio.scss */
.portfolio__item {
  position: relative;
  overflow: hidden;
  height: calc(400px + 250 * ((75vw - 320px) / 1120));
  border: 5px solid #0d1114;
}
@media (max-width: 991px) {
  /* line 197, ../scss/pages/_portfolio.scss */
  .portfolio__item {
    border: 3px solid #0d1114;
  }
}
/* line 208, ../scss/pages/_portfolio.scss */
.portfolio__item:hover .portfolio__desc {
  opacity: 1;
  visibility: visible;
}
/* line 212, ../scss/pages/_portfolio.scss */
.portfolio__item:hover .portfolio__desc .portfolio__text {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 6px);
}
@media (max-width: 991px) {
  /* line 212, ../scss/pages/_portfolio.scss */
  .portfolio__item:hover .portfolio__desc .portfolio__text {
    transform: translate(0, 0);
  }
}
/* line 222, ../scss/pages/_portfolio.scss */
.portfolio__item:hover .portfolio__desc .portfolio__title {
  transform: translate(0, 10px);
}
@media (max-width: 991px) {
  /* line 222, ../scss/pages/_portfolio.scss */
  .portfolio__item:hover .portfolio__desc .portfolio__title {
    transform: translate(0, 0);
  }
}
/* line 231, ../scss/pages/_portfolio.scss */
.portfolio__item:hover .portfolio__image img {
  transform: scale(1.1);
}
/* line 235, ../scss/pages/_portfolio.scss */
.portfolio__item:hover .portfolio__image:before {
  opacity: 1;
}
/* line 241, ../scss/pages/_portfolio.scss */
.portfolio__image {
  position: relative;
  height: 100%;
}
@media (max-width: 767px) {
  /* line 241, ../scss/pages/_portfolio.scss */
  .portfolio__image {
    overflow: hidden;
    border-radius: 5px;
  }
}
/* line 250, ../scss/pages/_portfolio.scss */
.portfolio__image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: blur(8px);
  transition: all 3s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  backdrop-filter: blur(2px) saturate(80%);
}
@media (max-width: 767px) {
  /* line 250, ../scss/pages/_portfolio.scss */
  .portfolio__image:before {
    display: none;
  }
}
/* line 268, ../scss/pages/_portfolio.scss */
.portfolio__image img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 3s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  transform: translateZ(0);
}
/* line 280, ../scss/pages/_portfolio.scss */
.portfolio__desc {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  transition: all 0.3s;
}
@media (max-width: 991px) {
  /* line 280, ../scss/pages/_portfolio.scss */
  .portfolio__desc {
    padding: 15px;
  }
}
@media (max-width: 600px) {
  /* line 280, ../scss/pages/_portfolio.scss */
  .portfolio__desc {
    opacity: 1;
    visibility: visible;
  }
}
/* line 306, ../scss/pages/_portfolio.scss */
.portfolio__title {
  margin-bottom: 2%;
  font-weight: 200;
  text-align: center;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
  line-height: 100%;
  transform: translate(0, 0);
  transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
  font-size: calc(24px + 16 * ((100vw - 320px) / 1440));
}
/* line 317, ../scss/pages/_portfolio.scss */
.portfolio__text {
  display: flex;
  flex-wrap: wrap;
  opacity: 0;
  text-align: center;
  visibility: hidden;
  color: #bcbcbc;
  transform: translate(0, -16px);
  transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
  justify-content: center;
  font-weight: 300;
}
@media (max-width: 991px) {
  /* line 317, ../scss/pages/_portfolio.scss */
  .portfolio__text {
    opacity: 1;
    transform: translate(0, 0);
    padding-top: 0 !important;
    visibility: visible;
  }
}
/* line 336, ../scss/pages/_portfolio.scss */
.portfolio__text span {
  margin: 0 15px 0 0;
}
@media (max-width: 767px) {
  /* line 336, ../scss/pages/_portfolio.scss */
  .portfolio__text span {
    margin: 0 5px 0 0;
  }
}
/* line 343, ../scss/pages/_portfolio.scss */
.portfolio__text span:after {
  content: "/";
  margin-left: 15px;
  color: #b20000;
  font-weight: 900;
}
@media (max-width: 767px) {
  /* line 343, ../scss/pages/_portfolio.scss */
  .portfolio__text span:after {
    margin-left: 5px;
  }
}
/* line 354, ../scss/pages/_portfolio.scss */
.portfolio__text span:last-child:after {
  display: none;
  margin: 0;
}
/* line 360, ../scss/pages/_portfolio.scss */
.portfolio .slick-dots {
  bottom: -40px;
}
@media (max-width: 1200px) {
  /* line 363, ../scss/pages/_portfolio.scss */
  .portfolio .portfolio__nav {
    display: none;
  }
}
/* line 369, ../scss/pages/_portfolio.scss */
.portfolio .portfolio__nav svg {
  width: 54px;
  height: 34px;
  opacity: 0.5;
  transform: perspective(0px) translateZ(0) skewX(0deg);
}
/* line 375, ../scss/pages/_portfolio.scss */
.portfolio .portfolio__nav a.prev-button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  left: 0;
  top: 5px;
  z-index: 10;
  height: calc(100% - 10px);
  background: linear-gradient(90deg, #000 0, transparent);
  width: 255px;
}
/* line 388, ../scss/pages/_portfolio.scss */
.portfolio .portfolio__nav a.prev-button:hover svg {
  opacity: 1;
}
/* line 391, ../scss/pages/_portfolio.scss */
.portfolio .portfolio__nav a.prev-button:active svg {
  transform: translate(-10px, 0);
}
/* line 395, ../scss/pages/_portfolio.scss */
.portfolio .portfolio__nav a.next-button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  right: 0;
  top: 5px;
  z-index: 10;
  height: calc(100% - 10px);
  background: linear-gradient(270deg, #000 0, transparent);
  width: 255px;
}
/* line 408, ../scss/pages/_portfolio.scss */
.portfolio .portfolio__nav a.next-button:hover svg {
  opacity: 1;
}
/* line 411, ../scss/pages/_portfolio.scss */
.portfolio .portfolio__nav a.next-button:active svg {
  transform: translate(10px, 0);
}

/*--------------------------------------------------------------
# Portfolio Project Page Style
--------------------------------------------------------------*/
/* line 2, ../scss/pages/_portfolio-details.scss */
.project__block {
  padding: 0 8.33333333%;
}
@media (max-width: 1050px) {
  /* line 2, ../scss/pages/_portfolio-details.scss */
  .project__block {
    padding: 0;
  }
}
/* line 9, ../scss/pages/_portfolio-details.scss */
.project__block h1 {
  color: #fff;
  font-size: calc(24px + 6 * ((100vw - 320px) / 1440));
}
/* line 14, ../scss/pages/_portfolio-details.scss */
.project__block-top {
  display: flex;
}
@media (max-width: 850px) {
  /* line 14, ../scss/pages/_portfolio-details.scss */
  .project__block-top {
    flex-wrap: wrap;
  }
}
/* line 21, ../scss/pages/_portfolio-details.scss */
.project__block-top.sidebar-left {
  flex-direction: row-reverse;
}
/* line 24, ../scss/pages/_portfolio-details.scss */
.project__block-top.sidebar-left .sidebar {
  padding-right: 30px;
  padding-left: 0;
}
@media (max-width: 991px) {
  /* line 24, ../scss/pages/_portfolio-details.scss */
  .project__block-top.sidebar-left .sidebar {
    padding-right: 0;
  }
}
/* line 34, ../scss/pages/_portfolio-details.scss */
.project__block-top.full-width {
  flex-direction: column-reverse;
}
/* line 37, ../scss/pages/_portfolio-details.scss */
.project__block-top.full-width .project__gallery {
  margin-top: 60px;
  padding: 0 16.666667%;
  flex-basis: 100%;
  max-width: 100%;
}
@media (max-width: 1200px) {
  /* line 37, ../scss/pages/_portfolio-details.scss */
  .project__block-top.full-width .project__gallery {
    padding: 0;
  }
}
/* line 47, ../scss/pages/_portfolio-details.scss */
.project__block-top.full-width .project__gallery .project__gallery-col {
  margin: 0 -100px 30px;
}
@media (max-width: 1200px) {
  /* line 47, ../scss/pages/_portfolio-details.scss */
  .project__block-top.full-width .project__gallery .project__gallery-col {
    margin: 0 0 15px;
  }
}
/* line 54, ../scss/pages/_portfolio-details.scss */
.project__block-top.full-width .project__gallery .project__gallery-col-2 {
  margin: 0 -100px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  /* line 54, ../scss/pages/_portfolio-details.scss */
  .project__block-top.full-width .project__gallery .project__gallery-col-2 {
    margin: 0;
  }
}
@media (max-width: 767px) {
  /* line 54, ../scss/pages/_portfolio-details.scss */
  .project__block-top.full-width .project__gallery .project__gallery-col-2 {
    flex-direction: column;
  }
}
/* line 68, ../scss/pages/_portfolio-details.scss */
.project__block-top.full-width .project__gallery .project__gallery-col-2 a {
  width: 48%;
}
@media (max-width: 767px) {
  /* line 68, ../scss/pages/_portfolio-details.scss */
  .project__block-top.full-width .project__gallery .project__gallery-col-2 a {
    margin-bottom: 15px;
    width: 100%;
  }
}
/* line 78, ../scss/pages/_portfolio-details.scss */
.project__block-top.full-width .project__gallery a {
  border: 0;
}
/* line 81, ../scss/pages/_portfolio-details.scss */
.project__block-top.full-width .project__gallery a:hover {
  opacity: 0.8;
}
/* line 85, ../scss/pages/_portfolio-details.scss */
.project__block-top.full-width .project__gallery a img {
  width: 100%;
  border-radius: 6px;
}
/* line 92, ../scss/pages/_portfolio-details.scss */
.project__block-top.full-width .sidebar {
  padding: 0 16.666667%;
  flex-basis: 100%;
  max-width: 100%;
}
@media (max-width: 1200px) {
  /* line 92, ../scss/pages/_portfolio-details.scss */
  .project__block-top.full-width .sidebar {
    padding: 0;
  }
}
/* line 101, ../scss/pages/_portfolio-details.scss */
.project__block-top.full-width .sidebar .sidebar__info-title {
  font-weight: 700;
}
/* line 105, ../scss/pages/_portfolio-details.scss */
.project__block-top.full-width .sidebar__info-list {
  display: flex;
  flex-wrap: wrap;
  border-radius: 6px;
  background: linear-gradient(17deg, #22282d 0%, #30383f 100%);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}
/* line 112, ../scss/pages/_portfolio-details.scss */
.project__block-top.full-width .sidebar__info-list li {
  display: flex;
  font-weight: 400;
  flex-direction: column;
  width: 33.333333%;
  padding: 15px;
  color: #b20000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  /* line 112, ../scss/pages/_portfolio-details.scss */
  .project__block-top.full-width .sidebar__info-list li {
    width: 50%;
  }
  /* line 124, ../scss/pages/_portfolio-details.scss */
  .project__block-top.full-width .sidebar__info-list li:nth-child(4) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
}
@media (max-width: 575px) {
  /* line 112, ../scss/pages/_portfolio-details.scss */
  .project__block-top.full-width .sidebar__info-list li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  }
  /* line 132, ../scss/pages/_portfolio-details.scss */
  .project__block-top.full-width .sidebar__info-list li:last-child {
    border-bottom: 0 !important;
  }
}
/* line 137, ../scss/pages/_portfolio-details.scss */
.project__block-top.full-width .sidebar__info-list li:nth-child(4) {
  border: 0;
}
/* line 140, ../scss/pages/_portfolio-details.scss */
.project__block-top.full-width .sidebar__info-list li:nth-child(5) {
  border: 0;
}
/* line 143, ../scss/pages/_portfolio-details.scss */
.project__block-top.full-width .sidebar__info-list li:nth-child(6) {
  border: 0;
}
/* line 147, ../scss/pages/_portfolio-details.scss */
.project__block-top.full-width .sidebar__info-list li a {
  border-color: #bcbcbc;
  color: #bcbcbc;
}
/* line 152, ../scss/pages/_portfolio-details.scss */
.project__block-top.full-width .sidebar__info-list li span {
  color: #bcbcbc;
  padding-left: 0;
  font-weight: 700;
  text-align: left;
}
/* line 165, ../scss/pages/_portfolio-details.scss */
.project__gallery {
  position: relative;
  display: flex;
  flex-basis: 66.66666667%;
  flex-direction: column;
  overflow: hidden;
  max-width: 66.66666667%;
}
@media (max-width: 850px) {
  /* line 165, ../scss/pages/_portfolio-details.scss */
  .project__gallery {
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }
}
/* line 179, ../scss/pages/_portfolio-details.scss */
.project__gallery .zoom-img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0 5px;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  transition: 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}
/* line 194, ../scss/pages/_portfolio-details.scss */
.project__gallery .zoom-img .icon-svg {
  width: 20px;
  fill: #b20000;
}
/* line 200, ../scss/pages/_portfolio-details.scss */
.project__gallery .project-slider {
  height: auto;
  margin-bottom: 20px;
  background: #0d1114;
}
/* line 205, ../scss/pages/_portfolio-details.scss */
.project__gallery .project-slider .project-slider-item {
  position: relative;
  overflow: hidden;
  height: 450px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
@media (max-width: 1050px) {
  /* line 205, ../scss/pages/_portfolio-details.scss */
  .project__gallery .project-slider .project-slider-item {
    height: 350px;
  }
}
@media (max-width: 500px) {
  /* line 205, ../scss/pages/_portfolio-details.scss */
  .project__gallery .project-slider .project-slider-item {
    height: 250px;
  }
}
/* line 220, ../scss/pages/_portfolio-details.scss */
.project__gallery .project-slider .project-slider-item:hover {
  opacity: 0.5 !important;
}
/* line 224, ../scss/pages/_portfolio-details.scss */
.project__gallery .project-slider .project-slider-item img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
/* line 236, ../scss/pages/_portfolio-details.scss */
.project__gallery .project-nav {
  margin: 0 -10px;
  padding-bottom: 40px;
}
/* line 240, ../scss/pages/_portfolio-details.scss */
.project__gallery .project-nav .project-nav-item {
  position: relative;
  overflow: hidden;
  height: 130px;
  margin: 0 10px;
  border-radius: 3px;
  background: #0d1114;
  outline: none;
  filter: saturate(0);
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 500px) {
  /* line 240, ../scss/pages/_portfolio-details.scss */
  .project__gallery .project-nav .project-nav-item {
    height: 80px;
  }
}
/* line 256, ../scss/pages/_portfolio-details.scss */
.project__gallery .project-nav .project-nav-item img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  transition: all 0.3s ease;
}
/* line 267, ../scss/pages/_portfolio-details.scss */
.project__gallery .project-nav .project-nav-item.slick-current, .project__gallery .project-nav .project-nav-item:hover {
  opacity: 1;
  filter: saturate(1);
}
/* line 272, ../scss/pages/_portfolio-details.scss */
.project__gallery .project-nav .project-nav-item.slick-current img, .project__gallery .project-nav .project-nav-item:hover img {
  opacity: 1;
}

/* line 282, ../scss/pages/_portfolio-details.scss */
.fancybox-thumbs__list a {
  border: 0;
}

/* line 286, ../scss/pages/_portfolio-details.scss */
.fancybox-thumbs__list a::before {
  border: 2px solid #b20000 !important;
}

/* line 290, ../scss/pages/_portfolio-details.scss */
.fancybox-thumbs {
  background: #0d1114 !important;
}

/*--------------------------------------------------------------
# SideBar Blog Page Style
--------------------------------------------------------------*/
@media (min-width: 767px) {
  /* line 2, ../scss/layout/_sidebar.scss */
  .sidebar.sticky {
    align-self: flex-start;
    position: sticky;
    position: -webkit-sticky;
    top: 150px;
  }
}

/* line 11, ../scss/layout/_sidebar.scss */
.sidebar {
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
  padding-left: 30px;
}
@media (max-width: 850px) {
  /* line 11, ../scss/layout/_sidebar.scss */
  .sidebar {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 0;
  }
}
/* line 23, ../scss/layout/_sidebar.scss */
.sidebar .sidebar__info-title {
  margin-bottom: 20px;
  color: #fff;
  font-weight: 300;
  font-size: calc(20px + 6 * ((100vw - 320px) / 1440));
}
/* line 30, ../scss/layout/_sidebar.scss */
.sidebar ul.sidebar__info-list {
  padding: 0;
}
/* line 33, ../scss/layout/_sidebar.scss */
.sidebar ul.sidebar__info-list li {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid #22282d;
  color: #b20000;
}
/* line 40, ../scss/layout/_sidebar.scss */
.sidebar ul.sidebar__info-list li span {
  padding-left: 10px;
  color: #bcbcbc;
  text-align: right;
}
/* line 46, ../scss/layout/_sidebar.scss */
.sidebar ul.sidebar__info-list li:before {
  display: none;
}
/* line 50, ../scss/layout/_sidebar.scss */
.sidebar ul.sidebar__info-list li:last-child {
  border: 0;
}
/* line 56, ../scss/layout/_sidebar.scss */
.sidebar__info-posts {
  margin-bottom: 30px;
  background: #0d1114;
}
/* line 61, ../scss/layout/_sidebar.scss */
.sidebar__info-posts-item a {
  display: flex;
  margin-bottom: 20px;
  border: 0;
  transform: translate(0, 0);
}
/* line 67, ../scss/layout/_sidebar.scss */
.sidebar__info-posts-item a:hover {
  transform: translate(0, -3px);
}
/* line 70, ../scss/layout/_sidebar.scss */
.sidebar__info-posts-item a:hover img {
  opacity: 1;
}
/* line 76, ../scss/layout/_sidebar.scss */
.sidebar__info-posts-img {
  position: relative;
  flex: 0 0 80px;
  overflow: hidden;
  width: 80px;
  height: 80px;
  margin-right: 10px;
  border-radius: 3px;
  background: #0d1114;
  transition: all 0.3s ease;
}
/* line 87, ../scss/layout/_sidebar.scss */
.sidebar__info-posts-img img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  transition: all 0.3s ease;
}
/* line 99, ../scss/layout/_sidebar.scss */
.sidebar__info-posts-desc {
  color: #bcbcbc;
  font-size: 14px;
  line-height: 20px;
}
/* line 104, ../scss/layout/_sidebar.scss */
.sidebar__info-posts-desc h3 {
  margin-bottom: 10px;
  font-size: calc(15px + 1 * ((100vw - 320px) / 1440));
}
/* line 109, ../scss/layout/_sidebar.scss */
.sidebar__info-posts-desc p {
  margin: 0;
}
/* line 114, ../scss/layout/_sidebar.scss */
.sidebar__search {
  position: relative;
  margin-bottom: 20px;
}
/* line 118, ../scss/layout/_sidebar.scss */
.sidebar__search form {
  width: 100%;
}
/* line 122, ../scss/layout/_sidebar.scss */
.sidebar__search input {
  width: 100%;
  height: 50px;
  border-width: 1px !important;
}
/* line 128, ../scss/layout/_sidebar.scss */
.sidebar__search button {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 0;
  background: 0 0;
  outline: 0;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.2s ease;
}
/* line 144, ../scss/layout/_sidebar.scss */
.sidebar__search button:hover {
  opacity: 1;
}
/* line 148, ../scss/layout/_sidebar.scss */
.sidebar__search button .icon-svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
/* line 156, ../scss/layout/_sidebar.scss */
.sidebar__info-categories {
  padding: 0;
}
/* line 159, ../scss/layout/_sidebar.scss */
.sidebar__info-categories li {
  margin: 0;
  padding: 0;
}
/* line 163, ../scss/layout/_sidebar.scss */
.sidebar__info-categories li:before {
  display: none;
}
/* line 167, ../scss/layout/_sidebar.scss */
.sidebar__info-categories li a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #171b1e;
  color: #bcbcbc;
}
/* line 173, ../scss/layout/_sidebar.scss */
.sidebar__info-categories li a:hover {
  padding-left: 5px;
  color: #b20000;
}
/* line 179, ../scss/layout/_sidebar.scss */
.sidebar__info-categories li:last-child a {
  border: 0;
}
/* line 185, ../scss/layout/_sidebar.scss */
.sidebar__info-tags {
  display: flex;
  flex-wrap: wrap;
}
/* line 189, ../scss/layout/_sidebar.scss */
.sidebar__info-tags a {
  height: 28px;
  margin-bottom: 6px;
  padding: 0 10px;
  font-weight: 400;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Blog Page Style
--------------------------------------------------------------*/
/* line 2, ../scss/pages/_blog.scss */
.blog__body {
  display: flex;
  padding: 0 8.33333333%;
}
@media (max-width: 1200px) {
  /* line 2, ../scss/pages/_blog.scss */
  .blog__body {
    padding: 0;
  }
}
@media (max-width: 991px) {
  /* line 2, ../scss/pages/_blog.scss */
  .blog__body {
    flex-direction: column;
  }
}
/* line 14, ../scss/pages/_blog.scss */
.blog__body.sidebar-left {
  flex-direction: row-reverse;
}
/* line 17, ../scss/pages/_blog.scss */
.blog__body.sidebar-left .sidebar {
  padding-left: 0;
  padding-right: 30px;
}
@media (max-width: 991px) {
  /* line 17, ../scss/pages/_blog.scss */
  .blog__body.sidebar-left .sidebar {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  /* line 14, ../scss/pages/_blog.scss */
  .blog__body.sidebar-left {
    flex-direction: column;
  }
}
/* line 30, ../scss/pages/_blog.scss */
.blog__body.blog-grid {
  padding: 0;
  display: block;
}
/* line 34, ../scss/pages/_blog.scss */
.blog__body.blog-grid .blog__item {
  margin-bottom: 30px;
  position: relative;
  height: 500px;
}
/* line 39, ../scss/pages/_blog.scss */
.blog__body.blog-grid .blog__item .blog-grid__img {
  height: 100%;
}
/* line 42, ../scss/pages/_blog.scss */
.blog__body.blog-grid .blog__item .blog-grid__img a {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}
/* line 49, ../scss/pages/_blog.scss */
.blog__body.blog-grid .blog__item .blog-grid__img a:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to top, #141a1e 0%, #22282d 50%);
}
/* line 60, ../scss/pages/_blog.scss */
.blog__body.blog-grid .blog__item .blog-grid__img img {
  width: 100%;
  vertical-align: middle;
}
/* line 65, ../scss/pages/_blog.scss */
.blog__body.blog-grid .blog__item .blog-grid__desc {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
}
/* line 76, ../scss/pages/_blog.scss */
.blog__body.blog-grid .blog__item .blog-grid__desc .blog-grid__category {
  font-size: 16px;
  transform: translate(0, 40px);
  transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
}
/* line 82, ../scss/pages/_blog.scss */
.blog__body.blog-grid .blog__item .blog-grid__desc h2 {
  font-size: 24px;
  transform: translate(0, 40px);
  transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
}
/* line 87, ../scss/pages/_blog.scss */
.blog__body.blog-grid .blog__item .blog-grid__desc .blog-grid__showmore {
  opacity: 0;
  transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
  transform: translate(0, 10px);
}
/* line 92, ../scss/pages/_blog.scss */
.blog__body.blog-grid .blog__item .blog-grid__desc .blog-grid__showmore a {
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 3px;
  font-weight: 700;
  border: 1px solid #b20000;
  padding: 6px 20px;
  color: #b20000;
}
/* line 101, ../scss/pages/_blog.scss */
.blog__body.blog-grid .blog__item .blog-grid__desc .blog-grid__showmore a:hover {
  background: #b20000;
  color: #fff;
}
/* line 109, ../scss/pages/_blog.scss */
.blog__body.blog-grid .blog__item a {
  border: 0;
}
/* line 114, ../scss/pages/_blog.scss */
.blog__body.blog-grid .blog__item:hover .blog-grid__category {
  transform: translate(0, -40px);
}
/* line 118, ../scss/pages/_blog.scss */
.blog__body.blog-grid .blog__item:hover h2 {
  transform: translate(0, -40px);
}
/* line 122, ../scss/pages/_blog.scss */
.blog__body.blog-grid .blog__item:hover .blog-grid__showmore {
  opacity: 1;
  transform: translate(0, -20px);
  transition-delay: 0.15s;
}
/* line 130, ../scss/pages/_blog.scss */
.blog__body.blog-grid .pagination {
  margin-top: 20px;
  justify-content: center;
}
/* line 137, ../scss/pages/_blog.scss */
.blog__block {
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}
@media (max-width: 991px) {
  /* line 137, ../scss/pages/_blog.scss */
  .blog__block {
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }
}
/* line 148, ../scss/pages/_blog.scss */
.blog__item {
  margin-bottom: 80px;
}
/* line 151, ../scss/pages/_blog.scss */
.blog__item:hover .blog__image img, .blog__item:hover .blog__stats {
  opacity: 1;
}
/* line 156, ../scss/pages/_blog.scss */
.blog__image {
  position: relative;
  overflow: hidden;
  height: 350px;
  border-radius: 5px;
  background: #0d1114;
}
@media (max-width: 600px) {
  /* line 156, ../scss/pages/_blog.scss */
  .blog__image {
    height: 250px;
  }
}
/* line 167, ../scss/pages/_blog.scss */
.blog__image img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  transition: all 0.3s ease;
}
/* line 179, ../scss/pages/_blog.scss */
.blog__title {
  margin: 20px 0;
}
/* line 182, ../scss/pages/_blog.scss */
.blog__title h2 {
  font-size: calc(24px + 6 * ((100vw - 320px) / 1440));
}
/* line 185, ../scss/pages/_blog.scss */
.blog__title h2 a {
  border: 0;
}
/* line 188, ../scss/pages/_blog.scss */
.blog__title h2 a:hover {
  color: #b20000;
}
/* line 195, ../scss/pages/_blog.scss */
.blog__desc {
  margin-bottom: 20px;
}

/* line 200, ../scss/pages/_blog.scss */
.blog__stats {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  opacity: 0.3;
  padding: 0 0 20px 0;
  font-size: 14px;
  transition: all 0.3s ease;
}
/* line 211, ../scss/pages/_blog.scss */
.blog__stats span a {
  border-width: 1px;
}
/* line 215, ../scss/pages/_blog.scss */
.blog__stats span:after {
  content: "/";
  margin: 0 10px;
  color: #b20000;
  font-weight: 400;
}
/* line 222, ../scss/pages/_blog.scss */
.blog__stats span:last-child:after {
  display: none;
}

/*--------------------------------------------------------------
# Last From Blog Carousel Home
--------------------------------------------------------------*/
/* line 233, ../scss/pages/_blog.scss */
.bloghome__slider {
  display: flex;
  min-width: 0;
  margin: 0 -15px;
}
@media (max-width: 600px) {
  /* line 233, ../scss/pages/_blog.scss */
  .bloghome__slider {
    margin: 0 -15px;
  }
}
/* line 242, ../scss/pages/_blog.scss */
.bloghome__slider .slick-list {
  padding: 20px 0;
}
/* line 245, ../scss/pages/_blog.scss */
.bloghome__slider .slick-list .slick-track {
  display: flex;
}
/* line 251, ../scss/pages/_blog.scss */
.bloghome__item {
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  height: auto;
  margin: 0 15px;
  border-radius: 5px;
  background: #0d1114;
  box-shadow: 0px 36px 0px -34px #0d1114, -32px 0px 0px -30px #0d1114, 0px -32px 0px -30px #0d1114, 32px 0px 0px -30px #0d1114, 0 0 0 2px #0d1114;
  outline: none;
  transition: all 0.3s ease;
  transform: translate(0, 0);
}
@media (max-width: 600px) {
  /* line 251, ../scss/pages/_blog.scss */
  .bloghome__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: none !important;
  }
}
/* line 271, ../scss/pages/_blog.scss */
.bloghome__item:hover {
  box-shadow: 0 36px 0 -34px #22282d, -32px 0 0 -30px #22282d, 0 -32px 0 -30px #22282d, 32px 0 0 -30px #22282d, 0 0 0 2px #b20000;
  transform: translate(0, -3px);
}
/* line 277, ../scss/pages/_blog.scss */
.bloghome__item:hover .bloghome__image img {
  opacity: 1;
}
/* line 281, ../scss/pages/_blog.scss */
.bloghome__item:hover .bloghome__btn {
  opacity: 1;
}
/* line 285, ../scss/pages/_blog.scss */
.bloghome__item:hover .bloghome__text {
  color: #bcbcbc;
}
/* line 290, ../scss/pages/_blog.scss */
.bloghome__image {
  position: relative;
  height: 244px;
  background: #0d1114;
}
/* line 295, ../scss/pages/_blog.scss */
.bloghome__image img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  /* line 295, ../scss/pages/_blog.scss */
  .bloghome__image img {
    opacity: 1;
  }
}
/* line 311, ../scss/pages/_blog.scss */
.bloghome h4 {
  overflow: hidden;
  height: 55px;
  margin: 20px 0;
  padding: 0 15px;
}
@media (max-width: 600px) {
  /* line 311, ../scss/pages/_blog.scss */
  .bloghome h4 {
    padding: 0;
  }
}
/* line 321, ../scss/pages/_blog.scss */
.bloghome h4 a {
  border: 0;
}
/* line 324, ../scss/pages/_blog.scss */
.bloghome h4 a:hover {
  color: #b20000;
}
@media (max-width: 600px) {
  /* line 311, ../scss/pages/_blog.scss */
  .bloghome h4 {
    height: auto;
    margin: 20px 0;
  }
}
/* line 335, ../scss/pages/_blog.scss */
.bloghome__text {
  padding: 0 15px 15px;
  font-size: calc(15px + 1 * ((100vw - 320px) / 1440));
  transition: all 0.3s ease;
  color: #656565;
}
@media (max-width: 600px) {
  /* line 335, ../scss/pages/_blog.scss */
  .bloghome__text {
    padding: 0 0 15px;
    color: #bcbcbc;
  }
}
/* line 347, ../scss/pages/_blog.scss */
.bloghome__btn {
  display: flex;
  flex: 1 0 auto;
  align-items: flex-end;
  margin: 20px 15px;
  opacity: 0.2;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  /* line 347, ../scss/pages/_blog.scss */
  .bloghome__btn {
    opacity: 1;
    margin: 20px 0;
  }
}

/*--------------------------------------------------------------
# Blog Details Page Style
--------------------------------------------------------------*/
/* line 3, ../scss/pages/_blog-details.scss */
.blog-page .blog__image img {
  opacity: 1;
  filter: saturate(1);
}
/* line 9, ../scss/pages/_blog-details.scss */
.blog-page .comments__body {
  margin-top: 30px;
}
/* line 13, ../scss/pages/_blog-details.scss */
.blog-page .author {
  display: flex;
  align-items: flex-start;
  margin: 0 2px 80px 2px;
  padding: 35px;
  border-radius: 5px;
  background: #0d1114;
  box-shadow: 0 36px 0 -34px #22282d, -32px 0 0 -30px #22282d, 0 -32px 0 -30px #22282d, 32px 0 0 -30px #22282d, 0 0 0 2px #b20000;
}
@media (max-width: 600px) {
  /* line 13, ../scss/pages/_blog-details.scss */
  .blog-page .author {
    margin-bottom: 40px;
    padding: 15px;
  }
}
@media (max-width: 480px) {
  /* line 13, ../scss/pages/_blog-details.scss */
  .blog-page .author {
    flex-direction: column;
    align-items: center;
  }
}
/* line 33, ../scss/pages/_blog-details.scss */
.blog-page .author__avatar {
  position: relative;
  flex: 0 0 100px;
  overflow: hidden;
  width: 100px;
  height: 100px;
  margin-right: 30px;
  border: 2px solid #b20000;
  border-radius: 100%;
}
@media (max-width: 480px) {
  /* line 33, ../scss/pages/_blog-details.scss */
  .blog-page .author__avatar {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
/* line 48, ../scss/pages/_blog-details.scss */
.blog-page .author__avatar img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: saturate(0);
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  /* line 62, ../scss/pages/_blog-details.scss */
  .blog-page .author .author__desc .author__name {
    text-align: center;
  }
}
/* line 67, ../scss/pages/_blog-details.scss */
.blog-page .author .author__desc .author__name a {
  display: inline-block;
  margin-bottom: 10px;
  border: 0;
  color: #b20000;
  font-size: 20px;
}
/* line 76, ../scss/pages/_blog-details.scss */
.blog-page .author .author__desc p {
  margin: 0;
}
/* line 83, ../scss/pages/_blog-details.scss */
.blog-page .author:hover .author__avatar img {
  filter: saturate(1);
}
/* line 91, ../scss/pages/_blog-details.scss */
.blog-page .comments__item {
  margin-bottom: 25px;
  border-bottom: 1px solid #22282d;
}
/* line 95, ../scss/pages/_blog-details.scss */
.blog-page .comments__item:last-child {
  border: 0;
}
/* line 101, ../scss/pages/_blog-details.scss */
.blog-page .comments__item:hover .comments__avatar img {
  filter: saturate(1);
}
/* line 107, ../scss/pages/_blog-details.scss */
.blog-page .comments__item.reply {
  padding-left: 70px;
}
@media (max-width: 600px) {
  /* line 107, ../scss/pages/_blog-details.scss */
  .blog-page .comments__item.reply {
    padding-left: 30px;
  }
}
/* line 116, ../scss/pages/_blog-details.scss */
.blog-page .comments__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* line 122, ../scss/pages/_blog-details.scss */
.blog-page .comments__author {
  display: flex;
  align-items: center;
}
/* line 127, ../scss/pages/_blog-details.scss */
.blog-page .comments__avatar {
  position: relative;
  flex: 0 0 70px;
  overflow: hidden;
  width: 70px;
  height: 70px;
  margin-right: 20px;
  border: 2px solid #b20000;
  border-radius: 100%;
}
@media (max-width: 600px) {
  /* line 127, ../scss/pages/_blog-details.scss */
  .blog-page .comments__avatar {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }
}
/* line 144, ../scss/pages/_blog-details.scss */
.blog-page .comments__avatar img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: saturate(0);
  transition: all 0.3s ease;
}
/* line 157, ../scss/pages/_blog-details.scss */
.blog-page .comments__name-title {
  display: inline-block;
  border: 0;
  color: #b20000;
  font-size: 20px;
}
@media (max-width: 600px) {
  /* line 157, ../scss/pages/_blog-details.scss */
  .blog-page .comments__name-title {
    font-size: 15px;
  }
}
/* line 168, ../scss/pages/_blog-details.scss */
.blog-page .comments__name-date {
  color: #434f59;
  font-size: 14px;
}
@media (max-width: 600px) {
  /* line 168, ../scss/pages/_blog-details.scss */
  .blog-page .comments__name-date {
    font-size: 13px;
  }
}
/* line 178, ../scss/pages/_blog-details.scss */
.blog-page .comments__reply a {
  height: 28px;
  margin-bottom: 6px;
  padding: 0 10px;
  font-weight: 400;
  font-size: 13px;
}
/* line 187, ../scss/pages/_blog-details.scss */
.blog-page .comments__text {
  padding: 15px 0 25px 0;
}
/* line 192, ../scss/pages/_blog-details.scss */
.blog-page .leave-reply {
  margin: 70px 0;
}
/* line 196, ../scss/pages/_blog-details.scss */
.blog-page .leave-reply__body input, .blog-page .leave-reply__body textarea {
  border-width: 1px;
}
@media (max-width: 600px) {
  /* line 202, ../scss/pages/_blog-details.scss */
  .blog-page .leave-reply .col-6 {
    flex-basis: 100%;
    max-width: 100%;
  }
}
/* line 210, ../scss/pages/_blog-details.scss */
.blog-page .blog__title {
  margin-bottom: 10px;
  color: #fff;
  font-size: calc(18px + 10 * ((100vw - 320px) / 1440));
}

/*--------------------------------------------------------------
# Simple Page Style
--------------------------------------------------------------*/
/* line 2, ../scss/pages/_page.scss */
.page__body {
  padding: 0 16.66666667%;
}
@media (max-width: 991px) {
  /* line 2, ../scss/pages/_page.scss */
  .page__body {
    flex-direction: column;
    padding: 0;
  }
}
/* line 13, ../scss/pages/_page.scss */
.page__body:hover .page__image img {
  opacity: 1;
  filter: saturate(1);
}
/* line 19, ../scss/pages/_page.scss */
.page__image {
  position: relative;
  overflow: hidden;
  height: 350px;
  border-radius: 5px;
}
@media (max-width: 600px) {
  /* line 19, ../scss/pages/_page.scss */
  .page__image {
    height: 250px;
  }
}
/* line 29, ../scss/pages/_page.scss */
.page__image img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  filter: saturate(0);
  transition: all 0.3s ease;
}
/* line 42, ../scss/pages/_page.scss */
.page__title {
  margin: 20px 0;
}
/* line 45, ../scss/pages/_page.scss */
.page__title h2 {
  font-size: calc(24px + 6 * ((100vw - 320px) / 1440));
}
/* line 50, ../scss/pages/_page.scss */
.page__desc {
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Pagination Style
--------------------------------------------------------------*/
/* line 1, ../scss/components/_pagination.scss */
.pagination {
  display: flex;
  align-items: center;
}
/* line 5, ../scss/components/_pagination.scss */
.pagination a {
  padding: 0 15px;
}
/* line 8, ../scss/components/_pagination.scss */
.pagination a.active {
  position: relative;
  border: 1px solid #b20000;
  color: #fff;
}
/* line 13, ../scss/components/_pagination.scss */
.pagination a.active:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(17deg, #650000 0%, #b20000 100%);
  opacity: 1;
}

/*--------------------------------------------------------------
# Modal Custom Theme Styles
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Custom Modal Style
--------------------------------------------------------------*/
/* line 7, ../scss/components/_modal.scss */
.modal-custom .modal-custom-body {
  position: relative;
  text-align: center;
}
/* line 11, ../scss/components/_modal.scss */
.modal-custom .modal-custom-title {
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
  opacity: 0;
  transition-duration: 0.7s;
  transition-property: transform, opacity;
  transform: translateY(-50px);
  font-size: calc(18px + 6 * ((100vw - 320px) / 1440));
}
/* line 21, ../scss/components/_modal.scss */
.modal-custom .modal-custom-desc {
  opacity: 0;
  transition-duration: 0.7s;
  transition-property: transform, opacity;
  transform: translateY(-50px);
}
/* line 27, ../scss/components/_modal.scss */
.modal-custom .modal-custom-bottom {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #3c4750;
  opacity: 0;
  transition-duration: 0.7s;
  transition-property: transform, opacity;
  transform: translateY(-50px);
}
/* line 38, ../scss/components/_modal.scss */
.modal-custom .modal-custom-bottom a {
  margin: 0 0 0 10px;
}

/* line 44, ../scss/components/_modal.scss */
.fancybox-slide--current .modal-custom .modal-custom-title {
  opacity: 1;
  transition-delay: 0.3s;
  transform: translateY(0);
}
/* line 49, ../scss/components/_modal.scss */
.fancybox-slide--current .modal-custom .modal-custom-bottom {
  opacity: 1;
  transition-delay: 0.5s;
  transform: translateY(0);
}
/* line 54, ../scss/components/_modal.scss */
.fancybox-slide--current .modal-custom .modal-custom-desc {
  opacity: 1;
  transition-delay: 0.7s;
  transform: translateY(0);
}

/* line 61, ../scss/components/_modal.scss */
.modal-default.fancybox-content {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  padding: 25px 30px;
  border-radius: 5px;
  background: linear-gradient(17deg, #22282d 0%, #30383f 100%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s;
  transform: translateY(-150px);
}
@media (max-width: 600px) {
  /* line 61, ../scss/components/_modal.scss */
  .modal-default.fancybox-content {
    padding: 15px;
  }
}
/* line 78, ../scss/components/_modal.scss */
.modal-default .modal-defautl-body {
  position: relative;
  text-align: center;
}
/* line 82, ../scss/components/_modal.scss */
.modal-default .modal-defautl-title {
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
  font-size: calc(18px + 6 * ((100vw - 320px) / 1440));
}
/* line 88, ../scss/components/_modal.scss */
.modal-default .modal-defautl-bottom {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #3c4750;
}
/* line 95, ../scss/components/_modal.scss */
.modal-default .modal-defautl-bottom a {
  margin: 0 0 0 10px;
}

/*--------------------------------------------------------------
# Team Modal Style
--------------------------------------------------------------*/
/* line 105, ../scss/components/_modal.scss */
.fancybox-slide--current .modal-custom.fancybox-content,
.fancybox-slide--current .modal-default.fancybox-content,
.fancybox-slide--current .modal-custom.fancybox-content:before,
.fancybox-slide--current .modal-custom .modal-team-left,
.fancybox-slide--current .modal-custom .modal-team-name,
.fancybox-slide--current .modal-custom .modal-team-specialty,
.fancybox-slide--current .modal-custom .modal-team-progressbar,
.fancybox-slide--current .modal-custom .modal-team-text {
  opacity: 1;
  transform: translateY(0);
}

/* line 117, ../scss/components/_modal.scss */
.fancybox-slide--current .modal-custom .modal-team-left {
  transition-delay: 0.1s;
}

/* line 121, ../scss/components/_modal.scss */
.fancybox-slide--current .modal-custom .modal-team-name {
  transition-delay: 0.3s;
}

/* line 125, ../scss/components/_modal.scss */
.fancybox-slide--current .modal-custom .modal-team-specialty {
  transition-delay: 0.5s;
}

/* line 129, ../scss/components/_modal.scss */
.fancybox-slide--current .modal-custom .modal-team-text {
  transition-delay: 0.7s;
}

/* line 133, ../scss/components/_modal.scss */
.fancybox-slide--current .modal-custom .modal-team-progressbar {
  transition-delay: 0.9s;
}

/* line 137, ../scss/components/_modal.scss */
.fancybox-slide--current .modal-custom.fancybox-content:before {
  opacity: 1;
  transition-delay: 0.3s;
}

/*--------------------------------------------------------------
# Modal Custom Theme Style 1
--------------------------------------------------------------*/
/* line 146, ../scss/components/_modal.scss */
.modal-custom.fancybox-content {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  padding: 25px 30px;
  border: 1px solid #30383f;
  border-radius: 5px;
  background: linear-gradient(17deg, #22282d 0%, #30383f 100%);
  box-shadow: 0 36px 0 -34px #22282d, -32px 0 0 -30px #22282d, 0 -32px 0 -30px #22282d, 32px 0 0 -30px #22282d, 0 0 0 2px #b20000;
  transition: all 0.4s;
  transform: translateY(-150px);
}
@media (max-width: 600px) {
  /* line 146, ../scss/components/_modal.scss */
  .modal-custom.fancybox-content {
    padding: 15px;
  }
}
/* line 164, ../scss/components/_modal.scss */
.modal-custom.fancybox-content:before {
  content: "";
  position: absolute;
  top: -50%;
  left: 0px;
  z-index: 0;
  width: 100%;
  min-width: 470px;
  height: 100%;
  border-radius: 100% 20% 200% 100%;
  background: #242b30;
  opacity: 0;
  transition-duration: 2s;
  transition-property: transform, opacity;
  transform: translateY(-150px);
}

/*--------------------------------------------------------------
# Modal Custom Theme Style 2
--------------------------------------------------------------*/
/* line 188, ../scss/components/_modal.scss */
.modal-custom.theme2.fancybox-content {
  background: linear-gradient(17deg, #8E2DE2 0, #4A00E0 100%);
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
/* line 193, ../scss/components/_modal.scss */
.modal-custom.theme2.fancybox-content:before {
  background: rgba(255, 255, 255, 0.1);
}
/* line 197, ../scss/components/_modal.scss */
.modal-custom.theme2 .modal-custom-bottom {
  border-color: rgba(255, 255, 255, 0.1);
}

/*--------------------------------------------------------------
# Modal Custom Theme Style 3
--------------------------------------------------------------*/
/* line 207, ../scss/components/_modal.scss */
.modal-custom.theme3.fancybox-content {
  background: linear-gradient(17deg, #00B4DB 0, #0083B0 100%);
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
/* line 212, ../scss/components/_modal.scss */
.modal-custom.theme3.fancybox-content:before {
  background: rgba(255, 255, 255, 0.1);
}
/* line 216, ../scss/components/_modal.scss */
.modal-custom.theme3 .modal-custom-bottom {
  border-color: rgba(255, 255, 255, 0.1);
}

/*--------------------------------------------------------------
# Modal Custom Theme Style 4
--------------------------------------------------------------*/
/* line 226, ../scss/components/_modal.scss */
.modal-custom.theme4.fancybox-content {
  background: linear-gradient(17deg, #DA4453 0, #89216B 100%);
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
/* line 231, ../scss/components/_modal.scss */
.modal-custom.theme4.fancybox-content:before {
  background: rgba(255, 255, 255, 0.1);
}
/* line 235, ../scss/components/_modal.scss */
.modal-custom.theme4 .modal-custom-bottom {
  border-color: rgba(255, 255, 255, 0.1);
}

/*--------------------------------------------------------------
# Modal Custom Theme Style 5
--------------------------------------------------------------*/
/* line 245, ../scss/components/_modal.scss */
.modal-custom.theme5.fancybox-content {
  background: linear-gradient(17deg, #f12711 0, #f5af19 100%);
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
/* line 250, ../scss/components/_modal.scss */
.modal-custom.theme5.fancybox-content:before {
  background: rgba(255, 255, 255, 0.1);
}
/* line 254, ../scss/components/_modal.scss */
.modal-custom.theme5 .modal-custom-bottom {
  border-color: rgba(255, 255, 255, 0.1);
}

/*--------------------------------------------------------------
# Modal Custom Theme Style 6
--------------------------------------------------------------*/
/* line 264, ../scss/components/_modal.scss */
.modal-custom.theme6.fancybox-content {
  background: linear-gradient(17deg, #00F260 0, #0575E6 100%);
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
/* line 269, ../scss/components/_modal.scss */
.modal-custom.theme6.fancybox-content:before {
  background: rgba(255, 255, 255, 0.1);
}
/* line 273, ../scss/components/_modal.scss */
.modal-custom.theme6 .modal-custom-bottom {
  border-color: rgba(255, 255, 255, 0.1);
}

/* line 278, ../scss/components/_modal.scss */
.fancybox-bg {
  background: #141a1e !important;
}

/* line 282, ../scss/components/_modal.scss */
.fancybox-is-open .fancybox-bg {
  opacity: 0.97 !important;
}

/*--------------------------------------------------------------
# ProgressBar Style
--------------------------------------------------------------*/
/* line 1, ../scss/components/_progressbar.scss */
.progressbar-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 150px;
}
@media (max-width: 1200px) {
  /* line 1, ../scss/components/_progressbar.scss */
  .progressbar-block {
    padding: 0;
  }
}
/* line 11, ../scss/components/_progressbar.scss */
.progressbar-block .progressbar-item {
  width: 100%;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  /* line 11, ../scss/components/_progressbar.scss */
  .progressbar-block .progressbar-item {
    margin-bottom: 40px;
  }
}

/* line 21, ../scss/components/_progressbar.scss */
.progress-bar {
  margin-bottom: 30px;
}
/* line 24, ../scss/components/_progressbar.scss */
.progress-bar .single-progress {
  position: relative;
}
/* line 28, ../scss/components/_progressbar.scss */
.progress-bar .single-progress.custom-color--1 .progress-bar {
  position: relative;
  height: 100%;
  background: linear-gradient(17deg, #980a49 0, #e00f6c 100%);
  box-shadow: 0 2px 6px rgba(224, 15, 108, 0.5);
}
/* line 37, ../scss/components/_progressbar.scss */
.progress-bar .single-progress.custom-color--2 .progress-bar {
  position: relative;
  height: 100%;
  background: linear-gradient(17deg, #00678f 0, #009edb 100%);
  box-shadow: 0 2px 6px rgba(0, 158, 219, 0.5);
}
/* line 46, ../scss/components/_progressbar.scss */
.progress-bar .single-progress.custom-color--3 .progress-bar {
  position: relative;
  height: 100%;
  background: linear-gradient(17deg, #b26200 0, #fe8c00 100%);
  box-shadow: 0 2px 6px rgba(254, 140, 0, 0.5);
}
/* line 55, ../scss/components/_progressbar.scss */
.progress-bar .single-progress.custom-color--4 .progress-bar {
  position: relative;
  height: 100%;
  background: linear-gradient(17deg, #6718ab 0, #8e2de2 100%);
  box-shadow: 0 2px 6px rgba(142, 45, 226, 0.5);
}
/* line 63, ../scss/components/_progressbar.scss */
.progress-bar .single-progress.custom-color--5 .progress-bar {
  position: relative;
  height: 100%;
  background: linear-gradient(17deg, #7e0d20 0, #c31432 100%);
  box-shadow: 0 2px 6px rgba(195, 20, 50, 0.5);
}
/* line 71, ../scss/components/_progressbar.scss */
.progress-bar .single-progress.custom-color--6 .progress-bar {
  position: relative;
  height: 100%;
  background: linear-gradient(17deg, #62890d 0, #94cf14 100%);
  box-shadow: 0 2px 6px rgba(148, 207, 20, 0.5);
}
/* line 80, ../scss/components/_progressbar.scss */
.progress-bar .title-progress-bar {
  margin-bottom: 10px;
}
/* line 84, ../scss/components/_progressbar.scss */
.progress-bar .label {
  position: absolute;
  top: 0;
  right: 0;
}
/* line 90, ../scss/components/_progressbar.scss */
.progress-bar .progress {
  overflow: visible;
  height: 4px;
  border-radius: 4px;
  background-color: #22282d;
  box-shadow: none;
}
/* line 98, ../scss/components/_progressbar.scss */
.progress-bar .progress-bar {
  position: relative;
  height: 100%;
  background: linear-gradient(90deg, #650000 0%, #b20000 100%);
  background-color: #b20000;
  color: #b20000;
  box-shadow: 0 2px 6px rgba(178, 0, 0, 0.5);
}
/* line 108, ../scss/components/_progressbar.scss */
.progress-bar.progress-bar--2 .progress {
  height: 1px;
  border-radius: 0;
}
/* line 115, ../scss/components/_progressbar.scss */
.progress-bar.progress-bar--3 .progress {
  height: 10px;
  border-radius: 0;
}

/*--------------------------------------------------------------
# Login, Registration, Forgot Password Pages Style
--------------------------------------------------------------*/
/* line 3, ../scss/pages/_login-registr-forgot.scss */
.user__use .bg-border {
  width: 100%;
  max-width: 500px;
}
/* line 8, ../scss/pages/_login-registr-forgot.scss */
.user__use-block {
  padding: 20px 30px 30px 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 500px) {
  /* line 8, ../scss/pages/_login-registr-forgot.scss */
  .user__use-block {
    padding: 15px;
  }
}
/* line 17, ../scss/pages/_login-registr-forgot.scss */
.user__use-block .user__use-title {
  text-align: center;
  margin-bottom: 30px;
}
/* line 22, ../scss/pages/_login-registr-forgot.scss */
.user__use-block .user__use-link {
  display: flex;
  justify-content: space-between;
  font-weight: 300;
  margin: 20px 0 0 0;
}
@media (max-width: 767px) {
  /* line 22, ../scss/pages/_login-registr-forgot.scss */
  .user__use-block .user__use-link {
    font-size: 14px;
  }
}
/* line 34, ../scss/pages/_login-registr-forgot.scss */
.user__use-block .user__use-link span:last-child a {
  margin-left: 5px;
}
/* line 40, ../scss/pages/_login-registr-forgot.scss */
.user__use-block label {
  margin: 10px 0 20px 0;
  flex-wrap: wrap;
  height: auto;
}

/* line 48, ../scss/pages/_login-registr-forgot.scss */
.bg-border {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 36px 0 -34px #22282d, -32px 0 0 -30px #22282d, 0 -32px 0 -30px #22282d, 32px 0 0 -30px #22282d, 0 0 0 2px #b20000;
}

/*--------------------------------------------------------------*/
