/* --------------- variable --------------- */
:root {
  --color-main:#0066ff;
  --color-primary:#0066ff;
  --color-secondary:#02b5ff;
  --color-blue2: #4a00e1;
  --color-blue4: #5842bc;
  --color-blue5: #157efb;
  --color-blue6: #6640f4;
  --color-blue7: #8169f1;
  --color-lightBlue:#15f1ff;
  --color-darkBlue:#010049;
  --color-darkBlue2:#1f227d;
  --color-orange1:#ff7a41;
  --color-orange2:#f6c463;
  --color-orange3:#f9a41f;
  --color-red1:#cc2131;
  --color-red2:#ef1552;
  --color-green:#00c057;
  --color-yellowGreen:#cef54b;
  --color-gray:#eef4f8;
  --color-gray2:#f0eff5;
  --color-main-grad: linear-gradient(to right, #0c3df4 0%, #02b5ff 100%);
}

.color-main {
  color: var(--color-main) !important;
}

.border-main {
  border-color: var(--color-main) !important;
}

.bg-main {
  background-color: var(--color-main) !important;
  border-color: var(--color-main) !important;
}

.color-lightBlue {
  color: var(--color-lightBlue) !important;
}

.border-lightBlue {
  border-color: var(--color-lightBlue) !important;
}

.bg-lightBlue {
  background-color: var(--color-lightBlue) !important;
}

.color-darkBlue {
  color: var(--color-darkBlue) !important;
}

.border-darkBlue {
  border-color: var(--color-darkBlue) !important;
}

.bg-darkBlue {
  background-color: var(--color-darkBlue) !important;
}

.hover-darkBlue:hover {
  color: var(--color-darkBlue) !important;
}

.color-darkBlue2 {
  color: var(--color-darkBlue2) !important;
}

.border-darkBlue2 {
  border-color: var(--color-darkBlue2) !important;
}

.bg-darkBlue2 {
  background-color: var(--color-darkBlue2) !important;
}

.hover-darkBlue2:hover {
  color: var(--color-darkBlue2) !important;
}

.bg-gradient {
  background-image: var(--color-main-grad) !important;
}

.bg-gray {
  background: var(--color-gray) !important;
}

.bg-gray2 {
  background-color: var(--color-gray2) !important;
}

.color-blue2 {
  color: var(--color-blue2) !important;
}

.bg-blue2 {
  background-color: var(--color-blue2) !important;
}

.border-blue2 {
  border-color: var(--color-blue2) !important;
}

.color-blue4 {
  color: var(--color-blue4) !important;
}

.bg-blue4 {
  background-color: var(--color-blue4) !important;
}

.border-blue4 {
  border-color: var(--color-blue4) !important;
}

.color-blue5 {
  color: var(--color-blue5) !important;
}

.bg-blue5 {
  background-color: var(--color-blue5) !important;
}

.border-blue5 {
  border-color: var(--color-blue5) !important;
}

.color-blue6 {
  color: var(--color-blue6) !important;
}

.bg-blue6 {
  background-color: var(--color-blue6) !important;
}

.border-blue6 {
  border-color: var(--color-blue6) !important;
}

.color-blue7 {
  color: var(--color-blue7) !important;
}

.bg-blue7 {
  background-color: var(--color-blue7) !important;
}

.border-blue7 {
  border-color: var(--color-blue7) !important;
}

.hover-blue7 {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hover-blue7:hover {
  background-color: var(--color-blue7) !important;
}

.color-orange1 {
  color: var(--color-orange1) !important;
}

.bg-orange1 {
  background-color: var(--color-orange1) !important;
}

.border-orange1 {
  border-color: var(--color-orange1) !important;
}

.hover-orange1 {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hover-orange1:hover {
  background-color: var(--color-orange1) !important;
}

.color-orange2 {
  color: var(--color-orange2) !important;
}

.bg-orange2 {
  background-color: var(--color-orange2) !important;
}

.border-orange2 {
  border-color: var(--color-orange2) !important;
}

.hover-orange2 {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hover-orange2:hover {
  background-color: var(--color-orange2) !important;
}

.color-green {
  color: var(--color-green) !important;
}

.bg-green {
  background-color: var(--color-green) !important;
}

.border-green {
  border-color: var(--color-green) !important;
}

.hover-green {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hover-green:hover {
  background-color: var(--color-green) !important;
}
.hover-green:hover * {
  color: #fff;
}

.color-yellowGreen {
  color: var(--color-yellowGreen) !important;
}

.bg-yellowGreen {
  background-color: var(--color-yellowGreen) !important;
}

.border-yellowGreen {
  border-color: var(--color-yellowGreen) !important;
}

.hover-yellowGreen {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hover-yellowGreen:hover {
  background-color: var(--color-yellowGreen) !important;
}
.hover-yellowGreen:hover * {
  color: #000;
}

.color-orange3 {
  color: var(--color-orange3) !important;
}

.bg-orange3 {
  background-color: var(--color-orange3) !important;
}

.border-orange3 {
  border-color: var(--color-orange3) !important;
}

.hover-orange3 {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hover-orange3:hover {
  background-color: var(--color-orange3) !important;
}
.hover-orange3:hover * {
  color: #fff;
}

.color-red1 {
  color: var(--color-red1) !important;
}

.bg-red1 {
  background-color: var(--color-red1) !important;
}

.border-red1 {
  border-color: var(--color-red1) !important;
}

.hover-red1 {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hover-red1:hover {
  background-color: var(--color-red1) !important;
}
.hover-red1:hover * {
  color: #fff;
}

.color-red2 {
  color: var(--color-red2) !important;
}

.bg-red2 {
  background-color: var(--color-red2) !important;
}

.border-red2 {
  border-color: var(--color-red2) !important;
}

.hover-red2 {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hover-red2:hover {
  background-color: var(--color-red2) !important;
}
.hover-red2:hover * {
  color: #fff;
}

/* --------------- global --------------- */
*,
* button:focus {
  outline: 0;
}

html::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

body {
  font-family: "Inter", sans-serif;
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  background-color: #aaaaa0;
  font-weight: 400;
  line-height: 1.5;
}

.container,
.container-fluid {
  position: relative;
  z-index: 5;
}

.container, .container-lg, .container-md, .container-sm, .container-xl {
  width: 100%;
  max-width: 1520px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.container-small {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1145px;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container-small {
    padding: 0 20px;
  }
}
.container {
  width: 100%;
  max-width: 1520px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}
.container-big {
  padding: 0 6vw;
}

@media (max-width: 768px) {
  .container-big {
    padding: 0 20px;
  }
}
.row:not(.gx-0):not(.gx-1):not(.gx-2):not(.gx-3):not(.gx-4):not(.gx-5) {
  margin-right: -15px;
  margin-left: -15px;
}
.row:not(.gx-0):not(.gx-1):not(.gx-2):not(.gx-3):not(.gx-4):not(.gx-5) > * {
  padding-right: 15px;
  padding-left: 15px;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

h5,
h6 {
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  outline: 0;
}

a,
span,
img {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none !important;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.bi {
  display: inline-block;
}

.text {
  font-size: 14px;
  line-height: 2;
}

.small, small {
  font-size: 13px;
  line-height: 1.7;
  display: inline-block;
}

small.text {
  font-size: 12px;
}

.text-gray {
  color: #666;
}

.bg-gray5 {
  background-color: #f3f7fe;
}

.section-padding {
  padding: 100px 0;
}

.swiper-pagination {
  width: 100%;
  bottom: 0;
}

.pagination_circle .swiper-pagination-bullet {
  margin: 0 20px;
  position: relative;
}
.pagination_circle .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  left: -10px;
  top: -10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid transparent;
}
.pagination_circle .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border: 1px solid var(--color-lightBlue);
}

.pagi_dark .swiper-pagination-bullet {
  background-color: #000;
}

.pagi_white .swiper-pagination-bullet {
  background-color: #fff;
}

.slider-style-6 {
  position: relative;
}
.slider-style-6 .swiper-pagination-bullet-active {
  background-color: var(--color-blue6);
}
.slider-style-6 .swiper-button-next,
.slider-style-6 .swiper-button-prev {
  border-radius: 50%;
  width: 45px;
  height: 45px;
}
.slider-style-6 .swiper-button-next:hover,
.slider-style-6 .swiper-button-prev:hover {
  background: var(--color-blue6);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.slider-style-6 .swiper-button-next, .slider-style-6 .swiper-container-rtl .swiper-button-prev {
  right: -60px;
}
.slider-style-6 .swiper-button-prev, .slider-style-6 .swiper-container-rtl .swiper-button-next {
  left: -60px;
}

/* --------------- dropdown --------------- */
.dropdown-toggle::after {
  position: relative;
  top: 3px;
  opacity: 0.8;
  content: "\f078";
  font-weight: 900;
  font-family: "Font Awesome 5 pro";
  border: 0;
  font-size: 80%;
}

.dropdown-menu {
  min-width: 170px;
  padding: 15px 0;
  border-radius: 15px;
  border: 0;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.0666666667);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.0666666667);
  top: 100%;
}
.dropdown-menu .dropdown-item {
  padding: 8px 20px;
  font-size: 12px;
}

.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-switch .form-check-input {
  margin: 0 15px !important;
  width: 2.5em !important;
  height: 1.3em;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}
.form-switch .form-check-input.color-lightBlue:checked {
  background-color: var(--color-lightBlue);
  border-color: var(--color-lightBlue);
  background-image: url(../img/icons/toggle_dot.svg);
}

/* --------------- to_top button --------------- */
.to_top {
  position: fixed;
  z-index: 9999;
  bottom: 30px;
  right: -50px;
  width: 35px;
  height: 35px;
  border-radius: 7px;
  background: var(--color-main-grad);
  color: #fff;
  font-size: 11px;
  text-align: center;
  padding: 7px;
  line-height: 1;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1333333333);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1333333333);
}
.to_top small {
  display: block;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 8px;
}
.to_top i {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.to_top.show {
  right: 30px;
  opacity: 1;
}

/* --------------- pagination style --------------- */
.pagination.style-5 a {
  width: 30px;
  height: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  border: 1px solid rgba(153, 153, 153, 0.2);
  border-radius: 8px;
  margin-right: 5px;
  font-size: 11px;
  color: #666;
}
.pagination.style-5 a .text {
  padding: 3px 10px;
  font-size: 11px;
}
.pagination.color-5 a:hover {
  color: var(--color-blue5) !important;
  border-color: var(--color-blue5);
}
.pagination.color-5 a.active {
  color: #fff;
  border-color: var(--color-blue5);
  background-color: var(--color-blue5);
}
.pagination.color-4 a:hover {
  color: var(--color-blue4) !important;
  border-color: var(--color-blue4);
}
.pagination.color-4 a.active {
  color: #fff;
  border-color: var(--color-blue4);
  background-color: var(--color-blue4);
}

/**
 * ----------------------------------------
 * animation rotate-center
 * ----------------------------------------
*/
.rotate-center {
  -webkit-animation: rotate-center 100s linear infinite both;
  animation: rotate-center 100s linear infinite both;
}

@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/**
 * ----------------------------------------
 * animation slide_up_down
 * ----------------------------------------
*/
.slide_up_down {
  -webkit-animation: slide_up_down 1.7s ease-in-out infinite alternate both;
  animation: slide_up_down 1.7s ease-in-out infinite alternate both;
}

/* ------- */
@-webkit-keyframes slide_up_down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes slide_up_down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
/**
 * ----------------------------------------
 * animation wave
 * ----------------------------------------
*/
.wave {
  -webkit-animation: wave 2s ease-in-out infinite alternate both;
  animation: wave 2s ease-in-out infinite alternate both;
}

/* ------- */
@-webkit-keyframes wave {
  0% {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
  }
  100% {
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg);
  }
}
@keyframes wave {
  0% {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
  }
  100% {
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg);
  }
}
/**
 * ----------------------------------------
 * animation scale_up_down
 * ----------------------------------------
*/
.scale_up_down {
  -webkit-animation: scale_up_down 1s ease-in-out infinite alternate both;
  animation: scale_up_down 1s ease-in-out infinite alternate both;
}

/* ------- */
@-webkit-keyframes scale_up_down {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale_up_down {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.left_to_right_apperance {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.left_to_right_apperance.animated {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 2px #3a3328;
}

@media (max-width: 576px) {
  .outline-text {
    -webkit-text-stroke-width: 1px;
  }
}
.outline-text--light {
  -webkit-text-stroke: 2px #d7cdb9;
}

@media (max-width: 576px) {
  .outline-text--light {
    -webkit-text-stroke-width: 1px;
  }
}
.link, a {
  position: relative;
  cursor: pointer;
  color: #d7cdb9;
  background-color: transparent;
  outline: none;
  padding: 0;
  text-decoration: none;
  border: 0;
}

.link:before, a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 100%;
  height: 1px;
  background-color: currentColor;
  -webkit-transition: right 0.3s ease-in-out;
  transition: right 0.3s ease-in-out;
}

@media (hover: hover) {
  .link:hover:before, a:hover:before {
    right: 0;
  }
}
.light-layout .link, .light-layout a {
  color: #3a3328;
}

.link.link--light {
  color: #d7cdb9;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
}

.link.link--light:before {
  background-color: #d7cdb9;
}

.link.link--dark {
  color: #3a3328;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}

.link.link--dark:before {
  background-color: #3a3328;
}

.link.link--revert:before {
  right: 0;
}

@media (hover: hover) {
  .link.link--revert:hover:before {
    right: 100%;
  }
}
.special-link {
  cursor: pointer;
  background: none;
  font-size: 36px;
  line-height: 44px;
  border: 0;
  outline: none;
  margin: 0 15px;
  padding: 0;
  text-transform: uppercase;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
  color: #d7cdb9;
  border-bottom: 2px dotted #d7cdb9;
}

.light-layout .special-link {
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  color: #3a3328;
  border-bottom-color: #3a3328;
}

.special-link--disabled {
  cursor: default;
  opacity: 0.7;
}

.light-layout .special-link--disabled, .special-link--disabled {
  border-bottom-color: transparent;
}

.special-link--small {
  font-size: 16px;
  line-height: 22px;
  text-transform: none;
}

.pointer {
  cursor: pointer;
}

.relative {
  position: relative;
}

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

img[lazy=loading] {
  background: rgba(173, 172, 163, 0.05) url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBzdHlsZT0ibWFyZ2luOiBhdXRvOyBkaXNwbGF5OiBibG9jazsgc2hhcGUtcmVuZGVyaW5nOiBhdXRvOyBhbmltYXRpb24tcGxheS1zdGF0ZTogcnVubmluZzsgYW5pbWF0aW9uLWRlbGF5OiAwczsiIHdpZHRoPSI2OHB4IiBoZWlnaHQ9IjY4cHgiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCI+CjxjaXJjbGUgY3g9IjUwIiBjeT0iNTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2Q3Y2RiOSIgc3Ryb2tlLXdpZHRoPSI2IiByPSIzNSIgc3Ryb2tlLWRhc2hhcnJheT0iMTY0LjkzMzYxNDMxMzQ2NDE1IDU2Ljk3Nzg3MTQzNzgyMTM4IiBzdHlsZT0iYW5pbWF0aW9uLXBsYXktc3RhdGU6IHJ1bm5pbmc7IGFuaW1hdGlvbi1kZWxheTogMHM7Ij4KICA8YW5pbWF0ZVRyYW5zZm9ybSBhdHRyaWJ1dGVOYW1lPSJ0cmFuc2Zvcm0iIHR5cGU9InJvdGF0ZSIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiIGR1cj0iMXMiIHZhbHVlcz0iMCA1MCA1MDszNjAgNTAgNTAiIGtleVRpbWVzPSIwOzEiIHN0eWxlPSJhbmltYXRpb24tcGxheS1zdGF0ZTogcnVubmluZzsgYW5pbWF0aW9uLWRlbGF5OiAwczsiPjwvYW5pbWF0ZVRyYW5zZm9ybT4KPC9jaXJjbGU+CjwhLS0gW2xkaW9dIGdlbmVyYXRlZCBieSBodHRwczovL2xvYWRpbmcuaW8vIC0tPjwvc3ZnPgo=) no-repeat 50%;
}

.light-layout img[lazy=loading] {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBzdHlsZT0ibWFyZ2luOiBhdXRvOyBkaXNwbGF5OiBibG9jazsgc2hhcGUtcmVuZGVyaW5nOiBhdXRvOyIgd2lkdGg9IjY4cHgiIGhlaWdodD0iNjhweCIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIj4KPGNpcmNsZSBjeD0iNTAiIGN5PSI1MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjM2EzMzI4IiBzdHJva2Utd2lkdGg9IjYiIHI9IjM1IiBzdHJva2UtZGFzaGFycmF5PSIxNjQuOTMzNjE0MzEzNDY0MTUgNTYuOTc3ODcxNDM3ODIxMzgiPgogIDxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgdHlwZT0icm90YXRlIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgZHVyPSIxcyIgdmFsdWVzPSIwIDUwIDUwOzM2MCA1MCA1MCIga2V5VGltZXM9IjA7MSI+PC9hbmltYXRlVHJhbnNmb3JtPgo8L2NpcmNsZT4KPCEtLSBbbGRpb10gZ2VuZXJhdGVkIGJ5IGh0dHBzOi8vbG9hZGluZy5pby8gLS0+PC9zdmc+Cg==);
  background-color: rgba(0, 0, 0, 0.05);
}

img[lazy=loaded] {
  opacity: 0;
  -webkit-animation-name: fadein;
  animation-name: fadein;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
canvas, textarea {
  vertical-align: middle;
}

textarea {
  resize: vertical;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 500;
}

.c-select {
  position: relative;
  display: inline-block;
  color: #d7cdb9;
}

.c-select--wide {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.c-select__label {
  opacity: 0.6;
  font-size: 14px;
  line-height: 18px;
}

.c-select__field {
  width: 100%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  -webkit-transition-property: -webkit-border-radius;
  -webkit-transition-property: border-radius;
  transition-property: border-radius;
  border-bottom: 2px solid rgba(215, 205, 185, 0.2);
}

.c-select--active .c-select__field {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.c-select__field--wide {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
      align-items: flex-end;
  padding-bottom: 5px;
  font-weight: 600;
  overflow: hidden;
  font-size: 16px;
  line-height: 22px;
}

.c-select__field--has-filled-value {
  border-bottom-color: #d7cdb9;
}

.c-select__field-value {
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-select__field--filled, .c-select__list {
  padding: 8px 20px;
  border-radius: 22px;
  background-color: #22201c;
  border: 1px solid hsla(0deg, 0%, 100%, 0.1);
}

.c-select__icon {
  pointer-events: none;
  font-size: 8px;
  margin-left: 5px;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.c-select__field:hover .c-select__icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.c-select__placeholder {
  color: rgba(215, 205, 185, 0.5);
}

.c-select__list {
  position: absolute;
  z-index: 2;
  top: 100%;
  width: 100%;
  left: 0;
  max-height: 300px;
  overflow-y: auto;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top-width: 0;
  -webkit-animation: show-select 0.2s ease-in-out;
  animation: show-select 0.2s ease-in-out;
}

@-webkit-keyframes show-select {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes show-select {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.c-select__list--wide {
  padding: 8px 10px;
}

.c-select__close-button, .c-select__item {
  cursor: pointer;
}

.c-select__close-button:not(:last-child), .c-select__item:not(:last-child) {
  margin-bottom: 5px;
}

.c-select__close-button--active, .c-select__item--active {
  cursor: default;
  opacity: 0.7;
}

/* --------------- helper classes --------------- */
/* --------------- radius classes --------------- */
.radius-1 {
  border-radius: 3px !important;
}

.radius-2 {
  border-radius: 5px !important;
}

.radius-3 {
  border-radius: 8px !important;
}

.radius-4 {
  border-radius: 10px !important;
}

.radius-5 {
  border-radius: 12px !important;
}

.radius-6 {
  border-radius: 15px !important;
}

.radius-7 {
  border-radius: 20px !important;
}

.radius-8 {
  border-radius: 25px !important;
}

.radius-9 {
  border-radius: 30px !important;
}

.radius-10 {
  border-radius: 50px !important;
}

/* --------------- margin classes --------------- */
.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mt-150 {
  margin-top: 150px !important;
}

.mt-200 {
  margin-top: 200px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mb-150 {
  margin-bottom: 150px !important;
}

.mb-200 {
  margin-bottom: 200px !important;
}

/* margin right */
.mr-5 {
  margin-right: 5px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.mr-110 {
  margin-right: 110px !important;
}

.mr-120 {
  margin-right: 120px !important;
}

.mr-150 {
  margin-right: 150px !important;
}

.mr-200 {
  margin-right: 200px !important;
}

/* margin right */
.ml-5 {
  margin-left: 5px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.ml-110 {
  margin-left: 110px !important;
}

.ml-120 {
  margin-left: 120px !important;
}

.ml-150 {
  margin-left: 150px !important;
}

.ml-200 {
  margin-left: 200px !important;
}

/* --------------- padding classes --------------- */
.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pt-150 {
  padding-top: 150px !important;
}

.pt-200 {
  padding-top: 200px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pb-150 {
  padding-bottom: 150px !important;
}

.pb-200 {
  padding-bottom: 200px !important;
}

/* --------------- opacity classes --------------- */
.op-1 {
  opacity: 0.1;
}

.op-2 {
  opacity: 0.2;
}

.op-3 {
  opacity: 0.3;
}

.op-4 {
  opacity: 0.4;
}

.op-5 {
  opacity: 0.5;
}

.op-6 {
  opacity: 0.6;
}

.op-7 {
  opacity: 0.7;
}

.op-8 {
  opacity: 0.8;
}

.op-9 {
  opacity: 0.9;
}

.op-10 {
  opacity: 1;
}

/* --------------- lineHeight classes --------------- */
.lh-1 {
  line-height: 1;
}

.lh-2 {
  line-height: 1.2;
}

.lh-3 {
  line-height: 1.4;
}

.lh-4 {
  line-height: 1.6;
}

.lh-5 {
  line-height: 1.8;
}

.lh-6 {
  line-height: 2;
}

.lh-7 {
  line-height: 2.5;
}

.lh-8 {
  line-height: 3;
}

/* --------------- border color classes --------------- */
.brd-light {
  border-color: rgba(255, 255, 255, 0.2666666667) !important;
}

.brd-gray {
  border-color: rgba(0, 0, 0, 0.1333333333) !important;
}

.bg-black {
  background-color: #000 !important;
}

/* ---------------  color classes --------------- */
.color-000 {
  color: #000 !important;
}

.color-111 {
  color: #111 !important;
}

.color-222 {
  color: #222 !important;
}

.color-333 {
  color: #333 !important;
}

.color-444 {
  color: #444 !important;
}

.color-555 {
  color: #555 !important;
}

.color-666 {
  color: #666 !important;
}

.color-777 {
  color: #777 !important;
}

.color-888 {
  color: #888 !important;
}

.color-999 {
  color: #999 !important;
}

/* --------------- icons size --------------- */
.icon-10 {
  width: 10px;
  height: 10px;
}

.icon-15 {
  width: 15px;
  height: 15px;
}

.icon-20 {
  width: 20px;
  height: 20px;
}

.icon-25 {
  width: 25px;
  height: 25px;
}

.icon-30 {
  width: 30px;
  height: 30px;
}

.icon-35 {
  width: 35px;
  height: 35px;
}

.icon-40 {
  width: 40px;
  height: 40px;
}

.icon-45 {
  width: 45px;
  height: 45px;
}

.icon-50 {
  width: 50px;
  height: 50px;
}

.icon-55 {
  width: 55px;
  height: 55px;
}

.icon-60 {
  width: 60px;
  height: 60px;
}

.icon-65 {
  width: 65px;
  height: 65px;
}

.icon-70 {
  width: 70px;
  height: 70px;
}

.icon-75 {
  width: 75px;
  height: 75px;
}

.icon-80 {
  width: 80px;
  height: 80px;
}

/* --------------- img classes --------------- */
.img-cover {
  display: block;
}
.img-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-contain {
  display: block;
}
.img-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.imgrotate-scale-hover {
  overflow: hidden;
  display: block;
}
.imgrotate-scale-hover img {
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}
.imgrotate-scale-hover:hover img {
  -webkit-transform: rotate(-10deg) scale(1.2);
          transform: rotate(-10deg) scale(1.2);
}

/* --------------- letter spacing classes --------------- */
.ltspc-1 {
  letter-spacing: 1px;
}

.ltspc-2 {
  letter-spacing: 2px;
}

.ltspc-3 {
  letter-spacing: 3px;
}

.ltspc-4 {
  letter-spacing: 4px;
}

.ltspc-5 {
  letter-spacing: 5px;
}

.ltspc-8 {
  letter-spacing: 8px;
}

.ltspc-10 {
  letter-spacing: 10px;
}

.ltspc-12 {
  letter-spacing: 12px;
}

.ltspc-15 {
  letter-spacing: 15px;
}

.ltspc-17 {
  letter-spacing: 17px;
}

.ltspc-20 {
  letter-spacing: 20px;
}

.fs-10px {
  font-size: 10px !important;
}

.fs-12px {
  font-size: 12px !important;
}

.fs-14px {
  font-size: 14px !important;
}

.side_menu.style-7 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: var(--color-gray2);
  height: 100vh;
  width: 100%;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  pointer-events: none;
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.side_menu.style-7 .content {
  width: 100%;
}
.side_menu.style-7 .content .logo {
  padding: 30px 7vw;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
}
.side_menu.style-7 .content .logo img {
  width: 300px;
  max-width: 50%;
}
.side_menu.style-7 .content .side_foot {
  padding: 30px 7vw;
  border-top: 1px solid rgba(153, 153, 153, 0.2);
}
.side_menu.style-7 .content .side_foot h5 {
  text-transform: uppercase;
  margin-bottom: 20px;
}
.side_menu.style-7 .pages_links {
  padding: 15px 7vw;
  height: calc(100vh - 240px);
  overflow: auto;
}
.side_menu.style-7 .pages_links::-webkit-scrollbar {
  height: 5px;
  width: 3px;
  background: rgba(129, 105, 241, 0.1333333333);
  border-radius: 10px;
}
.side_menu.style-7 .pages_links::-webkit-scrollbar-thumb {
  background: var(--color-blue7);
  border-radius: 10px;
}
.side_menu.style-7 .pages_links::-webkit-scrollbar-corner {
  background: rgba(129, 105, 241, 0.1333333333);
  border-radius: 10px;
}
.side_menu.style-7 .pages_links li {
  opacity: 0;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.side_menu.style-7 .pages_links li a {
  color: #222;
  font-size: calc(14px + 1.5vw);
  font-weight: bold;
  margin: 10px 0;
  position: relative;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-transform: capitalize;
}
.side_menu.style-7 .pages_links li a::after {
  position: absolute;
  content: "";
  left: 110%;
  top: 60%;
  width: 0;
  height: 2px;
  background-color: var(--color-blue7);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.side_menu.style-7 .pages_links li a:hover, .side_menu.style-7 .pages_links li a.active {
  color: var(--color-blue7);
}
.side_menu.style-7 .pages_links li a:hover::after, .side_menu.style-7 .pages_links li a.active::after {
  width: 50px;
}
.side_menu.style-7 .pages_links ul li {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.side_menu.style-7 .pages_links ul li:nth-of-type(1) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.side_menu.style-7 .pages_links ul li:nth-of-type(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.side_menu.style-7 .pages_links ul li:nth-of-type(3) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.side_menu.style-7 .pages_links ul li:nth-of-type(4) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.side_menu.style-7 .pages_links ul li:nth-of-type(5) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.side_menu.style-7 .pages_links ul li:nth-of-type(6) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.side_menu.style-7 .pages_links ul li:nth-of-type(7) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.side_menu.style-7 .pages_links ul li:nth-of-type(8) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.side_menu.style-7 .side_menu_cls {
  position: absolute;
  top: 40px;
  left: 30px;
}
.side_menu.style-7 .side_menu_cls:hover {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.side_menu.style-7.show {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  pointer-events: all;
  border-radius: 0;
}
.side_menu.style-7.show li {
  opacity: 1;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}
.side_menu.style-7.dark_theme {
  background-color: #000;
  color: #fff;
}
.side_menu.style-7.dark_theme .pages_links li a {
  color: #999;
}
.side_menu.style-7.dark_theme .pages_links li a::after {
  background: #999;
}
.side_menu.style-7.dark_theme .pages_links li a:hover {
  color: #fff;
}
.side_menu.style-7.dark_theme .pages_links li a:hover::after {
  background: #999;
}
.side_menu.style-7.dark_theme::-webkit-scrollbar {
  background: rgba(255, 255, 255, 0.2);
}
.side_menu.style-7.dark_theme::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}
.side_menu.style-7.dark_theme::-webkit-scrollbar-corner {
  background: rgba(255, 255, 255, 0.2);
}

.side_overlay {
  position: fixed;
  z-index: 99998;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.side_overlay.show {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 480px) {
  .side_menu.style-7 {
    width: 100%;
  }
  .side_menu.style-7 .pages_links {
    height: calc(100vh - 273px);
  }
}
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #1c1a17;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  z-index: 999;
  color: #d7cdb9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu ::-moz-selection {
  color: #3a3328;
  background-color: #d7cdb9;
}
.menu ::selection {
  color: #3a3328;
  background-color: #d7cdb9;
}
.menu__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  -webkit-box-orient: vertical;
  bottom: 100%;
  max-width: 40%;
  background-color: #1c1a17;
  overflow-x: hidden;
}
.menu__burger-wrapper {
  cursor: pointer;
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 2;
  width: 40px;
  height: 40px;
}
.menu__burger {
  position: absolute;
  left: 7px;
  top: 16px;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.menu__burger::before, .menu__burger::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: #d7cdb9;
}
.menu__burger::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.menu__header {
  position: relative;
  padding: 100px 0 0 100px;
}
.menu__header-title {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  opacity: 0.2;
  text-align: right;
  max-width: 300px;
}
.menu__links {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.menu__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 0 40px 10%;
  background-color: #22201c;
}
.menu__footer div:first-child {
  margin-right: 50px;
  max-width: 250px;
}
.menu__link-wrapper {
  position: relative;
}
.menu__link {
  position: relative;
  display: block;
  color: #d7cdb9;
  border-top: 1px solid hsla(0deg, 0%, 100%, 0.06);
  border-bottom: 0;
  padding: 18px 20px;
  text-transform: uppercase;
  font-size: 34px;
  line-height: 34px;
  -webkit-transition: background-color 0.15s ease-out;
  transition: background-color 0.15s ease-out;
}
.menu__link:hover {
  border-bottom-color: hsla(0deg, 0%, 100%, 0.06);
  background-color: #22201c;
}
.menu__link:hover .menu__link-icon {
  opacity: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.menu__link--active::hover {
  background: transparent;
}
.menu__link--active::hover .menu__link-icon {
  opacity: 0;
}
.menu__user-mobile-link-wrapper {
  display: none;
  margin: 32px 20px;
  text-align: center;
  border: 2px solid rgba(215, 205, 185, 0.2);
  border-left: 0;
  border-right: 0;
}
.menu__user-mobile-link-wrapper .link {
  display: block;
  padding: 20px 0;
  width: 100%;
}
.menu__user-mobile-link-wrapper .link::before {
  display: none;
}
.menu__link-icon {
  pointer-events: none;
  opacity: 0;
  font-size: 20px;
  position: absolute;
  top: 50%;
  right: 5%;
  -webkit-transform: translateY(-50%) translateX(-20px);
  transform: translateY(-50%) translateX(-20px);
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}
.menu div.scrollbar-thumb {
  background-color: #d7cdb9;
}
.menu__navigation {
  -webkit-box-flex: 1;
  -ms-flex: 1;
      flex: 1;
  margin: 10% 0;
}
.menu__image-wrapper {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60%;
      flex: 0 0 60%;
  width: 60%;
  -webkit-transition: bottom 0.5s ease-out 0.3s;
  transition: bottom 0.5s ease-out 0.3s;
  will-change: bottom;
  overflow: hidden;
  background-color: #1c1a17;
}
.menu__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-origin: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.menu__image--active {
  opacity: 1;
}
.menu__image-link {
  position: absolute;
  z-index: 1;
  left: 50px;
  bottom: 50px;
  color: #3a3328;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}
.menu__image-link::before {
  right: 25px;
}
.menu__user-link {
  text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
  color: #d7cdb9;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
}
.menu__user-link::hover::before {
  right: 0.6em;
}
.menu__user-link--active {
  cursor: default;
}
.menu__user-link--active::before {
  display: none;
}

.open {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

@media (max-width: 768px) {
  .menu__burger-wrapper {
    left: 10px;
    top: 15px;
  }
  .menu__header {
    padding: 13px 20px 0 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
  .menu__header-title {
    display: none;
  }
  .menu__navigation {
    margin: 0;
  }
  .menu__footer {
    display: none;
  }
  .menu__user-mobile-link-wrapper {
    display: block;
  }
}
@media (max-width: 1024px) {
  .menu__navigation {
    margin: 5% 0;
  }
  .menu__image-wrapper {
    display: none;
  }
}
@media (max-width: 1500px) {
  .menu__navigation {
    margin: 10% 0;
  }
}
@media (min-width: 769px) {
  .menu__link-wrapper:first-child .menu__link {
    padding-left: 30%;
  }
  .menu__link-wrapper:nth-child(2) .menu__link {
    padding-left: 10%;
  }
  .menu__link-wrapper:nth-child(3) .menu__link {
    padding-left: 20%;
  }
  .menu__link-wrapper:nth-child(4) .menu__link {
    padding-left: 30%;
  }
  .menu__link-wrapper:nth-child(5) .menu__link {
    padding-left: 20%;
  }
  .menu__link-wrapper:nth-child(6) .menu__link {
    padding-left: 35%;
  }
}
.the-menu__burger-wrapper {
  cursor: pointer;
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 2;
  width: 40px;
  height: 40px;
}

@media (max-width: 768px) {
  .the-menu__burger-wrapper {
    left: 10px;
    top: 15px;
  }
}
.the-menu__burger {
  position: absolute;
  left: 7px;
  top: 16px;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.the-menu__burger:after,
.the-menu__burger:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: #d7cdb9;
}

.the-menu__burger:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.the-menu__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  position: relative;
  bottom: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
      flex: 0 0 40%;
  max-width: 40%;
  background-color: #1c1a17;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transition-property: bottom, right, -webkit-transform;
  transition-property: bottom, right, -webkit-transform;
  transition-property: bottom, right, transform;
  transition-property: bottom, right, transform, -webkit-transform;
  will-change: bottom, right, transform;
  overflow-x: hidden;
}

@media (max-width: 1200px) {
  .the-menu__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 1024px) {
  .the-menu__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .the-menu__content {
    bottom: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.menu-opened .the-menu__content {
  bottom: 0;
}

@media (max-width: 768px) {
  .menu-opened .the-menu__content {
    -webkit-transform: none;
    transform: none;
  }
}
.the-menu__links {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
}

@media (max-width: 768px) {
  .the-menu__links {
    display: block;
  }
}
.the-menu__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 0 40px 10%;
  background-color: #22201c;
}

@media (max-width: 768px) {
  .the-menu__footer {
    display: none;
  }
}
.the-menu__footer div:first-child {
  margin-right: 50px;
  max-width: 250px;
}

.the-menu__image-wrapper {
  position: relative;
  bottom: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60%;
      flex: 0 0 60%;
  max-width: 60%;
  -webkit-transition: bottom 0.5s ease-out 0.3s;
  transition: bottom 0.5s ease-out 0.3s;
  will-change: bottom;
  overflow: hidden;
  background-color: #1c1a17;
}

@media (max-width: 1200px) {
  .the-menu__image-wrapper {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 1024px) {
  .the-menu__image-wrapper {
    display: none;
  }
}
.menu-opened .the-menu__image-wrapper {
  bottom: 0;
}

.the-menu__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-origin: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.the-menu__image--active {
  opacity: 1;
}

.the-menu__image-link {
  position: absolute;
  z-index: 1;
  left: 50px;
  bottom: 50px;
  color: #3a3328;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}

.the-menu__image-link:before {
  right: 25px;
}

.the-menu__navigation {
  -webkit-box-flex: 1;
  -ms-flex: 1;
      flex: 1;
  margin: 15% 0;
  pointer-events: none;
}

.the-menu--ready .the-menu__navigation {
  pointer-events: auto;
}

@media (max-width: 1500px) {
  .the-menu__navigation {
    margin: 10% 0;
  }
}
@media (max-width: 1024px) {
  .the-menu__navigation {
    margin: 5% 0;
  }
}
@media (max-width: 768px) {
  .the-menu__navigation {
    margin: 0;
  }
}
.the-menu__link-wrapper {
  position: relative;
}

@media (min-width: 769px) {
  .the-menu__link-wrapper:first-child .the-menu__link {
    padding-left: 30%;
  }
  .the-menu__link-wrapper:nth-child(2) .the-menu__link {
    padding-left: 10%;
  }
  .the-menu__link-wrapper:nth-child(3) .the-menu__link {
    padding-left: 20%;
  }
  .the-menu__link-wrapper:nth-child(4) .the-menu__link {
    padding-left: 30%;
  }
  .the-menu__link-wrapper:nth-child(5) .the-menu__link {
    padding-left: 20%;
  }
  .the-menu__link-wrapper:nth-child(6) .the-menu__link {
    padding-left: 35%;
  }
}
.the-menu .the-menu__link {
  position: relative;
  display: block;
  color: #d7cdb9;
  border-top: 1px solid hsla(0deg, 0%, 100%, 0.06);
  border-bottom: 0;
  padding: 18px 20px;
  text-transform: uppercase;
  font-size: 34px;
  line-height: 34px;
  -webkit-transition: background-color 0.15s ease-out;
  transition: background-color 0.15s ease-out;
}

.the-menu .the-menu__link:before {
  display: none;
}

.the-menu .the-menu__link:after {
  content: attr(number);
  font-size: 12px;
  line-height: 15px;
  vertical-align: top;
  color: #d7cdb9;
}

@media (max-width: 768px) {
  .the-menu .the-menu__link:after {
    display: none;
  }
}
@media (max-width: 768px) {
  .the-menu .the-menu__link {
    border: 0;
    line-height: 26px;
    font-size: 22px;
  }
}
@media (hover: hover) {
  .the-menu .the-menu__link:hover {
    border-bottom-color: hsla(0deg, 0%, 100%, 0.06);
    background-color: #22201c;
  }
  .the-menu .the-menu__link:hover .the-menu__link-icon {
    opacity: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.the-menu .the-menu__link--active {
  color: rgba(215, 205, 185, 0.5);
  cursor: default;
}

.the-menu .the-menu__link--active:hover {
  background-color: transparent;
}

.the-menu .the-menu__link--active:hover .the-menu__link-icon {
  opacity: 0;
}

.the-menu .the-menu__link:last-child {
  border-bottom: 1px solid hsla(0deg, 0%, 100%, 0.06);
}

@media (max-width: 768px) {
  .the-menu .the-menu__link:last-child {
    border: 0;
  }
}
.the-menu__link-icon {
  pointer-events: none;
  opacity: 0;
  font-size: 20px;
  position: absolute;
  top: 50%;
  right: 5%;
  -webkit-transform: translateY(-50%) translateX(-20px);
  transform: translateY(-50%) translateX(-20px);
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

.menu div.scrollbar-thumb {
  background-color: #d7cdb9;
}

/* --------------- navbar styles --------------- */
.nav-container {
  z-index: 999;
}

.navbar {
  z-index: 999;
  position: absolute;
  top: 0;
  width: 100%;
}
.navbar .nav-link {
  cursor: pointer;
}

.navbar.nav-scroll {
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  padding: 0;
  position: fixed !important;
  top: -100px !important;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  border-radius: 0 !important;
  margin: 0 !important;
  color: #d7cdb9;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
  background-color: rgba(28, 26, 23, 0.8) !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  height: 50px;
}
.navbar.nav-scroll .nav-link__auth {
  color: #d7cdb9 !important;
}
.navbar.nav-scroll .navbar-brand {
  color: #d7cdb9 !important;
}
.navbar.nav-scroll .nav-link__catalog {
  color: #d7cdb9 !important;
}
.navbar.nav-scroll .nav-link__catalog .icon__catalog__line::before, .navbar.nav-scroll .nav-link__catalog .icon__catalog__line::after {
  background-color: #d7cdb9 !important;
}
.navbar.nav-scroll .icon__catalog__line::before, .navbar.nav-scroll .icon__catalog__line::after {
  background-color: #d7cdb9 !important;
}
.navbar.nav-scroll .nav-link__burger::before, .navbar.nav-scroll .nav-link__burger::after {
  background-color: #d7cdb9 !important;
}

.navbar.style-9 .content {
  padding: 10px 25px;
}
.navbar.style-9 .navbar-brand {
  font: 600 14px/1 "Neue Haas Grotesk Display Pro", "Arial", sans-serif;
  letter-spacing: 2.27em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #3a3328;
  border-bottom: 0;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
  margin-right: -2.27em;
  padding: 15px;
  text-transform: uppercase;
}
.navbar.style-9 .nav-link__burger {
  cursor: pointer;
  position: relative;
  z-index: 101;
  display: inline-block;
  width: 22px;
  height: 22px;
  outline: none;
  border: 0;
  margin-left: -15px;
  padding: 15px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  background: none;
  transition: -webkit-transform 0.3s ease-out;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.navbar.style-9 .nav-link__burger::before, .navbar.style-9 .nav-link__burger::after {
  pointer-events: none;
  content: "";
  position: absolute;
  left: 15px;
  width: 22px;
  height: 4px;
  background-color: #d7cdb9;
  -webkit-box-shadow: 0 -1px rgba(0, 0, 0, 0.5);
          box-shadow: 0 -1px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition-property: top, bottom, left, width, -webkit-transform, -webkit-box-shadow;
  -webkit-transition-property: top, bottom, left, width, -webkit-transform, -webkit-box-shadow;
  transition-property: top, bottom, left, transform, box-shadow, width;
  transition-property: top, bottom, left, transform, box-shadow, width, -webkit-transform, -webkit-box-shadow;
  -webkit-box-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
          box-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  background-color: #3a3328;
}
.navbar.style-9 .nav-link__burger::before {
  top: 20px;
}
.navbar.style-9 .nav-link__burger::after {
  bottom: 20px;
}
.navbar.style-9 .nav-link__burger:hover::before {
  left: 10px;
}
.navbar.style-9 .nav-link__burger:hover::after {
  left: 20px;
}
.navbar.style-9 .nav-link__auth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  cursor: pointer;
  color: #d7cdb9;
  background-color: transparent;
  outline: none;
  padding: 0;
  text-decoration: none;
  border: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 16px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  color: #3a3328;
  margin-right: 100px;
}
.navbar.style-9 .nav-link__auth::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 100%;
  height: 1px;
  background-color: currentColor;
  -webkit-transition: right 0.3s ease-in-out;
  transition: right 0.3s ease-in-out;
}
.navbar.style-9 .nav-link__auth:hover:before,
.navbar.style-9 .nav-link__auth a:hover:before {
  right: 0;
}
.navbar.style-9 .nav-link__catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  cursor: pointer;
  color: #d7cdb9;
  background-color: transparent;
  outline: none;
  padding: 0;
  text-decoration: none;
  border: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 16px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  color: #3a3328;
  margin-left: 100px;
}
.navbar.style-9 .nav-link__catalog .icon__catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 14px;
  height: 14px;
  margin-right: 20px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.navbar.style-9 .nav-link__catalog .icon__catalog:hover {
  -webkit-transform: rotate(1turn);
  transform: rotate(1turn);
}
.navbar.style-9 .nav-link__catalog .icon__catalog__line {
  position: relative;
  height: 5px;
}
.navbar.style-9 .nav-link__catalog .icon__catalog__line::before, .navbar.style-9 .nav-link__catalog .icon__catalog__line::after {
  content: "";
  position: absolute;
  top: 0;
  height: 5px;
  width: 5px;
  border-radius: 10px;
  background-color: #3a3328;
  -webkit-box-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
          box-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}
.navbar.style-9 .nav-link__catalog .icon__catalog__line::before {
  left: 0;
}
.navbar.style-9 .nav-link__catalog .icon__catalog__line::after {
  right: 0;
}
.navbar.style-9 .nav-link__bag {
  position: relative;
  line-height: 1;
  color: inherit;
  padding: 15px;
  margin-right: -15px;
  text-shadow: inherit;
}

.the-header {
  padding: 0 40px;
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: 100px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100px;
      flex: 0 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
  color: #d7cdb9;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-property: background-color, height, -webkit-backdrop-filter;
  transition-property: background-color, height, -webkit-backdrop-filter;
  transition-property: background-color, height, backdrop-filter;
  transition-property: background-color, height, backdrop-filter, -webkit-backdrop-filter;
}

@media (max-width: 768px) {
  .the-header {
    padding: 0 20px;
    height: 75px;
  }
}
.light-layout .the-header {
  color: #3a3328;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}

.header-scrolled .the-header {
  background-color: rgba(28, 26, 23, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  height: 50px;
}

.header-scrolled .the-header, .header-scrolled .the-header .app-logo, .header-scrolled .the-header .link, .the-header__link {
  color: #d7cdb9;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
}

.the-header__link {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
}

.the-header__link--catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
}

.the-header__link--catalog:before {
  left: 34px;
}

@media (hover: hover) {
  .the-header__link--catalog:hover .the-header__catalog {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@media (max-width: 1024px) {
  .the-header__link {
    font-size: 12px;
    letter-spacing: 0.3em;
  }
}
@media (max-width: 768px) {
  .the-header__link {
    display: none;
  }
}
@media (hover: hover) {
  .the-header__link:hover:before {
    right: 0.6em;
  }
}
.the-header__link--active {
  cursor: default;
}

.the-header__link--active:before {
  display: none;
}

.light-layout .the-header__link {
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  color: #3a3328;
}

.the-header__left, .the-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
      flex: 0 0 40%;
}

@media (max-width: 1024px) {
  .the-header__left, .the-header__right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
        flex: 0 0 30%;
  }
}
@media (max-width: 576px) {
  .the-header__left, .the-header__right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
        flex: 0 0 20%;
  }
}
.the-header__left .the-header__link {
  margin-left: 7.5vw;
}

@media (max-width: 1024px) {
  .the-header__left .the-header__link {
    margin-left: 6vw;
  }
}
@media (max-width: 768px) {
  .the-header__left .the-header__link {
    margin-left: 4vw;
  }
}
.the-header__right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.the-header__right .the-header__link {
  margin-right: 7.5vw;
}

@media (max-width: 1024px) {
  .the-header__right .the-header__link {
    margin-right: 6vw;
  }
}
@media (max-width: 768px) {
  .the-header__right .the-header__link {
    margin-right: 4vw;
  }
}
.the-header__burger {
  cursor: pointer;
  position: relative;
  z-index: 101;
  display: inline-block;
  width: 22px;
  height: 22px;
  outline: none;
  border: 0;
  margin-left: -15px;
  padding: 15px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  background: none;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.the-header__burger:before {
  top: 20px;
}

.the-header__burger:after {
  bottom: 20px;
}

.the-header__burger:after, .the-header__burger:before {
  pointer-events: none;
  content: "";
  position: absolute;
  left: 15px;
  width: 22px;
  height: 4px;
  background-color: #d7cdb9;
  -webkit-box-shadow: 0 -1px rgba(0, 0, 0, 0.5);
  box-shadow: 0 -1px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transition-property: top, bottom, left, width, -webkit-transform, -webkit-box-shadow;
  transition-property: top, bottom, left, width, -webkit-transform, -webkit-box-shadow;
  transition-property: top, bottom, left, transform, box-shadow, width;
  transition-property: top, bottom, left, transform, box-shadow, width, -webkit-transform, -webkit-box-shadow;
}

.light-layout .the-header__burger:after, .light-layout .the-header__burger:before {
  -webkit-box-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  box-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  background-color: #3a3328;
}

.header-scrolled .the-header__burger:after, .header-scrolled .the-header__burger:before {
  background-color: #d7cdb9;
  -webkit-box-shadow: 0 -1px rgba(0, 0, 0, 0.5);
  box-shadow: 0 -1px rgba(0, 0, 0, 0.5);
}

@media (hover: hover) {
  .the-header__burger:hover:before {
    left: 10px;
  }
  .the-header__burger:hover:after {
    left: 20px;
  }
}
.the-header__basket {
  position: relative;
  line-height: 1;
  color: inherit;
  padding: 15px;
  margin-right: -15px;
  text-shadow: inherit;
}

.the-header__basket:before {
  display: none;
}

.the-header__basket--has-items:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 22px;
  right: 12px;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid #3a3328;
  background-color: #ff533c;
}

.the-header__catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 14px;
  height: 14px;
  margin-right: 20px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media (max-width: 1024px) {
  .the-header__catalog {
    margin-right: 10px;
  }
}
.the-header__catalog-line {
  position: relative;
  height: 5px;
}

.the-header__catalog-line:before {
  left: 0;
}

.the-header__catalog-line:after {
  right: 0;
}

.the-header__catalog-line:after, .the-header__catalog-line:before {
  content: "";
  position: absolute;
  top: 0;
  height: 5px;
  width: 5px;
  border-radius: 10px;
  background-color: #d7cdb9;
  -webkit-box-shadow: 0 -1px rgba(0, 0, 0, 0.5);
  box-shadow: 0 -1px rgba(0, 0, 0, 0.5);
}

.light-layout .the-header__catalog-line:after, .light-layout .the-header__catalog-line:before {
  background-color: #3a3328;
  -webkit-box-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  box-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}

.header-scrolled .the-header__catalog-line:after, .header-scrolled .the-header__catalog-line:before {
  background-color: #d7cdb9;
  -webkit-box-shadow: 0 -1px rgba(0, 0, 0, 0.5);
  box-shadow: 0 -1px rgba(0, 0, 0, 0.5);
}

.special-title {
  text-transform: uppercase;
  font-size: 76px;
  line-height: 80px;
  font-weight: 400;
  margin: 0;
  color: #3a3328;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
}

.light-layout .special-title {
  color: #3a3328;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}

.special-title--small {
  font-size: 48px;
  line-height: 48px;
}

@media (max-width: 1500px) {
  .special-title {
    font-size: 60px;
    line-height: 64px;
  }
  .special-title--small {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 1024px) {
  .special-title {
    font-size: 40px;
    line-height: 44px;
  }
  .special-title--small {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 576px) {
  .special-title {
    font-size: 18px;
    line-height: 21px;
  }
}
.special-title > div:first-child {
  margin-left: 200px;
}

@media (max-width: 1500px) {
  .special-title > div:first-child {
    margin-left: 150px;
  }
}
@media (max-width: 1024px) {
  .special-title > div:first-child {
    margin-left: 100px;
  }
}
@media (max-width: 576px) {
  .special-title > div:first-child {
    margin-left: 0;
  }
}
.special-title > div:nth-child(3) {
  margin-left: 100px;
}

@media (max-width: 1500px) {
  .special-title > div:nth-child(3) {
    margin-left: 70px;
  }
}
@media (max-width: 1024px) {
  .special-title > div:nth-child(3) {
    margin-left: 50px;
  }
}
@media (max-width: 576px) {
  .special-title > div:nth-child(3) {
    margin-left: 0;
  }
}
.special-title > div:nth-child(4) {
  margin-left: 150px;
}

@media (max-width: 1500px) {
  .special-title > div:nth-child(4) {
    margin-left: 110px;
  }
}
@media (max-width: 1024px) {
  .special-title > div:nth-child(4) {
    margin-left: 75px;
  }
}
@media (max-width: 576px) {
  .special-title > div:nth-child(4) {
    margin-left: 0;
  }
}
.special-title > div:nth-child(5) {
  margin-left: 70px;
}

@media (max-width: 1500px) {
  .special-title > div:nth-child(5) {
    margin-left: 50px;
  }
}
@media (max-width: 1024px) {
  .special-title > div:nth-child(5) {
    margin-left: 20px;
  }
}
@media (max-width: 576px) {
  .special-title > div:nth-child(5) {
    margin-left: 0;
  }
}
.catalog {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #d7cdb9;
  pointer-events: none;
  width: 100%;
  height: 100vh;
  background: #1c1a17;
  will-change: transform;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}

.catalog ::-moz-selection {
  color: #3a3328;
  background-color: #d7cdb9;
}

.catalog ::selection {
  color: #3a3328;
  background-color: #d7cdb9;
}

@media (max-width: 768px) {
  .catalog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
    overflow-x: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.catalog:before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  height: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(#1c1a17), to(rgba(28, 26, 23, 0)));
  background: linear-gradient(180deg, #1c1a17, rgba(28, 26, 23, 0));
  pointer-events: none;
}

@media (max-width: 768px) {
  .catalog:before {
    display: none;
  }
}
.catalog--opened {
  pointer-events: auto;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media (max-width: 768px) {
  .catalog--opened {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.catalog__wrapper {
  height: 100%;
  padding: 150px 0 100px;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .catalog__wrapper {
    padding: 34px 0 0;
    overflow-x: unset;
    -webkit-box-flex: 1;
    -ms-flex: 1;
        flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
.catalog__container {
  list-style: none;
}

.catalog__item-wrapper {
  position: relative;
  border-bottom: 2px solid rgba(215, 205, 185, 0.2);
  opacity: 0;
  -webkit-transform: skew(-15deg) translateY(50px) translateX(-50px) rotate(5deg);
  transform: skew(-15deg) translateY(50px) translateX(-50px) rotate(5deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-property: border-color, opacity, -webkit-transform;
  transition-property: border-color, opacity, -webkit-transform;
  transition-property: border-color, opacity, transform;
  transition-property: border-color, opacity, transform, -webkit-transform;
}

.catalog__item-wrapper:nth-child(10) {
  -webkit-transition-delay: 6.2s;
  transition-delay: 6.2s;
}

.catalog__item-wrapper:nth-child(9) {
  -webkit-transition-delay: 6.35s;
  transition-delay: 6.35s;
}

.catalog__item-wrapper:nth-child(8) {
  -webkit-transition-delay: 6.5s;
  transition-delay: 6.5s;
}

.catalog__item-wrapper:nth-child(7) {
  -webkit-transition-delay: 6.65s;
  transition-delay: 6.65s;
}

.catalog__item-wrapper:nth-child(6) {
  -webkit-transition-delay: 6.8s;
  transition-delay: 6.8s;
}

.catalog__item-wrapper:nth-child(5) {
  -webkit-transition-delay: 6.95s;
  transition-delay: 6.95s;
}

.catalog__item-wrapper:nth-child(4) {
  -webkit-transition-delay: 7.1s;
  transition-delay: 7.1s;
}

.catalog__item-wrapper:nth-child(3) {
  -webkit-transition-delay: 7.25s;
  transition-delay: 7.25s;
}

.catalog__item-wrapper:nth-child(2) {
  -webkit-transition-delay: 7.4s;
  transition-delay: 7.4s;
}

.catalog__item-wrapper:first-child {
  -webkit-transition-delay: 7.55s;
  transition-delay: 7.55s;
}

.catalog__item-wrapper:nth-child(0) {
  -webkit-transition-delay: 7.7s;
  transition-delay: 7.7s;
}

.catalog--opened .catalog__item-wrapper {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.catalog--opened .catalog__item-wrapper:first-child {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}

.catalog--opened .catalog__item-wrapper:nth-child(2) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.catalog--opened .catalog__item-wrapper:nth-child(3) {
  -webkit-transition-delay: 0.65s;
  transition-delay: 0.65s;
}

.catalog--opened .catalog__item-wrapper:nth-child(4) {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.catalog--opened .catalog__item-wrapper:nth-child(5) {
  -webkit-transition-delay: 0.95s;
  transition-delay: 0.95s;
}

.catalog--opened .catalog__item-wrapper:nth-child(6) {
  -webkit-transition-delay: 1.1s;
  transition-delay: 1.1s;
}

.catalog--opened .catalog__item-wrapper:nth-child(7) {
  -webkit-transition-delay: 1.25s;
  transition-delay: 1.25s;
}

.catalog--opened .catalog__item-wrapper:nth-child(8) {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

.catalog--opened .catalog__item-wrapper:nth-child(9) {
  -webkit-transition-delay: 1.55s;
  transition-delay: 1.55s;
}

.catalog--opened .catalog__item-wrapper:nth-child(10) {
  -webkit-transition-delay: 1.7s;
  transition-delay: 1.7s;
}

@media (max-width: 768px) {
  .catalog__item-wrapper {
    border-bottom: 0;
  }
}
.catalog__item-wrapper:hover {
  border-bottom-color: #d7cdb9;
}

.catalog__item {
  display: block;
  width: 100%;
  padding: 15px 190px 30px;
}

@media (max-width: 1024px) {
  .catalog__item {
    padding: 15px 100px 20px;
  }
}
@media (max-width: 768px) {
  .catalog__item {
    padding: 10px 0;
  }
}
.catalog__item-number {
  position: absolute;
  top: 20px;
  left: 0;
  font-size: 12px;
}

@media (max-width: 768px) {
  .catalog__item-number {
    display: none;
  }
}
.catalog__item-icon {
  font-size: 20px;
  position: absolute;
  top: 35px;
  right: 0;
}

@media (max-width: 768px) {
  .catalog__item-icon {
    display: none;
  }
}
.catalog__item-title {
  position: relative;
  text-transform: uppercase;
  font-size: 76px;
  line-height: 80px;
  opacity: 0.5;
  color: transparent;
  -webkit-text-stroke: 2px #d7cdb9;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-property: opacity, color;
  transition-property: opacity, color;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1024px) {
  .catalog__item-title {
    font-size: 50px;
    line-height: 55px;
    -webkit-text-stroke: 1px #d7cdb9;
  }
}
@media (max-width: 768px) {
  .catalog__item-title {
    -webkit-text-stroke: 0;
    color: #d7cdb9;
    font-size: 22px;
    line-height: 34px;
    opacity: 1;
  }
}
.catalog__item-wrapper:hover .catalog__item-title {
  z-index: 3;
  opacity: 1;
  color: #d7cdb9;
}

.catalog__header {
  display: none;
}

@media (max-width: 768px) {
  .catalog__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
        justify-content: flex-end;
    padding: 13px 20px 0 80px;
  }
}
.catalog__burger-wrapper {
  cursor: pointer;
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 5;
  width: 40px;
  height: 40px;
}

@media (max-width: 768px) {
  .catalog__burger-wrapper {
    left: 10px;
    top: 15px;
  }
}
.catalog__burger {
  position: absolute;
  left: 7px;
  top: 16px;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.catalog__burger:after,
.catalog__burger:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: #d7cdb9;
}

.catalog__burger:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.catalog__logo {
  position: absolute;
  z-index: 10;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .catalog__logo {
    display: none;
  }
}
.catalog__image-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 2;
  height: 360px;
  width: 500px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

.catalog__image-wrapper--active {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

@media (hover: none) {
  .catalog__image-wrapper {
    display: none;
  }
}
.catalog__image {
  height: 100%;
  max-width: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

.catalog__image--active {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.catalog__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.catalog__back {
  display: none;
  position: relative;
  background-color: #22201c;
  padding: 20px;
  font-size: 22px;
  line-height: 36px;
  color: #d7cdb9;
  text-transform: uppercase;
  text-align: right;
}

.light-layout .catalog__back {
  color: #d7cdb9;
}

@media (max-width: 768px) {
  .catalog__back {
    display: block;
  }
}
.catalog__back-icon {
  position: absolute;
  top: 50%;
  left: 28px;
  font-size: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* --------------- header styles --------------- */
header.header {
  height: 100vh;
  position: relative;
}
header.header .swiper {
  width: 100%;
  height: 100%;
}
header.header .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header.header .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-position: bottom;
}
header.header .swiper-pagination-total {
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
  vertical-align: top;
}
header.header .swiper-pagination-current {
  font-weight: 600;
  font-size: 30px;
  line-height: 32px;
  vertical-align: top;
}
header.header .swiper-button-next:after,
header.header .swiper-button-prev:after {
  color: var(--color-main);
  font-size: 15px;
  font-weight: bold;
}
header.header .swiper-button-next,
header.header .swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: #fff;
}
header.header .swiper-button-next:hover,
header.header .swiper-button-prev:hover {
  background: var(--color-main-grad);
}
header.header .swiper-button-next:hover::after,
header.header .swiper-button-prev:hover::after {
  color: #fff;
}

.home-carousel {
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}

.home-carousel:after,
.home-carousel:before {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  border: 1px solid #3a3328;
  opacity: 0.2;
  border-radius: 100%;
}

.home-carousel:before {
  top: 0;
  left: 0;
  -webkit-transform: translate(-30%, -40%);
  transform: translate(-30%, -40%);
  height: 100vh;
  width: 100vh;
}

@media (max-width: 1024px) {
  .home-carousel:before {
    -webkit-transform: translate(-70%, -30%);
    transform: translate(-70%, -30%);
    height: 100vw;
    width: 100vw;
  }
}
.home-carousel:after {
  bottom: 0;
  right: 0;
  height: 80vh;
  width: 80vh;
  -webkit-transform: translateX(35%);
  transform: translateX(35%);
}

@media (max-width: 1024px) {
  .home-carousel:after {
    display: none;
  }
}
.home-carousel,
.home-carousel__content {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  min-height: 700px;
}

@media (max-width: 576px) {
  .home-carousel,
.home-carousel__content {
    min-height: 500px;
    max-height: 100vh;
    max-height: calc(var(--vh, 1vh) * 100);
  }
}
.home-carousel__content {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  padding-top: 200px;
  pointer-events: none;
}

@media (max-width: 1500px) {
  .home-carousel__content {
    padding-top: 150px;
  }
}
@media (max-width: 1024px) {
  .home-carousel__content {
    padding-top: 200px;
  }
}
@media (max-width: 576px) {
  .home-carousel__content {
    padding-top: 90px;
  }
  .swiper-slide {
    background-position: center !important;
  }
}
.home-carousel__header {
  position: relative;
  max-width: 50%;
  z-index: 3;
}

@media (max-width: 576px) {
  .home-carousel__header {
    max-width: 35%;
  }
}
.home-carousel__header > * {
  pointer-events: auto;
}

.home-carousel__title {
  pointer-events: none;
}

.home-carousel__carousel,
.home-carousel__number-wrapper,
.home-carousel__right-block {
  pointer-events: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
}

.home-carousel__old-price {
  font-size: 14px;
  text-decoration: line-through;
}

.home-carousel__price {
  font-size: 24px;
  line-height: 26px;
  font-weight: 600;
  padding-left: 100px;
  padding-top: 80px;
  display: inline-block;
}

@media (max-width: 1500px) {
  .home-carousel__price {
    padding-top: 40px;
  }
}
@media (max-width: 576px) {
  .home-carousel__price {
    padding-top: 10px;
    padding-left: 0;
    font-size: 14px;
    line-height: 18px;
  }
}
.home-carousel__link {
  padding-left: 30vw;
  padding-top: 30px;
}

@media (max-width: 576px) {
  .home-carousel__link {
    padding-left: 0;
    padding-top: 20px;
  }
}
.home-carousel__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home-carousel__dot {
  cursor: pointer;
  position: relative;
  width: 20px;
  height: 20px;
}

.home-carousel__dot:not(:first-child) {
  margin-left: 5px;
}

.home-carousel__dot:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 8px;
  right: 8px;
  bottom: 8px;
  left: 8px;
  background-color: #3a3328;
  border-radius: 50%;
  -webkit-box-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  box-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  -webkit-transition-property: top, right, bottom, left;
  transition-property: top, right, bottom, left;
}

.home-carousel__dot--active:before {
  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px;
}

.home-carousel__carousel {
  margin-bottom: 40px;
}

.home-carousel__icon {
  margin-left: 5vw;
}

.home-carousel__icon--left {
  color: #a4a296;
  -webkit-text-stroke: 1px #3a3328;
}

.home-carousel__icon--cursor {
  cursor: pointer;
}

.home-carousel__number-wrapper {
  margin-bottom: 140px;
}

@media (max-width: 1500px) {
  .home-carousel__number-wrapper {
    margin-bottom: 100px;
  }
}
.home-carousel__numbers {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  vertical-align: top;
}

.home-carousel__number {
  font-size: 24px;
  line-height: 26px;
  vertical-align: top;
}

.home-carousel__made-with-love {
  color: #3a3328;
  font-weight: 400;
  text-transform: uppercase;
  text-align: right;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  font-size: 40px;
  line-height: 40px;
}

@media (max-width: 1500px) {
  .home-carousel__made-with-love {
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 1024px) {
  .home-carousel__made-with-love {
    font-size: 30px;
    line-height: 30px;
  }
}
@media (max-width: 768px) {
  .home-carousel__made-with-love {
    font-size: 25px;
    line-height: 25px;
  }
}
.home-carousel__right-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
      align-items: flex-start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.home-carousel__right-block .c-icon {
  margin-left: 5vw;
}

.home-carousel__lang-currency {
  text-transform: uppercase;
  margin-right: 30px;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  cursor: pointer;
}

.home-carousel__lang-currency,
.home-carousel__phone {
  border-bottom: 2px dotted #3a3328;
}

.home-carousel__phone:before {
  display: none;
}

.home-carousel__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
      align-items: flex-end;
  position: absolute;
  bottom: 5vw;
  right: 5vw;
  left: 5vw;
}

@media (max-width: 576px) {
  .home-carousel__footer {
    display: none;
  }
}
.home-carousel__footer-left {
  font-weight: 600;
  pointer-events: auto;
}

.home-carousel__footer-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
      align-items: flex-end;
}

.home-carousel__mobile-footer {
  display: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  position: absolute;
  bottom: 20px;
  right: 20px;
  left: 20px;
  pointer-events: auto;
}

@media (max-width: 576px) {
  .home-carousel__mobile-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.home-carousel__mobile-footer .c-icon {
  cursor: pointer;
}

.home-carousel__mobile-footer-left .c-icon,
.home-carousel__mobile-footer-right .c-icon {
  font-size: 20px;
  padding: 5px;
}

.home-carousel__mobile-footer-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home-carousel__mobile-footer-left .c-icon {
  margin-right: 20px;
  color: #a4a296;
  -webkit-text-stroke: 1px #3a3328;
}

.home-carousel__image {
  min-height: 100vh;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .has-scroll-smooth .home-carousel__image {
    min-height: 120vh;
  }
}
.ticker {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 120px;
  text-transform: uppercase;
  background-color: #22201c;
  color: #d7cdb9;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

@media (max-width: 768px) {
  .ticker {
    height: 60px;
  }
}
.ticker-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  white-space: nowrap;
  font-size: 60px;
  height: 120px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
}

@media (max-width: 768px) {
  .ticker-text {
    height: 60px;
  }
}
.ticker-text__title {
  font-size: 76px;
  padding: 0 30px;
}

@media (max-width: 768px) {
  .ticker-text__title {
    padding: 0 14px;
    font-size: 32px;
    line-height: 41px;
  }
}
.ticker-text__side {
  font-size: 26px;
  line-height: 31px;
}

@media (max-width: 1024px) {
  .ticker-text__side {
    display: none;
  }
}
.ticker-text__side--left {
  text-align: right;
}

.ticker-text__side--right {
  text-align: left;
}

.who-we-are {
  padding-top: 175px;
}

@media (max-width: 1500px) {
  .who-we-are {
    padding-top: 120px;
  }
}
@media (max-width: 1024px) {
  .who-we-are {
    padding-top: 40px;
  }
}
.who-we-are__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
  position: relative;
}

@media (max-width: 1024px) {
  .who-we-are__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.who-we-are__content-left,
.who-we-are__content-right {
  width: 25%;
  margin-top: 260px;
}

@media (max-width: 1500px) {
  .who-we-are__content-left,
.who-we-are__content-right {
    width: 30%;
  }
}
@media (max-width: 1200px) {
  .who-we-are__content-left,
.who-we-are__content-right {
    margin-top: 100px;
  }
}
@media (max-width: 1024px) {
  .who-we-are__content-left,
.who-we-are__content-right {
    width: 100%;
    margin-top: 0;
  }
}
.who-we-are__content-center {
  width: 50%;
  height: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
}

@media (max-width: 1500px) {
  .who-we-are__content-center {
    width: 40%;
    height: 800px;
  }
}
@media (max-width: 1200px) {
  .who-we-are__content-center {
    height: 700px;
  }
}
@media (max-width: 1024px) {
  .who-we-are__content-center {
    height: 500px;
    width: 100%;
  }
}
.who-we-are__image-wrapper {
  position: relative;
  text-align: center;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
      align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.who-we-are__image {
  position: relative;
  max-height: 100%;
}

.who-we-are__icon {
  color: #d7cdb9;
}

.who-we-are__image-background {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 30%;
  background: #928c84;
}

@media (max-width: 1500px) {
  .who-we-are__image-background {
    top: 30%;
  }
}
.who-we-are__full-story {
  position: absolute;
  z-index: 3;
  left: 45px;
  bottom: 30%;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.who-we-are__full-story:before {
  display: none;
}

@media (max-width: 768px) {
  .who-we-are__full-story {
    left: 30px;
  }
}
.who-we-are__full-story-text {
  position: absolute;
  left: 0;
  padding-right: 20px;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: right;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #3a3328;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}

@media (max-width: 576px) {
  .who-we-are__full-story-text {
    font-size: 12px;
    line-height: 14px;
  }
}
.who-we-are__link {
  cursor: pointer;
  margin-top: 10px;
  text-align: center;
}

.who-we-are__link-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.01em;
  color: #3a3328;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  border-bottom: 1px solid #3a3328;
}

.who-we-are__link-icon {
  font-size: 10px;
  margin-left: 10px;
}

.who-we-are__content-right {
  padding-left: 6vw;
}

@media (max-width: 1200px) {
  .who-we-are__content-right {
    padding-left: 50px;
  }
}
@media (max-width: 1024px) {
  .who-we-are__content-right {
    padding-left: 0;
  }
}
.who-we-are__year {
  margin-left: 100px;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}

@media (max-width: 1024px) {
  .who-we-are__year {
    margin-left: 25px;
    font-size: 12px;
  }
}
.who-we-are__about-title-wrapper {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .who-we-are__about-title-wrapper {
    margin-bottom: 5px;
  }
}
.who-we-are__about-title {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 64px;
  line-height: 64px;
  text-transform: uppercase;
  color: #3a3328;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}

@media (max-width: 1024px) {
  .who-we-are__about-title {
    position: static;
    font-size: 24px;
    line-height: 24px;
  }
}
.who-we-are__about-title-second {
  margin-left: 100px;
}

@media (max-width: 1024px) {
  .who-we-are__about-title-second {
    margin-left: 25px;
  }
}
.who-we-are__instagram-button.c-button {
  background: transparent;
  border: none;
  margin-bottom: 90px;
}

.who-we-are__who-we-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #3a3328;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  margin-bottom: 35px;
}

@media (max-width: 1024px) {
  .who-we-are__who-we-title {
    margin: 30px 0 10px;
  }
}
.who-we-are__who-we-description {
  font-weight: 400;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}

.who-we-are__full-story-tablet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
}

.who-we-are__bottom {
  padding: 230px 0 200px;
}

@media (max-width: 1024px) {
  .who-we-are__bottom {
    padding: 70px 0;
  }
}
.who-we-are__copywriting-icon {
  font-size: 64px;
}

@media (max-width: 1500px) {
  .who-we-are__copywriting-icon {
    font-size: 50px;
  }
}
@media (max-width: 1024px) {
  .who-we-are__copywriting-icon {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  .who-we-are__copywriting-icon {
    font-size: 25px;
  }
}
@media (max-width: 576px) {
  .who-we-are__copywriting-icon {
    font-size: 16px;
  }
}
.who-we-are__bottom-first,
.who-we-are__bottom-second,
.who-we-are__bottom-third {
  font-size: 144px;
  line-height: 120px;
  text-transform: uppercase;
  color: #3a3328;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}

@media (max-width: 1500px) {
  .who-we-are__bottom-first,
.who-we-are__bottom-second,
.who-we-are__bottom-third {
    font-size: 100px;
    line-height: 90px;
  }
}
@media (max-width: 1024px) {
  .who-we-are__bottom-first,
.who-we-are__bottom-second,
.who-we-are__bottom-third {
    font-size: 70px;
    line-height: 60px;
  }
}
@media (max-width: 768px) {
  .who-we-are__bottom-first,
.who-we-are__bottom-second,
.who-we-are__bottom-third {
    font-size: 50px;
    line-height: 40px;
  }
}
@media (max-width: 576px) {
  .who-we-are__bottom-first,
.who-we-are__bottom-second,
.who-we-are__bottom-third {
    font-size: 27px;
    line-height: 25px;
  }
}
.who-we-are__bottom-first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
      align-items: baseline;
  padding-right: 50px;
}

.who-we-are__bottom-second {
  color: transparent;
  text-shadow: none;
  text-align: center;
}

.who-we-are__bottom-third {
  text-align: right;
}

.who-we-are__shop-now {
  text-align: center;
  margin-top: 20px;
}

.who-we-are__shop-now-button {
  position: relative;
}

.who-we-are__shop-now-text {
  position: absolute;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: right;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #3a3328;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  left: 0;
  padding-right: 20px;
}

@media (max-width: 576px) {
  .who-we-are__shop-now-text {
    font-size: 12px;
    line-height: 14px;
  }
}
.c-button {
  cursor: pointer;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: inherit;
  outline: none;
  border: 2px solid #3a3328;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 16px;
  white-space: nowrap;
  border-radius: 999px;
  letter-spacing: 0.01em;
  padding: 14px 45px;
  text-transform: uppercase;
  background: none;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  -webkit-box-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  box-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  -webkit-transition-property: background-color, color, border-color, text-shadow, -webkit-box-shadow;
  transition-property: background-color, color, border-color, text-shadow, -webkit-box-shadow;
  transition-property: background-color, color, border-color, text-shadow, box-shadow;
  transition-property: background-color, color, border-color, text-shadow, box-shadow, -webkit-box-shadow;
}

.c-button,
.light-layout .c-button {
  color: #3a3328;
}

.c-button[disabled] {
  cursor: default;
  opacity: 0.75;
}

.c-button:before {
  display: none;
}

.c-button:hover:not([disabled]) {
  background-color: #3a3328;
  border-color: transparent;
  color: #d7cdb9;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
}

.light-layout .c-button:hover:not([disabled]) {
  color: #d7cdb9;
}

.c-button:active:not([disabled]) {
  background-color: #2b261e;
  color: #d7cdb9;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
}

.light-layout .c-button:active:not([disabled]) {
  color: #d7cdb9;
}

.c-button:focus:not([disabled]) {
  -webkit-box-shadow: 0 0 0 2px rgba(58, 51, 40, 0.3);
  box-shadow: 0 0 0 2px rgba(58, 51, 40, 0.3);
}

.c-button--active {
  background-color: #3a3328;
  color: #d7cdb9;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
}

.light-layout .c-button--active {
  color: #d7cdb9;
}

.c-button--active:hover:not([disabled]) {
  background-color: #494032;
}

.c-button--active:active:not([disabled]) {
  background-color: #2b261e;
}

.c-button--light {
  border-color: #d7cdb9;
  color: #d7cdb9;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.light-layout .c-button--light {
  color: #d7cdb9;
}

.c-button--light:hover:not([disabled]) {
  background-color: #d7cdb9;
  color: #3a3328;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}

.light-layout .c-button--light:hover:not([disabled]) {
  color: #3a3328;
}

.c-button--light:active:not([disabled]) {
  background-color: #e0d9c9;
  color: #3a3328;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}

.light-layout .c-button--light:active:not([disabled]) {
  color: #3a3328;
}

.c-button--light:focus:not([disabled]) {
  -webkit-box-shadow: 0 0 0 2px rgba(215, 205, 185, 0.3);
  box-shadow: 0 0 0 2px rgba(215, 205, 185, 0.3);
}

.c-button--light.c-button--active {
  background-color: #d7cdb9;
  color: #3a3328;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}

.light-layout .c-button--light.c-button--active {
  color: #3a3328;
}

.c-button--light.c-button--active:hover:not([disabled]) {
  background-color: #e0d9c9;
}

.c-button--light.c-button--active:active:not([disabled]) {
  background-color: #cec1a9;
}

.c-button--small {
  padding: 12px 28px;
}

.c-button--circle {
  width: 50px;
  height: 50px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
      flex: 0 0 50px;
  padding: 5px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
}

.c-button--circle.c-button--small {
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
      flex: 0 0 24px;
  padding: 0;
}

.c-button--circle.c-button--big {
  width: 90px;
  height: 90px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 90px;
      flex: 0 0 90px;
  padding: 0;
}

@media screen and (max-width: 1024px) {
  .c-button--circle.c-button--big {
    width: 60px;
    height: 60px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60px;
        flex: 0 0 60px;
  }
}
.c-button__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}

.c-button--loading .c-button__text {
  opacity: 0;
}

.c-button__preloader {
  position: absolute;
  pointer-events: none;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}

.c-button--loading .c-button__preloader {
  opacity: 1;
}

.vision {
  padding: 200px 0;
  position: relative;
  background: url(../images/noise-background.jpg) 50%/cover;
  overflow: hidden;
}

@media (max-width: 576px) {
  .vision {
    padding: 50px 0;
  }
}
.vision__image-wrapper {
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .vision__image-wrapper {
    margin-left: 0;
    text-align: center;
  }
}
.vision__circle {
  position: absolute;
  left: 50%;
  right: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 60px;
  width: 50vw;
  height: 50vw;
  min-width: 700px;
  min-height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(58, 51, 40, 0.1);
  z-index: -1;
}

@media (max-width: 1024px) {
  .vision__circle {
    margin-left: 0;
    text-align: center;
    top: 80px;
    left: 50%;
    right: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.vision__image {
  height: 90vh;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
}

@media (max-width: 1024px) {
  .vision__image {
    -o-object-position: 70%;
    object-position: 70%;
  }
}
@media (max-width: 576px) {
  .vision__image {
    height: 470px;
  }
}
.vision__background-text {
  -webkit-filter: drop-shadow(0 1px 0 #fff);
  filter: drop-shadow(0 1px 0 #fff);
  z-index: -1;
  position: absolute;
  left: 0;
  right: 0;
  top: 35%;
  width: 100%;
  -webkit-transform: scaleX(1.13);
  transform: scaleX(1.13);
}

.vision__link {
  cursor: pointer;
  width: 170px;
  position: absolute;
  left: 45%;
  top: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
      align-items: flex-end;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-align: right;
  letter-spacing: 0.01em;
  color: #3a3328;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}

@media (max-width: 1024px) {
  .vision__link {
    top: 0;
    font-size: 12px;
  }
}
.vision__link-text {
  border-bottom: 1px solid #3a3328;
  -webkit-box-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  box-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  margin-left: 10px;
}

.vision__link-icon {
  height: 18px;
  font-size: 12px;
}

.vision__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  position: absolute;
  font-size: 16px;
  text-align: left;
  top: 65px;
}

@media (max-width: 1024px) {
  .vision__description {
    top: 0;
    font-size: 12px;
  }
}
.vision__description-item {
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #3a3328;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  list-style-type: none;
}

.vision__description-item:last-child {
  margin-bottom: 0;
}

.vision__price {
  position: absolute;
  left: 20%;
  bottom: 20%;
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 0.02em;
  color: #3a3328;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}

.vision__price--top {
  position: static;
  margin-bottom: 10px;
  font-size: 14px;
}

.vision__more-details {
  position: absolute;
  right: 25%;
  bottom: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  font-size: 10px;
}

@media (max-width: 1500px) {
  .vision__more-details {
    right: 10%;
  }
}
@media (max-width: 1200px) {
  .vision__more-details {
    right: 7%;
  }
}
@media (max-width: 1024px) {
  .vision__more-details {
    position: static;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
}
.vision__more-details-text {
  position: absolute;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  left: 0;
  padding-right: 20px;
  margin-right: 15px;
  text-align: right;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #3a3328;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}

@media (max-width: 1024px) {
  .vision__more-details-text {
    font-size: 12px;
    line-height: 14px;
  }
}
.vision__more-details-button {
  position: relative;
  width: 50px;
  height: 50px;
}

.vision__more-details-icon {
  font-size: 10px;
  color: #d7cdb9;
}

.subscribe {
  background: url(../images/noise-background.jpg) 50%/cover;
}

.subscribe__container {
  height: 1400px;
  padding-top: 140px;
  padding-bottom: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

@media (max-width: 1500px) {
  .subscribe__container {
    height: 1100px;
  }
}
@media (max-width: 1100px) {
  .subscribe__container {
    padding-top: 85px;
    height: 950px;
  }
}
@media (max-width: 730px) {
  .subscribe__container {
    padding-top: 30px;
    height: 750px;
  }
}
@media (max-width: 335px) {
  .subscribe__container {
    height: 650px;
  }
}
.subscribe__left {
  position: relative;
}

.subscribe__right {
  z-index: 1;
}

@media (max-width: 768px) {
  .subscribe__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
        align-items: flex-end;
  }
}
.subscribe__image-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 870px;
}

@media (max-width: 1500px) {
  .subscribe__image-wrapper {
    width: 660px;
  }
}
@media (max-width: 1100px) {
  .subscribe__image-wrapper {
    left: -220px;
  }
}
@media (max-width: 730px) {
  .subscribe__image-wrapper {
    top: 55px;
    left: -135px;
    width: 440px;
  }
}
@media (max-width: 335px) {
  .subscribe__image-wrapper {
    width: 390px;
  }
}
.subscribe__image {
  -o-object-fit: cover;
  object-fit: cover;
}

.subscribe__product-link, .subscribe__product-price {
  position: absolute;
  font-size: 14px;
  left: 0;
  width: 100px;
}

@media (max-width: 1100px) {
  .subscribe__product-link, .subscribe__product-price {
    left: 10px;
  }
}
@media (max-width: 730px) {
  .subscribe__product-link, .subscribe__product-price {
    display: none;
  }
}
.subscribe__product-link {
  bottom: 270px;
}

@media (max-width: 1100px) {
  .subscribe__product-link {
    left: 250px;
    bottom: -60px;
  }
}
.subscribe__link-icon {
  height: 18px;
  font-size: 9px;
  margin-left: 10px;
}

.subscribe__product-price {
  bottom: 470px;
}

@media (max-width: 1100px) {
  .subscribe__product-price {
    left: 400px;
    bottom: -60px;
  }
}
.subscribe__title-wrapper {
  margin-top: 280px;
  width: 800px;
}

@media (max-width: 1500px) {
  .subscribe__title-wrapper {
    width: 510px;
    margin-top: 45px;
  }
}
@media (max-width: 1100px) {
  .subscribe__title-wrapper {
    width: 550px;
    margin-top: 0;
  }
}
@media (max-width: 730px) {
  .subscribe__title-wrapper {
    width: auto;
  }
}
.subscribe__title {
  z-index: 1;
  line-height: 1;
  font-size: 64px;
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}

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

@media (max-width: 1100px) {
  .subscribe__title--first {
    text-align: right;
  }
}
.subscribe__title--second {
  text-align: center;
}

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

@media (max-width: 1500px) {
  .subscribe__title {
    font-size: 44px;
  }
}
@media (max-width: 730px) {
  .subscribe__title {
    margin-right: 0;
    font-size: 18px;
  }
}
.subscribe__content {
  margin-left: 210px;
}

@media (max-width: 1500px) {
  .subscribe__content {
    margin-left: 40px;
  }
}
@media (max-width: 1100px) {
  .subscribe__content {
    margin-left: 0;
  }
}
@media (max-width: 730px) {
  .subscribe__content {
    margin-top: 60px;
  }
}
.subscribe__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1100px) {
  .subscribe__center {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
}
@media (max-width: 730px) {
  .subscribe__center {
    display: block;
  }
}
.subscribe__amount-info {
  display: block;
}

@media (max-width: 768px) {
  .subscribe__amount-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
        align-items: flex-end;
  }
}
@media (max-width: 730px) {
  .subscribe__amount-info {
    margin-bottom: 290px;
  }
}
@media (max-width: 335px) {
  .subscribe__amount-info {
    margin-bottom: 240px;
  }
}
.subscribe__description {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.01em;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  font-weight: 700;
  margin: 45px 0 90px 210px;
}

@media (max-width: 1500px) {
  .subscribe__description {
    margin: 45px 0 90px 40px;
    width: 500px;
    text-align: right;
  }
}
@media (max-width: 768px) {
  .subscribe__description {
    width: 300px;
  }
}
.subscribe__amount {
  margin-bottom: 10px;
  text-align: left;
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}

@media (max-width: 730px) {
  .subscribe__amount {
    text-align: right;
  }
}
.subscribe__info {
  display: inline-block;
  width: 170px;
  text-align: left;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.01em;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}

@media (max-width: 768px) {
  .subscribe__info {
    text-align: right;
  }
}
@media (max-width: 730px) {
  .subscribe__info {
    width: 150px;
  }
}
.subscribe__button-wrapper {
  cursor: pointer;
  margin-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
}

@media (max-width: 730px) {
  .subscribe__button-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
  }
}
.subscribe__button {
  min-width: 90px;
  min-height: 90px;
  margin-right: 20px;
}

@media (max-width: 1500px) {
  .subscribe__button {
    min-width: 60px;
    min-height: 60px;
  }
}
@media (max-width: 730px) {
  .subscribe__button {
    margin-right: 0;
  }
}
.subscribe__button-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: left;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
}

@media (max-width: 730px) {
  .subscribe__button-text {
    text-align: right;
    margin-right: 10px;
    font-size: 12px;
  }
}
.subscribe__follow-wrapper {
  text-align: right;
  margin-top: 130px;
}

@media (max-width: 768px) {
  .subscribe__follow-wrapper {
    margin-top: 290px;
  }
}
.subscribe__follow {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 1px hsla(0deg, 0%, 100%, 0.5);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
}

.subscribe__follow-icon {
  font-size: 20px;
  margin-left: 20px;
}

.the-footer {
  right: 0;
  bottom: 0;
  left: 0;
  padding-top: 100px;
  color: #d7cdb9;
  background-color: #22201c;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
}

.the-footer--checkout {
  padding-top: 0;
  margin-top: 100px;
}

@media (max-width: 768px) {
  .the-footer--checkout {
    margin-top: 20px;
  }
}
.the-footer ::-moz-selection {
  color: #3a3328;
  background-color: #d7cdb9;
}

.the-footer ::selection {
  color: #3a3328;
  background-color: #d7cdb9;
}

@media (max-width: 768px) {
  .the-footer {
    padding-top: 20px;
  }
}
@media (max-width: 576px) {
  .the-footer {
    padding-top: 0;
  }
}
.the-footer a:not(.c-button) {
  color: #d7cdb9;
  border-bottom-color: #d7cdb9;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
}

.the-footer a:not(.c-button):hover {
  border-bottom-color: transparent;
}

.the-footer__title {
  text-shadow: none;
  line-height: 1;
  font-size: 100px;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .the-footer__title {
    font-size: 80px;
  }
}
@media (max-width: 1024px) {
  .the-footer__title {
    font-size: 50px;
  }
}
.the-footer__label {
  font-size: 16px;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .the-footer__label {
    font-size: 12px;
  }
}
.the-footer__link-wrapper {
  margin-top: 15px;
  font-size: 18px;
  text-transform: uppercase;
}

.the-footer__link-wrapper:first-child {
  margin-top: 30px;
}

.the-footer__social {
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  border-top: 2px solid hsla(0deg, 0%, 100%, 0.1);
  padding: 12px 10px 44px 96px;
}

@media (max-width: 1024px) {
  .the-footer__social {
    padding: 10px 10px 20px 25px;
  }
}
.the-footer__social:first-child {
  margin-top: 55px;
}

@media (max-width: 1024px) {
  .the-footer__social:first-child {
    border-top: 0;
    margin-top: 30px;
  }
}
.the-footer__social-number {
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 12px;
}

.the-footer__social-content {
  font-size: 24px;
  line-height: 26px;
  color: #d7cdb9;
  border-bottom-color: #d7cdb9;
  font-weight: 600;
  text-decoration: none;
  margin-top: 5px;
}

.the-footer__social-content:before {
  height: 2px;
}

@media (max-width: 1024px) {
  .the-footer__social-content {
    font-size: 16px;
    line-height: 20px;
  }
  .the-footer__social-content:before {
    height: 1px;
  }
}
.the-footer__social-content .c-button {
  font-size: 14px;
}

.the-footer__social-content .c-button:not(:first-child) {
  margin-left: 10px;
}

.the-footer__bottom {
  margin-top: 50px;
  background-color: #1c1a17;
}

@media (max-width: 768px) {
  .the-footer__bottom {
    margin-top: 20px;
  }
}
.the-footer--checkout .the-footer__bottom {
  margin: 0;
  background-color: #22201c;
}

@media (max-width: 768px) {
  .the-footer--checkout .the-footer__bottom {
    background-color: #1c1a17;
  }
}
.the-footer__bottom-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
  text-transform: uppercase;
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 12px;
}

@media (max-width: 768px) {
  .the-footer__bottom-container {
    font-size: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.the-footer__bottom-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .the-footer__bottom-left {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
.the-footer__payment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-left: 100px;
  width: 90px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .the-footer__payment {
    display: none;
  }
}
.the-footer__copyright {
  margin-left: 40px;
}

@media (max-width: 768px) {
  .the-footer__copyright {
    text-align: right;
    margin-left: 10px;
  }
}
.the-footer__up {
  cursor: pointer;
  font-size: 20px;
  margin-right: 100px;
}

@media (max-width: 768px) {
  .the-footer__bottom-right {
    display: none;
  }
}
.the-footer__bananazz:before {
  display: none;
}

/* -------------------- responsive style ------------------------- */
@media screen and (max-width: 1100px) {
  .screenshots.style-4 .screenshots-slider .img {
    margin: 0 auto;
    width: 190px;
  }
}
@media screen and (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }
  .section-head h2 {
    font-size: 25px;
  }
  .top-navbar.style-1 .top-links {
    display: none;
  }
  .top-navbar.style-1 .r-side {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 0;
  }
  .navbar.style-1 {
    border-bottom: 1px solid rgba(153, 153, 153, 0.2);
  }
  .navbar.style-1 .nav-side {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .navbar.style-1 .nav-side .hotline {
    width: 100%;
    margin-bottom: 10px;
    border: 0;
  }
  .portfolio.style-1 .portfolio-slider .swiper-button-next,
.portfolio.style-1 .portfolio-slider .swiper-button-prev {
    display: none;
  }
  header.style-1 .info {
    margin-bottom: 30px;
  }
  header.style-1 .info .text {
    width: 100%;
  }
  .about.style-1 .content {
    padding: 30px;
  }
  .about.style-1 .content .num-item {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3333333333);
    margin: 5px 0;
  }
  .testimonials.style-1 .content .vid_img {
    min-height: auto;
  }
  .testimonials.style-1 .content .info {
    padding: 0;
  }
  .testimonials.style-1 .content .info::after {
    display: none;
  }
  .choose_us.style-1 .choose-us-img,
.choose_us.style-1 .animated_logos,
.choose_us.style-1 .choose-us-brands,
.choose_us.style-1 .choose-us-bubbles {
    display: none;
  }
  .choose_us.style-1 .info .btn {
    margin-top: 30px;
  }
  .team.style-1 .content .team_box {
    width: 100%;
  }
  .blog.style-1 .blog_slider .swiper-button-next,
.blog.style-1 .blog_slider .swiper-button-prev {
    position: static;
    margin-top: 40px !important;
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .contact.style-1 .content .contact_info ul {
    margin: 15px 0;
  }
  .contact.style-1 .content .contact_form {
    margin-top: 30px;
  }
  footer.style-1 .links {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar.style-2 {
    padding: 25px 0 !important;
    position: relative !important;
    background: var(--color-main-grad);
  }
  .navbar.style-2 .navbar-collapse {
    margin-top: 30px;
  }
  .navbar.style-2 .container {
    border: 0;
  }
  .navbar.style-2 .qoute-nav .btn {
    margin-left: auto;
    margin-right: 0;
  }
  header.style-2 br {
    display: none;
  }
  .section-head h2 {
    letter-spacing: 3px;
    margin-bottom: 30px;
  }
  .choose_us.style-2 {
    overflow: hidden;
  }
  .choose_us.style-2 .choose-numbers {
    margin-top: 50px;
  }
  .choose_us.style-2 .choose-numbers .num-item {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 5px 0;
    padding: 15px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .choose_us.style-2 .choose-numbers .num-item br {
    display: none;
  }
  .choose_us.style-2 .choose-numbers .num-item .num {
    width: 100%;
    text-align: initial;
  }
  .reviews_card.style-2 br {
    display: none;
  }
  .pricing.style-2 {
    overflow: hidden;
  }
  .pricing.style-2 .pricing_card.style-2 {
    border: 1px solid var(--color-lightBlue) !important;
    margin: 10px 0 !important;
    border-radius: 0 !important;
  }
  .pricing.style-2 .mt-50 {
    margin-top: 30px;
  }
  .services_projects .service-box {
    border: 0 !important;
  }
  .blog.style-2 {
    overflow: hidden;
  }
  .blog.style-2 .card {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
  }
  .blog.style-2 .card h4 {
    font-size: 1rem !important;
  }
  .blog.style-2 .mt-80 {
    margin-top: 40px;
  }
  .contact.style-2 {
    padding-bottom: 150px;
  }
  .contact.style-2 h2 {
    letter-spacing: 1px;
  }
  .contact.style-2 .global_2 {
    bottom: -120px;
  }
  .contact.style-2 .mb-70 {
    margin-bottom: 30px;
  }
  .contact.style-2 .mb-50 {
    margin-bottom: 20px;
  }
  footer.style-2 .foot_links {
    text-align: initial !important;
    margin: 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer.style-2 .foot_links a {
    width: 50%;
    margin: 10px 0 !important;
  }
  footer.style-2 .text-end,
footer.style-2 .text-center {
    text-align: initial !important;
  }
  .navbar.style-3 {
    position: relative !important;
    background-color: var(--color-blue2);
    padding: 20px 0;
  }
  .navbar.style-3 .navbar-collapse {
    margin-top: 15px;
  }
  header.style-3 {
    padding: 0 0 30px;
  }
  header.style-3 .main-img {
    display: none;
  }
  header.style-3 .content .info .h1 {
    font-size: 28px;
  }
  header.style-3 .content .info .h1 span:before {
    width: 100px;
    background-size: 100px;
  }
  header.style-3 .content .info .h5 {
    margin-top: 40px;
  }
  .style-3 .testi_lines {
    width: calc(100% - 30px) !important;
  }
  .about.style-3 .img-left {
    position: relative;
    top: 0;
    max-width: 100%;
    margin: 50px 0;
  }
  .about.style-3 .img-left .info-circle {
    width: 150px;
    height: 150px;
    outline: 7px solid #fff;
  }
  .about.style-3 .img-left .info-circle h2 {
    font-size: 35px;
  }
  .about.style-3 .img-left .info-circle small {
    font-size: 10px;
    text-transform: uppercase;
  }
  .about.style-3 .img-left .info-circle:nth-of-type(2) {
    width: 120px;
    height: 120px;
  }
  .about.style-3 .img-left .info-circle:nth-of-type(2) h2 {
    font-size: 30px;
  }
  .about.style-3 .img-left .info-circle:nth-of-type(3) {
    width: 100px;
    height: 100px;
  }
  .about.style-3 .img-left .info-circle:nth-of-type(3) h2 {
    font-size: 25px;
  }
  .about.style-3 .img-left .info-circle:nth-of-type(4) {
    width: 110px;
    height: 110px;
  }
  .about.style-3 .img-left .info-circle:nth-of-type(4) h2 {
    font-size: 20px;
  }
  .about.style-3 .info .mb-70 {
    margin-bottom: 30px !important;
  }
  .about.style-3 .btm-content {
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
  }
  .about.style-3 .btm-content .mt-60 {
    margin-top: 30px !important;
  }
  .about.style-3 .btm-content .img-right {
    display: none;
  }
  .about.style-3 .top-content {
    margin-bottom: 30px;
  }
  .pricing.style-3 .info {
    margin-bottom: 50px;
  }
  .pricing.style-3 .text.mb-30 {
    margin-bottom: 15px !important;
  }
  .pricing.style-3 .mt-60 {
    margin-top: 30px !important;
  }
  .section-head.style-3 h3 {
    font-size: 21px;
  }
  .blog.style-3 .card .img {
    height: 150px;
    margin-bottom: 5px;
  }
  .blog.style-3 .v_lines {
    display: none;
  }
  .blog.style-3 .client-logos {
    margin-top: 30px !important;
  }
  .blog.style-3 .client-logos .img {
    margin: 20px 0;
  }
  .chat-banner.style-3 .bttns {
    margin-top: 60px;
    text-align: start !important;
  }
  footer.style-3 .items {
    margin-bottom: 50px;
  }
  footer.style-3 .items .title {
    margin-bottom: 20px;
  }
  footer.style-3 .foot {
    margin-top: 0;
  }
  footer.style-3 .foot .logo {
    margin-bottom: 20px;
  }
  .fs-10px {
    font-size: 8px !important;
  }
  .navbar.style-4 .navbar-nav .nav-item .nav-link:before {
    display: none;
  }
  .navbar.style-4 {
    background-color: #f0eff5;
    padding: 20px 0;
  }
  .navbar.style-4 .navbar-collapse {
    margin-top: 30px;
  }
  .style-4 .mb-60 {
    margin-bottom: 30px !important;
  }
  .style-4 .mb-70 {
    margin-bottom: 40px !important;
  }
  .style-4 br {
    display: none;
  }
  header.style-4 {
    overflow: hidden;
  }
  header.style-4 .content .info {
    margin-bottom: 50px;
  }
  header.style-4 .content .info h1 {
    font-size: 25px;
    line-height: 40px;
    margin-bottom: 15px !important;
  }
  header.style-4 .content .info .title_small {
    margin-bottom: 20px !important;
  }
  header.style-4 .content .info .mt-100 {
    margin-top: 50px !important;
  }
  header.style-4 .content .info .mt-50 {
    margin-top: 30px !important;
  }
  header.style-4 .content .info br {
    display: none;
  }
  header.style-4 .content .info .small, header.style-4 .content .info small,
header.style-4 .content .info .btn {
    font-size: 10px;
  }
  .clients.style-4 .client-logos .img {
    margin: 20px 0;
    text-align: center;
  }
  .features.style-4 .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .features.style-4 .content .features-card {
    margin: 15px 0;
  }
  .about.style-4 .content {
    padding: 40px 0;
  }
  .testimonials.style-4 {
    overflow: hidden;
  }
  .testimonials.style-4 .content .testi-cards .client_card {
    right: 0 !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 20px 0 !important;
  }
  .testimonials.style-4 .content .testi-cards .client_card .user_img {
    margin-bottom: 30px;
  }
  .testimonials.style-4 .content .testi-cards .client_card .inf_content {
    text-align: center;
  }
  .testimonials.style-4 .content .testi-cards .client_card .inf_content br {
    display: none;
  }
  .pricing.style-4 .content .row .col-lg-6:first-of-type .price-card {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border: 1px solid #e9e8ee;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .pricing.style-4 .content .row .col-lg-6:nth-of-type(2) .price-card {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }
  .faq.style-3.style-4 {
    overflow: hidden;
  }
  .faq.style-3.style-4 .col-lg-6:nth-of-type(1) .accordion-item.border-0 {
    border-bottom: 1px solid rgba(153, 153, 153, 0.3333333333) !important;
  }
  .community.style-4 .content,
.community.style-5 .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 20px !important;
  }
  .community.style-4 .content .commun-card,
.community.style-5 .content .commun-card {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding: 30px !important;
  }
  .section-head.style-4 h2 {
    font-size: 25px;
  }
  footer.style-4 {
    margin-top: 120px;
  }
  footer.style-4 .d-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer.style-4 .d-flex .btn {
    width: 100%;
    margin: 10px 0;
  }
  footer.style-4 .d-flex .btn.me-4 {
    margin-right: 0 !important;
  }
  footer.style-4 .foot .links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 30px 0;
  }
  footer.style-4 .foot .links li {
    width: 50%;
    margin: 5px 0;
  }
  footer.style-4 .foot .links li a {
    margin-left: 0;
  }
  footer.style-4 .wave {
    left: 0;
    width: 100%;
  }
  .screenshots.style-4 .screenshots-slider {
    width: 100%;
    left: 0;
  }
  .screenshots.style-4 .screenshots-slider .img {
    margin: 0 auto;
    width: 190px;
  }
  footer.style-4 .foot .logo {
    width: 160px;
  }
  .navbar.style-5 {
    border-bottom: 1px solid rgba(153, 153, 153, 0.6);
  }
  .navbar.style-5 .navbar-collapse {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.6);
  }
  .navbar.style-5 .nav-item .nav-link {
    padding-left: 0;
  }
  .section-head.style-5 h2 {
    font-size: 30px;
  }
  .about.style-5 .content .img {
    overflow: hidden;
    margin-bottom: 30px;
    padding-bottom: 50px;
  }
  .about.style-5 .content .img.main-img3 .img-body {
    max-height: 300px;
  }
  .download.style-5 .content h2 {
    font-size: 28px;
  }
  .download.style-5 .content h2 span {
    padding-bottom: 10px;
  }
  .download.style-5 .btn {
    margin: 10px 0;
  }
  .download.style-5 .btn.sm-butn span {
    font-size: 10px;
  }
  footer.style-5 .items {
    margin-bottom: 50px;
  }
  footer.style-5 .items .title {
    margin-bottom: 20px;
  }
  footer.style-5 .foot {
    margin-top: 0 !important;
  }
  footer.style-5 .foot .logo {
    margin-bottom: 20px;
  }
  .style-6 br {
    display: none;
  }
  .navbar.style-6 .container-fluid {
    padding: 0 20px;
  }
  .navbar.style-6 .container-fluid .navbar-collapse {
    margin-top: 20px;
  }
  header.style-6 .content {
    padding: 100px 0 20px;
  }
  header.style-6 .info h1,
header.style-6 .info h1 span small {
    font-size: 30px;
    line-height: 1.5;
  }
  header.style-6 .info .text {
    margin-top: 20px;
  }
  header.style-6 .info .text br {
    display: none;
  }
  header.style-6 .info .form {
    border-radius: 15px;
  }
  header.style-6 .info .form .form-group {
    width: 100%;
    margin: 8px 0;
  }
  header.style-6 .info .form .btn {
    width: 100%;
    margin-top: 15px;
  }
  .navbar.style-6 .nav-item .nav-link:after {
    display: inline-block !important;
  }
  header.style-6 {
    padding: 0;
  }
  header.style-6 .content {
    border-radius: 0;
  }
  .section-head.style-6 h2,
.section-head.style-6 h2 span small {
    font-size: 30px;
  }
  .about.style-6 {
    overflow: hidden;
  }
  .about.style-6 .info {
    margin-bottom: 30px;
  }
  .service-card.style-6 {
    margin: 15px;
  }
  .section-head.d-flex {
    display: block !important;
  }
  .projects.style-6 {
    overflow: hidden;
    padding: 0;
  }
  .projects.style-6 .content {
    border-radius: 0;
  }
  .projects.style-6 .content .project-card.style-6 {
    margin: 0;
  }
  .testimonials.style-6 {
    overflow: hidden;
  }
  .choose-us.style-6 {
    overflow: hidden;
  }
  .choose-us.style-6 .info {
    padding: 0 15px;
    margin-top: 30px;
  }
  .testimonials.style-6 .img {
    margin-top: 150px;
  }
  .clients.style-5 .content .img.img-card {
    width: 47%;
  }
  .number-card.style-6 {
    margin: 15px 0;
    border: 0 !important;
  }
  .team.style-6 {
    padding: 0;
  }
  .team.style-6 .content {
    border-radius: 0;
    padding: 70px 0;
  }
  .team.style-6 .content .text-end {
    text-align: left !important;
    margin-top: 10px;
  }
  .team-card.style-6 .img .social-icons a {
    -webkit-transform: translateY(0) !important;
            transform: translateY(0) !important;
    opacity: 1;
  }
  .blog.style-6 .content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .blog.style-6 .content .blog-card {
    width: 100% !important;
    margin-bottom: 30px;
  }
  .blog.style-6 .content .blog-card:last-of-type {
    margin: 0;
  }
  .blog.style-6 .content .blog-card::after, .blog.style-6 .content .blog-card::before {
    display: none;
  }
  footer.style-6 {
    padding-top: 40px;
  }
  footer.style-6 .items {
    margin-top: 30px;
  }
  footer.style-6 .items .title {
    margin-bottom: 15px;
  }
  footer.style-6 .foot {
    padding-top: 30px;
    line-height: 1.8;
  }
  footer.style-6 .foot .logo {
    margin-bottom: 20px;
  }
  .blog-page.style-1 .popular-posts .border-end {
    border: 0 !important;
  }
  .about-page header.style-5 .info h1 {
    font-size: 30px;
  }
  .about-page header.style-5 .main-vid {
    height: 350px;
  }
  .about-page .choose-us.style-6 .info {
    padding: 30px 15px;
  }
  .about-page .clients .section-head {
    padding: 0 15px;
  }
  .about-page .culture {
    padding: 70px 15px;
  }
  .contact.style-6 .content .contact_message {
    right: 0;
    top: 30px;
  }
  .contact-page.style-5 .contact .content .contact_message {
    right: 0;
    top: 30px;
  }
  .contact-page.style-5 .section-head {
    margin-bottom: 50px !important;
  }
  .contact-page.style-5 .mb-100 {
    margin-bottom: 70px !important;
  }
  .contact-page.style-5 .ltspc-20 {
    letter-spacing: 3px !important;
    margin-bottom: 30px !important;
  }
  .contact-page.style-5 h4 {
    font-size: 18px;
  }
  .shop-page .filter {
    margin-bottom: 30px;
  }
  .shop-page .products-content .products.list-view .card-width {
    width: 100%;
  }
  .product-page .related-products .related-products-slider .swiper-button-next,
.product-page .related-products .related-products-slider .swiper-container-rtl .swiper-button-prev {
    right: 5px;
  }
  .product-page .related-products .related-products-slider .swiper-button-prev,
.product-page .related-products .related-products-slider .swiper-container-rtl .swiper-button-next {
    left: 5px;
  }
  .product-page .product-slider {
    overflow: hidden;
  }
  .product-page .product-slider {
    margin-bottom: 50px;
  }
  .product-page .product-slider .gallery-top .swiper-slide .img,
.product-page .product-slider .gallery-thumbs {
    height: 370px;
  }
  .product-page .product-details .nav-pills .nav-link {
    font-size: 18px;
  }
  .product-page .product-info .qyt-addCart .add-more {
    width: 25%;
  }
  .top-navbar.style-7 .top_info,
.top-navbar.style-7 .side_links {
    font-size: 8px;
  }
  .top-navbar.style-7 .me-4 {
    margin-right: 5px !important;
  }
  .navbar.style-7 .navbar-nav,
.navbar.style-9 .navbar-nav {
    padding: 20px 0 !important;
  }
  .navbar.style-7 .navbar-nav .nav-item .nav-link,
.navbar.style-9 .navbar-nav .nav-item .nav-link {
    margin: 15px 0;
    border: 0;
  }
  header.style-7 .info h1 {
    font-size: 35px;
  }
  header.style-7 .img .rock7,
.about.style-7 .img .circle {
    right: 0;
    width: 30%;
  }
  header.style-7 .sponsers br {
    display: none;
  }
  header.style-7 .sponsers .sponsers-content a {
    margin: 10px 10px 10px 0;
    width: 20%;
  }
  .services.style-7 .service-item-style7 {
    padding: 30px;
    background-color: #fff;
  }
  .projects.style-7 .content {
    padding: 0 15px;
  }
  .projects.style-7 .projects-slider7 .swiper-slide {
    margin-top: 50px;
  }
  .testimonials.style-7 .testi-card .text {
    font-size: 18px;
  }
  .testimonials.style-7 .get-qoute-banner {
    padding: 30px;
  }
  .testimonials.style-7 .get-qoute-banner .btns {
    margin-top: 20px;
  }
  .choose-us.style-7 .info {
    padding: 30px 0;
  }
  .section-head.style-4 h2 {
    font-size: 18px;
  }
  .chat-banner.style-7 .info h3 {
    font-size: 30px;
  }
  footer.style-7 {
    overflow: hidden;
  }
  footer.style-7 .links-side {
    padding: 30px 0;
  }
  footer.style-7 .links-side .links-group {
    margin-top: 30px;
  }
  footer.style-7 .foot p {
    font-size: 12px;
  }
  .features.style-7 {
    padding: 100px 15px;
  }
  .features.style-7 .features-card.style-7 {
    padding: 15px;
  }
  .features.style-7 .features-card.style-7 .icon img {
    width: 80px;
    height: 80px;
  }
  .features.style-7 .features-card.style-7 .info h5 {
    font-size: 18px;
  }
  header.style-8 .info h1 {
    font-size: 40px;
  }
  .services.style-8 h5 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .section-head.style-8 h3 {
    font-size: 30px;
  }
  .numbers.style-8 .content .plat-icons .icon {
    width: 50px !important;
    height: 50px !important;
    padding: 10px !important;
  }
  .projects.style-8 .section-head {
    position: relative;
    padding-bottom: 65px;
  }
  .projects.style-8 .section-head .swiper-button-next,
.projects.style-8 .section-head .swiper-button-prev {
    bottom: 0;
    top: auto;
  }
  .projects.style-8 .section-head .swiper-button-prev,
.projects.style-8 .section-head .swiper-container-rtl .swiper-button-next {
    left: 0;
    right: auto;
  }
  .projects.style-8 .section-head .swiper-button-next,
.projects.style-8 .section-head .swiper-container-rtl .swiper-button-prev {
    left: 75px;
    right: auto;
  }
  .projects.style-8 .info {
    padding: 30px 0 0 0;
  }
  .projects.style-8 .info .proj-det .item p {
    font-size: 11px;
  }
  .projects.style-8 .info .proj-det .item h6 {
    font-size: 14px;
  }
  .pricing.style-8 .pricing-tabsHead {
    margin-top: 80px;
  }
  .pricing.style-8 .pricing-body .pricing-card {
    border-radius: 10px;
  }
  .blog.style-8 .main-post {
    margin-bottom: 50px;
  }
  .blog.style-8 .side-posts .item .info h4.title {
    font-size: 18px;
  }
  footer.style-8 .content .logo-social .foot-logo img {
    margin-bottom: 30px;
  }
  header.style-9 {
    overflow: hidden;
  }
  header.style-9 .img {
    width: 100%;
    margin-top: 50px;
  }
  header.style-9 .info h1 {
    font-size: 30px;
  }
  .hosting-links a {
    margin: 10px 5px !important;
  }
  .chat-banner.style-9 .img_back {
    display: none;
  }
  .top-navbar.style-9 a {
    font-size: 12px;
  }
  .top-navbar.style-9 .side_links a {
    margin: 5px !important;
    font-size: 12px;
  }
  .top-navbar.style-9 .ps-4 {
    padding-left: 0.5rem !important;
  }
  .testimonials.style-9 {
    overflow: hidden;
  }
  .section-head.style-9 h2 {
    font-size: 30px;
  }
  .section-head.style-9 h2 br {
    display: none;
  }
  .domain-search.style-9 .domain-choose .butn {
    padding: 15px;
  }
  .about.style-9 .info {
    padding: 30px 0 0;
  }
  .services.style-9 .services-content .service-card {
    margin-top: 30px;
  }
  .services.style-9 .services-content::before {
    display: none;
  }
  .chat-banner.style-9 {
    padding: 100px 0;
  }
  .choose-us.style-9 .nav .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(153, 153, 153, 0.2);
  }
  .choose-us.style-9 .nav .nav-item .nav-link {
    width: 100%;
    text-align: start;
  }
  .testimonials.style-9 .testi-head h3 {
    margin-bottom: 20px;
    font-size: 25px;
  }
  .testimonials.style-9 .testi-card {
    margin-bottom: 50px;
    border: 1px solid rgba(153, 153, 153, 0.2);
    border-radius: 10px;
    padding: 30px;
  }
  .testimonials.style-9 .testi-card .text {
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
    margin-bottom: 30px;
  }
  .clients.style-9 .logos-content .logos a {
    width: 180px;
    height: 100px;
    background-color: #fff;
    border-radius: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .foot {
    margin-top: 40px !important;
  }
  footer .foot .info {
    padding: 30px 0 !important;
  }
  footer.style-9 .foot-title {
    margin-bottom: 20px;
    margin-top: 40px;
  }
  .inner-header.style-5 .content {
    padding-right: 50px;
  }
  .inner-header.style-5 .content h2 {
    font-size: 30px;
  }
  .faq-page.style-5 .faq-tabs .nav .nav-item {
    width: 50%;
    margin-top: 30px;
  }
  .inner-header.style-5 .content .side-img {
    top: 40%;
    height: 20%;
  }
  .careers-page.style-5 .career-form .mum-card h3,
.career-details-page.style-5 .career-form .mum-card h3 {
    font-size: 30px;
  }
  .careers-page.style-5 .career-form .form,
.career-details-page.style-5 .career-form .form {
    margin-top: 30px;
  }
  .careers-page.style-5 .career-form,
.career-details-page.style-5 .career-form {
    overflow: hidden;
  }
  .careers-page.style-5 .career-form h2,
.career-details-page.style-5 .career-form h2 {
    font-size: 30px;
  }
  .career-details-page p {
    width: 100%;
  }
  .career-details-page.style-5 .careers-positions-slider5 {
    padding-bottom: 100px;
  }
  .career-details-page.style-5 .careers-positions-slider5 .swiper-button-next,
.career-details-page.style-5 .careers-positions-slider5 .swiper-button-prev {
    top: calc(100% - 60px);
  }
  .pricing.style-10 .pricing-table .table-titles,
.pricing.style-10 .pricing-table .table-body-card {
    width: 100%;
  }
  .pricing.style-10 .pricing-table .table-titles .main-head {
    background-color: #f9f9f9;
    border-radius: 15px;
  }
  .pricing.style-10 .pricing-table .table-body-card {
    padding: 15px;
    border: 1px solid rgba(153, 153, 153, 0.2666666667);
    border-radius: 10px !important;
    margin-top: 30px;
  }
  .pricing.style-10 .pricing-table .table-body-card .sub-body ul li strong {
    display: block;
    margin-bottom: 10px;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
  .pricing.style-10 .pricing-table .sub-head {
    text-align: center;
  }
  .pricing.style-10 .pricing-table .table-body-card.recommended-card .sub-body {
    border: 15px solid rgba(255, 255, 255, 0.1333333333);
  }
  header.style-10 .img {
    width: 100%;
    margin: 30px 0;
  }
  header.style-10 .info h1 {
    font-size: 35px;
  }
  header.style-10 .info .butn, header.style-10 .info .btn {
    padding: 12px 48px 12px 15px;
  }
  header.style-10 .info .butn small, header.style-10 .info .btn small {
    font-size: 10px;
  }
  header.style-10 .info .butn.btn-icon-circle i, header.style-10 .info .btn.btn-icon-circle i {
    bottom: -6px;
  }
  header.style-10 .info .me-4 {
    margin-right: 0.5rem !important;
  }
  header.style-10 .logos .logos-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  header.style-10 .logos .logos-content .logo_img {
    padding: 10px;
    width: 45px;
  }
  .features.style-10 .feat-card {
    border-bottom: 1px solid rgba(153, 153, 153, 0.3333333333);
    border-right: 0;
  }
  .about.style-10 .imgs .img {
    margin: 0 0 30px !important;
    height: 250px !important;
  }
  .about.style-10 .info {
    padding: 0;
  }
  .about.style-10 .info h2 {
    font-size: 25px;
  }
  .services.style-10 {
    overflow: hidden;
  }
  .services.style-10 .content {
    padding: 60px 15px 15px;
  }
  .services.style-10 .content .services-card {
    position: relative;
    z-index: 10;
    padding: 20px 15px;
    border-radius: 10px;
    background-color: #f9f9f9;
    margin-top: 15px;
  }
  .faq.style-10::after {
    display: none;
  }
  .faq.style-10 .integration-card .content {
    padding: 50px 30px;
  }
  .faq.style-10 .integration-card .content .icons {
    margin-top: 40px;
  }
  .faq.style-10 .integration-card .content .icons .icon {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 5px;
    width: 50px;
    height: 50px;
    padding: 15px;
  }
  .blog.style-10 .blog-card .img {
    width: 100%;
  }
  .blog.style-10 .blog-card .img img {
    width: 100%;
    height: 220px;
  }
  .blog.style-10 .blog-card .info {
    width: 100%;
  }
  footer.style-10 .foot {
    margin-top: 0 !important;
  }
  footer.style-10 .links {
    text-align: start;
    margin: 30px 0;
  }
  footer.style-10 .links a {
    margin: 15px 0 !important;
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .home-style-11 .section-head h2 {
    font-size: 20px;
  }
  .home-style-11 .top-navbar.style-11 .links a {
    font-size: 11px;
  }
  .home-style-11 .top-navbar.style-11 .top-nav-side {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 10px;
  }
  .home-style-11 .top-navbar.style-11 .top-nav-side a, .home-style-11 .top-navbar.style-11 .top-nav-side p {
    font-size: 11px;
  }
  .home-style-11 .navbar.style-11 .navbar-nav {
    padding: 20px 0 !important;
  }
  .home-style-11 header.style-11 {
    overflow: hidden;
  }
  .home-style-11 header.style-11 .info h1 {
    font-size: 30px;
  }
  .home-style-11 header.style-11 .img {
    width: 100%;
  }
  .home-style-11 .signup.style-11 {
    overflow: hidden;
  }
  .home-style-11 .signup.style-11 .text {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .home-style-11 .signup.style-11 .text span {
    width: 100%;
    margin: 5px 0;
  }
  .home-style-11 .screenshots.style-11 {
    overflow: hidden;
  }
  .home-style-11 .screenshots.style-11 .links {
    margin-bottom: 60px;
  }
  .home-style-11 .screenshots.style-11 .links .img {
    margin: 10px 0;
  }
  .home-style-11 .screenshots.style-11 .links .img::after {
    display: none;
  }
  .home-style-11 .features.style-11 {
    overflow: hidden;
  }
  .home-style-11 .features.style-11 .features-cards .cards-side .feat-card {
    margin-top: 30px;
  }
  .home-style-11 .integration.style-11 .icons {
    display: none;
  }
  .home-style-11 .features.style-9 {
    overflow: hidden;
  }
  .home-style-11 .features.style-9 .accordion .accordion-button {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .home-style-11 .features.style-9 .img {
    margin-top: 50px;
  }
  .home-style-11 .testimonials.style-11 {
    overflow: hidden;
  }
  .home-style-11 .testimonials.style-11 .testimonial-card .img .play_icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    line-height: 70px;
    bottom: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
  }
  .home-style-11 .testimonials.style-11 .testimonial-card .info h4 {
    font-size: 18px;
  }
  .home-style-11 footer.style-11 {
    overflow: hidden;
  }
  .home-style-11 footer.style-11 .top-foot-info strong {
    width: 100%;
    display: block;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .home-style-11 footer.style-11 .top-foot-info a {
    margin: 10px 0 !important;
  }
  .section-head.style-12 h2 {
    font-size: 21px;
  }
  .navbar.style-12 .navbar-brand {
    width: 180px;
    padding: 20px;
  }
  .navbar.style-12 .nav-search {
    margin: 20px 0 0;
    padding: 0;
  }
  .navbar.style-12 .nav-search input {
    width: 100% !important;
    max-width: unset !important;
  }
  header.style-12 .info {
    padding-top: 50px;
  }
  header.style-12 .info h2 {
    font-size: 40px;
    text-align: left;
  }
  header.style-12 .info h2 small {
    font-size: 11px !important;
    margin-top: 0 !important;
  }
  header.style-12 .info h2 small br {
    display: none;
  }
  header.style-12 .pt-150 {
    padding-top: 50px !important;
  }
  .projects.style-12 .mix_tabs .tab-link {
    width: 100%;
    text-align: left;
  }
  .features.style-12 .features-line-slider12 .swiper-slide a h2 {
    font-size: 18px;
  }
  .collections {
    overflow: hidden;
  }
  .community.style-12 .content h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .community.style-12 .content .form-group {
    margin-bottom: 20px;
  }
  .community.style-12 .content .form-group input {
    width: 150px;
  }
  .community.style-12 .content .form-group .butn {
    padding: 12px 15px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 12px;
  }
  .community.style-12 .content .social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 10px;
            margin-inline-end: 10px;
  }
  footer.style-12 .content {
    padding: 50px 0;
  }
  footer.style-12 .foot {
    margin-top: 0 !important;
  }
  footer.style-12 .foot p {
    font-size: 12px;
  }
  footer.style-12 .foot p a {
    font-size: 12px;
  }
  .navbar.style-13 {
    position: relative;
  }
  header.style-13 .info h1 {
    font-size: 30px;
  }
  .about.style-13 .content .info .logos img {
    max-width: 30%;
    -webkit-margin-end: 3%;
            margin-inline-end: 3%;
  }
  .section-head.style-13 h2 {
    font-size: 20px;
  }
  footer.style-13 .foot {
    padding: 0 0 30px 0;
    color: #fff;
    text-align: center;
    line-height: 4;
  }
  .home-style-14 .navbar.style-14 {
    position: relative;
  }
  .home-style-14 header.style-14 {
    padding-top: 100px;
  }
  .home-style-14 header.style-14 .info h1 {
    font-size: 40px;
  }
  .home-style-14 header.style-14 .info .down_store {
    margin-top: 50px;
  }
  .home-style-14 .clients.style-14 .logos-content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .home-style-14 .clients.style-14 .logos-content a {
    width: 50%;
    text-align: center;
    padding: 0 20px;
  }
  .home-style-14 .testimonials-slider14 .swiper-container {
    overflow: hidden !important;
  }
  .home-style-14 .features.style-14 .nav-pills .nav-link {
    font-size: 10px;
    margin: 5px;
    padding: 12px 15px;
  }
  .home-style-14 .mb-70 {
    margin-bottom: 30px !important;
  }
  .home-style-14 .mb-150 {
    margin-bottom: 50px !important;
  }
  .home-style-14 .features.style-14 .tab-pay-content .info li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .home-style-14 .features.style-14 .tab-pay-content .info li i {
    margin-top: 5px;
  }
  .home-style-14 .fs-1 {
    font-size: 25px !important;
    letter-spacing: 0 !important;
  }
  .home-style-14 .screenshots.style-14 .img::before {
    bottom: 0;
  }
  .home-style-14 .about.style-14 .img {
    margin-top: 50px;
  }
  .home-style-14 .about.style-14 .img .play_ptn {
    left: 50%;
  }
  .home-style-15 .top-navbar.style-15 {
    font-size: 10px;
  }
  .home-style-15 .top-navbar.style-15 .ms-4 {
    margin-left: 0.5rem !important;
  }
  .home-style-15 .navbar.style-15 {
    position: relative !important;
  }
  .home-style-15 .navbar.style-15 .navbar-nav {
    padding: 15px 0 !important;
  }
  .home-style-15 .navbar.style-15 .navbar-nav .nav-item .nav-link {
    border: 0 !important;
  }
  .home-style-15 header.style-15 .info {
    margin-top: 20px;
  }
  .home-style-15 header.style-15 .info h1 {
    font-size: 25px;
  }
  .home-style-15 header.style-15 .img {
    width: 100%;
  }
  .home-style-15 header.style-15 .countdown-content {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: -5px;
  }
  .home-style-15 header.style-15 .countdown-content .countdown-card {
    border-radius: 0;
  }
  .home-style-15 header.style-15 .countdown-content .logos {
    padding-bottom: 30px;
  }
  .home-style-15 header.style-15 .countdown-content .logos img {
    -webkit-margin-start: 10px;
            margin-inline-start: 10px;
    width: 50px;
  }
  .home-style-15 header.style-15 .butn, .home-style-15 header.style-15 .btn {
    padding: 12px 25px;
  }
  .home-style-15 header.style-15 .butn span, .home-style-15 header.style-15 .butn small, .home-style-15 header.style-15 .btn span, .home-style-15 header.style-15 .btn small {
    font-size: 10px;
  }
  .home-style-15 .features.style-15 {
    padding: 70px 0;
  }
  .home-style-15 .about.style-15 .info {
    margin-bottom: 50px;
  }
  .home-style-15 .markets .content {
    overflow-x: auto;
  }
  .home-style-15 .markets .markets-table {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .home-style-15 .markets .markets-table .trad-btn {
    text-align: center;
  }
  .home-style-15 .timeline.style-15 {
    padding: 70px 0;
  }
  .home-style-15 .timeline.style-15 .timeline-cards .timeline-card::before {
    bottom: 0;
  }
  .home-style-15 .timeline.style-15 .timeline-cards .timeline-card::after {
    bottom: -5px;
    background-color: rgba(238, 21, 82, 0.3333333333);
    -webkit-box-shadow: 0 5px 10px rgba(238, 21, 82, 0.2666666667);
            box-shadow: 0 5px 10px rgba(238, 21, 82, 0.2666666667);
  }
  .home-style-15 .timeline.style-15 .timeline-cards .timeline-card .year {
    bottom: -50px;
  }
  .home-style-15 .timeline.style-15 .timeline-cards .progress {
    display: none;
  }
  .home-style-15 .faq.style-15 .faq-card {
    padding: 20px 5px;
  }
  .home-style-15 .faq.style-15 .subscribe-content .subscribe-card {
    padding: 70px 15px;
  }
  .home-style-15 .faq.style-15 .subscribe-content .subscribe-card .form-group .subs_arrow {
    display: none;
  }
  .home-style-15 .blog.style-15 .main-card,
.home-style-15 .blog.style-15 .sub-card {
    margin-bottom: 30px;
  }
  .home-style-15 .blog.style-15 .main-card .img,
.home-style-15 .blog.style-15 .sub-card .img {
    height: 250px;
  }
  .home-style-15 .blog.style-15 .main-card .info,
.home-style-15 .blog.style-15 .sub-card .info {
    padding: 20px;
  }
  .home-style-15 .blog.style-15 .main-card .center_icon,
.home-style-15 .blog.style-15 .sub-card .center_icon {
    display: none;
  }
  .home-style-15 footer.style-15 .content {
    padding: 70px 0 20px;
  }
  .home-style-15 footer.style-15 .content .foot-logo-social {
    margin-bottom: 0 !important;
  }
  .home-style-15 footer.style-15 .content .foot-logo-social .social-icons a {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 20px;
            margin-inline-end: 20px;
    margin-top: 30px;
  }
  .home-style-15 footer.style-15 .content .links-content h6.sub-title {
    margin-top: 50px;
  }
}
/* ======== */
/* ======= */