.to_fade_up {
  visibility: hidden; }
  .to_fade_up.fade_up {
    visibility: visible;
    -ms-animation: fadeUp 2s;
    /* Internet Explorer */
    animation: fadeUp 2s; }

.to_fade_left {
  visibility: hidden; }
  .to_fade_left.fade_left {
    visibility: visible;
    -ms-animation: fadeFromLeft 1s;
    /* Internet Explorer */
    animation: fadeFromLeft 1s; }

.to_fade_right {
  visibility: hidden; }
  .to_fade_right.fade_right {
    visibility: visible;
    -ms-animation: fadeFromRight 1s;
    /* Internet Explorer */
    animation: fadeFromRight 1s; }

.animate_witdh {
  visibility: hidden; }
  .animate_witdh.full-width {
    visibility: visible;
    -ms-animation: fadeFromLeft 1s;
    /* Internet Explorer */
    animation: fadeFromLeft 1s; }

@keyframes fadeUp {
  0% {
    filter: alpha(opacity=0);
    opacity: 0.1;
    transform: translateY(100px); }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    transform: translateY(0); } }

@keyframes fadeFromLeft {
  0% {
    filter: alpha(opacity=0);
    opacity: 0.1;
    transform: translateX(-100%); }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    transform: translateX(0); } }

@keyframes fadeFromRight {
  0% {
    filter: alpha(opacity=0);
    opacity: 0.1;
    transform: translateX(100%); }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    transform: translateX(0); } }

@keyframes fadeFromLeftIcon {
  0% {
    filter: alpha(opacity=0);
    opacity: 0.1;
    transform: translateX(-100%); }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    visibility: visible;
    transform: translateX(0); } }

@keyframes preloaderAnimate {
  0% {
    transform: translateX(-100%); }
  100% {
    transform: translateX(100%); } }

@-webkit-keyframes mover {
  0% {
    transform: translateY(0); }
  100% {
    transform: translateY(-10px); } }

@keyframes mover {
  0% {
    transform: translateY(0); }
  100% {
    transform: translateY(-10px); } }

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

body {
  -webkit-text-size-adjust: 100%;
  color: #a2a2a2;
  background-color: #161616;
  padding: 0;
  margin: 0;
  font-weight: 400; }

ul {
  list-style: none;
  margin: 0px;
  padding: 0px; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 1.2; }

a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: none !important; }

button,
input[type="submit"] {
  transition: 0.25s ease-in-out;
  cursor: pointer; }

address {
  margin: 0px;
  padding: 0px; }

iframe {
  border: 0; }

.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px; }

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

@media (max-width: 768px) {
  .container {
    padding-right: 25px;
    padding-left: 25px; } }

@media (min-width: 576px) {
  .container {
    max-width: 540px; } }

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

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

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

@media (min-width: 1300px) {
  .container {
    max-width: 1286px; } }

.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .container-fluid,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
      max-width: 960px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .container-fluid,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
      max-width: 720px; } }
  @media (min-width: 1400px) {
    .container-fluid,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
      padding-left: 40px;
      padding-right: 40px; } }

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }

.nopadding {
  padding: 0 !important;
  margin: 0 !important; }

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  /*@media (max-width: 767.98px) {
        flex-basis: 100%;
    }*/ }

.col-auto {
  flex: 0 0 auto;
  width: auto; }

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%; }

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%; }

.col-3 {
  flex: 0 0 auto;
  width: 25%; }

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%; }

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%; }

.col-6 {
  flex: 0 0 auto;
  width: 50%; }

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%; }

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%; }

.col-9 {
  flex: 0 0 auto;
  width: 75%; }

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%; }

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%; }

.col-12 {
  flex: 0 0 auto;
  width: 100%; }

@media (min-width: 576px) {
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.333333%; }
  .offset-sm-2 {
    margin-left: 16.666667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.333333%; }
  .offset-sm-5 {
    margin-left: 41.666667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.333333%; }
  .offset-sm-8 {
    margin-left: 66.666667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.333333%; }
  .offset-sm-11 {
    margin-left: 91.666667%; } }

@media (min-width: 768px) {
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.333333%; }
  .offset-md-2 {
    margin-left: 16.666667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.333333%; }
  .offset-md-5 {
    margin-left: 41.666667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.333333%; }
  .offset-md-8 {
    margin-left: 66.666667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.333333%; }
  .offset-md-11 {
    margin-left: 91.666667%; } }

@media (min-width: 992px) {
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.333333%; }
  .offset-lg-2 {
    margin-left: 16.666667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.333333%; }
  .offset-lg-5 {
    margin-left: 41.666667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.333333%; }
  .offset-lg-8 {
    margin-left: 66.666667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.333333%; }
  .offset-lg-11 {
    margin-left: 91.666667%; } }

@media (min-width: 1200px) {
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.333333%; }
  .offset-xl-2 {
    margin-left: 16.666667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.333333%; }
  .offset-xl-5 {
    margin-left: 41.666667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.333333%; }
  .offset-xl-8 {
    margin-left: 66.666667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.333333%; }
  .offset-xl-11 {
    margin-left: 91.666667%; } }

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

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

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

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

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

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

/*===================================
=            Slick Theme            =
===================================*/
/* Slider */
body.compensate-for-scrollbar {
  overflow: hidden; }

.fancybox-active {
  height: auto; }

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden; }

.fancybox-container {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992; }

.fancybox-container * {
  box-sizing: border-box; }

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0; }

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto; }

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71); }

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); }

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997; }

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible; }

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.fancybox-toolbar {
  right: 0;
  top: 0; }

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994; }

.fancybox-is-open .fancybox-stage {
  overflow: hidden; }

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994; }

.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0; }

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block; }

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0; }

.fancybox-slide--image::before {
  display: none; }

.fancybox-slide--html {
  padding: 6px; }

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle; }

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -ms-transform-origin: top left;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995; }

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out; }

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in; }

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab; }

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.fancybox-container [data-selectable="true"] {
  cursor: text; }

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%; }

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

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%; }

.fancybox-slide--video .fancybox-content {
  background: #000; }

.fancybox-slide--map .fancybox-content {
  background: #e5e3df; }

.fancybox-slide--iframe .fancybox-content {
  background: #fff; }

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%; }

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0; }

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%; }

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0; }

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px; }

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc; }

.fancybox-button:hover {
  color: #fff; }

.fancybox-button:focus {
  outline: none; }

.fancybox-button.fancybox-focus {
  outline: 1px dotted; }

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none; }

/* Fix IE11 */
.fancybox-button div {
  height: 100%; }

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%; }

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0; }

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none; }

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none; }

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -ms-transform-origin: 0;
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998; }

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401; }

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1; }

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0; }

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden; }

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none; }

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px; }

.fancybox-navigation .fancybox-button div {
  padding: 7px; }

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px; }

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right); }

/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996; }

@supports (padding: 0px) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left)); } }

.fancybox-caption--separate {
  margin-top: -50px; }

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all; }

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none; }

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline; }

/* Loading indicator */
.fancybox-loading {
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999; }

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg); } }

/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1); }

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0); }

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1; }

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1); }

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg); }

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -ms-transform: rotate(360deg);
  transform: rotate(360deg); }

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -ms-transform: rotate(0deg);
  transform: rotate(0deg); }

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0); }

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg); }

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg); }

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1); }

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px; }
  .fancybox-slide--image {
    padding: 6px 0; }
  .fancybox-close-small {
    right: -6px; }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px; }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px; }
  @supports (padding: 0px) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right)); } } }

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center; }

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0; }

.fancybox-share p {
  margin: 0;
  padding: 0; }

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap; }

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff; }

.fancybox-share__button:hover {
  text-decoration: none; }

.fancybox-share__button--fb {
  background: #3b5998; }

.fancybox-share__button--fb:hover {
  background: #344e86; }

.fancybox-share__button--pt {
  background: #bd081d; }

.fancybox-share__button--pt:hover {
  background: #aa0719; }

.fancybox-share__button--tw {
  background: #1da1f2; }

.fancybox-share__button--tw:hover {
  background: #0d95e8; }

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px; }

.fancybox-share__button svg path {
  fill: #fff; }

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%; }

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995; }

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden; }

.fancybox-show-thumbs .fancybox-thumbs {
  display: block; }

.fancybox-show-thumbs .fancybox-inner {
  right: 212px; }

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%; }

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden; }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px; }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px; }

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px; }

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991; }

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5; }

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1; }

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px; }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px; }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px); } }

/*! jQuery UI - v1.11.4 - 2015-03-11
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, draggable.css, menu.css, progressbar.css, resizable.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */
.ui-helper-hidden {
  display: none; }

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

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

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

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

.ui-helper-clearfix {
  min-height: 0; }

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

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

.ui-state-disabled {
  cursor: default !important; }

.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat; }

.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: 0.5em 0.5em 0.5em 0.7em;
  min-height: 0;
  font-size: 100%; }

.ui-accordion .ui-accordion-icons {
  padding-left: 2.2em; }

.ui-accordion .ui-accordion-icons .ui-accordion-icons {
  padding-left: 2.2em; }

.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
  position: absolute;
  left: 0.5em;
  top: 50%;
  margin-top: -8px; }

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto; }

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default; }

.ui-button {
  display: inline-block;
  position: relative;
  padding: 0;
  line-height: normal;
  margin-right: 0.1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  overflow: visible; }

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none; }

.ui-button-icon-only {
  width: 2.2em; }

button.ui-button-icon-only {
  width: 2.4em; }

.ui-button-icons-only {
  width: 3.4em; }

button.ui-button-icons-only {
  width: 3.7em; }

.ui-button .ui-button-text {
  display: block;
  line-height: normal; }

.ui-button-text-only .ui-button-text {
  padding: 0.4em 1em; }

.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
  padding: 0.4em;
  text-indent: -9999999px; }

.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: 0.4em 1em 0.4em 2.1em; }

.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: 0.4em 2.1em 0.4em 1em; }

.ui-button-text-icons .ui-button-text {
  padding-left: 2.1em;
  padding-right: 2.1em; }

input.ui-button {
  padding: 0.4em 1em; }

.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
  position: absolute;
  top: 50%;
  margin-top: -8px; }

.ui-button-icon-only .ui-icon {
  left: 50%;
  margin-left: -8px; }

.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
  left: 0.5em; }

.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
  right: 0.5em; }

.ui-buttonset {
  margin-right: 7px; }

.ui-buttonset .ui-button {
  margin-left: 0;
  margin-right: -0.3em; }

input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0; }

.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none; }

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0; }

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em; }

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px; }

.ui-datepicker .ui-datepicker-prev {
  left: 2px; }

.ui-datepicker .ui-datepicker-next {
  right: 2px; }

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px; }

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px; }

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px; }

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center; }

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0; }

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%; }

.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em; }

.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0; }

.ui-datepicker td {
  border: 0;
  padding: 1px; }

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none; }

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0; }

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible; }

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left; }

.ui-datepicker.ui-datepicker-multi {
  width: auto; }

.ui-datepicker-multi .ui-datepicker-group {
  float: left; }

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em; }

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%; }

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%; }

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%; }

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0; }

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left; }

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0; }

.ui-datepicker-rtl {
  direction: rtl; }

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto; }

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto; }

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto; }

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto; }

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right; }

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left; }

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right; }

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px; }

.ui-dialog {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2em;
  outline: 0; }

.ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative; }

.ui-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis; }

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px; }

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: none;
  overflow: auto; }

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: 0.5em;
  padding: 0.3em 1em 0.5em 0.4em; }

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right; }

.ui-dialog .ui-dialog-buttonpane button {
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer; }

.ui-dialog .ui-resizable-se {
  width: 12px;
  height: 12px;
  right: -5px;
  bottom: -5px;
  background-position: 16px 16px; }

.ui-draggable .ui-dialog-titlebar {
  cursor: move; }

.ui-draggable-handle {
  -ms-touch-action: none;
  touch-action: none; }

.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: none; }

.ui-menu .ui-menu {
  position: absolute; }

.ui-menu .ui-menu-item {
  position: relative;
  margin: 0;
  padding: 7px 13px;
  cursor: pointer;
  min-height: 0;
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"); }

.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0; }

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px; }

.ui-menu-icons {
  position: relative; }

.ui-menu-icons .ui-menu-item {
  padding-left: 2em; }

.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.2em;
  margin: auto 0; }

.ui-menu .ui-menu-icon {
  left: auto;
  right: 0; }

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden; }

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%; }

.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  filter: alpha(opacity=25);
  opacity: 0.25; }

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none; }

.ui-resizable {
  position: relative; }

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none; }

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none; }

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0; }

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0; }

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%; }

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%; }

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px; }

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px; }

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px; }

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px; }

.ui-selectable {
  -ms-touch-action: none;
  touch-action: none; }

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black; }

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none; }

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px; }

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0; }

.ui-selectmenu-open {
  display: block; }

.ui-selectmenu-button {
  display: inline-block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  cursor: pointer; }

.ui-selectmenu-button span.ui-icon {
  right: 0.5em;
  left: auto;
  margin-top: -8px;
  position: absolute;
  top: 50%; }

.ui-selectmenu-button span.ui-selectmenu-text {
  text-align: left;
  padding: 0.4em 2.1em 0.4em 1em;
  display: block;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

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

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

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

.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit; }

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

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

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

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

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

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

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

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

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

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

.ui-sortable-handle {
  -ms-touch-action: none;
  touch-action: none; }

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle; }

.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: 0;
  margin: 0.2em 0;
  vertical-align: middle;
  margin-left: 0.4em;
  margin-right: 22px; }

.ui-spinner-button {
  width: 16px;
  height: 50%;
  font-size: 0.5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0; }

.ui-spinner a.ui-spinner-button {
  border-top: none;
  border-bottom: none;
  border-right: none; }

.ui-spinner .ui-icon {
  position: absolute;
  margin-top: -8px;
  top: 50%;
  left: 0; }

.ui-spinner-up {
  top: 0; }

.ui-spinner-down {
  bottom: 0; }

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

.ui-tabs {
  position: relative;
  padding: 0.2em; }

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: 0.2em 0.2em 0; }

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px 0.2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap; }

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: 0.5em 1em;
  text-decoration: none; }

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px; }

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text; }

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer; }

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none; }

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
  -webkit-box-shadow: 0 0 5px #aaa;
  box-shadow: 0 0 5px #aaa; }

body .ui-tooltip {
  border-width: 2px; }

.ui-widget {
  font-family: Verdana, Arial, sans-serif;
  font-size: 1.1em; }

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

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

.ui-widget-content {
  border: 1px solid #E6E6E6;
  background: #fff;
  color: #0F0F0F; }

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

.ui-widget-header {
  border: 1px solid #aaa;
  background: #ccc url("images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;
  color: #222;
  font-weight: bold; }

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

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 1px solid #d3d3d3;
  background: #e6e6e6 url("images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;
  font-weight: normal;
  color: #555; }

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

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  background: #BD0101;
  font-weight: normal;
  color: #fff; }

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

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border: 1px solid #aaa;
  background: #fff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;
  font-weight: normal;
  color: #212121; }

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

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #fcefa1;
  background: #fbf9ee url("images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;
  color: #363636; }

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

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #cd0a0a;
  background: #fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
  color: #cd0a0a; }

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

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

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

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

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

.ui-state-disabled.ui-menu-item {
  display: none; }

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35); }

.ui-icon {
  width: 16px;
  height: 16px; }

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

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

.ui-state-default .ui-icon {
  background-image: url("images/ui-icons_888888_256x240.png"); }

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

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

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

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

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

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

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

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

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

.ui-icon-carat-1-s {
  background-position: -64px 0; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 4px; }

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

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

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

.ui-widget-overlay {
  background: #aaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;
  opacity: 0.3;
  filter: Alpha(Opacity=30); }

.ui-widget-shadow {
  margin: -8px 0 0 -8px;
  padding: 8px;
  background: #aaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;
  opacity: 0.3;
  filter: Alpha(Opacity=30);
  border-radius: 8px; }

#ui-datepicker-div {
  border: 1px solid #ddd;
  border-radius: 0px; }

.ui-widget-header {
  background: #BD0101;
  border-radius: 0px; }
  .ui-widget-header select {
    font-size: 14px !important;
    padding: 5px;
    border: none; }

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 0px solid #BD0101 !important;
  background: transparent !important;
  font-weight: normal;
  color: #BD0101 !important; }
  .ui-state-default.ui-state-active, .ui-state-default:hover,
  .ui-widget-content .ui-state-default.ui-state-active,
  .ui-widget-content .ui-state-default:hover,
  .ui-widget-header .ui-state-default.ui-state-active,
  .ui-widget-header .ui-state-default:hover {
    background-color: #BD0101 !important;
    color: #fff !important; }

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

.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
  display: none; }

.hide-scroll {
  overflow: hidden; }

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: -110px auto 0;
  transition: all 0.85s ease;
  padding: 0px 0;
  overflow: hidden; }
  @media only screen and (min-width: 1200px) {
    .header {
      padding: 5px 0; } }
  .header.scroll-up {
    top: -110px; }
  .header.scroll-down {
    top: 0px; }
  .header.on-scroll {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    color: #23232c;
    background-color: #0009;
    backdrop-filter: blur(10px); }
  .header.menu-active {
    top: 0px !important; }
    .header.menu-active .navbar .burger-wrapper svg .svg g:nth-of-type(1) g {
      transform: rotatez(-138deg) translate(695PX, 267PX);
      transform-origin: center;
      transition: all ease-in-out 0.5s; }
    .header.menu-active .navbar .burger-wrapper svg .svg g:nth-of-type(2) g {
      transform: rotatez(-42deg) translate(277PX, 54PX);
      transform-origin: center;
      transition: all ease-in-out 0.5s; }
    .header.menu-active .navbar .burger-wrapper svg .svg g:nth-of-type(3) g {
      transform: rotatez(-43deg) translate(242PX, -293PX);
      transform-origin: center;
      transition: all ease-in-out 0.5s; }
    .header.menu-active .navbar .burger-wrapper svg g path {
      stroke: #000000;
      transition: all ease-in-out 0.5s; }
    .header.menu-active .navbar .menu-link {
      border-color: #000000; }
      .header.menu-active .navbar .menu-link span {
        color: #000000; }
  .header .navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between !important;
    column-gap: 1rem;
    width: 100%;
    margin: 0 auto; }
    @media only screen and (max-width: 991.98px) {
      .header .navbar {
        margin: 10px auto;
        column-gap: 0.7rem; } }
    .header .navbar .burger-wrapper {
      cursor: pointer;
      position: relative;
      height: auto;
      width: 116px; }
      @media only screen and (max-width: 991.98px) {
        .header .navbar .burger-wrapper {
          width: 92px; } }
      .header .navbar .burger-wrapper.active svg g {
        stroke: #ffffff; }
      .header .navbar .burger-wrapper:hover svg path,
      .header .navbar .burger-wrapper:hover svg line {
        stroke: #BD0101;
        transition: all ease-in-out 0.5s; }
      .header .navbar .burger-wrapper svg {
        width: 40px;
        height: auto;
        display: block; }
        .header .navbar .burger-wrapper svg .svg g g {
          transition: all ease-in-out 0.5s; }
    .header .navbar .logo {
      z-index: 10;
      position: relative; }
      .header .navbar .logo img {
        width: auto;
        max-height: 85px; }
        @media only screen and (max-width: 991.98px) {
          .header .navbar .logo img {
            max-height: 60px; } }
    .header .navbar .menu-link {
      border-bottom: 1px solid #ffffff;
      padding: 0 10px;
      text-decoration: none; }
      @media only screen and (max-width: 991.98px) {
        .header .navbar .menu-link {
          padding: 0 5px; } }
      .header .navbar .menu-link:hover {
        border-color: #BD0101;
        transition: all ease-in-out 0.5s; }
        .header .navbar .menu-link:hover span {
          color: #BD0101;
          transition: all ease-in-out 0.5s; }
      .header .navbar .menu-link span {
        text-align: center;
        font: normal normal 600 13px/23px "Playfair Display", serif;
        letter-spacing: 1.56px;
        color: #FFFFFF;
        opacity: 1; }
        @media only screen and (max-width: 991.98px) {
          .header .navbar .menu-link span {
            font-size: 11px; } }

.social-links {
  position: fixed;
  bottom: 75px;
  right: 40px;
  transform: rotate(90deg);
  transform-origin: bottom right;
  z-index: 10; }
  @media only screen and (min-width: 992px) {
    .social-links {
      right: 6vh;
      transition: all ease-in-out 0.5s; } }
  .social-links ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px; }
    .social-links ul li svg circle {
      fill: #ffffff; }
    .social-links ul li a {
      text-align: center;
      font: normal normal 400 18px/24px "Playfair Display", serif;
      letter-spacing: 2.34px;
      color: #fff;
      opacity: 1;
      text-decoration: none;
      transition: all ease-in-out 0.5s; }
      .social-links ul li a:hover {
        color: #BD0101;
        transition: all ease-in-out 0.5s; }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        .social-links ul li a {
          font-size: 16px;
          line-height: 20px; } }
      @media only screen and (max-width: 991.98px) {
        .social-links ul li a {
          font-size: 12px;
          line-height: 18px; } }
    .social-links ul li:last-of-type {
      display: none; }

#footer {
  background-color: #0F0F0F;
  padding: 90px 0 25px; }
  #footer .main-info {
    max-width: 260px;
    margin: 0 0 60px;
    text-align: left; }
    @media only screen and (min-width: 1200px) {
      #footer .main-info {
        margin: 0 0 0px; } }
    #footer .main-info #logo {
      display: block; }
      #footer .main-info #logo img {
        max-width: 132px;
        margin: 0 0 20px 0; }
    #footer .main-info .info {
      color: #fff;
      font-family: "Playfair Display", serif;
      font-size: 15px;
      line-height: 24px;
      margin: 0;
      text-align: left; }
      @media only screen and (min-width: 1200px) {
        #footer .main-info .info {
          margin: 0 0 0px; } }
  #footer .footer-main .top {
    display: flex;
    flex-direction: column-reverse; }
    @media only screen and (min-width: 1200px) {
      #footer .footer-main .top {
        flex-direction: column; } }
    #footer .footer-main .top .col-12 {
      margin-top: 60px; }
      @media only screen and (min-width: 992px) {
        #footer .footer-main .top .col-12 {
          margin-top: 0px; } }
    #footer .footer-main .top .col-wrapper .content {
      margin-top: 0px; }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        #footer .footer-main .top .col-wrapper .content {
          max-width: 50%;
          margin: 0px 0 0; } }
      @media only screen and (max-width: 767.98px) {
        #footer .footer-main .top .col-wrapper .content {
          max-width: 80%;
          margin: 0px 0 0; } }
      #footer .footer-main .top .col-wrapper .content .links li {
        margin: 8px 0; }
        #footer .footer-main .top .col-wrapper .content .links li a {
          width: max-content;
          text-decoration: none;
          max-width: 100%;
          position: relative;
          overflow: hidden;
          padding-bottom: 0.2em;
          margin: 0 0 -0.2em;
          display: block; }
          @media only screen and (max-width: 991.98px) {
            #footer .footer-main .top .col-wrapper .content .links li a {
              font-size: 16px;
              line-height: 22px; } }
          #footer .footer-main .top .col-wrapper .content .links li a span {
            transition: transform 1.05s cubic-bezier(0.3, 0.86, 0.36, 0.95);
            will-change: transform;
            position: relative;
            display: block;
            text-align: left;
            font: normal normal 400 20px/29px "Playfair Display", serif;
            letter-spacing: 0.4px;
            color: #fff;
            opacity: 1; }
          @media only screen and (min-width: 1200px) {
            #footer .footer-main .top .col-wrapper .content .links li a {
              margin: 0 0 -0.2em; } }
          #footer .footer-main .top .col-wrapper .content .links li a:after {
            transition: transform 1.05s cubic-bezier(0.3, 0.86, 0.36, 0.95);
            will-change: transform;
            content: attr(data-title);
            position: absolute;
            transform: translate(-50%, 110%);
            left: 50%;
            top: 0;
            color: currentColor;
            text-align: left;
            width: 100%;
            text-align: left;
            font: normal normal 400 20px/29px "Playfair Display", serif;
            letter-spacing: 0.4px;
            opacity: 1; }
          #footer .footer-main .top .col-wrapper .content .links li a:hover {
            color: #BD0101;
            opacity: 0.8; }
            #footer .footer-main .top .col-wrapper .content .links li a:hover span {
              transform: translateY(-125%); }
            #footer .footer-main .top .col-wrapper .content .links li a:hover:after {
              transform: translate(-50%, 0%); }
      #footer .footer-main .top .col-wrapper .content p {
        text-align: left;
        font: normal normal 400 20px/29px "Playfair Display", serif;
        letter-spacing: 0.4px;
        color: #fff;
        opacity: 1;
        margin: 50px 0 0 0; }
        @media only screen and (max-width: 991.98px) {
          #footer .footer-main .top .col-wrapper .content p {
            font-size: 16px;
            line-height: 22px; } }
  #footer .footer-main .copyright {
    color: #0f7581;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    text-align: left;
    font-size: 12px;
    line-height: 15px;
    margin: 60px 0 0; }
    @media only screen and (min-width: 1200px) {
      #footer .footer-main .copyright {
        margin: 60px 0 0 0px; } }
  #footer .bottom-footer {
    margin: 160px auto 0; }
    @media only screen and (max-width: 991.98px) {
      #footer .bottom-footer {
        margin: 70px auto 0; } }
    #footer .bottom-footer .scroll-to-top {
      cursor: pointer;
      text-align: left;
      font: normal normal 400 28px/38px "Playfair Display", serif;
      letter-spacing: 0.4px;
      color: #fff;
      opacity: 1; }
    #footer .bottom-footer .link,
    #footer .bottom-footer .copyright,
    #footer .bottom-footer .powered {
      text-align: left;
      font: normal normal 400 15px/38px "Playfair Display", serif;
      letter-spacing: 0.64px;
      color: #fff;
      opacity: 1;
      text-decoration: none; }
      @media only screen and (max-width: 991.98px) {
        #footer .bottom-footer .link,
        #footer .bottom-footer .copyright,
        #footer .bottom-footer .powered {
          font-size: 13px;
          line-height: 25px; } }
      #footer .bottom-footer .link a,
      #footer .bottom-footer .copyright a,
      #footer .bottom-footer .powered a {
        color: inherit;
        line-height: inherit;
        font-size: inherit;
        font-family: inherit;
        text-decoration: underline; }

@media only screen and (min-width: 992px) {
  .hide-scroll .social-links {
    right: 15vh !important;
    transition: all ease-in-out 0.5s; } }

.hide-scroll .menu {
  transform: translateX(0%);
  transition: all ease-in-out 0.99s; }

.hide-scroll .header {
  top: 0px !important;
  background: transparent !important;
  backdrop-filter: blur(0px) !important;
  box-shadow: none !important; }

.hide-scroll .social-links ul li a {
  color: #000000; }

.hide-scroll .social-links ul li svg circle {
  fill: #000000; }

.menu {
  background: #E3DAC6;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  height: var(--doc-height);
  width: 100vw;
  z-index: 3;
  overflow: auto;
  transform: translateX(-100%);
  transition: all ease-in-out 0.99s; }
  .menu .container {
    flex-direction: column;
    padding-top: 170px;
    padding-bottom: 112px;
    display: flex;
    overflow: hidden; }
    .menu .container .links {
      display: flex;
      flex-direction: column;
      gap: 15px; }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        .menu .container .links {
          gap: 40px; } }
      @media only screen and (max-width: 767.98px) {
        .menu .container .links {
          gap: 30px; } }
      .menu .container .links li a {
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 40px;
        text-decoration: none; }
        @media only screen and (min-width: 768px) and (max-width: 991.98px) {
          .menu .container .links li a {
            gap: 30px; } }
        @media only screen and (max-width: 767.98px) {
          .menu .container .links li a {
            gap: 20px; } }
        .menu .container .links li a span {
          text-align: center;
          font: normal normal 400 26px/26px "Playfair Display", serif;
          letter-spacing: 0.52px;
          color: #000000;
          opacity: 1;
          transition: all ease-in-out 0.5s; }
          @media only screen and (min-width: 768px) and (max-width: 991.98px) {
            .menu .container .links li a span {
              font-size: 22px;
              line-height: 22px; } }
          @media only screen and (max-width: 767.98px) {
            .menu .container .links li a span {
              font-size: 20px;
              line-height: 20px; } }
        .menu .container .links li a p {
          text-align: left;
          font: normal normal 400 70px/104px "Playfair Display", serif;
          letter-spacing: 4.2px;
          color: #010101;
          transition: all ease-in-out 0.5s;
          position: relative;
          z-index: 9; }
          @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
            .menu .container .links li a p {
              font-size: 36px;
              line-height: 36px; } }
          @media only screen and (min-width: 768px) and (max-width: 991.98px) {
            .menu .container .links li a p {
              font-size: 32px;
              line-height: 32px; } }
          @media only screen and (max-width: 767.98px) {
            .menu .container .links li a p {
              font-size: 28px;
              line-height: 28px; } }
        .menu .container .links li a .img-hover {
          width: 385px;
          height: 565px;
          position: absolute;
          top: 0;
          left: 0;
          background-size: cover;
          background-repeat: no-repeat;
          background-position-x: 75%;
          opacity: 0;
          -webkit-transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
          transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
          transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
          transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
          margin: -200px 0 0 -150px;
          overflow: hidden;
          pointer-events: none; }
          @media only screen and (max-width: 991.98px) {
            .menu .container .links li a .img-hover {
              display: none; } }
        .menu .container .links li a:hover .img-hover {
          opacity: 1; }
        .menu .container .links li a:hover p {
          color: #DF6808;
          transition: all ease-in-out 0.5s; }

#popUp-card {
  position: fixed;
  width: 100%;
  text-align: center;
  z-index: 1000;
  padding: 0;
  transform: translateX(150%);
  transition: all ease-in-out 0.5s;
  background-color: #1B1B1B;
  box-shadow: -1.93px 7px 35px #00000087; }
  @media only screen and (min-width: 992px) {
    #popUp-card {
      width: 790px;
      right: 65px;
      bottom: 45px;
      max-width: calc(100% - 90px); } }
  @media only screen and (max-width: 991.98px) {
    #popUp-card {
      width: 500px;
      right: calc(50% - 250px);
      bottom: 50px;
      max-height: calc(var(--doc-height) - 40px);
      overflow: auto; } }
  @media only screen and (max-width: 767.98px) {
    #popUp-card {
      width: 320px;
      right: calc(50% - 160px);
      bottom: 10px;
      max-height: calc(var(--doc-height) - 20px);
      overflow: auto; } }
  #popUp-card.popUp-card-active {
    transform: translateX(0%);
    transition: all ease-in-out 0.5s; }
  #popUp-card-close {
    position: absolute;
    right: 17px;
    top: 17px;
    cursor: pointer;
    background-color: #404040;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2; }
    @media only screen and (max-width: 767.98px) {
      #popUp-card-close {
        right: 11px;
        top: 11px;
        z-index: 99; } }
  #popUp-card .container-fluid {
    padding: 0; }
    #popUp-card .container-fluid .row {
      margin: 0; }
      #popUp-card .container-fluid .row div[class^='col-'] {
        padding: 0; }
        #popUp-card .container-fluid .row div[class^='col-'] .image-box-item {
          width: 100%;
          height: 100%;
          display: block;
          object-fit: contain;
          object-fit: cover;
          margin: 0 !important; }
          @media only screen and (max-width: 767.98px) {
            #popUp-card .container-fluid .row div[class^='col-'] .image-box-item {
              max-width: 350px;
              object-fit: contain; } }
        #popUp-card .container-fluid .row div[class^='col-'] .content-wrapper {
          height: 100%;
          display: flex;
          flex-direction: column;
          align-items: left;
          gap: 30px; }
          @media only screen and (min-width: 768px) {
            #popUp-card .container-fluid .row div[class^='col-'] .content-wrapper {
              padding: 30px 40px; } }
          @media only screen and (max-width: 767.98px) {
            #popUp-card .container-fluid .row div[class^='col-'] .content-wrapper {
              padding: 20px;
              gap: 15px; } }
          #popUp-card .container-fluid .row div[class^='col-'] .content-wrapper .title {
            text-align: center;
            font: italic normal normal 35px/56px "Playfair Display", serif;
            letter-spacing: 0px;
            color: #ffffff;
            opacity: 1; }
            @media only screen and (min-width: 1551px) {
              #popUp-card .container-fluid .row div[class^='col-'] .content-wrapper .title {
                font-size: 32px;
                line-height: 40px; } }
            @media only screen and (min-width: 1200px) and (max-width: 1550px) {
              #popUp-card .container-fluid .row div[class^='col-'] .content-wrapper .title {
                font-size: 28px;
                line-height: 35px; } }
            @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
              #popUp-card .container-fluid .row div[class^='col-'] .content-wrapper .title {
                font-size: 24px;
                line-height: 34px; } }
            @media only screen and (max-width: 991.98px) {
              #popUp-card .container-fluid .row div[class^='col-'] .content-wrapper .title {
                font-size: 22px;
                line-height: 29px; } }
          #popUp-card .container-fluid .row div[class^='col-'] .content-wrapper .paragraph {
            font: normal normal normal 14px/24px "Playfair Display", serif;
            letter-spacing: 0px;
            text-align: center;
            color: #ffffff;
            opacity: 1; }
          #popUp-card .container-fluid .row div[class^='col-'] .content-wrapper .btn-wrapper .single-button .global-url {
            max-width: 100%;
            text-align: left;
            font: normal normal normal 22px/76px "Playfair Display", serif;
            letter-spacing: 0.55px;
            color: #fff;
            text-transform: uppercase;
            opacity: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            width: max-content;
            position: relative;
            overflow: hidden;
            margin: auto; }
            @media only screen and (min-width: 1551px) {
              #popUp-card .container-fluid .row div[class^='col-'] .content-wrapper .btn-wrapper .single-button .global-url {
                font-size: 16px;
                line-height: 48px;
                height: 48px; } }
            @media only screen and (min-width: 1200px) and (max-width: 1550px) {
              #popUp-card .container-fluid .row div[class^='col-'] .content-wrapper .btn-wrapper .single-button .global-url {
                font-size: 15px;
                line-height: 48px;
                height: 48px; } }
            @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
              #popUp-card .container-fluid .row div[class^='col-'] .content-wrapper .btn-wrapper .single-button .global-url {
                font-size: 15px;
                line-height: 46px;
                height: 46px; } }
            @media only screen and (min-width: 768px) and (max-width: 991.98px) {
              #popUp-card .container-fluid .row div[class^='col-'] .content-wrapper .btn-wrapper .single-button .global-url {
                font-size: 14px;
                line-height: 44px;
                height: 44px; } }
            @media only screen and (max-width: 767.98px) {
              #popUp-card .container-fluid .row div[class^='col-'] .content-wrapper .btn-wrapper .single-button .global-url {
                font-size: 14px;
                line-height: 42px;
                height: 42px;
                margin: 0; } }
            #popUp-card .container-fluid .row div[class^='col-'] .content-wrapper .btn-wrapper .single-button .global-url:after {
              content: "";
              position: absolute;
              bottom: 0;
              left: 0px;
              width: 50%;
              text-align: center;
              background-color: #BD0101;
              height: 1.5px;
              transition: transform 1.05s cubic-bezier(0.3, 0.86, 0.36, 0.95);
              will-change: transform;
              transition: all ease-in-out 0.5s; }
            #popUp-card .container-fluid .row div[class^='col-'] .content-wrapper .btn-wrapper .single-button .global-url.active, #popUp-card .container-fluid .row div[class^='col-'] .content-wrapper .btn-wrapper .single-button .global-url:hover {
              transition: all ease-in-out 0.5s; }
              #popUp-card .container-fluid .row div[class^='col-'] .content-wrapper .btn-wrapper .single-button .global-url.active:after, #popUp-card .container-fluid .row div[class^='col-'] .content-wrapper .btn-wrapper .single-button .global-url:hover:after {
                opacity: 1;
                width: 100%;
                transition: all ease-in-out 0.5s; }

* {
  margin: 0; }

:root {
  --doc-height: 100%; }

.normal-section {
  margin-left: auto;
  margin-right: auto;
  max-width: 70%; }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .normal-section {
      max-width: 85%; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .normal-section {
      max-width: 100%; } }
  @media only screen and (max-width: 767.98px) {
    .normal-section {
      max-width: 100%; } }
  .normal-section .container {
    overflow: hidden; }
  .normal-section .section-header {
    margin: 30px auto 0px;
    position: relative; }
    .normal-section .section-header .title {
      color: #0F0F0F;
      font-family: "Playfair Display", serif;
      text-align: left;
      line-height: 32px;
      font-weight: 400; }
      @media only screen and (min-width: 1551px) {
        .normal-section .section-header .title {
          font-size: 32px; } }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        .normal-section .section-header .title {
          font-size: 28px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        .normal-section .section-header .title {
          font-size: 24px; } }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        .normal-section .section-header .title {
          font-size: 22px;
          text-align: center; } }
      @media only screen and (max-width: 767.98px) {
        .normal-section .section-header .title {
          text-align: center;
          font-size: 22px; } }
    .normal-section .section-header .description {
      color: #0F0F0F;
      font-family: "Playfair Display", serif;
      text-align: left;
      margin: 10px 0 0;
      font-weight: 400; }
      @media only screen and (min-width: 1551px) {
        .normal-section .section-header .description {
          font-size: 18px;
          line-height: 22px; } }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        .normal-section .section-header .description {
          font-size: 17px;
          line-height: 21px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        .normal-section .section-header .description {
          font-size: 16px;
          line-height: 20px; } }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        .normal-section .section-header .description {
          font-size: 15px;
          line-height: 19px;
          max-width: 80%;
          margin: 10px auto 0;
          text-align: center; } }
      @media only screen and (max-width: 767.98px) {
        .normal-section .section-header .description {
          text-align: center;
          font-size: 14px;
          line-height: 18px;
          max-width: 260px;
          margin: 10px auto 0; } }
    .normal-section .section-header .icon-wrapper {
      position: absolute;
      right: 0;
      top: 20px;
      background-color: white; }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        .normal-section .section-header .icon-wrapper {
          display: none; } }
      @media only screen and (max-width: 767.98px) {
        .normal-section .section-header .icon-wrapper {
          display: none; } }
      .normal-section .section-header .icon-wrapper .icon {
        width: max-content; }
        .normal-section .section-header .icon-wrapper .icon.show-icon svg path:nth-of-type(1) {
          -ms-animation: fadeFromRight 1s;
          /* Internet Explorer */
          animation: fadeFromRight 1s;
          animation-fill-mode: forwards;
          animation-delay: 0.2s; }
        .normal-section .section-header .icon-wrapper .icon.show-icon svg path:nth-of-type(2) {
          -ms-animation: fadeFromRight 1s;
          /* Internet Explorer */
          animation: fadeFromRight 1s;
          animation-fill-mode: forwards;
          animation-delay: 0.4s; }
        .normal-section .section-header .icon-wrapper .icon.show-icon svg path:nth-of-type(3) {
          -ms-animation: fadeFromRight 1s;
          /* Internet Explorer */
          animation: fadeFromRight 1s;
          animation-fill-mode: forwards;
          animation-delay: 0.6s; }
        .normal-section .section-header .icon-wrapper .icon.show-icon svg path:nth-of-type(4) {
          -ms-animation: fadeFromRight 1s;
          /* Internet Explorer */
          animation: fadeFromRight 1s;
          animation-fill-mode: forwards;
          animation-delay: 0.8s; }
        .normal-section .section-header .icon-wrapper .icon.show-icon svg path:nth-of-type(5) {
          -ms-animation: fadeFromRight 1s;
          /* Internet Explorer */
          animation: fadeFromRight 1s;
          animation-fill-mode: forwards;
          animation-delay: 1s; }
        .normal-section .section-header .icon-wrapper .icon svg {
          max-width: 100%; }
          .normal-section .section-header .icon-wrapper .icon svg path {
            opacity: 0; }
  @media only screen and (min-width: 1551px) {
    .normal-section .section-body {
      margin: 60px auto; } }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    .normal-section .section-body {
      margin: 50px auto; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .normal-section .section-body {
      margin: 45px auto; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .normal-section .section-body {
      margin: 40px auto; } }
  @media only screen and (max-width: 767.98px) {
    .normal-section .section-body {
      margin: 35px auto; } }
  .normal-section .section-bottom .global-btn {
    text-align: left;
    font: normal normal normal 22px/76px "Playfair Display", serif;
    letter-spacing: 0.55px;
    color: #fff;
    text-transform: uppercase;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: max-content;
    position: relative;
    overflow: hidden; }
    @media only screen and (min-width: 1551px) {
      .normal-section .section-bottom .global-btn {
        font-size: 16px;
        line-height: 48px;
        height: 48px; } }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      .normal-section .section-bottom .global-btn {
        font-size: 15px;
        line-height: 48px;
        height: 48px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      .normal-section .section-bottom .global-btn {
        font-size: 15px;
        line-height: 46px;
        height: 46px; } }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      .normal-section .section-bottom .global-btn {
        font-size: 14px;
        line-height: 44px;
        height: 44px; } }
    @media only screen and (max-width: 767.98px) {
      .normal-section .section-bottom .global-btn {
        font-size: 14px;
        line-height: 42px;
        height: 42px;
        margin: 0; } }
    .normal-section .section-bottom .global-btn:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0px;
      width: 50%;
      text-align: center;
      background-color: #BD0101;
      height: 1.5px;
      transition: transform 1.05s cubic-bezier(0.3, 0.86, 0.36, 0.95);
      will-change: transform;
      transition: all ease-in-out 0.5s; }
    .normal-section .section-bottom .global-btn.active, .normal-section .section-bottom .global-btn:hover {
      transition: all ease-in-out 0.5s; }
      .normal-section .section-bottom .global-btn.active:after, .normal-section .section-bottom .global-btn:hover:after {
        opacity: 1;
        width: 100%;
        transition: all ease-in-out 0.5s; }
  .normal-section .border {
    width: 100%;
    background-color: #707070;
    height: 1px;
    margin-top: 120px; }
    @media only screen and (min-width: 1551px) {
      .normal-section .border {
        margin-top: 120px; } }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      .normal-section .border {
        margin-top: 105px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      .normal-section .border {
        margin-top: 90px; } }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      .normal-section .border {
        margin-top: 85px; } }
    @media only screen and (max-width: 767.98px) {
      .normal-section .border {
        margin-top: 70px; } }
    .normal-section .border.white {
      background-color: white; }

#page-info {
  margin-top: 190px;
  position: relative; }
  @media only screen and (max-width: 991.98px) {
    #page-info {
      margin-top: 110px; } }
  #page-info:after {
    position: absolute;
    right: -30px;
    bottom: -150px;
    content: "";
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 45vw;
    height: 45vh; }
    @media only screen and (max-width: 991.98px) {
      #page-info:after {
        width: 100vw;
        right: -90px;
        bottom: -180px; } }
  #page-info .container {
    position: relative; }
    #page-info .container .main {
      padding: 0 0 40px 0;
      position: relative;
      margin: 0px auto 50px; }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        #page-info .container .main {
          text-align: center;
          max-width: 80%;
          padding: 0 0 20px 0; } }
      @media only screen and (max-width: 767.98px) {
        #page-info .container .main {
          text-align: center;
          margin: 0px auto 30px;
          padding: 0 0 20px 0; } }
      #page-info .container .main::after {
        position: absolute;
        left: 50%;
        bottom: 00px;
        width: 150px;
        max-width: 50%;
        height: 2px;
        content: "";
        background-color: #fff;
        transform: translateX(-50%); }
      #page-info .container .main .title {
        color: #fff;
        font-family: "Playfair Display", serif;
        text-align: left;
        letter-spacing: 1.2px;
        font-weight: 500;
        position: relative;
        text-align: center; }
        @media only screen and (min-width: 1551px) {
          #page-info .container .main .title {
            font-size: 52px;
            line-height: 58px; } }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #page-info .container .main .title {
            font-size: 45px;
            line-height: 54px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
          #page-info .container .main .title {
            font-size: 40px;
            line-height: 52px; } }
        @media only screen and (min-width: 768px) and (max-width: 991.98px) {
          #page-info .container .main .title {
            font-size: 34px;
            line-height: 44px; } }
        @media only screen and (max-width: 767.98px) {
          #page-info .container .main .title {
            font-size: 28px;
            line-height: 35px; } }
      #page-info .container .main .sub-title {
        color: #0F0F0F;
        font-family: "Playfair Display", serif;
        text-align: left;
        font-weight: 300;
        color: #0F0F0F; }
        @media only screen and (min-width: 1551px) {
          #page-info .container .main .sub-title {
            font-size: 34px;
            line-height: 55px; } }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #page-info .container .main .sub-title {
            font-size: 30px;
            line-height: 54px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
          #page-info .container .main .sub-title {
            font-size: 26px;
            line-height: 52px; } }
        @media only screen and (min-width: 768px) and (max-width: 991.98px) {
          #page-info .container .main .sub-title {
            font-size: 24px;
            line-height: 46px;
            text-align: center;
            margin: 8px auto 0; } }
        @media only screen and (max-width: 767.98px) {
          #page-info .container .main .sub-title {
            font-size: 17px;
            line-height: 28px;
            text-align: center;
            margin: 8px auto 0; } }
      #page-info .container .main .small-title {
        color: #0f7581;
        font-family: "Playfair Display", serif;
        text-align: left;
        font-weight: 400; }
        @media only screen and (min-width: 1551px) {
          #page-info .container .main .small-title {
            font-size: 24px;
            line-height: 35px; } }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #page-info .container .main .small-title {
            font-size: 20px;
            line-height: 28px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
          #page-info .container .main .small-title {
            font-size: 16px;
            line-height: 24px; } }
        @media only screen and (min-width: 768px) and (max-width: 991.98px) {
          #page-info .container .main .small-title {
            font-size: 12px;
            text-align: center;
            line-height: 20px;
            margin: 15px auto 0; } }
        @media only screen and (max-width: 767.98px) {
          #page-info .container .main .small-title {
            text-align: center;
            font-size: 12px;
            line-height: 16px;
            line-height: 20px; } }
    #page-info .container .border {
      width: 100%;
      background-color: #707070;
      height: 1px;
      margin-top: 120px;
      margin-top: 60px !important; }
      @media only screen and (min-width: 1551px) {
        #page-info .container .border {
          margin-top: 120px; } }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #page-info .container .border {
          margin-top: 105px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        #page-info .container .border {
          margin-top: 90px; } }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        #page-info .container .border {
          margin-top: 85px; } }
      @media only screen and (max-width: 767.98px) {
        #page-info .container .border {
          margin-top: 70px; } }
    #page-info .container .icon-wrapper {
      position: absolute;
      right: 0;
      bottom: 20px; }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        #page-info .container .icon-wrapper {
          bottom: -30px; } }
      @media only screen and (max-width: 767.98px) {
        #page-info .container .icon-wrapper {
          bottom: -30px; } }
      #page-info .container .icon-wrapper .icon {
        width: max-content; }
        @media only screen and (min-width: 768px) and (max-width: 991.98px) {
          #page-info .container .icon-wrapper .icon {
            width: 40px;
            height: auto; } }
        @media only screen and (max-width: 767.98px) {
          #page-info .container .icon-wrapper .icon {
            width: 40px;
            height: auto; } }
        #page-info .container .icon-wrapper .icon.show-icon svg path:nth-of-type(1) {
          -ms-animation: fadeFromRight 1s;
          /* Internet Explorer */
          animation: fadeFromRight 1s;
          animation-fill-mode: forwards;
          animation-delay: 0.2s; }
        #page-info .container .icon-wrapper .icon.show-icon svg path:nth-of-type(2) {
          -ms-animation: fadeFromRight 1s;
          /* Internet Explorer */
          animation: fadeFromRight 1s;
          animation-fill-mode: forwards;
          animation-delay: 0.4s; }
        #page-info .container .icon-wrapper .icon.show-icon svg path:nth-of-type(3) {
          -ms-animation: fadeFromRight 1s;
          /* Internet Explorer */
          animation: fadeFromRight 1s;
          animation-fill-mode: forwards;
          animation-delay: 0.6s; }
        #page-info .container .icon-wrapper .icon.show-icon svg path:nth-of-type(4) {
          -ms-animation: fadeFromRight 1s;
          /* Internet Explorer */
          animation: fadeFromRight 1s;
          animation-fill-mode: forwards;
          animation-delay: 0.8s; }
        #page-info .container .icon-wrapper .icon.show-icon svg path:nth-of-type(5) {
          -ms-animation: fadeFromRight 1s;
          /* Internet Explorer */
          animation: fadeFromRight 1s;
          animation-fill-mode: forwards;
          animation-delay: 1s; }
        #page-info .container .icon-wrapper .icon svg {
          max-width: 100%; }
          #page-info .container .icon-wrapper .icon svg path {
            opacity: 0; }
    #page-info .container .description {
      margin: auto;
      max-width: 100%;
      width: 540px;
      font: normal normal 400 15px/26px "Playfair Display", serif;
      color: #fff;
      transition: all ease-in-out 0.5s;
      letter-spacing: 0.45px;
      text-align: center; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #page-info .container .description {
          font-size: 20px;
          line-height: 24px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        #page-info .container .description {
          font-size: 18px;
          line-height: 22px; } }
      @media only screen and (max-width: 991.98px) {
        #page-info .container .description {
          font-size: 16px;
          line-height: 20px; } }

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  white-space: nowrap;
  background-color: #fff;
  color: #0F0F0F;
  overflow: hidden;
  justify-content: center;
  z-index: 999999;
  width: 100%; }
  .preloader .animate {
    text-transform: uppercase;
    color: #0F0F0F;
    animation: preloaderAnimate 35s linear infinite;
    font-family: "Playfair Display", serif; }
    @media only screen and (min-width: 1551px) {
      .preloader .animate {
        font-size: 100px; } }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      .preloader .animate {
        font-size: 80px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      .preloader .animate {
        font-size: 60px; } }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      .preloader .animate {
        font-size: 40px; } }
    @media only screen and (max-width: 767.98px) {
      .preloader .animate {
        font-size: 30px; } }
    .preloader .animate span {
      -webkit-text-fill-color: #0f7581;
      -webkit-text-stroke: 1px #0f7581;
      margin-left: 10vw;
      margin-right: 10vw;
      font-family: "Playfair Display", serif; }

.slider-wrapper .slider--container {
  position: relative;
  width: 100%;
  overflow: hidden; }
  .slider-wrapper .slider--container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg) 0%, transparent 10%, transparent 90%, var(--bg) 100%);
    pointer-events: none; }
  .slider-wrapper .slider--container .slider__wrapper {
    min-width: 100%;
    min-height: 100%;
    place-items: center; }
    .slider-wrapper .slider--container .slider__wrapper .slider {
      min-width: 100%;
      min-height: 100%;
      overflow: hidden; }
      .slider-wrapper .slider--container .slider__wrapper .slider .slides__wrapper .slide {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%; }
        .slider-wrapper .slider--container .slider__wrapper .slider .slides__wrapper .slide-img {
          width: 100%;
          height: 100%;
          overflow: hidden; }
          .slider-wrapper .slider--container .slider__wrapper .slider .slides__wrapper .slide-img img {
            width: 100%;
            height: 100%;
            object-fit: cover; }
        .slider-wrapper .slider--container .slider__wrapper .slider .slides__wrapper .slide-content {
          margin: 30px 0; }
          .slider-wrapper .slider--container .slider__wrapper .slider .slides__wrapper .slide-content .title {
            color: #0F0F0F;
            font-family: "Playfair Display", serif;
            text-align: left;
            line-height: 32px;
            font-weight: 400; }
            @media only screen and (min-width: 1551px) {
              .slider-wrapper .slider--container .slider__wrapper .slider .slides__wrapper .slide-content .title {
                font-size: 18px; } }
            @media only screen and (min-width: 1200px) and (max-width: 1550px) {
              .slider-wrapper .slider--container .slider__wrapper .slider .slides__wrapper .slide-content .title {
                font-size: 16px; } }
            @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
              .slider-wrapper .slider--container .slider__wrapper .slider .slides__wrapper .slide-content .title {
                font-size: 15px; } }
            @media only screen and (min-width: 768px) and (max-width: 991.98px) {
              .slider-wrapper .slider--container .slider__wrapper .slider .slides__wrapper .slide-content .title {
                font-size: 14px;
                text-align: center;
                max-width: calc(100% - 80px);
                margin: auto; } }
            @media only screen and (max-width: 767.98px) {
              .slider-wrapper .slider--container .slider__wrapper .slider .slides__wrapper .slide-content .title {
                text-align: center;
                font-size: 12px;
                max-width: calc(100% - 80px);
                margin: auto; } }
          .slider-wrapper .slider--container .slider__wrapper .slider .slides__wrapper .slide-content .description {
            color: #0F0F0F;
            font-family: "Playfair Display", serif;
            text-align: left;
            margin: 10px 0 0;
            font-weight: 400;
            font-size: 18px;
            line-height: 18px; }
            @media only screen and (max-width: 991.98px) {
              .slider-wrapper .slider--container .slider__wrapper .slider .slides__wrapper .slide-content .description {
                display: none; } }
        .slider-wrapper .slider--container .slider__wrapper .slider .slides__wrapper .slide.active {
          display: block; }
        .slider-wrapper .slider--container .slider__wrapper .slider .slides__wrapper .slide:not(.active) {
          display: none; }
      .slider-wrapper .slider--container .slider__wrapper .slider .transition-slide {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #e8eff0;
        transform: scaleX(0); }

.slider-wrapper .slider-btn-container {
  position: absolute;
  right: 0;
  bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 99; }
  @media only screen and (max-width: 991.98px) {
    .slider-wrapper .slider-btn-container {
      width: 100%;
      justify-content: space-between; } }
  .slider-wrapper .slider-btn-container button {
    opacity: 0;
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative; }
    @media only screen and (min-width: 1551px) {
      .slider-wrapper .slider-btn-container button {
        width: 44px;
        height: 44px; } }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      .slider-wrapper .slider-btn-container button {
        width: 42px;
        height: 42px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      .slider-wrapper .slider-btn-container button {
        width: 40px;
        height: 40px; } }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      .slider-wrapper .slider-btn-container button {
        width: 38px;
        height: 38px; } }
    @media only screen and (max-width: 767.98px) {
      .slider-wrapper .slider-btn-container button {
        width: 36px;
        height: 36px; } }
    .slider-wrapper .slider-btn-container button svg {
      display: block;
      width: 100%; }
    .slider-wrapper .slider-btn-container button.next {
      transform: rotateZ(180deg) !important;
      transform-origin: center center !important; }

.slider-wrapper .marquee-wrapper {
  position: absolute;
  left: 0%;
  top: 45%;
  transform: translate(-20%, -50%);
  color: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
  user-select: none;
  overflow: hidden; }
  .slider-wrapper .marquee-wrapper .marquees .marquee {
    display: flex;
    white-space: nowrap; }
    .slider-wrapper .marquee-wrapper .marquees .marquee .item {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: "Playfair Display", serif;
      font-size: 400%;
      letter-spacing: 10px;
      white-space: nowrap;
      overflow: hidden;
      text-align: center;
      font-weight: 900;
      animation: line-crawing-animation 6s linear infinite; }
    .slider-wrapper .marquee-wrapper .marquees .marquee.active {
      display: block; }
    .slider-wrapper .marquee-wrapper .marquees .marquee:not(.active) {
      display: none; }

@keyframes line-crawing-animation {
  0% {
    transform: translateZ(0); }
  to {
    transform: translate3d(-100%, 0, 0); } }

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }
  .slick-slider .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0; }
    .slick-slider .slick-list:focus {
      outline: none; }
    .slick-slider .slick-list.dragging {
      cursor: hand; }
    .slick-slider .slick-list .slick-slide {
      margin: 0px 20px; }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        .slick-slider .slick-list .slick-slide {
          margin: 0px 15px; } }
      @media only screen and (max-width: 767.98px) {
        .slick-slider .slick-list .slick-slide {
          margin: 0px 10px; } }
      .slick-slider .slick-list .slick-slide img {
        width: 100%; }
  .slick-slider .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: flex; }
    .slick-slider .slick-track:before, .slick-slider .slick-track:after {
      display: table;
      content: ""; }
    .slick-slider .slick-track:after {
      clear: both; }
  .slick-slider .slick-track,
  .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  height: 100%;
  min-height: 1px;
  height: auto;
  align-items: center;
  justify-content: center; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }

[dir="rtl"] .slick-slide {
  float: right; }

.slick-initialized .slick-slide {
  display: flex; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

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

/* width */
::-webkit-scrollbar {
  width: 10px; }

/* Track */
::-webkit-scrollbar-track {
  background: #fff; }

/* Handle */
::-webkit-scrollbar-thumb {
  background: #0F0F0F; }

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #0F0F0F; }

#section-info {
  min-height: 40vh; }

#gallery .single-image {
  margin: 0 0 50px 0;
  display: block; }
  @media only screen and (max-width: 767.98px) {
    #gallery .single-image {
      margin: 0 0 35px 0; } }
  #gallery .single-image img {
    width: 100%;
    margin: 0 0 15px 0; }
  #gallery .single-image .title {
    text-align: center;
    font: normal normal 400 20px/30px "Playfair Display", serif;
    letter-spacing: 0.72px;
    color: #FFFFFF;
    opacity: 1;
    text-decoration: none; }
    @media only screen and (max-width: 991.98px) {
      #gallery .single-image .title {
        font-size: 16px;
        line-height: 22px; } }

.mt-0 {
  margin-top: 0 !important; }

.body-content {
  width: 100%;
  overflow-x: hidden; }

#section-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative; }
  #section-hero .content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 30px; }
    #section-hero .content .title {
      text-align: center;
      font: normal normal 400 55px/76px "Playfair Display", serif;
      letter-spacing: 1.1px;
      color: #fff;
      opacity: 1;
      padding: 0 20vw; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #section-hero .content .title {
          font-size: 40px;
          line-height: 65px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        #section-hero .content .title {
          font-size: 30px;
          line-height: 55px; } }
      @media only screen and (max-width: 991.98px) {
        #section-hero .content .title {
          font-size: 22px;
          line-height: 30px;
          padding: 0 2vw; } }
    #section-hero .content .link {
      text-align: center;
      font: normal normal 400 21px/26px "Playfair Display", serif;
      letter-spacing: 0.84px;
      color: #FFFFFF;
      opacity: 1;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px; }
      #section-hero .content .link:hover {
        color: #BD0101;
        transition: all ease-in-out 0.5s; }
      @media only screen and (max-width: 991.98px) {
        #section-hero .content .link {
          font-size: 17px;
          line-height: 20px; } }
  #section-hero .hero-arrow-down {
    width: 53px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: auto;
    bottom: 50px;
    left: 0%;
    right: 0%;
    animation: mover 0.7s infinite alternate;
    -webkit-animation: mover 0.7s infinite alternate; }
  #section-hero .background-video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto; }
    #section-hero .background-video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -100;
      background-position: 50%;
      background-size: cover;
      margin: auto;
      position: absolute;
      top: -100%;
      bottom: -100%;
      left: -100%;
      right: -100%; }

.home-section .section-title {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  margin: 75px 0;
  position: relative;
  text-align: left;
  font: normal normal 400 85px/85px "Playfair Display", serif;
  letter-spacing: 1.7px;
  color: #fff;
  opacity: 1; }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    .home-section .section-title {
      font-size: 70px;
      line-height: 70px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .home-section .section-title {
      font-size: 55px;
      line-height: 55px; } }
  @media only screen and (max-width: 991.98px) {
    .home-section .section-title {
      font-size: 40px;
      line-height: 40px;
      padding: 0 0 0 15px; } }
  @media only screen and (max-width: 767.98px) {
    .home-section .section-title {
      font-size: 30px;
      line-height: 30px;
      padding: 0 0 0 15px; } }
  .home-section .section-title span {
    font: normal normal 400 20px/20px "Playfair Display", serif;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%); }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      .home-section .section-title span {
        font-size: 18px;
        line-height: 18px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      .home-section .section-title span {
        font-size: 16px;
        line-height: 16px; } }
    @media only screen and (max-width: 991.98px) {
      .home-section .section-title span {
        font-size: 14px;
        line-height: 14px;
        left: -10px; } }
    @media only screen and (max-width: 767.98px) {
      .home-section .section-title span {
        font-size: 12px;
        line-height: 12px;
        left: -10px; } }

.home-section .section-sub-title {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  margin: 75px 0;
  text-align: left;
  font: normal normal 400 40px/40px "Playfair Display", serif;
  letter-spacing: 1.7px;
  color: #fff;
  opacity: 1; }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    .home-section .section-sub-title {
      font-size: 36px;
      line-height: 40px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .home-section .section-sub-title {
      font-size: 35px;
      line-height: 38px; } }
  @media only screen and (max-width: 991.98px) {
    .home-section .section-sub-title {
      font-size: 32px;
      line-height: 34px;
      margin: 25px 0; } }
  @media only screen and (max-width: 767.98px) {
    .home-section .section-sub-title {
      font-size: 28px;
      line-height: 36px;
      margin: 35px 0; } }
  .home-section .section-sub-title span {
    font: normal normal 400 20px/20px "Playfair Display", serif; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      .home-section .section-sub-title span {
        font-size: 18px;
        line-height: 18px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      .home-section .section-sub-title span {
        font-size: 16px;
        line-height: 16px; } }
    @media only screen and (max-width: 991.98px) {
      .home-section .section-sub-title span {
        font-size: 14px;
        line-height: 14px; } }
    @media only screen and (max-width: 767.98px) {
      .home-section .section-sub-title span {
        font-size: 12px;
        line-height: 12px; } }

#menu-section {
  padding-bottom: 160px;
  background-position: bottom right;
  background-size: 50%;
  background-repeat: no-repeat;
  margin-bottom: 0 !important; }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    #menu-section {
      padding-bottom: 80px; } }
  @media only screen and (max-width: 767.98px) {
    #menu-section {
      padding-bottom: 60px;
      background-size: 90%; } }
  #menu-section .single-menu {
    display: block;
    position: relative;
    margin: 0 0 30px 0; }
    #menu-section .single-menu:hover .content .title {
      transform: scale(1.3);
      transition: all ease-in-out 0.5s; }
    #menu-section .single-menu img {
      width: 100%; }
    #menu-section .single-menu .content {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      justify-content: center;
      align-items: center;
      display: flex;
      flex-direction: column;
      gap: 20px;
      background-color: rgba(0, 0, 0, 0.25); }
      #menu-section .single-menu .content svg {
        width: 30px;
        height: auto; }
      #menu-section .single-menu .content .title {
        font: normal normal 400 24px/24px "Playfair Display", serif;
        color: #fff;
        transition: all ease-in-out 0.5s; }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #menu-section .single-menu .content .title {
            font-size: 21px;
            line-height: 25px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
          #menu-section .single-menu .content .title {
            font-size: 22px;
            line-height: 25px; } }
        @media only screen and (max-width: 991.98px) {
          #menu-section .single-menu .content .title {
            font-size: 20px;
            line-height: 25px; } }

#side-image .images {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 90vw;
  transform: translateX(-35vw);
  position: relative; }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    #side-image .images {
      transform: translateX(-45vw); } }
  @media only screen and (max-width: 991.98px) {
    #side-image .images {
      margin-bottom: 30px;
      width: 100%;
      transform: translateX(0vw); } }
  #side-image .images .image {
    width: 50%; }
    @media only screen and (max-width: 991.98px) {
      #side-image .images .image:first-of-type {
        width: 35%; } }
    @media only screen and (max-width: 991.98px) {
      #side-image .images .image:last-of-type {
        width: 60%; } }
    #side-image .images .image .img-box {
      position: relative;
      width: 100%;
      overflow: hidden;
      position: relative;
      overflow: hidden; }
      #side-image .images .image .img-box:after {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background: #161616; }
      #side-image .images .image .img-box.slide-right:after {
        width: 0;
        transition: all ease-in-out 0.9s 0.2s; }
      #side-image .images .image .img-box img {
        width: 100%;
        margin: 0;
        display: block; }
      #side-image .images .image .img-box .custom {
        background-color: #000000;
        max-width: 80%;
        text-align: center;
        font-family: "Playfair Display", serif;
        letter-spacing: 0px;
        color: #fff;
        opacity: 1;
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translate(-50%);
        padding: 3px 15px;
        width: max-content; }
        @media only screen and (min-width: 992px) {
          #side-image .images .image .img-box .custom {
            font-size: 16px;
            line-height: 29px; } }
        @media only screen and (max-width: 991.98px) {
          #side-image .images .image .img-box .custom {
            font-size: 10px;
            line-height: 20px; } }
      #side-image .images .image .img-box-overlay {
        color: #000000;
        width: 100%;
        height: 100%;
        background-color: #000000;
        opacity: 0;
        transition: all 0.5s ease;
        position: absolute;
        top: 0;
        bottom: 0; }
        @media only screen and (max-width: 991.98px) {
          #side-image .images .image .img-box-overlay {
            display: none; } }
        #side-image .images .image .img-box-overlay span {
          font-family: "Playfair Display", serif;
          font-weight: 300;
          letter-spacing: 0px;
          display: block;
          color: black;
          text-align: center; }
          @media only screen and (min-width: 1551px) {
            #side-image .images .image .img-box-overlay span {
              font-size: 22px;
              line-height: 30px; } }
          @media only screen and (min-width: 1200px) and (max-width: 1550px) {
            #side-image .images .image .img-box-overlay span {
              font-size: 20px;
              line-height: 26px; } }
          @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
            #side-image .images .image .img-box-overlay span {
              font-size: 18px;
              line-height: 22px; } }
          @media only screen and (max-width: 991.98px) {
            #side-image .images .image .img-box-overlay span {
              font-size: 16px;
              line-height: 22px; } }
          #side-image .images .image .img-box-overlay span:nth-child(1) {
            position: relative;
            top: 50%;
            left: 50%;
            transform: translateX(50%);
            max-width: 90%;
            width: 90%;
            transition: all ease-in-out 0.7s; }
          #side-image .images .image .img-box-overlay span:nth-child(2) {
            height: 5px;
            background-color: black;
            position: relative;
            top: 55%;
            left: 0;
            transition: all ease-in-out 0.5s;
            width: 0%; }
      #side-image .images .image .img-box:hover .img-box-overlay {
        opacity: 0.93; }
        #side-image .images .image .img-box:hover .img-box-overlay span:nth-child(1) {
          transform: translateX(-50%);
          transition: all ease-in-out 0.7s; }
        #side-image .images .image .img-box:hover .img-box-overlay span:nth-child(2) {
          transition: all ease-in-out 0.5s;
          width: 50%; }
      @media only screen and (max-width: 991.98px) {
        #side-image .images .image .img-box img {
          height: 300px;
          object-fit: cover; } }

#side-image .content {
  padding: 0 10vw 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%; }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    #side-image .content {
      padding: 0 20px 0 0; } }
  @media only screen and (max-width: 991.98px) {
    #side-image .content {
      padding: 0 10vw 0 0px; } }
  #side-image .content .paragraph p {
    font: normal normal 400 15px/26px "Playfair Display", serif;
    color: #fff;
    transition: all ease-in-out 0.5s;
    letter-spacing: 0.45px;
    margin-bottom: 50px; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #side-image .content .paragraph p {
        font-size: 20px;
        line-height: 24px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      #side-image .content .paragraph p {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 30px; } }
    @media only screen and (max-width: 991.98px) {
      #side-image .content .paragraph p {
        font-size: 16px;
        line-height: 20px; } }
  #side-image .content .global-url {
    margin: 30px 0 0;
    max-width: 100%;
    text-align: left;
    font: normal normal normal 22px/76px "Playfair Display", serif;
    letter-spacing: 0.55px;
    color: #fff;
    text-transform: uppercase;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: max-content;
    position: relative;
    overflow: hidden; }
    @media only screen and (min-width: 1551px) {
      #side-image .content .global-url {
        font-size: 16px;
        line-height: 48px;
        height: 48px; } }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #side-image .content .global-url {
        font-size: 15px;
        line-height: 48px;
        height: 48px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      #side-image .content .global-url {
        font-size: 15px;
        line-height: 46px;
        height: 46px; } }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      #side-image .content .global-url {
        font-size: 14px;
        line-height: 44px;
        height: 44px; } }
    @media only screen and (max-width: 767.98px) {
      #side-image .content .global-url {
        font-size: 14px;
        line-height: 42px;
        height: 42px;
        margin: 0; } }
    #side-image .content .global-url:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0px;
      width: 50%;
      text-align: center;
      background-color: #BD0101;
      height: 1.5px;
      transition: transform 1.05s cubic-bezier(0.3, 0.86, 0.36, 0.95);
      will-change: transform;
      transition: all ease-in-out 0.5s; }
    #side-image .content .global-url.active, #side-image .content .global-url:hover {
      transition: all ease-in-out 0.5s; }
      #side-image .content .global-url.active:after, #side-image .content .global-url:hover:after {
        opacity: 1;
        width: 100%;
        transition: all ease-in-out 0.5s; }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      #side-image .content .global-url {
        margin: 20px 0 0; } }
    @media only screen and (max-width: 991.98px) {
      #side-image .content .global-url {
        margin: 30px 0 0 !important; } }

#image-content {
  padding-top: 120px;
  padding-bottom: 160px;
  background-position: bottom left;
  background-size: 50%;
  background-repeat: no-repeat;
  margin-bottom: 0 !important;
  position: relative; }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    #image-content {
      padding-bottom: 80px; } }
  @media only screen and (max-width: 767.98px) {
    #image-content {
      padding-bottom: 60px;
      background-size: 90%; } }
  #image-content .pattern-image {
    position: absolute;
    top: 0;
    left: 48vw;
    width: 152px; }
    @media only screen and (max-width: 991.98px) {
      #image-content .pattern-image {
        display: none; } }
  @media only screen and (min-width: 240px) and (max-width: md-UP) {
    #image-content .row {
      gap: 45px; } }
  @media only screen and (max-width: 991.98px) {
    #image-content .row .section-title {
      margin: 0 0 30PX !important; } }
  @media only screen and (max-width: 991.98px) {
    #image-content .row .column .content-wrapper {
      width: 69vw;
      position: relative;
      z-index: 2;
      transform: translateY(-50px); } }
  #image-content .row .column .content {
    width: 585px;
    max-width: 90%; }
    #image-content .row .column .content .description {
      font: normal normal 400 34px/45px "Playfair Display", serif;
      color: #fff;
      transition: all ease-in-out 0.5s;
      letter-spacing: 0.45px;
      margin-bottom: 50px; }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        #image-content .row .column .content .description {
          font-size: 28px;
          line-height: 36px; } }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        #image-content .row .column .content .description {
          font-size: 24px;
          line-height: 32px; } }
      @media only screen and (max-width: 767.98px) {
        #image-content .row .column .content .description {
          font-size: 20px;
          line-height: 30px; }
          #image-content .row .column .content .description br {
            display: none; } }
  #image-content .row .column .image {
    width: 100%;
    max-width: 100%; }
    @media only screen and (min-width: 992px) {
      #image-content .row .column .image {
        margin-left: auto; } }
    @media only screen and (max-width: 991.98px) {
      #image-content .row .column .image {
        margin: 0px auto;
        padding: 0; } }
    #image-content .row .column .image .img-box {
      position: relative;
      width: 100%;
      overflow: hidden;
      position: relative;
      overflow: hidden; }
      #image-content .row .column .image .img-box:after {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background: #161616; }
      #image-content .row .column .image .img-box.slide-right:after {
        width: 0;
        transition: all ease-in-out 0.9s 0.2s; }
      #image-content .row .column .image .img-box img {
        width: 100%;
        margin: 0;
        display: block; }
      #image-content .row .column .image .img-box .custom {
        background-color: #000000;
        max-width: 80%;
        text-align: center;
        font-family: "Playfair Display", serif;
        letter-spacing: 0px;
        color: #fff;
        opacity: 1;
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translate(-50%);
        padding: 3px 15px;
        width: max-content; }
        @media only screen and (min-width: 992px) {
          #image-content .row .column .image .img-box .custom {
            font-size: 16px;
            line-height: 29px; } }
        @media only screen and (max-width: 991.98px) {
          #image-content .row .column .image .img-box .custom {
            font-size: 10px;
            line-height: 20px; } }
      #image-content .row .column .image .img-box-overlay {
        color: #000000;
        width: 100%;
        height: 100%;
        background-color: #000000;
        opacity: 0;
        transition: all 0.5s ease;
        position: absolute;
        top: 0;
        bottom: 0; }
        @media only screen and (max-width: 991.98px) {
          #image-content .row .column .image .img-box-overlay {
            display: none; } }
        #image-content .row .column .image .img-box-overlay span {
          font-family: "Playfair Display", serif;
          font-weight: 300;
          letter-spacing: 0px;
          display: block;
          color: black;
          text-align: center; }
          @media only screen and (min-width: 1551px) {
            #image-content .row .column .image .img-box-overlay span {
              font-size: 22px;
              line-height: 30px; } }
          @media only screen and (min-width: 1200px) and (max-width: 1550px) {
            #image-content .row .column .image .img-box-overlay span {
              font-size: 20px;
              line-height: 26px; } }
          @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
            #image-content .row .column .image .img-box-overlay span {
              font-size: 18px;
              line-height: 22px; } }
          @media only screen and (max-width: 991.98px) {
            #image-content .row .column .image .img-box-overlay span {
              font-size: 16px;
              line-height: 22px; } }
          #image-content .row .column .image .img-box-overlay span:nth-child(1) {
            position: relative;
            top: 50%;
            left: 50%;
            transform: translateX(50%);
            max-width: 90%;
            width: 90%;
            transition: all ease-in-out 0.7s; }
          #image-content .row .column .image .img-box-overlay span:nth-child(2) {
            height: 5px;
            background-color: black;
            position: relative;
            top: 55%;
            left: 0;
            transition: all ease-in-out 0.5s;
            width: 0%; }
      #image-content .row .column .image .img-box:hover .img-box-overlay {
        opacity: 0.93; }
        #image-content .row .column .image .img-box:hover .img-box-overlay span:nth-child(1) {
          transform: translateX(-50%);
          transition: all ease-in-out 0.7s; }
        #image-content .row .column .image .img-box:hover .img-box-overlay span:nth-child(2) {
          transition: all ease-in-out 0.5s;
          width: 50%; }

#orders-content {
  padding-top: 120px;
  padding-bottom: 160px;
  background-position: 100% 9%;
  background-size: 58%;
  background-repeat: no-repeat;
  margin-bottom: 0 !important;
  position: relative; }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    #orders-content {
      padding-bottom: 80px; } }
  @media only screen and (max-width: 767.98px) {
    #orders-content {
      padding-bottom: 60px;
      background-size: 111%;
      background-position: -71% 85%;
      background-size: 140%; } }
  #orders-content .row {
    justify-content: end; }
    @media only screen and (min-width: 240px) and (max-width: md-UP) {
      #orders-content .row {
        gap: 45px; } }
    @media only screen and (max-width: 991.98px) {
      #orders-content .row .section-title {
        margin: 0 0 30PX !important; } }
    #orders-content .row .column .content-wrapper {
      position: relative; }
      #orders-content .row .column .content-wrapper .section-title {
        position: absolute;
        left: -90px;
        top: 55px;
        z-index: 2;
        margin: 0 !important; }
        @media only screen and (max-width: 991.98px) {
          #orders-content .row .column .content-wrapper .section-title {
            left: -6px; } }
    #orders-content .row .column .rhs {
      position: relative;
      width: 100%;
      height: 100%; }
      #orders-content .row .column .rhs .links {
        height: 100%;
        display: flex;
        align-items: start;
        flex-direction: column;
        justify-content: center;
        gap: 13px; }
        @media only screen and (max-width: 991.98px) {
          #orders-content .row .column .rhs .links {
            margin: 20px 0 !important; } }
        #orders-content .row .column .rhs .links .global-url {
          margin: 0px 0 0 5vw;
          max-width: 100%;
          text-align: left;
          font: normal normal normal 22px/76px "Playfair Display", serif;
          letter-spacing: 0.55px;
          color: #fff;
          text-transform: uppercase;
          opacity: 1;
          display: flex;
          align-items: center;
          justify-content: center;
          text-decoration: none;
          width: max-content;
          position: relative;
          overflow: hidden; }
          @media only screen and (min-width: 1551px) {
            #orders-content .row .column .rhs .links .global-url {
              font-size: 16px;
              line-height: 48px;
              height: 48px; } }
          @media only screen and (min-width: 1200px) and (max-width: 1550px) {
            #orders-content .row .column .rhs .links .global-url {
              font-size: 15px;
              line-height: 48px;
              height: 48px; } }
          @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
            #orders-content .row .column .rhs .links .global-url {
              font-size: 15px;
              line-height: 46px;
              height: 46px; } }
          @media only screen and (min-width: 768px) and (max-width: 991.98px) {
            #orders-content .row .column .rhs .links .global-url {
              font-size: 14px;
              line-height: 44px;
              height: 44px; } }
          @media only screen and (max-width: 767.98px) {
            #orders-content .row .column .rhs .links .global-url {
              font-size: 14px;
              line-height: 42px;
              height: 42px;
              margin: 0; } }
          #orders-content .row .column .rhs .links .global-url:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0px;
            width: 50%;
            text-align: center;
            background-color: #BD0101;
            height: 1.5px;
            transition: transform 1.05s cubic-bezier(0.3, 0.86, 0.36, 0.95);
            will-change: transform;
            transition: all ease-in-out 0.5s; }
          #orders-content .row .column .rhs .links .global-url.active, #orders-content .row .column .rhs .links .global-url:hover {
            transition: all ease-in-out 0.5s; }
            #orders-content .row .column .rhs .links .global-url.active:after, #orders-content .row .column .rhs .links .global-url:hover:after {
              opacity: 1;
              width: 100%;
              transition: all ease-in-out 0.5s; }
          @media only screen and (max-width: 991.98px) {
            #orders-content .row .column .rhs .links .global-url {
              margin: 0 !important; } }
      #orders-content .row .column .rhs .pattern-image {
        position: absolute;
        top: 50%;
        right: 0;
        width: 142px;
        transform: translateY(-50%); }
        @media only screen and (max-width: 991.98px) {
          #orders-content .row .column .rhs .pattern-image {
            position: absolute;
            top: 65%;
            right: 20px;
            width: 97px;
            transform: translateY(-50%); } }

#floating-images {
  padding-top: 120px;
  padding-bottom: 160px;
  background-position: bottom left;
  background-size: 50%;
  background-repeat: no-repeat;
  margin-bottom: 0 !important;
  position: relative; }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    #floating-images {
      padding-bottom: 80px; } }
  @media only screen and (max-width: 767.98px) {
    #floating-images {
      padding-bottom: 60px;
      background-size: 90%;
      padding-top: 80px; } }
  #floating-images .pattern-image {
    position: absolute;
    top: 0;
    left: 48vw;
    width: 152px; }
    @media only screen and (max-width: 991.98px) {
      #floating-images .pattern-image {
        display: none; } }
  @media only screen and (min-width: 240px) and (max-width: md-UP) {
    #floating-images .row {
      gap: 45px; } }
  @media only screen and (max-width: 991.98px) {
    #floating-images .row .section-title {
      margin: 0 0 30PX !important; } }
  #floating-images .row .column .content-wrapper {
    max-width: 100%;
    width: 500px;
    margin: 0 0 0 auto; }
    #floating-images .row .column .content-wrapper .section-title {
      width: max-content;
      max-width: 80vw;
      margin: 0 !important;
      position: absolute;
      left: -35px;
      top: 70px; }
      @media only screen and (max-width: 991.98px) {
        #floating-images .row .column .content-wrapper .section-title {
          left: 0;
          top: 0;
          position: unset;
          margin: 0 0 30px 0 !important; } }
    #floating-images .row .column .content-wrapper .image {
      margin: 0 0 25px 0; }
      @media only screen and (max-width: 991.98px) {
        #floating-images .row .column .content-wrapper .image {
          margin: 0 0 0px 0; } }
    #floating-images .row .column .content-wrapper .content {
      display: flex;
      align-items: start;
      justify-content: start;
      gap: 80px;
      position: relative; }
      #floating-images .row .column .content-wrapper .content .image {
        width: 120px; }
        @media only screen and (max-width: 991.98px) {
          #floating-images .row .column .content-wrapper .content .image {
            position: absolute;
            right: 24px;
            top: 0;
            transform: translateY(-80%);
            width: 100px; } }
      #floating-images .row .column .content-wrapper .content .description {
        width: calc(100% - 250px);
        font: normal normal 400 14px/25px "Playfair Display", serif;
        color: #fff;
        transition: all ease-in-out 0.5s;
        letter-spacing: 0.45px; }
        @media only screen and (max-width: 991.98px) {
          #floating-images .row .column .content-wrapper .content .description {
            width: calc(100% - 0px);
            margin: 50px 0 25px; } }
  #floating-images .row .column .rhs .image {
    width: 470px;
    max-width: 100%; }
    @media only screen and (min-width: 992px) {
      #floating-images .row .column .rhs .image {
        margin: 300px 0 0 auto; } }
    @media only screen and (max-width: 991.98px) {
      #floating-images .row .column .rhs .image {
        margin: 0px auto;
        padding: 0; } }
    #floating-images .row .column .rhs .image .img-box {
      position: relative;
      width: 100%;
      overflow: hidden;
      position: relative;
      overflow: hidden; }
      #floating-images .row .column .rhs .image .img-box:after {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        background: #161616; }
      #floating-images .row .column .rhs .image .img-box.slide-right:after {
        width: 0;
        transition: all ease-in-out 0.9s 0.2s; }
      #floating-images .row .column .rhs .image .img-box img {
        width: 100%;
        margin: 0;
        display: block; }
      #floating-images .row .column .rhs .image .img-box .custom {
        background-color: #000000;
        max-width: 80%;
        text-align: center;
        font-family: "Playfair Display", serif;
        letter-spacing: 0px;
        color: #fff;
        opacity: 1;
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translate(-50%);
        padding: 3px 15px;
        width: max-content; }
        @media only screen and (min-width: 992px) {
          #floating-images .row .column .rhs .image .img-box .custom {
            font-size: 16px;
            line-height: 29px; } }
        @media only screen and (max-width: 991.98px) {
          #floating-images .row .column .rhs .image .img-box .custom {
            font-size: 10px;
            line-height: 20px; } }
      #floating-images .row .column .rhs .image .img-box-overlay {
        color: #000000;
        width: 100%;
        height: 100%;
        background-color: #000000;
        opacity: 0;
        transition: all 0.5s ease;
        position: absolute;
        top: 0;
        bottom: 0; }
        @media only screen and (max-width: 991.98px) {
          #floating-images .row .column .rhs .image .img-box-overlay {
            display: none; } }
        #floating-images .row .column .rhs .image .img-box-overlay span {
          font-family: "Playfair Display", serif;
          font-weight: 300;
          letter-spacing: 0px;
          display: block;
          color: black;
          text-align: center; }
          @media only screen and (min-width: 1551px) {
            #floating-images .row .column .rhs .image .img-box-overlay span {
              font-size: 22px;
              line-height: 30px; } }
          @media only screen and (min-width: 1200px) and (max-width: 1550px) {
            #floating-images .row .column .rhs .image .img-box-overlay span {
              font-size: 20px;
              line-height: 26px; } }
          @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
            #floating-images .row .column .rhs .image .img-box-overlay span {
              font-size: 18px;
              line-height: 22px; } }
          @media only screen and (max-width: 991.98px) {
            #floating-images .row .column .rhs .image .img-box-overlay span {
              font-size: 16px;
              line-height: 22px; } }
          #floating-images .row .column .rhs .image .img-box-overlay span:nth-child(1) {
            position: relative;
            top: 50%;
            left: 50%;
            transform: translateX(50%);
            max-width: 90%;
            width: 90%;
            transition: all ease-in-out 0.7s; }
          #floating-images .row .column .rhs .image .img-box-overlay span:nth-child(2) {
            height: 5px;
            background-color: black;
            position: relative;
            top: 55%;
            left: 0;
            transition: all ease-in-out 0.5s;
            width: 0%; }
      #floating-images .row .column .rhs .image .img-box:hover .img-box-overlay {
        opacity: 0.93; }
        #floating-images .row .column .rhs .image .img-box:hover .img-box-overlay span:nth-child(1) {
          transform: translateX(-50%);
          transition: all ease-in-out 0.7s; }
        #floating-images .row .column .rhs .image .img-box:hover .img-box-overlay span:nth-child(2) {
          transition: all ease-in-out 0.5s;
          width: 50%; }

#cards-listing {
  margin: 90px auto; }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    #cards-listing {
      margin: 60px auto; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    #cards-listing {
      margin: 40px auto; } }
  @media only screen and (max-width: 767.98px) {
    #cards-listing {
      margin: 20px auto; } }
  #cards-listing .single-card {
    margin-bottom: 90px; }
    @media only screen and (max-width: 767.98px) {
      #cards-listing .single-card {
        margin-bottom: 20px; } }
    @media only screen and (min-width: 992px) {
      #cards-listing .single-card:nth-of-type(even) .row {
        flex-direction: row-reverse; } }
  @media only screen and (min-width: 992px) and (min-width: 1551px) {
    #cards-listing .single-card:nth-of-type(even) .row .image-side {
      margin: 0 0px   0 auto; } }
  @media only screen and (min-width: 992px) and (min-width: 1200px) and (max-width: 1550px) {
    #cards-listing .single-card:nth-of-type(even) .row .image-side {
      margin: 0 0px   0 auto; } }
  @media only screen and (min-width: 992px) and (min-width: 1551px) {
    #cards-listing .single-card:nth-of-type(even) .row .content-side {
      margin: 40px auto 40px 0px; } }
  @media only screen and (min-width: 992px) and (min-width: 1200px) and (max-width: 1550px) {
    #cards-listing .single-card:nth-of-type(even) .row .content-side {
      margin: 40px auto 40px 0px; } }
    #cards-listing .single-card .row {
      overflow: hidden;
      align-items: center; }
      #cards-listing .single-card .row .image-side {
        overflow: hidden; }
        @media only screen and (min-width: 1551px) {
          #cards-listing .single-card .row .image-side {
            width: 90%; } }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #cards-listing .single-card .row .image-side {
            width: 90%; } }
        #cards-listing .single-card .row .image-side .img-box {
          position: relative;
          width: 100%;
          overflow: hidden;
          position: relative;
          overflow: hidden; }
          #cards-listing .single-card .row .image-side .img-box:after {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            content: "";
            background: #161616; }
          #cards-listing .single-card .row .image-side .img-box.slide-right:after {
            width: 0;
            transition: all ease-in-out 0.9s 0.2s; }
          #cards-listing .single-card .row .image-side .img-box img {
            width: 100%;
            margin: 0;
            display: block; }
          #cards-listing .single-card .row .image-side .img-box .custom {
            background-color: #000000;
            max-width: 80%;
            text-align: center;
            font-family: "Playfair Display", serif;
            letter-spacing: 0px;
            color: #fff;
            opacity: 1;
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translate(-50%);
            padding: 3px 15px;
            width: max-content; }
            @media only screen and (min-width: 992px) {
              #cards-listing .single-card .row .image-side .img-box .custom {
                font-size: 16px;
                line-height: 29px; } }
            @media only screen and (max-width: 991.98px) {
              #cards-listing .single-card .row .image-side .img-box .custom {
                font-size: 10px;
                line-height: 20px; } }
          #cards-listing .single-card .row .image-side .img-box-overlay {
            color: #000000;
            width: 100%;
            height: 100%;
            background-color: #000000;
            opacity: 0;
            transition: all 0.5s ease;
            position: absolute;
            top: 0;
            bottom: 0; }
            @media only screen and (max-width: 991.98px) {
              #cards-listing .single-card .row .image-side .img-box-overlay {
                display: none; } }
            #cards-listing .single-card .row .image-side .img-box-overlay span {
              font-family: "Playfair Display", serif;
              font-weight: 300;
              letter-spacing: 0px;
              display: block;
              color: black;
              text-align: center; }
              @media only screen and (min-width: 1551px) {
                #cards-listing .single-card .row .image-side .img-box-overlay span {
                  font-size: 22px;
                  line-height: 30px; } }
              @media only screen and (min-width: 1200px) and (max-width: 1550px) {
                #cards-listing .single-card .row .image-side .img-box-overlay span {
                  font-size: 20px;
                  line-height: 26px; } }
              @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
                #cards-listing .single-card .row .image-side .img-box-overlay span {
                  font-size: 18px;
                  line-height: 22px; } }
              @media only screen and (max-width: 991.98px) {
                #cards-listing .single-card .row .image-side .img-box-overlay span {
                  font-size: 16px;
                  line-height: 22px; } }
              #cards-listing .single-card .row .image-side .img-box-overlay span:nth-child(1) {
                position: relative;
                top: 50%;
                left: 50%;
                transform: translateX(50%);
                max-width: 90%;
                width: 90%;
                transition: all ease-in-out 0.7s; }
              #cards-listing .single-card .row .image-side .img-box-overlay span:nth-child(2) {
                height: 5px;
                background-color: black;
                position: relative;
                top: 55%;
                left: 0;
                transition: all ease-in-out 0.5s;
                width: 0%; }
          #cards-listing .single-card .row .image-side .img-box:hover .img-box-overlay {
            opacity: 0.93; }
            #cards-listing .single-card .row .image-side .img-box:hover .img-box-overlay span:nth-child(1) {
              transform: translateX(-50%);
              transition: all ease-in-out 0.7s; }
            #cards-listing .single-card .row .image-side .img-box:hover .img-box-overlay span:nth-child(2) {
              transition: all ease-in-out 0.5s;
              width: 50%; }
      #cards-listing .single-card .row .content-side {
        width: 95%; }
        #cards-listing .single-card .row .content-side.m-0 {
          margin: 20px auto !important; }
        @media only screen and (min-width: 1551px) {
          #cards-listing .single-card .row .content-side {
            margin: 20px 0px 20px auto;
            width: 95%; } }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #cards-listing .single-card .row .content-side {
            margin: 20px 0px 20px auto;
            width: 95%; } }
        @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
          #cards-listing .single-card .row .content-side {
            margin: 30px 40px; } }
        @media only screen and (min-width: 768px) and (max-width: 991.98px) {
          #cards-listing .single-card .row .content-side {
            margin: 45px 0px; } }
        @media only screen and (max-width: 767.98px) {
          #cards-listing .single-card .row .content-side {
            margin: 50px 0px; } }
        #cards-listing .single-card .row .content-side .title {
          text-align: left;
          font: normal normal 400 40px/55px "Playfair Display", serif;
          letter-spacing: 0px;
          color: white;
          opacity: 1; }
          @media only screen and (max-width: 991.98px) {
            #cards-listing .single-card .row .content-side .title {
              font-size: 31px;
              line-height: 41px; } }
        #cards-listing .single-card .row .content-side .description {
          text-align: left;
          font: normal normal 400 15px/26px "Playfair Display", serif;
          letter-spacing: 0px;
          color: white;
          opacity: 1;
          margin: 30px 0; }
          #cards-listing .single-card .row .content-side .description p {
            font-size: inherit;
            line-height: inherit;
            color: inherit;
            margin: inherit;
            letter-spacing: inherit;
            font-family: inherit; }
          @media only screen and (max-width: 991.98px) {
            #cards-listing .single-card .row .content-side .description {
              font-size: 15px;
              line-height: 28px; } }
          #cards-listing .single-card .row .content-side .description p {
            font-size: inherit;
            line-height: inherit;
            font-family: inherit;
            color: inherit;
            font-weight: inherit;
            margin: 30px 0; }
            #cards-listing .single-card .row .content-side .description p:last-of-type {
              margin-bottom: 0; }
        #cards-listing .single-card .row .content-side .btn-wrapper .single-button .global-url {
          max-width: 100%;
          text-align: left;
          font: normal normal normal 22px/76px "Playfair Display", serif;
          letter-spacing: 0.55px;
          color: #fff;
          text-transform: uppercase;
          opacity: 1;
          display: flex;
          align-items: center;
          justify-content: center;
          text-decoration: none;
          width: max-content;
          position: relative;
          overflow: hidden; }
          @media only screen and (min-width: 1551px) {
            #cards-listing .single-card .row .content-side .btn-wrapper .single-button .global-url {
              font-size: 16px;
              line-height: 48px;
              height: 48px; } }
          @media only screen and (min-width: 1200px) and (max-width: 1550px) {
            #cards-listing .single-card .row .content-side .btn-wrapper .single-button .global-url {
              font-size: 15px;
              line-height: 48px;
              height: 48px; } }
          @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
            #cards-listing .single-card .row .content-side .btn-wrapper .single-button .global-url {
              font-size: 15px;
              line-height: 46px;
              height: 46px; } }
          @media only screen and (min-width: 768px) and (max-width: 991.98px) {
            #cards-listing .single-card .row .content-side .btn-wrapper .single-button .global-url {
              font-size: 14px;
              line-height: 44px;
              height: 44px; } }
          @media only screen and (max-width: 767.98px) {
            #cards-listing .single-card .row .content-side .btn-wrapper .single-button .global-url {
              font-size: 14px;
              line-height: 42px;
              height: 42px;
              margin: 0; } }
          #cards-listing .single-card .row .content-side .btn-wrapper .single-button .global-url:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0px;
            width: 50%;
            text-align: center;
            background-color: #BD0101;
            height: 1.5px;
            transition: transform 1.05s cubic-bezier(0.3, 0.86, 0.36, 0.95);
            will-change: transform;
            transition: all ease-in-out 0.5s; }
          #cards-listing .single-card .row .content-side .btn-wrapper .single-button .global-url.active, #cards-listing .single-card .row .content-side .btn-wrapper .single-button .global-url:hover {
            transition: all ease-in-out 0.5s; }
            #cards-listing .single-card .row .content-side .btn-wrapper .single-button .global-url.active:after, #cards-listing .single-card .row .content-side .btn-wrapper .single-button .global-url:hover:after {
              opacity: 1;
              width: 100%;
              transition: all ease-in-out 0.5s; }

#our-work {
  overflow: hidden;
  margin: 10px auto 0px; }
  @media only screen and (min-width: 992px) {
    #our-work {
      margin: 0px auto 80px; } }
  #our-work .works-wrapper {
    display: block;
    width: 100%; }
  #our-work #cards-row {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px; }
    #our-work #cards-row.filter .card {
      display: none;
      overflow: hidden; }
    #our-work #cards-row .card {
      width: 100%; }
      @media only screen and (min-width: 1200px) {
        #our-work #cards-row .card {
          width: calc(33.33% - 16px); } }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        #our-work #cards-row .card {
          width: calc(49.999% - 12px); } }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        #our-work #cards-row .card {
          width: calc(49.999% - 12px); } }
      #our-work #cards-row .card .card-content {
        width: 100%;
        overflow: hidden;
        display: block;
        position: relative; }
        #our-work #cards-row .card .card-content .image {
          position: relative; }
          #our-work #cards-row .card .card-content .image::after {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.25);
            content: ""; }
          #our-work #cards-row .card .card-content .image img {
            width: 100%; }
          #our-work #cards-row .card .card-content .image canvas {
            position: fixed;
            left: 0;
            top: 0;
            width: 100%;
            height: 100vh;
            z-index: 9; }
        #our-work #cards-row .card .card-content .info {
          position: absolute;
          left: 25px;
          bottom: 25px; }
          #our-work #cards-row .card .card-content .info .client-name {
            font-family: "Playfair Display", serif;
            letter-spacing: 0px;
            color: #fff;
            opacity: 1;
            position: relative;
            z-index: 1;
            transition: transform 0.5s ease-in-out;
            margin: 0 0 10px 0; }
            @media only screen and (min-width: 1551px) {
              #our-work #cards-row .card .card-content .info .client-name {
                font-size: 14px;
                line-height: 18px; } }
            @media only screen and (min-width: 1200px) and (max-width: 1550px) {
              #our-work #cards-row .card .card-content .info .client-name {
                font-size: 14px;
                line-height: 18px; } }
            @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
              #our-work #cards-row .card .card-content .info .client-name {
                font-size: 14px;
                line-height: 18px; } }
            @media only screen and (min-width: 768px) and (max-width: 991.98px) {
              #our-work #cards-row .card .card-content .info .client-name {
                font-size: 13px;
                line-height: 18px; } }
            @media only screen and (max-width: 767.98px) {
              #our-work #cards-row .card .card-content .info .client-name {
                font-size: 12px;
                line-height: 18px; } }
          #our-work #cards-row .card .card-content .info .project-name {
            font-family: "Playfair Display", serif;
            letter-spacing: 0px;
            color: #fff;
            opacity: 1;
            position: relative;
            z-index: 1;
            transition: transform 0.5s ease-in-out;
            margin: 0;
            font-weight: 400; }
            @media only screen and (min-width: 1551px) {
              #our-work #cards-row .card .card-content .info .project-name {
                font-size: 18px;
                line-height: 18px; } }
            @media only screen and (min-width: 1200px) and (max-width: 1550px) {
              #our-work #cards-row .card .card-content .info .project-name {
                font-size: 17px;
                line-height: 18px; } }
            @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
              #our-work #cards-row .card .card-content .info .project-name {
                font-size: 16px;
                line-height: 18px; } }
            @media only screen and (min-width: 768px) and (max-width: 991.98px) {
              #our-work #cards-row .card .card-content .info .project-name {
                font-size: 15px;
                line-height: 18px; } }
            @media only screen and (max-width: 767.98px) {
              #our-work #cards-row .card .card-content .info .project-name {
                font-size: 14px;
                line-height: 18px; } }
  @media only screen and (max-width: 1199.98px) {
    #our-work .other-works {
      overflow: hidden;
      position: relative; }
      #our-work .other-works #cards-row {
        float: left;
        flex-wrap: unset;
        width: max-content;
        padding: 5px 0px 20px; }
        #our-work .other-works #cards-row .card {
          width: 60vw; } }

#work-info .slider-wrapper {
  overflow: hidden;
  margin: 30px auto 0px; }
  @media only screen and (min-width: 992px) {
    #work-info .slider-wrapper {
      margin: 30px auto 0px; } }
  #work-info .slider-wrapper .slider-btn-container {
    right: 50%;
    transform: translateX(50%); }
    @media only screen and (max-width: 991.98px) {
      #work-info .slider-wrapper .slider-btn-container {
        bottom: 50%;
        transform: translate(50%, 50%); } }

#work-info .test {
  position: fixed;
  left: 0;
  top: 50px; }

#work-info .work-content {
  margin: 30px auto 0px; }
  @media only screen and (min-width: 992px) {
    #work-info .work-content {
      margin: 60px auto 0px; } }
  @media only screen and (min-width: 992px) {
    #work-info .work-content .main-info {
      max-width: 85%; } }
  #work-info .work-content .main-info .name {
    color: #0F0F0F;
    font-family: "Playfair Display", serif;
    text-align: left;
    line-height: 32px;
    font-weight: 400; }
    @media only screen and (min-width: 1551px) {
      #work-info .work-content .main-info .name {
        font-size: 28px; } }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #work-info .work-content .main-info .name {
        font-size: 24px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      #work-info .work-content .main-info .name {
        font-size: 22px; } }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      #work-info .work-content .main-info .name {
        font-size: 20px;
        text-align: center;
        max-width: 80%;
        margin: 0 auto;
        line-height: 26px; } }
    @media only screen and (max-width: 767.98px) {
      #work-info .work-content .main-info .name {
        text-align: center;
        font-size: 18px;
        margin: 0 auto;
        line-height: 24px;
        max-width: 90%; } }
  #work-info .work-content .main-info .data {
    margin: 30px 0; }
    #work-info .work-content .main-info .data .single-data {
      color: #0F0F0F;
      font-family: "Playfair Display", serif;
      text-align: left;
      font-weight: 600;
      line-height: 24px;
      margin-bottom: 10px; }
      #work-info .work-content .main-info .data .single-data span {
        font-family: "Playfair Display", serif;
        color: #0f7581;
        font-weight: 400; }
      @media only screen and (min-width: 1551px) {
        #work-info .work-content .main-info .data .single-data {
          font-size: 18px; } }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #work-info .work-content .main-info .data .single-data {
          font-size: 17px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        #work-info .work-content .main-info .data .single-data {
          font-size: 16px; } }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        #work-info .work-content .main-info .data .single-data {
          font-size: 15px;
          max-width: 80%;
          margin: 0 auto 10px;
          text-align: center; } }
      @media only screen and (max-width: 767.98px) {
        #work-info .work-content .main-info .data .single-data {
          text-align: center;
          font-size: 14px;
          max-width: 260px;
          margin: 0 auto 10px; } }
  @media only screen and (min-width: 992px) {
    #work-info .work-content .description {
      max-width: 85%; } }
  #work-info .work-content .description h1,
  #work-info .work-content .description h2,
  #work-info .work-content .description h3,
  #work-info .work-content .description h4,
  #work-info .work-content .description h5,
  #work-info .work-content .description h6 {
    text-align: left;
    font-weight: 700;
    color: #0F0F0F;
    margin-bottom: 30px;
    font-family: "Playfair Display", serif;
    visibility: hidden; }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      #work-info .work-content .description h1,
      #work-info .work-content .description h2,
      #work-info .work-content .description h3,
      #work-info .work-content .description h4,
      #work-info .work-content .description h5,
      #work-info .work-content .description h6 {
        max-width: 80%;
        margin: 0 auto 30px;
        text-align: center; } }
    @media only screen and (max-width: 767.98px) {
      #work-info .work-content .description h1,
      #work-info .work-content .description h2,
      #work-info .work-content .description h3,
      #work-info .work-content .description h4,
      #work-info .work-content .description h5,
      #work-info .work-content .description h6 {
        text-align: center;
        max-width: 90%;
        margin: 0 auto 30px; } }
    #work-info .work-content .description h1.fade_up,
    #work-info .work-content .description h2.fade_up,
    #work-info .work-content .description h3.fade_up,
    #work-info .work-content .description h4.fade_up,
    #work-info .work-content .description h5.fade_up,
    #work-info .work-content .description h6.fade_up {
      visibility: visible;
      -ms-animation: fadeUp 2s;
      /* Internet Explorer */
      animation: fadeUp 2s; }
  #work-info .work-content .description .single-image {
    display: block;
    width: 100%;
    margin-bottom: 30px;
    visibility: hidden; }
    #work-info .work-content .description .single-image.fade_up {
      visibility: visible;
      -ms-animation: fadeUp 2s;
      /* Internet Explorer */
      animation: fadeUp 2s; }
    #work-info .work-content .description .single-image img {
      width: 100%; }
  #work-info .work-content .description p {
    margin-bottom: 30px;
    color: #0F0F0F;
    font-family: "Playfair Display", serif;
    text-align: left;
    font-weight: 400;
    line-height: 24px;
    visibility: hidden; }
    #work-info .work-content .description p.fade_up {
      visibility: visible;
      -ms-animation: fadeUp 2s;
      /* Internet Explorer */
      animation: fadeUp 2s; }
    @media only screen and (min-width: 1551px) {
      #work-info .work-content .description p {
        font-size: 18px; } }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #work-info .work-content .description p {
        font-size: 17px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      #work-info .work-content .description p {
        font-size: 16px; } }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      #work-info .work-content .description p {
        font-size: 15px;
        max-width: 80%;
        margin: 0 auto 30px;
        text-align: center; } }
    @media only screen and (max-width: 767.98px) {
      #work-info .work-content .description p {
        text-align: center;
        font-size: 14px;
        max-width: 90%;
        margin: 0 auto 30px; } }

#work-info .images-gallery {
  margin: 30px auto 0px; }
  @media only screen and (min-width: 992px) {
    #work-info .images-gallery {
      margin: 60px auto 0px; } }
  #work-info .images-gallery .single-image {
    display: block;
    width: 100%;
    margin-bottom: 24px; }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      #work-info .images-gallery .single-image {
        margin-bottom: 18px; } }
    @media only screen and (min-width: 240px) and (max-width: sm) {
      #work-info .images-gallery .single-image {
        margin-bottom: 14px; } }
    #work-info .images-gallery .single-image img {
      width: 100%; }

.filter-wrapper {
  display: block;
  width: 100%;
  margin: 30px 0 10px;
  overflow: hidden;
  padding: 5px 0px 20px;
  position: relative;
  -webkit-overflow-scrolling: touch; }
  @media only screen and (min-width: 992px) {
    .filter-wrapper {
      max-width: 80%;
      margin: 30px 0 70px; } }
  .filter-wrapper #filters {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: start;
    align-items: center;
    float: left; }
    .filter-wrapper #filters li {
      text-align: left;
      font: normal normal normal 22px/76px "Playfair Display", serif;
      letter-spacing: 0.55px;
      color: #fff;
      text-transform: uppercase;
      opacity: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      width: max-content;
      position: relative;
      overflow: hidden;
      min-width: 160px;
      text-align: center;
      padding: 0px 10px; }
      @media only screen and (min-width: 1551px) {
        .filter-wrapper #filters li {
          font-size: 16px;
          line-height: 48px;
          height: 48px; } }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        .filter-wrapper #filters li {
          font-size: 15px;
          line-height: 48px;
          height: 48px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        .filter-wrapper #filters li {
          font-size: 15px;
          line-height: 46px;
          height: 46px; } }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        .filter-wrapper #filters li {
          font-size: 14px;
          line-height: 44px;
          height: 44px; } }
      @media only screen and (max-width: 767.98px) {
        .filter-wrapper #filters li {
          font-size: 14px;
          line-height: 42px;
          height: 42px;
          margin: 0; } }
      .filter-wrapper #filters li:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0px;
        width: 50%;
        text-align: center;
        background-color: #BD0101;
        height: 1.5px;
        transition: transform 1.05s cubic-bezier(0.3, 0.86, 0.36, 0.95);
        will-change: transform;
        transition: all ease-in-out 0.5s; }
      .filter-wrapper #filters li.active, .filter-wrapper #filters li:hover {
        transition: all ease-in-out 0.5s; }
        .filter-wrapper #filters li.active:after, .filter-wrapper #filters li:hover:after {
          opacity: 1;
          width: 100%;
          transition: all ease-in-out 0.5s; }
      .filter-wrapper #filters li span {
        background-color: transparent;
        border: 1px solid #0F0F0F;
        color: #0F0F0F; }

#our-services {
  overflow: hidden;
  margin: 60px auto 30px; }
  @media only screen and (min-width: 992px) {
    #our-services {
      margin: 80px auto; } }
  #our-services .single-service {
    margin-bottom: 60px; }
    @media only screen and (min-width: 992px) {
      #our-services .single-service:nth-of-type(even) .row {
        flex-direction: row-reverse; } }
    #our-services .single-service:nth-of-type(even) .row .image-side img {
      visibility: hidden; }
      #our-services .single-service:nth-of-type(even) .row .image-side img.show {
        visibility: visible;
        -ms-animation: fadeUp 2s;
        /* Internet Explorer */
        animation: fadeUp 2s; }
        @media only screen and (min-width: 992px) {
          #our-services .single-service:nth-of-type(even) .row .image-side img.show {
            visibility: visible;
            -ms-animation: fadeFromRight 2s;
            /* Internet Explorer */
            animation: fadeFromRight 2s; } }
    #our-services .single-service:nth-of-type(odd) .row .image-side img {
      visibility: hidden; }
      #our-services .single-service:nth-of-type(odd) .row .image-side img.show {
        visibility: visible;
        -ms-animation: fadeUp 2s;
        /* Internet Explorer */
        animation: fadeUp 2s; }
        @media only screen and (min-width: 992px) {
          #our-services .single-service:nth-of-type(odd) .row .image-side img.show {
            visibility: visible;
            -ms-animation: fadeFromLeft 2s;
            /* Internet Explorer */
            animation: fadeFromLeft 2s; } }
    #our-services .single-service .row {
      align-items: center;
      overflow: hidden; }
      #our-services .single-service .row .image-side {
        overflow: hidden; }
        #our-services .single-service .row .image-side .image-wrapper {
          overflow: hidden; }
          #our-services .single-service .row .image-side .image-wrapper img {
            width: 100%;
            transition: all ease-in-out 0.5s; }
        #our-services .single-service .row .image-side .global-btn {
          text-align: left;
          font: normal normal normal 22px/76px "Playfair Display", serif;
          letter-spacing: 0.55px;
          color: #fff;
          text-transform: uppercase;
          opacity: 1;
          display: flex;
          align-items: center;
          justify-content: center;
          text-decoration: none;
          width: max-content;
          position: relative;
          overflow: hidden;
          margin: 30px auto 0px !important; }
          @media only screen and (min-width: 1551px) {
            #our-services .single-service .row .image-side .global-btn {
              font-size: 16px;
              line-height: 48px;
              height: 48px; } }
          @media only screen and (min-width: 1200px) and (max-width: 1550px) {
            #our-services .single-service .row .image-side .global-btn {
              font-size: 15px;
              line-height: 48px;
              height: 48px; } }
          @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
            #our-services .single-service .row .image-side .global-btn {
              font-size: 15px;
              line-height: 46px;
              height: 46px; } }
          @media only screen and (min-width: 768px) and (max-width: 991.98px) {
            #our-services .single-service .row .image-side .global-btn {
              font-size: 14px;
              line-height: 44px;
              height: 44px; } }
          @media only screen and (max-width: 767.98px) {
            #our-services .single-service .row .image-side .global-btn {
              font-size: 14px;
              line-height: 42px;
              height: 42px;
              margin: 0; } }
          #our-services .single-service .row .image-side .global-btn:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0px;
            width: 50%;
            text-align: center;
            background-color: #BD0101;
            height: 1.5px;
            transition: transform 1.05s cubic-bezier(0.3, 0.86, 0.36, 0.95);
            will-change: transform;
            transition: all ease-in-out 0.5s; }
          #our-services .single-service .row .image-side .global-btn.active, #our-services .single-service .row .image-side .global-btn:hover {
            transition: all ease-in-out 0.5s; }
            #our-services .single-service .row .image-side .global-btn.active:after, #our-services .single-service .row .image-side .global-btn:hover:after {
              opacity: 1;
              width: 100%;
              transition: all ease-in-out 0.5s; }
          @media only screen and (min-width: 992px) {
            #our-services .single-service .row .image-side .global-btn {
              display: none !important; } }
      #our-services .single-service .row .content-side {
        max-width: 80%;
        width: 400px;
        margin: 0px auto; }
        @media only screen and (max-width: 991.98px) {
          #our-services .single-service .row .content-side {
            max-width: 90%; } }
        #our-services .single-service .row .content-side .title {
          color: #0F0F0F;
          font-family: "Playfair Display", serif;
          text-align: left;
          line-height: 32px;
          font-weight: 400; }
          @media only screen and (min-width: 1551px) {
            #our-services .single-service .row .content-side .title {
              font-size: 28px; } }
          @media only screen and (min-width: 1200px) and (max-width: 1550px) {
            #our-services .single-service .row .content-side .title {
              font-size: 24px; } }
          @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
            #our-services .single-service .row .content-side .title {
              font-size: 22px; } }
          @media only screen and (min-width: 768px) and (max-width: 991.98px) {
            #our-services .single-service .row .content-side .title {
              font-size: 20px;
              text-align: center; } }
          @media only screen and (max-width: 767.98px) {
            #our-services .single-service .row .content-side .title {
              text-align: center;
              font-size: 18px; } }
        #our-services .single-service .row .content-side .description {
          color: #0F0F0F;
          font-family: "Playfair Display", serif;
          text-align: left;
          margin: 20px 0;
          font-weight: 400; }
          @media only screen and (min-width: 1551px) {
            #our-services .single-service .row .content-side .description {
              font-size: 18px;
              line-height: 24px; } }
          @media only screen and (min-width: 1200px) and (max-width: 1550px) {
            #our-services .single-service .row .content-side .description {
              font-size: 17px;
              line-height: 21px; } }
          @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
            #our-services .single-service .row .content-side .description {
              font-size: 16px;
              line-height: 20px; } }
          @media only screen and (min-width: 768px) and (max-width: 991.98px) {
            #our-services .single-service .row .content-side .description {
              font-size: 15px;
              line-height: 19px;
              max-width: 80%;
              margin: 15px auto 30px;
              text-align: center; } }
          @media only screen and (max-width: 767.98px) {
            #our-services .single-service .row .content-side .description {
              text-align: center;
              font-size: 14px;
              line-height: 18px;
              max-width: 260px;
              margin: 15px auto 30px; } }
        #our-services .single-service .row .content-side .global-btn {
          text-align: left;
          font: normal normal normal 22px/76px "Playfair Display", serif;
          letter-spacing: 0.55px;
          color: #fff;
          text-transform: uppercase;
          opacity: 1;
          display: flex;
          align-items: center;
          justify-content: center;
          text-decoration: none;
          width: max-content;
          position: relative;
          overflow: hidden; }
          @media only screen and (min-width: 1551px) {
            #our-services .single-service .row .content-side .global-btn {
              font-size: 16px;
              line-height: 48px;
              height: 48px; } }
          @media only screen and (min-width: 1200px) and (max-width: 1550px) {
            #our-services .single-service .row .content-side .global-btn {
              font-size: 15px;
              line-height: 48px;
              height: 48px; } }
          @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
            #our-services .single-service .row .content-side .global-btn {
              font-size: 15px;
              line-height: 46px;
              height: 46px; } }
          @media only screen and (min-width: 768px) and (max-width: 991.98px) {
            #our-services .single-service .row .content-side .global-btn {
              font-size: 14px;
              line-height: 44px;
              height: 44px; } }
          @media only screen and (max-width: 767.98px) {
            #our-services .single-service .row .content-side .global-btn {
              font-size: 14px;
              line-height: 42px;
              height: 42px;
              margin: 0; } }
          #our-services .single-service .row .content-side .global-btn:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0px;
            width: 50%;
            text-align: center;
            background-color: #BD0101;
            height: 1.5px;
            transition: transform 1.05s cubic-bezier(0.3, 0.86, 0.36, 0.95);
            will-change: transform;
            transition: all ease-in-out 0.5s; }
          #our-services .single-service .row .content-side .global-btn.active, #our-services .single-service .row .content-side .global-btn:hover {
            transition: all ease-in-out 0.5s; }
            #our-services .single-service .row .content-side .global-btn.active:after, #our-services .single-service .row .content-side .global-btn:hover:after {
              opacity: 1;
              width: 100%;
              transition: all ease-in-out 0.5s; }
          @media only screen and (max-width: 991.98px) {
            #our-services .single-service .row .content-side .global-btn {
              display: none !important; } }

#our-blog {
  overflow: hidden;
  margin: 10px auto 0px; }
  @media only screen and (min-width: 992px) {
    #our-blog {
      margin: 80px auto; } }
  #our-blog .single-blog {
    margin-bottom: 60px; }
    #our-blog .single-blog:nth-of-type(even) .row .image-side img, #our-blog .single-blog:nth-of-type(odd) .row .image-side img {
      visibility: hidden; }
      #our-blog .single-blog:nth-of-type(even) .row .image-side img.show, #our-blog .single-blog:nth-of-type(odd) .row .image-side img.show {
        visibility: visible;
        -ms-animation: fadeUp 2s;
        /* Internet Explorer */
        animation: fadeUp 2s; }
        @media only screen and (min-width: 992px) {
          #our-blog .single-blog:nth-of-type(even) .row .image-side img.show, #our-blog .single-blog:nth-of-type(odd) .row .image-side img.show {
            visibility: visible;
            -ms-animation: fadeFromLeft 2s;
            /* Internet Explorer */
            animation: fadeFromLeft 2s; } }
    #our-blog .single-blog .row {
      align-items: center;
      overflow: hidden; }
      #our-blog .single-blog .row .image-side .image-wrapper {
        overflow: hidden; }
        @media only screen and (max-width: 991.98px) {
          #our-blog .single-blog .row .image-side .image-wrapper {
            margin-bottom: 15px; } }
        #our-blog .single-blog .row .image-side .image-wrapper img {
          width: 100%;
          transition: all ease-in-out 0.5s; }
      #our-blog .single-blog .row .content-side {
        max-width: 80%;
        width: 400px;
        margin: 0px auto;
        display: block;
        text-decoration: none; }
        #our-blog .single-blog .row .content-side .title {
          color: #0F0F0F;
          font-family: "Playfair Display", serif;
          text-align: left;
          line-height: 32px;
          font-weight: 400; }
          @media only screen and (min-width: 1551px) {
            #our-blog .single-blog .row .content-side .title {
              font-size: 28px; } }
          @media only screen and (min-width: 1200px) and (max-width: 1550px) {
            #our-blog .single-blog .row .content-side .title {
              font-size: 24px; } }
          @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
            #our-blog .single-blog .row .content-side .title {
              font-size: 22px; } }
          @media only screen and (min-width: 768px) and (max-width: 991.98px) {
            #our-blog .single-blog .row .content-side .title {
              font-size: 20px;
              text-align: center; } }
          @media only screen and (max-width: 767.98px) {
            #our-blog .single-blog .row .content-side .title {
              text-align: center;
              font-size: 18px; } }
        #our-blog .single-blog .row .content-side .description {
          color: #0F0F0F;
          font-family: "Playfair Display", serif;
          text-align: left;
          margin: 20px 0;
          font-weight: 400; }
          @media only screen and (min-width: 1551px) {
            #our-blog .single-blog .row .content-side .description {
              font-size: 18px;
              line-height: 24px; } }
          @media only screen and (min-width: 1200px) and (max-width: 1550px) {
            #our-blog .single-blog .row .content-side .description {
              font-size: 17px;
              line-height: 21px; } }
          @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
            #our-blog .single-blog .row .content-side .description {
              font-size: 16px;
              line-height: 20px; } }
          @media only screen and (min-width: 768px) and (max-width: 991.98px) {
            #our-blog .single-blog .row .content-side .description {
              font-size: 15px;
              line-height: 19px;
              max-width: 80%;
              margin: 15px auto 30px;
              text-align: center; } }
          @media only screen and (max-width: 767.98px) {
            #our-blog .single-blog .row .content-side .description {
              text-align: center;
              font-size: 14px;
              line-height: 18px;
              max-width: 90%;
              margin: 15px auto 30px; } }
        #our-blog .single-blog .row .content-side .global-btn {
          text-align: left;
          font: normal normal normal 22px/76px "Playfair Display", serif;
          letter-spacing: 0.55px;
          color: #fff;
          text-transform: uppercase;
          opacity: 1;
          display: flex;
          align-items: center;
          justify-content: center;
          text-decoration: none;
          width: max-content;
          position: relative;
          overflow: hidden; }
          @media only screen and (min-width: 1551px) {
            #our-blog .single-blog .row .content-side .global-btn {
              font-size: 16px;
              line-height: 48px;
              height: 48px; } }
          @media only screen and (min-width: 1200px) and (max-width: 1550px) {
            #our-blog .single-blog .row .content-side .global-btn {
              font-size: 15px;
              line-height: 48px;
              height: 48px; } }
          @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
            #our-blog .single-blog .row .content-side .global-btn {
              font-size: 15px;
              line-height: 46px;
              height: 46px; } }
          @media only screen and (min-width: 768px) and (max-width: 991.98px) {
            #our-blog .single-blog .row .content-side .global-btn {
              font-size: 14px;
              line-height: 44px;
              height: 44px; } }
          @media only screen and (max-width: 767.98px) {
            #our-blog .single-blog .row .content-side .global-btn {
              font-size: 14px;
              line-height: 42px;
              height: 42px;
              margin: 0; } }
          #our-blog .single-blog .row .content-side .global-btn:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0px;
            width: 50%;
            text-align: center;
            background-color: #BD0101;
            height: 1.5px;
            transition: transform 1.05s cubic-bezier(0.3, 0.86, 0.36, 0.95);
            will-change: transform;
            transition: all ease-in-out 0.5s; }
          #our-blog .single-blog .row .content-side .global-btn.active, #our-blog .single-blog .row .content-side .global-btn:hover {
            transition: all ease-in-out 0.5s; }
            #our-blog .single-blog .row .content-side .global-btn.active:after, #our-blog .single-blog .row .content-side .global-btn:hover:after {
              opacity: 1;
              width: 100%;
              transition: all ease-in-out 0.5s; }
          @media only screen and (max-width: 991.98px) {
            #our-blog .single-blog .row .content-side .global-btn {
              margin: 30px auto 0px !important; } }
  #our-blog #cards-row {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px; }
    #our-blog #cards-row.filter .card {
      display: none;
      overflow: hidden; }
    #our-blog #cards-row .card {
      width: 100%; }
      @media only screen and (min-width: 1200px) {
        #our-blog #cards-row .card {
          width: calc(33.33% - 16px); } }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        #our-blog #cards-row .card {
          width: calc(49.999% - 12px); } }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        #our-blog #cards-row .card {
          width: calc(49.999% - 12px); } }
      #our-blog #cards-row .card .card-content {
        width: 100%;
        overflow: hidden;
        display: block;
        position: relative; }
        #our-blog #cards-row .card .card-content .image {
          position: relative; }
          #our-blog #cards-row .card .card-content .image::after {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.25);
            content: ""; }
          #our-blog #cards-row .card .card-content .image img {
            width: 100%; }
          #our-blog #cards-row .card .card-content .image canvas {
            position: fixed;
            left: 0;
            top: 0;
            width: 100%;
            height: 100vh;
            z-index: 9; }
        #our-blog #cards-row .card .card-content .info {
          position: absolute;
          left: 25px;
          bottom: 25px; }
          #our-blog #cards-row .card .card-content .info .client-name {
            font-family: "Playfair Display", serif;
            letter-spacing: 0px;
            color: #fff;
            opacity: 1;
            position: relative;
            z-index: 1;
            transition: transform 0.5s ease-in-out;
            margin: 0 0 10px 0; }
            @media only screen and (min-width: 1551px) {
              #our-blog #cards-row .card .card-content .info .client-name {
                font-size: 14px;
                line-height: 18px; } }
            @media only screen and (min-width: 1200px) and (max-width: 1550px) {
              #our-blog #cards-row .card .card-content .info .client-name {
                font-size: 14px;
                line-height: 18px; } }
            @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
              #our-blog #cards-row .card .card-content .info .client-name {
                font-size: 14px;
                line-height: 18px; } }
            @media only screen and (min-width: 768px) and (max-width: 991.98px) {
              #our-blog #cards-row .card .card-content .info .client-name {
                font-size: 13px;
                line-height: 18px; } }
            @media only screen and (max-width: 767.98px) {
              #our-blog #cards-row .card .card-content .info .client-name {
                font-size: 12px;
                line-height: 18px; } }
          #our-blog #cards-row .card .card-content .info .project-name {
            font-family: "Playfair Display", serif;
            letter-spacing: 0px;
            color: #fff;
            opacity: 1;
            position: relative;
            z-index: 1;
            transition: transform 0.5s ease-in-out;
            margin: 0;
            font-weight: 400; }
            @media only screen and (min-width: 1551px) {
              #our-blog #cards-row .card .card-content .info .project-name {
                font-size: 18px;
                line-height: 18px; } }
            @media only screen and (min-width: 1200px) and (max-width: 1550px) {
              #our-blog #cards-row .card .card-content .info .project-name {
                font-size: 17px;
                line-height: 18px; } }
            @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
              #our-blog #cards-row .card .card-content .info .project-name {
                font-size: 16px;
                line-height: 18px; } }
            @media only screen and (min-width: 768px) and (max-width: 991.98px) {
              #our-blog #cards-row .card .card-content .info .project-name {
                font-size: 15px;
                line-height: 18px; } }
            @media only screen and (max-width: 767.98px) {
              #our-blog #cards-row .card .card-content .info .project-name {
                font-size: 14px;
                line-height: 18px; } }
  @media only screen and (max-width: 1199.98px) {
    #our-blog .other-blog {
      overflow: hidden;
      position: relative; }
      #our-blog .other-blog #cards-row {
        float: left;
        flex-wrap: unset;
        width: max-content;
        padding: 5px 0px 20px; }
        #our-blog .other-blog #cards-row .card {
          width: 60vw; } }

.pagination-wrapper {
  width: 300px;
  margin: 20px auto 90px;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  @media only screen and (max-width: 991.98px) {
    .pagination-wrapper {
      margin: 10px auto 50px; } }
  .pagination-wrapper .text {
    color: #0F0F0F;
    font-family: "Playfair Display", serif;
    text-align: center;
    margin: 0;
    font-weight: 400; }
    @media only screen and (min-width: 1551px) {
      .pagination-wrapper .text {
        font-size: 18px;
        line-height: 24px; } }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      .pagination-wrapper .text {
        font-size: 17px;
        line-height: 21px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      .pagination-wrapper .text {
        font-size: 16px;
        line-height: 20px; } }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      .pagination-wrapper .text {
        font-size: 15px;
        line-height: 19px;
        text-align: center; } }
    @media only screen and (max-width: 767.98px) {
      .pagination-wrapper .text {
        text-align: center;
        font-size: 14px;
        line-height: 18px; } }
  .pagination-wrapper button {
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none; }
    @media only screen and (min-width: 1551px) {
      .pagination-wrapper button {
        width: 44px;
        height: 44px; } }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      .pagination-wrapper button {
        width: 42px;
        height: 42px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      .pagination-wrapper button {
        width: 40px;
        height: 40px; } }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      .pagination-wrapper button {
        width: 38px;
        height: 38px; } }
    @media only screen and (max-width: 767.98px) {
      .pagination-wrapper button {
        width: 36px;
        height: 36px; } }
    .pagination-wrapper button svg {
      display: block;
      width: 100%; }
    .pagination-wrapper button.next {
      transform: rotateZ(180deg) !important;
      transform-origin: center center !important; }

#blog-info .slider-wrapper {
  overflow: hidden;
  margin: 30px auto 0px; }
  @media only screen and (min-width: 992px) {
    #blog-info .slider-wrapper {
      margin: 70px auto 0px; } }
  #blog-info .slider-wrapper .slider-btn-container {
    right: 50%;
    transform: translateX(50%); }
    @media only screen and (max-width: 991.98px) {
      #blog-info .slider-wrapper .slider-btn-container {
        bottom: 50%;
        transform: translate(50%, 50%); } }

#blog-info .test {
  position: fixed;
  left: 0;
  top: 50px; }

#blog-info .blog-content {
  margin: 30px auto 0px; }
  @media only screen and (min-width: 992px) {
    #blog-info .blog-content {
      margin: 60px auto 0px; } }
  @media only screen and (min-width: 992px) {
    #blog-info .blog-content .main-info {
      max-width: 85%; } }
  #blog-info .blog-content .main-info .name {
    color: #0F0F0F;
    font-family: "Playfair Display", serif;
    text-align: left;
    line-height: 32px;
    font-weight: 400; }
    @media only screen and (min-width: 1551px) {
      #blog-info .blog-content .main-info .name {
        font-size: 28px; } }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #blog-info .blog-content .main-info .name {
        font-size: 24px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      #blog-info .blog-content .main-info .name {
        font-size: 22px; } }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      #blog-info .blog-content .main-info .name {
        font-size: 20px;
        text-align: center;
        max-width: 80%;
        margin: 0 auto 55px;
        line-height: 26px; } }
    @media only screen and (max-width: 767.98px) {
      #blog-info .blog-content .main-info .name {
        text-align: center;
        font-size: 18px;
        margin: 0 auto 55px;
        line-height: 24px;
        max-width: 90%; } }
  #blog-info .blog-content .main-info .data {
    margin: 30px 0; }
    #blog-info .blog-content .main-info .data .single-data {
      color: #0F0F0F;
      font-family: "Playfair Display", serif;
      text-align: left;
      font-weight: 600;
      line-height: 24px;
      margin-bottom: 10px; }
      #blog-info .blog-content .main-info .data .single-data span {
        font-family: "Playfair Display", serif;
        color: #0f7581;
        font-weight: 400; }
      @media only screen and (min-width: 1551px) {
        #blog-info .blog-content .main-info .data .single-data {
          font-size: 18px; } }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #blog-info .blog-content .main-info .data .single-data {
          font-size: 17px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        #blog-info .blog-content .main-info .data .single-data {
          font-size: 16px; } }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        #blog-info .blog-content .main-info .data .single-data {
          font-size: 15px;
          max-width: 80%;
          margin: 0 auto 10px;
          text-align: center; } }
      @media only screen and (max-width: 767.98px) {
        #blog-info .blog-content .main-info .data .single-data {
          text-align: center;
          font-size: 14px;
          max-width: 90%;
          margin: 0 auto 10px; } }
  @media only screen and (min-width: 992px) {
    #blog-info .blog-content .description {
      max-width: 85%; } }
  #blog-info .blog-content .description h1,
  #blog-info .blog-content .description h2,
  #blog-info .blog-content .description h3,
  #blog-info .blog-content .description h4,
  #blog-info .blog-content .description h5,
  #blog-info .blog-content .description h6 {
    text-align: left;
    font-weight: 700;
    color: #0F0F0F;
    margin-bottom: 30px;
    font-family: "Playfair Display", serif;
    visibility: hidden; }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      #blog-info .blog-content .description h1,
      #blog-info .blog-content .description h2,
      #blog-info .blog-content .description h3,
      #blog-info .blog-content .description h4,
      #blog-info .blog-content .description h5,
      #blog-info .blog-content .description h6 {
        max-width: 80%;
        margin: 0 auto 30px;
        text-align: center; } }
    @media only screen and (max-width: 767.98px) {
      #blog-info .blog-content .description h1,
      #blog-info .blog-content .description h2,
      #blog-info .blog-content .description h3,
      #blog-info .blog-content .description h4,
      #blog-info .blog-content .description h5,
      #blog-info .blog-content .description h6 {
        text-align: center;
        max-width: 90%;
        margin: 0 auto 30px; } }
    #blog-info .blog-content .description h1.fade_up,
    #blog-info .blog-content .description h2.fade_up,
    #blog-info .blog-content .description h3.fade_up,
    #blog-info .blog-content .description h4.fade_up,
    #blog-info .blog-content .description h5.fade_up,
    #blog-info .blog-content .description h6.fade_up {
      visibility: visible;
      -ms-animation: fadeUp 2s;
      /* Internet Explorer */
      animation: fadeUp 2s; }
  #blog-info .blog-content .description .single-image {
    display: block;
    width: 100%;
    margin-bottom: 30px;
    visibility: hidden; }
    #blog-info .blog-content .description .single-image.fade_up {
      visibility: visible;
      -ms-animation: fadeUp 2s;
      /* Internet Explorer */
      animation: fadeUp 2s; }
    #blog-info .blog-content .description .single-image img {
      width: 100%; }
  #blog-info .blog-content .description p {
    margin-bottom: 30px;
    color: #0F0F0F;
    font-family: "Playfair Display", serif;
    text-align: left;
    font-weight: 400;
    line-height: 24px;
    visibility: hidden; }
    #blog-info .blog-content .description p.fade_up {
      visibility: visible;
      -ms-animation: fadeUp 2s;
      /* Internet Explorer */
      animation: fadeUp 2s; }
    @media only screen and (min-width: 1551px) {
      #blog-info .blog-content .description p {
        font-size: 18px; } }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #blog-info .blog-content .description p {
        font-size: 17px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      #blog-info .blog-content .description p {
        font-size: 16px; } }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      #blog-info .blog-content .description p {
        font-size: 15px;
        max-width: 80%;
        margin: 0 auto 30px;
        text-align: center; } }
    @media only screen and (max-width: 767.98px) {
      #blog-info .blog-content .description p {
        text-align: center;
        font-size: 14px;
        max-width: 90%;
        margin: 0 auto 30px; } }

#blog-info .images-gallery {
  margin: 30px auto 0px; }
  @media only screen and (min-width: 992px) {
    #blog-info .images-gallery {
      margin: 60px auto 0px; } }
  #blog-info .images-gallery .single-image {
    display: block;
    width: 100%;
    margin-bottom: 24px; }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      #blog-info .images-gallery .single-image {
        margin-bottom: 18px; } }
    @media only screen and (min-width: 240px) and (max-width: sm) {
      #blog-info .images-gallery .single-image {
        margin-bottom: 14px; } }
    #blog-info .images-gallery .single-image img {
      width: 100%; }

#contact-section {
  position: relative;
  margin: 90px auto; }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    #contact-section {
      margin: 60px auto;
      max-width: 85%; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    #contact-section {
      margin: 40px auto;
      max-width: 100%; } }
  @media only screen and (max-width: 767.98px) {
    #contact-section {
      margin: 20px auto;
      max-width: 100%; } }
  #contact-section .contact-box {
    align-items: center;
    padding-left: 40px;
    display: flex;
    position: relative; }
    @media only screen and (max-width: 991.98px) {
      #contact-section .contact-box {
        margin: 0 0 70px !important;
        padding-left: 30px; } }
    #contact-section .contact-box .vertical {
      transform-origin: 0%;
      position: absolute;
      top: 69px;
      bottom: auto;
      left: 15px;
      right: auto;
      transform: rotate(-90deg);
      text-align: left;
      font: normal normal 400 13px/25px "Playfair Display", serif;
      letter-spacing: 0.32px;
      color: #fff;
      opacity: 1; }
      @media only screen and (max-width: 991.98px) {
        #contact-section .contact-box .vertical {
          font-size: 14px;
          line-height: 22px;
          left: 10px; } }
    #contact-section .contact-box .content {
      width: 100%; }
      #contact-section .contact-box .content .global-url {
        margin: 30px 0 0;
        max-width: 100%;
        text-align: left;
        font: normal normal normal 22px/76px "Playfair Display", serif;
        letter-spacing: 0.55px;
        color: #fff;
        text-transform: uppercase;
        opacity: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        width: max-content;
        position: relative;
        overflow: hidden; }
        @media only screen and (min-width: 1551px) {
          #contact-section .contact-box .content .global-url {
            font-size: 16px;
            line-height: 48px;
            height: 48px; } }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #contact-section .contact-box .content .global-url {
            font-size: 15px;
            line-height: 48px;
            height: 48px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
          #contact-section .contact-box .content .global-url {
            font-size: 15px;
            line-height: 46px;
            height: 46px; } }
        @media only screen and (min-width: 768px) and (max-width: 991.98px) {
          #contact-section .contact-box .content .global-url {
            font-size: 14px;
            line-height: 44px;
            height: 44px; } }
        @media only screen and (max-width: 767.98px) {
          #contact-section .contact-box .content .global-url {
            font-size: 14px;
            line-height: 42px;
            height: 42px;
            margin: 0; } }
        #contact-section .contact-box .content .global-url:after {
          content: "";
          position: absolute;
          bottom: 0;
          left: 0px;
          width: 50%;
          text-align: center;
          background-color: #BD0101;
          height: 1.5px;
          transition: transform 1.05s cubic-bezier(0.3, 0.86, 0.36, 0.95);
          will-change: transform;
          transition: all ease-in-out 0.5s; }
        #contact-section .contact-box .content .global-url.active, #contact-section .contact-box .content .global-url:hover {
          transition: all ease-in-out 0.5s; }
          #contact-section .contact-box .content .global-url.active:after, #contact-section .contact-box .content .global-url:hover:after {
            opacity: 1;
            width: 100%;
            transition: all ease-in-out 0.5s; }
        @media only screen and (max-width: 991.98px) {
          #contact-section .contact-box .content .global-url {
            margin: 30px 0    0       !important; } }
      #contact-section .contact-box .content .iframe iframe {
        width: 100%; }
      #contact-section .contact-box .content p {
        text-align: left;
        font: normal normal 400 32px/45px "Playfair Display", serif;
        letter-spacing: 0.4px;
        color: #fff;
        opacity: 1; }
        @media only screen and (max-width: 991.98px) {
          #contact-section .contact-box .content p {
            font-size: 16px;
            line-height: 22px; } }
      #contact-section .contact-box .content .links li {
        margin: 0px 0 10px; }
        #contact-section .contact-box .content .links li a {
          text-align: left;
          font: normal normal 400 32px/45px "Playfair Display", serif;
          letter-spacing: 0.4px;
          color: #fff;
          opacity: 1;
          width: max-content;
          text-decoration: none;
          max-width: 100%;
          position: relative;
          overflow: hidden;
          padding-bottom: 0.2em;
          margin: 0 0 -0.2em;
          display: block; }
          @media only screen and (max-width: 991.98px) {
            #contact-section .contact-box .content .links li a {
              font-size: 16px;
              line-height: 22px; } }
          #contact-section .contact-box .content .links li a span {
            transition: transform 1.05s cubic-bezier(0.3, 0.86, 0.36, 0.95);
            will-change: transform;
            position: relative;
            display: block; }
          @media only screen and (min-width: 1200px) {
            #contact-section .contact-box .content .links li a {
              margin: 0 0 -0.2em; } }
          #contact-section .contact-box .content .links li a:after {
            transition: transform 1.05s cubic-bezier(0.3, 0.86, 0.36, 0.95);
            will-change: transform;
            content: attr(data-title);
            position: absolute;
            transform: translate(-50%, 110%);
            left: 50%;
            top: 0;
            color: currentColor;
            text-align: left;
            width: 100%; }
          #contact-section .contact-box .content .links li a:hover {
            color: #BD0101;
            opacity: 0.8; }
            #contact-section .contact-box .content .links li a:hover span {
              transform: translateY(-125%); }
            #contact-section .contact-box .content .links li a:hover:after {
              transform: translate(-50%, 0%); }
  #contact-section .form-wrapper {
    margin: auto;
    max-width: 100%;
    width: 690px;
    position: relative; }
    #contact-section .form-wrapper:after {
      position: absolute;
      right: 0;
      top: 50%;
      content: "";
      background-position: center center;
      background-size: contain;
      background-repeat: no-repeat;
      width: 45vw;
      height: 45vh;
      transform: translate(50%, -80%);
      z-index: -1; }
    #contact-section .form-wrapper .form-item {
      width: 100%;
      display: block;
      margin-bottom: 35px; }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        #contact-section .form-wrapper .form-item {
          font-size: 13px;
          line-height: 20px;
          padding: 13px;
          margin-bottom: 20px; } }
      @media only screen and (max-width: 767.98px) {
        #contact-section .form-wrapper .form-item {
          font-size: 11px;
          line-height: 18px;
          padding: 13px;
          margin-bottom: 15px; } }
      #contact-section .form-wrapper .form-item label {
        text-align: left;
        font: normal normal 400 18px/32px "Playfair Display", serif;
        letter-spacing: 0px;
        color: #fff;
        opacity: 1;
        opacity: 1;
        width: 100%;
        margin: 10px 0;
        text-transform: capitalize;
        background-color: transparent;
        display: block; }
        @media only screen and (min-width: 1551px) {
          #contact-section .form-wrapper .form-item label {
            font-size: 18px;
            line-height: 25px; } }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #contact-section .form-wrapper .form-item label {
            font-size: 17px;
            line-height: 25px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
          #contact-section .form-wrapper .form-item label {
            font-size: 16px;
            line-height: 25px; } }
        @media only screen and (min-width: 768px) and (max-width: 991.98px) {
          #contact-section .form-wrapper .form-item label {
            font-size: 15px;
            line-height: 25px;
            margin: 5px 0 0 0; } }
        @media only screen and (max-width: 767.98px) {
          #contact-section .form-wrapper .form-item label {
            font-size: 13px;
            line-height: 25px;
            margin: 5px 0 0 0; } }
      #contact-section .form-wrapper .form-item textarea,
      #contact-section .form-wrapper .form-item input {
        text-align: left;
        font: normal normal 400 16px/32px "Playfair Display", serif;
        letter-spacing: 0px;
        color: #161616;
        opacity: 1;
        border-radius: 2px;
        opacity: 1;
        padding: 12px 0;
        outline: 0;
        width: 100%;
        border: none;
        border: 1px solid #E6E6E6;
        text-transform: capitalize;
        background-color: #fff !important; }
        #contact-section .form-wrapper .form-item textarea.placeholder,
        #contact-section .form-wrapper .form-item input.placeholder {
          color: #2B2B2B; }
        #contact-section .form-wrapper .form-item textarea:-moz-placeholder,
        #contact-section .form-wrapper .form-item input:-moz-placeholder {
          color: #2B2B2B; }
        #contact-section .form-wrapper .form-item textarea::-moz-placeholder,
        #contact-section .form-wrapper .form-item input::-moz-placeholder {
          color: #2B2B2B; }
        #contact-section .form-wrapper .form-item textarea:-ms-input-placeholder,
        #contact-section .form-wrapper .form-item input:-ms-input-placeholder {
          color: #2B2B2B; }
        #contact-section .form-wrapper .form-item textarea::-webkit-input-placeholder,
        #contact-section .form-wrapper .form-item input::-webkit-input-placeholder {
          color: #2B2B2B; }
        @media only screen and (min-width: 1551px) {
          #contact-section .form-wrapper .form-item textarea,
          #contact-section .form-wrapper .form-item input {
            font-size: 16px;
            line-height: 25px;
            padding: 12px; } }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #contact-section .form-wrapper .form-item textarea,
          #contact-section .form-wrapper .form-item input {
            font-size: 15px;
            line-height: 22px;
            padding: 15px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
          #contact-section .form-wrapper .form-item textarea,
          #contact-section .form-wrapper .form-item input {
            font-size: 14px;
            line-height: 20px;
            padding: 15px; } }
        @media only screen and (min-width: 768px) and (max-width: 991.98px) {
          #contact-section .form-wrapper .form-item textarea,
          #contact-section .form-wrapper .form-item input {
            font-size: 13px;
            line-height: 20px;
            padding: 13px; } }
        @media only screen and (max-width: 767.98px) {
          #contact-section .form-wrapper .form-item textarea,
          #contact-section .form-wrapper .form-item input {
            font-size: 11px;
            line-height: 18px;
            padding: 13px; } }
        #contact-section .form-wrapper .form-item textarea.error,
        #contact-section .form-wrapper .form-item input.error {
          border: 1px solid red !important; }
      #contact-section .form-wrapper .form-item textarea {
        height: 90px; }
    #contact-section .form-wrapper .contact-form-group button {
      border: 1px solid #fff;
      border-radius: 3px;
      padding: 0px 35px;
      width: max-content;
      overflow: hidden;
      position: relative;
      max-width: 100%;
      min-width: 300px;
      transition: all 0.3s ease;
      font-weight: 600;
      text-decoration: none;
      font-size: 17px;
      line-height: 64px;
      font-family: "Playfair Display", serif;
      display: block;
      opacity: 1;
      letter-spacing: 1.6px;
      color: #fff;
      background-color: transparent;
      position: relative;
      margin: 25px auto;
      text-transform: capitalize; }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        #contact-section .form-wrapper .contact-form-group button {
          font-size: 15px;
          line-height: 52px; } }
      @media only screen and (max-width: 767.98px) {
        #contact-section .form-wrapper .contact-form-group button {
          font-size: 13px;
          line-height: 52px; } }
      #contact-section .form-wrapper .contact-form-group button:hover {
        border-color: #BD0101;
        background-color: #BD0101;
        color: #fff;
        transition: all 0.3s ease; }

.error-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  color: white; }
  .error-container .text-center {
    text-align: center; }
    .error-container .text-center h1,
    .error-container .text-center h3 {
      margin: 10px;
      cursor: default; }
      .error-container .text-center h1 .fade-in,
      .error-container .text-center h3 .fade-in {
        animation: fadeIn 2s ease infinite; }
    .error-container .text-center h1 span {
      color: #0f7581;
      font-family: "Playfair Display", serif; }
      @media only screen and (min-width: 1551px) {
        .error-container .text-center h1 span {
          font-size: 225px;
          line-height: 225px; } }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        .error-container .text-center h1 span {
          font-size: 115px;
          line-height: 115px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        .error-container .text-center h1 span {
          font-size: 105px;
          line-height: 105px; } }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        .error-container .text-center h1 span {
          font-size: 95px;
          line-height: 95px; } }
      @media only screen and (max-width: 767.98px) {
        .error-container .text-center h1 span {
          font-size: 85px;
          line-height: 85px; } }
    .error-container .text-center h1 span#digit1 {
      animation-delay: 200ms; }
    .error-container .text-center h1 span#digit2 {
      animation-delay: 300ms; }
    .error-container .text-center h1 span#digit3 {
      animation-delay: 400ms; }
    .error-container .text-center button {
      text-align: left;
      font: normal normal normal 22px/76px "Playfair Display", serif;
      letter-spacing: 0.55px;
      color: #fff;
      text-transform: uppercase;
      opacity: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      width: max-content;
      position: relative;
      overflow: hidden; }
      @media only screen and (min-width: 1551px) {
        .error-container .text-center button {
          font-size: 16px;
          line-height: 48px;
          height: 48px; } }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        .error-container .text-center button {
          font-size: 15px;
          line-height: 48px;
          height: 48px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        .error-container .text-center button {
          font-size: 15px;
          line-height: 46px;
          height: 46px; } }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        .error-container .text-center button {
          font-size: 14px;
          line-height: 44px;
          height: 44px; } }
      @media only screen and (max-width: 767.98px) {
        .error-container .text-center button {
          font-size: 14px;
          line-height: 42px;
          height: 42px;
          margin: 0; } }
      .error-container .text-center button:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0px;
        width: 50%;
        text-align: center;
        background-color: #BD0101;
        height: 1.5px;
        transition: transform 1.05s cubic-bezier(0.3, 0.86, 0.36, 0.95);
        will-change: transform;
        transition: all ease-in-out 0.5s; }
      .error-container .text-center button.active, .error-container .text-center button:hover {
        transition: all ease-in-out 0.5s; }
        .error-container .text-center button.active:after, .error-container .text-center button:hover:after {
          opacity: 1;
          width: 100%;
          transition: all ease-in-out 0.5s; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  100% {
    opacity: 1; } }

.medium {
  font-family: "Playfair Display", serif !important;
  font-weight: 600 !important; }

.max-45 {
  max-width: 45%; }
