/*** Variables ***/
/*** Framework ***/
.p-fixed {
  position: fixed;
}

.p-relative {
  position: relative;
}

.p-sticky {
  position: sticky;
}

.z-index-1 {
  z-index: 1;
}

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

.z-index-n1 {
  z-index: -1;
}

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

.absolute-center {
  position: absolute !important;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.absolute-center-fit {
  position: absolute !important;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.absolute-topleft {
  position: absolute !important;
  left: 0;
  top: 0;
}

.absolute-topleft-fit {
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.absolute-topright {
  position: absolute !important;
  right: 0;
  top: 0;
}

.absolute-topright-fit {
  position: absolute !important;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.no-paddings {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media screen and (max-width : 991px) {
  .no-paddings-md {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media screen and (max-width : 767px) {
  .no-paddings-sm {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media screen and (max-width : 575px) {
  .no-paddings-xs {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.fit-size {
  width: 100%;
  height: 100%;
}

.fit-width {
  width: 100%;
}

.fit-height {
  height: 100%;
}

.fit-min-height {
  min-height: 100%;
}

.fit-screen-height {
  height: 100vh;
}

.frame, .frame--3-4, .frame--4-3, .frame--2-3, .frame--3-2, .frame--9-16, .frame--16-9, .frame--1-2, .frame--2-1, .frame--1-1, .frame--auto {
  position: relative;
  height: 0;
  overflow: hidden;
}
.frame img, .frame--3-4 img, .frame--4-3 img, .frame--2-3 img, .frame--3-2 img, .frame--9-16 img, .frame--16-9 img, .frame--1-2 img, .frame--2-1 img, .frame--1-1 img, .frame--auto img {
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.frame img.parallax, .frame--3-4 img.parallax, .frame--4-3 img.parallax, .frame--2-3 img.parallax, .frame--3-2 img.parallax, .frame--9-16 img.parallax, .frame--16-9 img.parallax, .frame--1-2 img.parallax, .frame--2-1 img.parallax, .frame--1-1 img.parallax, .frame--auto img.parallax {
  left: -5%;
  top: -5%;
  width: 110%;
  height: 110%;
}

.frame--auto {
  height: 100%;
}

@media screen and (max-width : 1479px) {
  .frame--auto img {
    position: initial;
  }
}
.frame--1-1 {
  padding-bottom: 100%;
}

.frame--2-1 {
  padding-bottom: 50%;
}

.frame--1-2 {
  padding-bottom: 200%;
}

.frame--16-9 {
  padding-bottom: 56.25%;
}

.frame--9-16 {
  padding-bottom: 177.77%;
}

.frame--3-2 {
  padding-bottom: 66.67%;
}

.frame--2-3 {
  padding-bottom: 150%;
}

.frame--4-3 {
  padding-bottom: 75%;
}

.frame--3-4 {
  padding-bottom: 133.33%;
}

.img-cover, .frame img, .frame--auto img, .frame--1-1 img, .frame--2-1 img, .frame--1-2 img, .frame--16-9 img, .frame--9-16 img, .frame--3-2 img, .frame--2-3 img, .frame--4-3 img, .frame--3-4 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-fullscreen {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.bg-primary {
  background: #F0532B;
}

.bg-green {
  background: #7FB449;
}

.bg-white {
  background: #fff;
}

.bg-gray {
  background: #C8C7C7;
}

.bg-gray-less {
  background: #EBE8E3;
}

.bg-dark {
  background: #0D0C0C;
}

.bg-dark-less {
  background: #252424;
}

.bg-text-gray {
  background: #8D8C8A;
}

.bg-gradient {
  background: linear-gradient(100deg, #C1300B 10%, #F98243 100%);
}

.bg-gradient-green {
  background: -webkit-gradient(linear, left top, right top, from(#377136), color-stop(50%, #6DAD50), to(#377136));
  background: linear-gradient(90deg, #377136 0%, #6DAD50 50%, #377136 100%);
}

.bg-side, .bg-side--right, .bg-side--left {
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
}

.bg-side--left {
  right: 100%;
}

.bg-side--right {
  left: 100%;
}

.divider {
  border-bottom: 1px solid;
}

.color-white {
  color: #fff;
}

.color-text-light {
  color: #939598;
}

.color-text-dark {
  color: #5C5D60;
}

.color-text-gray {
  color: #8D8C8A;
}

.color-gray {
  color: #C8C7C7;
}

.color-dark {
  color: #0D0C0C;
}

.color-primary {
  color: #F0532B;
}

.color-primary-dark {
  color: #C1300B;
}

.color-primary-light {
  color: #F98243;
}

.cms-content {
  font-size: 20px;
}
@media screen and (max-width : 1599px) {
  .cms-content {
    font-size: 18px;
  }
}

.text-xxl {
  font-size: 72px;
  line-height: 1.1;
}
@media screen and (max-width : 1479px) {
  .text-xxl {
    font-size: 64px;
  }
}
@media screen and (max-width : 991px) {
  .text-xxl {
    font-size: 48px;
  }
}
@media screen and (max-width : 767px) {
  .text-xxl {
    font-size: 40px;
  }
}

.text-xl {
  font-size: 64px;
  line-height: 1.1;
}
@media screen and (max-width : 1479px) {
  .text-xl {
    font-size: 56px;
  }
}
@media screen and (max-width : 575px) {
  .text-xl {
    font-size: 36px;
  }
}

.text-large2 {
  font-size: 56px;
  line-height: 1.2;
}
@media screen and (max-width : 991px) {
  .text-large2 {
    font-size: 48px;
  }
}
@media screen and (max-width : 575px) {
  .text-large2 {
    font-size: 32px;
  }
}

.text-large {
  font-size: 48px;
  line-height: 1.2;
}
@media screen and (max-width : 991px) {
  .text-large {
    font-size: 36px;
  }
}

.text-big2 {
  font-size: 40px;
  line-height: 1.3;
}
@media screen and (max-width : 767px) {
  .text-big2 {
    font-size: 26px;
  }
}

.text-big {
  font-size: 32px;
  line-height: 1.3;
}
@media screen and (max-width : 767px) {
  .text-big {
    font-size: 24px;
  }
}

.text-medium2 {
  font-size: 28px;
  line-height: 1.3;
}
@media screen and (max-width : 767px) {
  .text-medium2 {
    font-size: 22px;
  }
}

.text-medium {
  font-size: 24px;
  line-height: 1.3;
}
@media screen and (max-width : 767px) {
  .text-medium {
    font-size: 20px;
  }
}

.text-regular3 {
  font-size: 20px;
}
@media screen and (max-width : 1599px) {
  .text-regular3 {
    font-size: 18px;
  }
}

.text-regular2 {
  font-size: 18px;
}

.text-regular {
  font-size: 16px;
}

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

.text-xs2 {
  font-size: 13px;
}

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

.text-xxs {
  font-size: 11px;
}

.line-height-1 {
  line-height: 1;
}

.line-height-1-1 {
  line-height: 1.1;
}

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

.line-height-1-3 {
  line-height: 1.3;
}

.line-height-1-4 {
  line-height: 1.4;
}

.line-height-1-5 {
  line-height: 1.5;
}

.line-height-1-6 {
  line-height: 1.6;
}

.font-primary {
  font-family: "TT Hoves Pro", Helvetica, sans-serif;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

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

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

.text-underline {
  text-decoration: underline;
}

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

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

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

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

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

/*** Resources ***/
@font-face {
  font-family: "TT Hoves Pro";
  src: url("../fonts/TT_Hoves_Pro_Regular.woff") format("woff"), url("../fonts/TT_Hoves_Pro_Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "TT Hoves Pro";
  src: url("../fonts/TT_Hoves_Pro_Medium.woff") format("woff"), url("../fonts/TT_Hoves_Pro_Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
/*** Animations ***/
.reveal {
  display: block;
}
.reveal[data-animation=fade-reveal] {
  opacity: 0;
  will-change: opacity;
  -webkit-transition: opacity 1.25s cubic-bezier(0.65, 0, 0.35, 1);
  transition: opacity 1.25s cubic-bezier(0.65, 0, 0.35, 1);
}
.reveal[data-animation=fade-reveal][data-speed=slow] {
  -webkit-transition: opacity 2.5s cubic-bezier(0.65, 0, 0.35, 1);
  transition: opacity 2.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.reveal[data-animation=fade-reveal][data-speed=fast] {
  -webkit-transition: opacity 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  transition: opacity 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}
.reveal[data-animation=fade-reveal].active {
  opacity: 1;
}
.reveal[data-animation=slide-reveal-ltr], .reveal[data-animation=slide-reveal-rtl], .reveal[data-animation=slide-reveal-ttb], .reveal[data-animation=slide-reveal-btt] {
  opacity: 0;
  will-change: transform, opacity;
  -webkit-transition: opacity 1.25s cubic-bezier(0.65, 0, 0.35, 1), -webkit-transform 1s cubic-bezier(0.65, 0, 0.35, 1);
  transition: opacity 1.25s cubic-bezier(0.65, 0, 0.35, 1), -webkit-transform 1s cubic-bezier(0.65, 0, 0.35, 1);
  transition: opacity 1.25s cubic-bezier(0.65, 0, 0.35, 1), transform 1s cubic-bezier(0.65, 0, 0.35, 1);
  transition: opacity 1.25s cubic-bezier(0.65, 0, 0.35, 1), transform 1s cubic-bezier(0.65, 0, 0.35, 1), -webkit-transform 1s cubic-bezier(0.65, 0, 0.35, 1);
}
.reveal[data-animation=slide-reveal-ltr][data-speed=slow], .reveal[data-animation=slide-reveal-rtl][data-speed=slow], .reveal[data-animation=slide-reveal-ttb][data-speed=slow], .reveal[data-animation=slide-reveal-btt][data-speed=slow] {
  -webkit-transition: opacity 2.5s cubic-bezier(0.65, 0, 0.35, 1), -webkit-transform 2.5s cubic-bezier(0.65, 0, 0.35, 1);
  transition: opacity 2.5s cubic-bezier(0.65, 0, 0.35, 1), -webkit-transform 2.5s cubic-bezier(0.65, 0, 0.35, 1);
  transition: opacity 2.5s cubic-bezier(0.65, 0, 0.35, 1), transform 2.5s cubic-bezier(0.65, 0, 0.35, 1);
  transition: opacity 2.5s cubic-bezier(0.65, 0, 0.35, 1), transform 2.5s cubic-bezier(0.65, 0, 0.35, 1), -webkit-transform 2.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.reveal[data-animation=slide-reveal-ltr][data-speed=fast], .reveal[data-animation=slide-reveal-rtl][data-speed=fast], .reveal[data-animation=slide-reveal-ttb][data-speed=fast], .reveal[data-animation=slide-reveal-btt][data-speed=fast] {
  -webkit-transition: opacity 0.7s cubic-bezier(0.65, 0, 0.35, 1), -webkit-transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  transition: opacity 0.7s cubic-bezier(0.65, 0, 0.35, 1), -webkit-transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  transition: opacity 0.7s cubic-bezier(0.65, 0, 0.35, 1), transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  transition: opacity 0.7s cubic-bezier(0.65, 0, 0.35, 1), transform 0.5s cubic-bezier(0.65, 0, 0.35, 1), -webkit-transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.reveal[data-animation=slide-reveal-ltr].active, .reveal[data-animation=slide-reveal-rtl].active, .reveal[data-animation=slide-reveal-ttb].active, .reveal[data-animation=slide-reveal-btt].active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.reveal[data-animation=slide-reveal-ltr] {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}
.reveal[data-animation=slide-reveal-rtl] {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}
.reveal[data-animation=slide-reveal-ttb] {
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}
.reveal[data-animation=slide-reveal-btt] {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

/*** Main style ***/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  position: relative;
  margin: 0;
  background: #EBE8E3;
  color: #000;
  font-family: "TT Hoves Pro", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.has-popup {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 400;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}
p:not(:last-child) {
  margin-bottom: 20px;
}

figure {
  margin: 0;
}

img {
  display: block;
  height: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

svg {
  display: block;
}

address {
  font-style: normal;
}

table, td, th {
  border: 1px solid #C8C7C7;
  text-align: left;
}

.table {
  width: 100%;
  background: #EBE8E3;
  border-collapse: collapse;
}
.table th {
  padding: 25px;
  background: #252424;
  border: 1px solid #000;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}
.table td {
  padding: 20px 25px;
}

@media screen and (max-width : 767px) {
  .table-wrap--responsive {
    overflow-x: auto;
  }
  .table th, .table td {
    padding: 15px 10px;
  }
}
button, input, optgroup, select, textarea {
  margin: 0;
  padding: 0;
  font-family: "TT Hoves Pro", Helvetica, sans-serif;
  font-size: inherit;
  line-height: inherit;
  border: none;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
button {
  padding: 0;
  background: none;
  border: none;
  font: inherit;
  text-transform: inherit;
  line-height: 1;
  text-align: inherit;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: #0D0C0C;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.link-arrow {
  position: relative;
  padding-right: 35px;
  display: inline-block;
  font-weight: 700;
}
.link-arrow svg {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.link-arrow:hover svg {
  -webkit-transform: translate(5px, -50%);
          transform: translate(5px, -50%);
}

.link-arrow--small {
  padding-left: 12px;
  font-size: 14px;
}
.link-arrow--small svg {
  top: 4px;
  width: 6px;
}

.link-arrow--white svg {
  fill: #fff;
}

.link-arrow--left svg {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-left: 0;
  margin-right: 12px;
}
.link-arrow--left:hover svg {
  margin-left: 4px;
  margin-right: 8px;
}

.link-icon {
  position: relative;
  padding-right: 28px;
  display: inline-block;
  white-space: nowrap;
}
.link-icon svg {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.link-icon--hover:hover svg {
  -webkit-transform: translate(5px, -50%);
          transform: translate(5px, -50%);
}

.link-icon--left {
  padding-left: 28px;
  padding-right: 0;
}
.link-icon--left svg {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.link--stroke, .link--stroke--gray, .link-strokes--gray a, .link--stroke--dark, .cms-content a:not(.btn), .link-strokes--dark a, .link--stroke--light, .link-strokes--light a, .link-strokes a,
.link--stroke--hover,
.link--stroke--gray--hover,
.link-strokes--gray--hover a,
.link--stroke--dark--hover,
.link-strokes--dark--hover a,
.link--stroke--light--hover,
.link-strokes--light--hover a,
.link-strokes--hover a {
  background-image: linear-gradient(transparent calc(100% - 1px), #F0532B 2px);
  background-repeat: no-repeat;
  background-position: left;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.link--stroke, .link--stroke--gray, .link-strokes--gray a, .link--stroke--dark, .cms-content a:not(.btn), .link-strokes--dark a, .link--stroke--light, .link-strokes--light a, .link-strokes a,
.link--stroke--hover:hover,
.link--stroke--gray--hover:hover,
.link-strokes--gray--hover a:hover,
.link--stroke--dark--hover:hover,
.link-strokes--dark--hover a:hover,
.link--stroke--light--hover:hover,
.link-strokes--light--hover a:hover,
.link-strokes--hover a:hover {
  background-size: 100% 100%;
}

.link--stroke:hover, .link--stroke--gray:hover, .link-strokes--gray a:hover, .link--stroke--dark:hover, .cms-content a:hover:not(.btn), .link-strokes--dark a:hover, .link--stroke--light:hover, .link-strokes--light a:hover, .link-strokes a:hover,
.link--stroke--hover,
.link--stroke--gray--hover,
.link-strokes--gray--hover a,
.link--stroke--dark--hover,
.link-strokes--dark--hover a,
.link--stroke--light--hover,
.link-strokes--light--hover a,
.link-strokes--hover a {
  background-size: 0% 100%;
}

.hover--link-strokes:hover .link--stroke, .hover--link-strokes:hover .link--stroke--gray, .hover--link-strokes:hover .link-strokes--gray a, .link-strokes--gray .hover--link-strokes:hover a, .hover--link-strokes:hover .link--stroke--dark, .hover--link-strokes:hover .cms-content a:not(.btn), .cms-content .hover--link-strokes:hover a:not(.btn), .hover--link-strokes:hover .link-strokes--dark a, .link-strokes--dark .hover--link-strokes:hover a, .hover--link-strokes:hover .link--stroke--light, .hover--link-strokes:hover .link-strokes--light a, .link-strokes--light .hover--link-strokes:hover a, .hover--link-strokes:hover .link-strokes a, .link-strokes .hover--link-strokes:hover a {
  background-size: 0% 100%;
}

.link--stroke--light, .link-strokes--light a {
  background-image: linear-gradient(transparent calc(100% - 1px), #fff 1px);
}

.link--stroke--light--hover, .link-strokes--light--hover a {
  background-image: linear-gradient(transparent calc(100% - 1px), #fff 1px);
}

.link--stroke--dark, .cms-content a:not(.btn), .link-strokes--dark a {
  background-image: linear-gradient(transparent calc(100% - 1px), #0D0C0C 1px);
}

.link--stroke--dark--hover, .link-strokes--dark--hover a {
  background-image: linear-gradient(transparent calc(100% - 1px), #0D0C0C 1px);
}

.link--stroke--gray, .link-strokes--gray a {
  background-image: linear-gradient(transparent calc(100% - 1px), #8D8C8A 1px);
}

.link--stroke--gray--hover, .link-strokes--gray--hover a {
  background-image: linear-gradient(transparent calc(100% - 1px), #8D8C8A 1px);
}

.btn {
  z-index: 1;
  position: relative;
  padding: 25px 35px;
  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;
  border-radius: 0;
  background: transparent;
  border: 1px solid #0D0C0C;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  -webkit-appearance: none;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn svg {
  margin-left: 10px;
}
.btn:hover, .btn:focus {
  background: #0D0C0C;
  color: #fff;
}

.btn--light {
  border-color: #fff;
  color: #fff;
}
.btn--light:hover, .btn--light:focus {
  background: #fff;
  color: #0D0C0C;
}

.btn--icon-left svg {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-left: 0;
  margin-right: 10px;
}

.btn-amazon {
  padding: 0 10px 5px;
  display: inline-block;
  background: #000;
}
.btn-amazon img {
  width: 125px;
}

.btn-select {
  position: relative;
  display: inline-block;
}
.btn-select label {
  padding: 16px 80px 16px 25px;
  display: block;
  width: 100%;
  border: 1px solid #000;
  text-transform: uppercase;
  cursor: pointer;
}
.btn-select label svg {
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  fill: #F0532B;
}
.btn-select select {
  z-index: 1;
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-appearance: none;
  opacity: 0;
}
.btn-select select:focus {
  min-width: 200px;
}
.btn-select:focus {
  color: #F0532B;
}
.btn-select option {
  color: #5C5D60;
}

.btn-select--light label {
  color: #fff;
}

ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ul.list-facts li:not(:last-child)::after {
  content: "";
  margin: 12px 0;
  display: block;
  height: 1px;
  background: #C8C7C7;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  word-wrap: normal !important;
  clip: rect(0, 0, 0, 0);
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumb__item {
  color: #5C5D60;
  font-size: 12px;
}
.breadcrumb__item:not(.current) {
  margin-right: 8px;
}
.breadcrumb__item:not(.current)::after {
  content: "|";
  margin-left: 8px;
  margin-bottom: 2px;
  display: inline-block;
  vertical-align: middle;
  opacity: 0.4;
}
.breadcrumb__item:not(.current) a:hover {
  text-decoration: underline;
}
.breadcrumb__item.current {
  opacity: 0.4;
}
.breadcrumb__item > * {
  display: inline-block;
  vertical-align: middle;
}
.breadcrumb__item:first-child a {
  margin-bottom: 4px;
}

.cms-content h2, .cms-content h3, .cms-content h4 {
  margin: 50px 0 20px;
  text-transform: uppercase;
}
.cms-content h2 {
  font-size: 24px;
  line-height: 1.3;
}
@media screen and (max-width : 767px) {
  .cms-content h2 {
    font-size: 20px;
  }
}
.cms-content h3 {
  font-size: 18px;
}
.cms-content h4 {
  font-size: 16px;
}
.cms-content img {
  max-width: 100%;
}
.cms-content a:not(.btn) {
  color: inherit;
  font-weight: 700;
}
.cms-content p {
  margin-top: 0;
  margin-bottom: 30px;
}
.cms-content p:last-child {
  margin-bottom: 0;
}
.cms-content p + ul, .cms-content p + ol {
  margin-top: -15px;
}
.cms-content ul {
  margin-bottom: 30px;
}
.cms-content ul li {
  position: relative;
  margin-left: 15px;
  margin-bottom: 5px;
  padding-left: 25px;
}
.cms-content ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.cms-content.list-2-col ul {
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
}
.cms-content.list-enhanced li {
  position: relative;
  margin-left: 10px;
  margin-bottom: 6px;
  padding-left: 30px;
}
.cms-content.list-enhanced li::before {
  z-index: 1;
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: block;
  width: 11px;
  height: 15px;
  background: #fff;
  -webkit-clip-path: polygon(100% 100%, 25% 100%, 25% 75%, 75% 75%, 75% 0, 100% 0);
          clip-path: polygon(100% 100%, 25% 100%, 25% 75%, 75% 75%, 75% 0, 100% 0);
}
.cms-content.list-enhanced li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #F0532B;
}
.cms-content ol {
  list-style: auto;
  margin-bottom: 30px;
  padding-left: 35px;
}
.cms-content ol:last-child {
  margin-bottom: 0;
}
.cms-content ol li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 5px;
}
.cms-content ol p {
  margin-bottom: 10px;
}
.cms-content blockquote {
  margin: 60px 0;
  padding: 5px 0 10px 20px;
  max-width: 780px;
  border-left: 9px solid #000;
  font-size: 40px;
  line-height: 1.3;
  text-transform: uppercase;
}
@media screen and (max-width : 767px) {
  .cms-content blockquote {
    font-size: 26px;
  }
}
.cms-content blockquote footer {
  padding-top: 10px;
  font-family: "TT Hoves Pro", Helvetica, sans-serif;
  font-size: 14px;
  text-transform: initial;
  line-height: 1.4;
}

.cms-content--light {
  color: #fff;
}

@media screen and (max-width : 991px) {
  .cms-content.list-2-col ul {
    -webkit-columns: 1;
       -moz-columns: 1;
            columns: 1;
  }
}
.site-alert {
  visibility: visible;
  max-height: 0;
  background: #252424;
  color: #fff;
  text-align: center;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  overflow: hidden;
}
@media screen and (max-width : 575px) {
  .site-alert {
    text-align: left;
  }
}
.site-alert.inactive {
  visibility: hidden;
}
.site-alert a {
  color: #fff;
}

.site-alert__close {
  position: absolute;
  right: 15px;
  top: 18px;
  width: 30px;
  height: 30px;
}
.site-alert__close::before {
  content: "";
  position: absolute !important;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M8,9.06,1.066,16,0,14.933,6.928,8,0,1.067,1.066,0,8,6.94,14.934,0,16,1.067,9.073,8,16,14.933,14.934,16Z' fill='%23FFFFFF'/%3E%3C/svg%3E") no-repeat center/contain;
}
@media screen and (max-width : 575px) {
  .site-alert__close {
    right: 0;
    top: 15px;
  }
}

.header-reserved-space {
  display: block;
  height: 80px;
  background: #252424;
}

@media screen and (max-width: 1250px) {
  .header-wrap {
    display: none;
  }
}

.header {
  z-index: 90;
  position: relative;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.2s, top 0s;
  transition: all 0.2s, top 0s;
}
.scrolled .header {
  position: fixed;
  top: 0 !important;
}

.header__logo {
  position: relative;
  height: 50px;
}
.header__logo img {
  width: auto;
  height: 100%;
}

.scrolled .header {
  position: fixed;
  top: 0 !important;
}

.header__nav {
  position: absolute;
  left: 20px;
  top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header__nav-item {
  padding: 5px 0;
}

.header__nav-link {
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width : 1599px) {
  .header__nav-link {
    font-size: 18px;
  }
}

.header__nav-item.current-menu-item .header__nav-link, .header__nav-item:hover .header__nav-link {
  color: #F0532B;
}

.menu-panel-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.menu-panel-toggle {
  display: none;
  padding: 10px;
  margin-right: -10px;
}
.menu-panel-toggle svg {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.menu-panel-toggle::before, .menu-panel-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 28px;
  height: 3px;
  background: #0D0C0C;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.menu-panel-active .menu-panel-toggle svg {
  opacity: 0;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.menu-panel-active .menu-panel-toggle::before, .menu-panel-active .menu-panel-toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  opacity: 1;
}
.menu-panel-active .menu-panel-toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width : 991px) {
  .header, .header-reserved-space {
    height: 80px;
    padding: 15px 0 !important;
  }
  .scrolled .header {
    height: 80px;
  }
  .header__nav {
    display: none;
  }
  .menu-panel-toggle {
    display: block;
  }
}
.menu-panel {
  visibility: hidden;
  z-index: 80;
  position: fixed;
  top: 0;
  right: 0;
  padding-top: 80px;
  width: 100%;
  height: 100%;
  text-align: center;
  pointer-events: none;
  overflow: hidden;
  -webkit-transition: visibility 0.5s ease-out;
  transition: visibility 0.5s ease-out;
}
.menu-panel::before {
  z-index: -2;
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #0D0C0C;
  opacity: 0;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.menu-panel::after {
  z-index: -1;
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  max-height: 0;
  background: #252424;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}

.menu-panel__wrap {
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.menu-panel__nav {
  padding-bottom: 100px;
}

.menu-panel__nav-item {
  position: relative;
  padding: 30px 15px;
  border-bottom: 1px solid #000;
}

.menu-panel__nav-link {
  color: #fff;
  font-size: 24px;
  line-height: 1.3;
  text-transform: uppercase;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width : 767px) {
  .menu-panel__nav-link {
    font-size: 20px;
  }
}

.menu-panel-active {
  overflow: hidden;
}
.menu-panel-active .menu-panel-toggle:before, .menu-panel-active .menu-panel-toggle:after {
  background: #fff;
}
.menu-panel-active .menu-panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  overflow-y: auto;
  -webkit-transition: visibility 0.5s ease-out;
  transition: visibility 0.5s ease-out;
}
.menu-panel-active .menu-panel::before {
  opacity: 1;
}
.menu-panel-active .menu-panel::after {
  max-height: 1200px;
}
.menu-panel-active .menu-panel .menu-panel__wrap {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  width: 100%;
  -webkit-transition: 0.5s ease-out 0.2s;
  transition: 0.5s ease-out 0.2s;
}
.menu-panel-active .menu-panel__nav-item a {
  color: #fff;
}

.menu-panel__expand-icon {
  position: relative;
  margin-left: 4px;
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: text-bottom;
}
.menu-panel__expand-icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.menu-panel__subnav {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.menu-panel__nav-item.expanded .menu-panel__expand-icon svg {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}
.menu-panel__nav-item.expanded .menu-panel__subnav {
  opacity: 1;
  margin-top: 25px;
}

.back-to-top {
  z-index: 90;
  position: fixed;
  right: 15px;
  bottom: 20px;
  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;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.back-to-top__icon svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.back-to-top:hover {
  background: #F0532B;
}
.back-to-top:active {
  background: #C1300B;
}
.social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.social-media-icon {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #000;
}
.social-media-icon svg {
  position: absolute !important;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.social-media-icon:hover {
  background: #F0532B;
}

.footer {
  position: relative;
  color: #fff;
}
.footer a {
  color: #fff;
}

.nk-credit {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: inline-block;
  font-size: 16px;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.nk-credit:hover {
  opacity: 0.8;
}
.nk-credit svg {
  -webkit-transform: translate(0, -2px);
          transform: translate(0, -2px);
  margin-left: 4px;
  display: inline-block;
  vertical-align: middle;
  height: 16px;
}

@media screen and (max-width : 991px) {
  .nk-credit {
    position: static;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    margin-top: 10px;
  }
}
.field {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.field label {
  margin-bottom: 10px;
  font-size: 13px;
  text-transform: uppercase;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.field input {
  padding: 15px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  border-radius: 0;
  background: #fff;
  border: 1px solid #C8C7C7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.field input::-webkit-input-placeholder {
  line-height: 50px;
}
.field input::-moz-placeholder {
  line-height: 50px;
}
.field input:-ms-input-placeholder {
  line-height: 50px;
}
.field input::-ms-input-placeholder {
  line-height: 50px;
}
.field input::placeholder {
  line-height: 50px;
}
.field input:required + label::after {
  content: "*";
}
.field input:focus {
  outline: none;
}
.field input:focus:focus {
  border-color: #5C5D60;
}
.field textarea {
  padding: 20px;
  display: block;
  width: 100%;
  min-height: 200px;
  border: 1px solid #C8C7C7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.field textarea:focus {
  outline: none;
  border-color: #5C5D60;
}

.field--icon .field__icon {
  position: absolute;
  top: 10%;
  right: 10px;
  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;
  width: 40px;
  height: 80%;
  background: #fff;
  pointer-events: none;
}

.checkbox {
  position: relative;
}
.checkbox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #C8C7C7;
}
.checkbox input {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.checkbox label {
  padding-left: 30px;
  font-size: 14px;
}
.checkbox label::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 12px;
  height: 12px;
  background: #0D0C0C;
  -webkit-clip-path: polygon(100% 100%, 25% 100%, 25% 75%, 75% 75%, 75% 0, 100% 0);
          clip-path: polygon(100% 100%, 25% 100%, 25% 75%, 75% 75%, 75% 0, 100% 0);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.checkbox input:checked + label::after {
  opacity: 1;
}

.checkboxes {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.checkboxes .label {
  width: 100%;
  font-size: 14px;
  text-transform: uppercase;
}

.field-select {
  position: relative;
  padding-right: 1px;
  margin-bottom: 1px;
  width: 100%;
}
.field-select label {
  padding: 25px 20px;
  display: block;
  width: 100%;
  background: #F0532B;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.field-select label svg {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  fill: #fff;
}
.field-select:hover label {
  background: #C1300B;
}
.field-select select {
  z-index: 1;
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-appearance: none;
  opacity: 0;
}
.field-select select:focus + label {
  border-color: #0D0C0C;
  -webkit-box-shadow: 0 8px 16px rgba(13, 12, 12, 0.1);
          box-shadow: 0 8px 16px rgba(13, 12, 12, 0.1);
}
.field-select select:required + label::after {
  content: "*";
  margin-left: -3px;
}
.field-select option {
  color: #0D0C0C;
}

.field-upload {
  position: relative;
  padding: 25px 20px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px dashed #8D8C8A;
  color: #5C5D60;
  font-size: 12px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.field-upload label {
  display: block;
  max-width: 250px;
}
.field-upload svg {
  margin-bottom: 15px;
}
.field-upload input {
  z-index: 1;
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.field-upload:hover {
  background: rgba(13, 12, 12, 0.04);
}

.field-search {
  position: relative;
  padding: 25px 20px;
  background: #fff;
}
.field-search input {
  padding-right: 30px;
  display: block;
  width: 100%;
  line-height: 1;
}
.field-search button {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.search-bar {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 420px;
  height: 64px;
  border-radius: 50px;
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.search-bar input {
  padding: 5px 40px;
  width: 100%;
  height: 100%;
  background: transparent;
  color: #fff;
}
.search-bar button {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  padding: 10px;
}

.search-bar--light {
  background: #EBE8E3;
}
.search-bar--light input {
  color: #0D0C0C;
}

.main {
  overflow: hidden;
}

.slick-slide {
  outline: none;
}

.slick-arrow {
  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;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(13, 12, 12, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.slick-arrow.slick-arrow--light {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.slick-arrow svg {
  height: 16px;
  fill: #F0532B;
}
.slick-arrow:hover:not(.slick-disabled) {
  background: rgba(13, 12, 12, 0.05);
}
.slick-arrow:hover:not(.slick-disabled).slick-arrow--light {
  background: rgba(255, 255, 255, 0.1);
}
.slick-arrow.slick-disabled {
  cursor: initial;
  opacity: 0;
}

.slick-prev svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.slick-dots li {
  position: relative;
  margin-right: 5px;
  padding: 0;
  display: inline-block;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.slick-dots li button:hover::before {
  background: rgba(0, 0, 0, 0.6);
}
.slick-dots li.slick-active button::before {
  background: #000;
}

.play-button {
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
}
.play-button svg {
  position: absolute !important;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.popup {
  visibility: hidden;
  opacity: 0;
  z-index: 100;
  position: fixed;
  left: 0;
  top: 0;
  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;
  width: 100%;
  height: 100%;
  background: rgba(13, 12, 12, 0.8);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.popup-box {
  z-index: 80;
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
  padding: 25px;
  width: 450px;
  background: #fff;
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.4s 0.1s;
  transition: 0.4s 0.1s;
}

.popup.active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: visibility 0s, opacity 0.4s 0.2s;
  transition: visibility 0s, opacity 0.4s 0.2s;
}
.popup.active .popup-box {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.popup-box__close {
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 10px;
}

@media screen and (max-width : 767px) {
  .popup-box {
    width: 350px;
  }
}
.fancybox__content {
  color: black;
}
.fancybox__content *:focus:not(.carousel__button.is-close) {
  outline: none;
}

.modal-profile-detail-container .fancybox__nav {
  display: none;
}

.modal-profile-detail {
  display: none;
  padding: 110px 60px;
  width: 100%;
  max-width: 1300px;
  background: white;
}
@media screen and (min-width : 768px) {
  .modal-profile-detail {
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #EBE8E3), to(#EBE8E3));
    background-image: linear-gradient(#EBE8E3 0, #EBE8E3 100%);
    background-repeat: no-repeat;
    background-position: left;
    background-size: 22% 100%;
  }
}
@media screen and (max-width : 767px) {
  .modal-profile-detail {
    padding: 40px 30px;
  }
}
.modal-profile-detail .carousel__button.is-close {
  right: 15px;
  top: 15px;
  width: 40px;
  height: 40px;
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.modal-profile-detail .carousel__button.is-close svg {
  width: 24px;
  height: 24px;
}
@media screen and (max-width : 767px) {
  .modal-profile-detail .carousel__button.is-close {
    right: 10px;
    top: 10px;
  }
  .modal-profile-detail .carousel__button.is-close svg {
    width: 18px;
    height: 18px;
  }
}

.modal-profile-detail__layout {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1000px;
}
@media screen and (max-width : 767px) {
  .modal-profile-detail__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.modal-profile-detail__photo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 300px;
}
@media screen and (max-width : 1479px) {
  .modal-profile-detail__photo {
    margin-bottom: 30px;
    width: 200px;
  }
}
@media screen and (min-width : 768px) {
  .modal-profile-detail__text {
    padding-left: 10%;
  }
}

.profile {
  display: block;
}

.profile__photo {
  position: relative;
  margin-bottom: 30px;
  width: 220px;
  height: 230px;
  overflow: hidden;
}
@media screen and (max-width : 767px) {
  .profile__photo {
    margin-bottom: 20px;
    width: 160px;
    height: 160px;
  }
}
.profile__photo:hover img {
  width: 110%;
  height: 110%;
}
.profile__photo img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news {
  display: block;
}

.news__metadata {
  margin-bottom: 10px;
}
.news__metadata::before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F0532B;
}
.news--cat2 .news__metadata::before {
  background: #76BD43;
}

@media screen and (min-width: 1251px) {
  #brands__heading {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */