/***********************
1.BASIC
2.SLICK SLIDER
3.TYPOGRAPHY
4.GRID
5.HEADER
************************/
/*====================================  1.BASIC  ====================================*/

*,
*:before,
*:after {
  box-sizing: border-box;
}
:root {
  --theme-color: #68374c;
  --black: #000000;
  --white: #ffffff;
  --grey: #cfcfcf;
  --primary-font: "proxima-nova";
  --primary-bold: "proxima-nova";
  --secondary-font: "ff-din-web";
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font-size: 100%;
  list-style: none;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
html,
body {
  color: var(--black);
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: normal;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
svg {
  max-width: 100%;
  display: block;
  max-height: 100%;
}
a,
a:hover,
a:focus,
button,
button:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
}
a {
  text-decoration: none;
  color: var(--black);
  transition: all ease-in-out 0.2s;
}

/*====================================  2.SLICK SLIDER  ====================================*/
.fluid-width-video-wrapper {
  position: relative;
  padding-bottom: 56.25% !important;
  padding-top: 0 !important;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.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-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  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;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-slide:focus {
  outline: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.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;
}
/* Slider */
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev {
  left: 0;
}
[dir="rtl"] .slick-prev {
  right: 0;
  left: auto;
}
.slick-prev:before {
  content: "←";
}
[dir="rtl"] .slick-prev:before {
  content: "→";
}
.slick-next {
  right: 0;
}
[dir="rtl"] .slick-next {
  right: auto;
  left: 0;
}
.slick-next:before {
  content: "→";
}
[dir="rtl"] .slick-next:before {
  content: "←";
}
/* Dots */
.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 0;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  border-radius: 100%;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 15px;
  height: 15px;
  line-height: 0;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  border-radius: 100%;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  border-radius: 100%;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid var(--white);
  background-color: #d8d8d8;
  content: "";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  background-color: var(--theme-color);
}
/* ARROW CSS */
.site-arrows .slick-arrow {
  z-index: 9;
  width: 30px;
  height: 30px;
  transition: all ease-in-out 0.5s;
}
.site-arrows .slick-arrow:before {
  background-position: center !important;
  background-size: 14px !important;
  opacity: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-repeat: no-repeat !important;
}
.site-arrows .slick-prev:before {
  content: "";
  background: #764659 url("../images/left.svg");
}
.site-arrows .slick-prev {
  left: 0;
}
.site-arrows .slick-next {
  right: 0;
}
.site-arrows .slick-next:before {
  content: "";
  background: #764659 url("../images/right.svg");
}
.site-arrows .slick-arrow:focus:before,
.site-arrows .slick-arrow:hover:before {
  background-color: #502a38;
}
.site-arrows .slick-dots {
  bottom: 16px;
}
.site-arrows .slick-dots li {
  height: 15px;
  width: 15px;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 50%;
}
.site-arrows .slick-dots li.slick-active {
  background: var(--yellow);
  border: 1px solid var(--white);
}
.site-arrows .slick-dots li button {
  display: none;
}
/*====================================  3. TYPOGRAPHY  ====================================*/
h1,
.h1 {
  font-style: normal;
  font-family: "proxima-nova";
  font-weight: 600;
  font-size: 45px;
  line-height: 1.1;
}
h2,
.h2 {
  font-style: normal;
  font-family: "proxima-nova";
  font-weight: 600;
  font-size: 42px;
  line-height: 1.2;
}
h3,
.h3 {
  font-style: normal;
  font-size: 32px;
  font-family: "proxima-nova";
  font-weight: 600;
  line-height: 1.2;
}
h4,
.h4 {
  font-style: normal;
  font-size: 28px;
  font-family: "proxima-nova";
  font-weight: 600;
  line-height: 1.2;
}
h5,
.h5 {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.2;
}
h6,
.h6 {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.2;
}
.subtext {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
}
p {
  font-size: 18px;
  line-height: 1.3;
  color: var(--black);
}
p:not(:last-of-type) {
  margin-bottom: 15px;
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.theme-color {
  color: var(--theme-color);
}
.btn-secondary,
.btn,
.btn-primary {
  box-shadow: none;
  background: var(--theme-color);
  border: 0;
  padding: 12px 20px;
  display: inline-block;
  font-family: var(--primary-font);
  color: var(--white);
  transition: all ease-in-out 0.5s;
  font-style: normal;
  text-align: center;
  border-radius: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.btn:hover,
.btn-primary:hover {
  opacity: 0.7;
}
.btn-secondary {
  background: var(--black);
  color: var(--white);
}
.btn-secondary:hover {
  opacity: 0.7;
}
/*=============================== 4.GRID ==============================*/
.container {
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 15px;
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.no-gutters {
  margin: 0 !important;
}
.row [class*="col-"] {
  padding: 0 15px;
}
.no-gutters [class*="col--"] {
  padding: 0;
}
.flex--align-start {
  align-items: flex-start;
}
.flex--align-end {
  align-items: flex-end;
}
.flex--align-center {
  align-items: center;
}
.flex--justify-around {
  justify-content: space-around;
}
.flex--justify-between {
  justify-content: space-between;
}
.flex--justify-center {
  justify-content: center;
}
.flex--justify-end {
  justify-content: flex-end;
}
.flex--direction-column {
  flex-direction: column;
}
.flex--no-wrap {
  flex-wrap: nowrap;
}
@media (min-width: 320px) and (max-width: 767px) {
  .col--1--mbl {
    width: 8.3333333333%;
    padding: 0 15px;
  }
  .offset--1--mbl {
    margin-left: 8.3333333333%;
    padding: 0 15px;
  }
  .col--2--mbl {
    width: 16.6666666667%;
    padding: 0 15px;
  }
  .offset--2--mbl {
    margin-left: 16.6666666667%;
    padding: 0 15px;
  }
  .col--3--mbl {
    width: 25%;
    padding: 0 15px;
  }
  .offset--3--mbl {
    margin-left: 25%;
    padding: 0 15px;
  }
  .col--4--mbl {
    width: 33.3333333333%;
    padding: 0 15px;
  }
  .offset--4--mbl {
    margin-left: 33.3333333333%;
    padding: 0 15px;
  }
  .col--5--mbl {
    width: 41.6666666667%;
    padding: 0 15px;
  }
  .offset--5--mbl {
    margin-left: 41.6666666667%;
    padding: 0 15px;
  }
  .col--6--mbl {
    width: 50%;
    padding: 0 15px;
  }
  .offset--6--mbl {
    margin-left: 50%;
    padding: 0 15px;
  }
  .col--7--mbl {
    width: 58.3333333333%;
    padding: 0 15px;
  }
  .offset--7--mbl {
    margin-left: 58.3333333333%;
    padding: 0 15px;
  }
  .col--8--mbl {
    width: 66.6666666667%;
    padding: 0 15px;
  }
  .offset--8--mbl {
    margin-left: 66.6666666667%;
    padding: 0 15px;
  }
  .col--9--mbl {
    width: 75%;
    padding: 0 15px;
  }
  .offset--9--mbl {
    margin-left: 75%;
    padding: 0 15px;
  }
  .col--10--mbl {
    width: 83.3333333333%;
    padding: 0 15px;
  }
  .offset--10--mbl {
    margin-left: 83.3333333333%;
    padding: 0 15px;
  }
  .col--11--mbl {
    width: 91.6666666667%;
    padding: 0 15px;
  }
  .offset--11--mbl {
    margin-left: 91.6666666667%;
    padding: 0 15px;
  }
  .col--12--mbl {
    width: 100%;
    padding: 0 15px;
  }
  .offset--12--mbl {
    margin-left: 100%;
    padding: 0 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1025px) {
  .col--1--tblt {
    width: 8.3333333333%;
    padding: 0 15px;
  }
  .offset--1--tblt {
    margin-left: 8.3333333333%;
    padding: 0 15px;
  }
  .col--2--tblt {
    width: 16.6666666667%;
    padding: 0 15px;
  }
  .offset--2--tblt {
    margin-left: 16.6666666667%;
    padding: 0 15px;
  }
  .col--3--tblt {
    width: 25%;
    padding: 0 15px;
  }
  .offset--3--tblt {
    margin-left: 25%;
    padding: 0 15px;
  }
  .col--4--tblt {
    width: 33.3333333333%;
    padding: 0 15px;
  }
  .offset--4--tblt {
    margin-left: 33.3333333333%;
    padding: 0 15px;
  }
  .col--5--tblt {
    width: 41.6666666667%;
    padding: 0 15px;
  }
  .offset--5--tblt {
    margin-left: 41.6666666667%;
    padding: 0 15px;
  }
  .col--6--tblt {
    width: 50%;
    padding: 0 15px;
  }
  .offset--6--tblt {
    margin-left: 50%;
    padding: 0 15px;
  }
  .col--7--tblt {
    width: 58.3333333333%;
    padding: 0 15px;
  }
  .offset--7--tblt {
    margin-left: 58.3333333333%;
    padding: 0 15px;
  }
  .col--8--tblt {
    width: 66.6666666667%;
    padding: 0 15px;
  }
  .offset--8--tblt {
    margin-left: 66.6666666667%;
    padding: 0 15px;
  }
  .col--9--tblt {
    width: 75%;
    padding: 0 15px;
  }
  .offset--9--tblt {
    margin-left: 75%;
    padding: 0 15px;
  }
  .col--10--tblt {
    width: 83.3333333333%;
    padding: 0 15px;
  }
  .offset--10--tblt {
    margin-left: 83.3333333333%;
    padding: 0 15px;
  }
  .col--11--tblt {
    width: 91.6666666667%;
    padding: 0 15px;
  }
  .offset--11--tblt {
    margin-left: 91.6666666667%;
    padding: 0 15px;
  }
  .col--12--tblt {
    width: 100%;
    padding: 0 15px;
  }
  .offset--12--tblt {
    margin-left: 100%;
    padding: 0 15px;
  }
}
@media screen and (min-width: 1025px) {
  .col--1--dsktp {
    width: 8.3333333333%;
    padding: 0 15px;
  }
  .offset--1--dsktp {
    margin-left: 8.3333333333%;
    padding: 0 15px;
  }
  .col--2--dsktp {
    width: 16.6666666667%;
    padding: 0 15px;
  }
  .offset--2--dsktp {
    margin-left: 16.6666666667%;
    padding: 0 15px;
  }
  .col--3--dsktp {
    width: 25%;
    padding: 0 15px;
  }
  .offset--3--dsktp {
    margin-left: 25%;
    padding: 0 15px;
  }
  .col--4--dsktp {
    width: 33.3333333333%;
    padding: 0 15px;
  }
  .offset--4--dsktp {
    margin-left: 33.3333333333%;
    padding: 0 15px;
  }
  .col--5--dsktp {
    width: 41.6666666667%;
    padding: 0 15px;
  }
  .offset--5--dsktp {
    margin-left: 41.6666666667%;
    padding: 0 15px;
  }
  .col--6--dsktp {
    width: 50%;
    padding: 0 15px;
  }
  .offset--6--dsktp {
    margin-left: 50%;
    padding: 0 15px;
  }
  .col--7--dsktp {
    width: 58.3333333333%;
    padding: 0 15px;
  }
  .offset--7--dsktp {
    margin-left: 58.3333333333%;
    padding: 0 15px;
  }
  .col--8--dsktp {
    width: 66.6666666667%;
    padding: 0 15px;
  }
  .offset--8--dsktp {
    margin-left: 66.6666666667%;
    padding: 0 15px;
  }
  .col--9--dsktp {
    width: 75%;
    padding: 0 15px;
  }
  .offset--9--dsktp {
    margin-left: 75%;
    padding: 0 15px;
  }
  .col--10--dsktp {
    width: 83.3333333333%;
    padding: 0 15px;
  }
  .offset--10--dsktp {
    margin-left: 83.3333333333%;
    padding: 0 15px;
  }
  .col--11--dsktp {
    width: 91.6666666667%;
    padding: 0 15px;
  }
  .offset--11--dsktp {
    margin-left: 91.6666666667%;
    padding: 0 15px;
  }
  .col--12--dsktp {
    width: 100%;
    padding: 0 15px;
  }
  .offset--12--dsktp {
    margin-left: 100%;
    padding: 0 15px;
  }
}
.desk-only {
  display: none !important;
}
.mobile-only {
  display: block !important;
}
.overlay {
  background-color: var(--black);
  opacity: 0.7;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
  display: none;
}
.overlay.active {
  display: block;
}
.pt-80 {
  padding-top: 80px;
}
.pb-80 {
  padding-bottom: 80px;
}
.mt-80 {
  margin-top: 80px;
}
.mb-80 {
  margin-bottom: 80px;
}
body.active,
body.no-scroll {
  overflow: hidden;
}
/* form styles */
.form-group {
  margin-bottom: 15px;
  position: relative;
}
.form-control,
input:not([type="submit"]),
input:not([type="checkbox"]),
input:not([type="radio"]),
select,
textarea {
  position: relative;
  border: 1px solid var(--grey);
  display: block;
  width: 100%;
  padding: 15px 20px;
  background: var(--white);
  font-size: 14px;
  color: var(--black);
}
input:not([type="checkbox"]),
input:not([type="radio"]),
input:not([type="file"]),
select,
textarea {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-border-radius: none;
  -moz-border-radius: none;
  outline: none;
  font-family: var(--primary-font);
}
input {
  font-family: var(--primary-font);
}
::placeholder {
  color: #000;
}
select {
  background-image: url(../images/select.svg);
  background-repeat: no-repeat;
  background-position: center right 15px;
  background-size: 8px;
  color: var(--black);
}

/*============================= Hiro Slider Home  ============================*/
.main-banner-slider .main-slider-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.main-banner-slider .hiro-slider-item:before {
  content: "";
  position: absolute;
  background: var(--black);
  opacity: 0.4;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}
.banner-slider-media {
  position: relative;
  overflow: hidden;
  height: 800px;
  width: 100%;
  z-index: 9999;
}
.banner-slider-media.video_slide {
  height: initial !important
}
.banner-slider-media video,
.banner-slider-media img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-slider-media img {
    animation: slideShow 40s linear infinite 0s;
  -o-animation: slideShow 40s linear infinite 0s;
  -moz-animation: slideShow 40s linear infinite 0s;
  -webkit-animation: slideShow 40s linear infinite 0s;
}
.banner-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 100000 !important;
}
.banner-caption-inner {
  max-width: 490px;
  padding: 40px;
}
.with-ovelay {
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
}
.subtitle {
  position: relative;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  display: inline-block;
  letter-spacing: 0.75px;
  font-family: var(--secondary-font);
}
.subtitle:before {
  content: "";
  position: relative;
  height: 2px;
  width: 35px;
  background: #000000;
  left: 0;
  display: inline-block;
  margin-right: 10px;
}
.banner-caption-inner .subtitle {
  color: #ffffff;
}
.banner-caption-inner .subtitle:before {
  background: #ffffff;
}
.banner-caption-inner .h1 {
  color: #ffffff;
  text-transform: unset;
  margin: 30px 0 30px;
}
.green-btn {
  height: 3.23rem;
  padding: 0 2.4rem;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: var(--theme-color);
  letter-spacing: 0.75px;
  background: #a39a49;
  color: #ffffff;
  border-color: #a39a49;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: all ease-in-out 0.3s;
}
.green-btn:hover {
  background: #ffffff;
  color: #a39a49;
  border-color: #ffffff;
}
.animated-btn {
  display: inline-block;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 19px 2.4rem;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: var(--theme-color);
  border: 1px solid #68374c;
  letter-spacing: 0.75px;
  font-family: var(--secondary-font);
}
.animated-btn span {
  position: relative;
  z-index: 1;
}
.animated-btn:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  background: var(--theme-color);
}
.animated-btn:hover:before {
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.animated-btn:hover {
  color: #ffffff;
}
.site-arrows .slick-arrow {
  width: 127px;
  height: 56px;
  top: auto;
  transform: none;
  bottom: 0;
}
.main-banner-slider.site-arrows .slick-prev {
  left: calc((100% - 1440px) / 2);
  border-right: 1px solid #633546;
}
.main-banner-slider.site-arrows .slick-next {
  left: calc(((100% - 1440px) / 2) + 127px);
  right: auto;
}

/****** Welcome section css ******/
.welcome-section {
  padding: 125px 0;
}
.welcome-section p {
  color: #000000;
  font-family: var(--secondary-font);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  text-transform: uppercase;
  font-style: normal;
  letter-spacing: 1.33px;
  max-width: 812px;
  margin: 0 auto;
}
.new-section .no-gutters {
  height: 100%;
}
.new-section .col--5--dsktp {
  width: 40%;
}
.new-section .col--4--dsktp {
  width: 35%;
}
.new-section .col--3--dsktp {
  width: 25%;
}
.new-section .no-gutters [class*="col--"] {
  display: flex;
  flex-wrap: wrap;
}
.new-card {
  width: 100%;
  display: flex;
  overflow: hidden;
  transition: all ease-in-out 0.3s;
}
.new-card .news-media-wrap {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  position: relative;
}
.new-card .new-img {
  width: 100%;
  display: flex;
  height: 100%;
  overflow: hidden;
  transition: all ease-in-out 0.3s;
}
.new-card .new-img img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -ms-transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.new-card:hover img {
  transform: scale(1.11);
  -webkit-transform: scale(1.11);
  -ms-transform: scale(1.11);
}
.new-card .news-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #ffffff;
  z-index: 1;
  padding: 0 20px 35px 35px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.new-card .news-caption.with_overlay {
  background: rgba(0,0,0,0.4);
  padding-top: 25px;
}
.new-card .new-img:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(
    o top,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.13) 56%,
    rgba(255, 255, 255, 0) 100%
  );
  height: 100%;
  z-index: 1;
}
.new-card:hover .new-img:before {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.4) 56%,
    rgba(255, 255, 255, 0) 100%
  );
}
.smalltitle {
  color: #ffffff;
  font-family: "ff-din-web";
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  text-transform: uppercase;
  font-style: normal;
  letter-spacing: 0.75px;
  line-height: normal;
  margin-bottom: 15px;
}
.new-card h2 {
  font-size: 32px;
  letter-spacing: -0.32px;
  font-family: "proxima-nova";
  font-weight: 600;
}
.news-title {
  color: #fff;
}
.arrow-btn {
  display: inline-block;
  margin-bottom: 7px;
}
.arrow-btn svg {
  fill: #ffffff;
  display: inline-flex;
  max-width: initial;
}
.indusstry-trends-section {
  padding: 125px 0 70px;
}
.indusstry-trends-section .indus-trend-img-slider {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 55px !important;
  position: relative;
  padding-left: 58px !important;
  padding-right: 9px !important;
}
.indus-trend-img-slider .indus-trend-img-itm {
  display: block;
  cursor: pointer;
  padding: 0 6px 0 0;
  position: relative;
  z-index: 1;
}
.indus-trend-img-itm h4 {
  position: absolute;
  bottom: 30px;
  left: 0;
  padding: 0 20px;
  font-size: 25px;
  font-weight: bold;
  line-height: 40px;
  text-align: left;
  letter-spacing: -0.25px;
  color: #ffffff;
  font-family: "Proxima Nova Bold";
  z-index: 1;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  display: flex;
  width: 100%;
}
.indus-trend-img-slider div span.progressBar {
  width: 100%;
  height: 10px;
  background-color: #cfcfcf;
  display: block;
  transition: all ease-in-out 0.5s;
}
.indus-trend-img-itm.slick-current .progressBar {
  background-color: var(--theme-color);
}
.indus-trend-img-slider div span.progressBar .inProgress {
  background-color: var(--theme-color);
  width: 0%;
  height: 10px;
}
.indus-trend-item-inner .h1 {
  margin: 40px 0;
}
.indus-trend-item-inner p {
  margin-bottom: 40px;
  line-height: 32px;
}
.it-img {
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
  max-height: 400px;
}
.indus-trend-img-slider .indus-trend-img-itm .it-img:before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  transition: all ease-in-out 0.3s;
  opacity: 0;
  visibility: hidden;
  bottom: 0;
  z-index: 1;
}
.indus-trend-img-slider .indus-trend-img-itm:hover .it-img:before {
  opacity: 1;
  visibility: visible;
}
.it-img img {
  transition: all ease-in-out 0.4s;
  width: 100%;
  object-fit: cover;
}
.it-img:hover img {
  transform: scale(1.15);
  position: relative;
  z-index: 0;
}
.indus-trend-img-slider .slick-arrow {
  top: auto;
  bottom: 0;
  transform: none;
  width: 17px;
  height: 30px;
}
.indus-trend-img-slider .slick-prev:before {
  content: "";
  background-image: url(../images/black-left.png);
}
.indus-trend-img-slider .slick-next:before {
  content: "";
  background-image: url(../images/black-right.png);
}
.indus-trend-img-slider .slick-next {
  right: 15px;
}
.indus-trend-img-slider .slick-arrow:before {
  background-position: center !important;
  background-size: 17px !important;
  opacity: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-repeat: no-repeat !important;
}
.indus-trend-img-slider .slick-prev {
  left: auto;
  right: calc(15px + 60px);
}
.indus-trend-img-slider .slick-disabled {
  opacity: 0.5;
}
.new-card:hover .arrow-btn svg {
  opacity: 1;
}
.new-card line {
  stroke-width: 1px;
  stroke-dasharray: 10.4px;
  stroke-dashoffset: 30px;
}
.new-card .next-arrow line {
  stroke: #ffffff;
  -ms-transition: none !important;
  -webkit-transition: none !important;
  transition: none !important;
}

.new-card .vert-center .next-arrow line {
  animation: rightArrowLineEnd 0.4s cubic-bezier(0.3, 0.2, 0.1, 1) 0.25s
    forwards;
  stroke-dashoffset: 30px;
}
.new-card:hover .vert-center line {
  animation: rightArrowLineStart 0.48s cubic-bezier(0.05, 0.2, 0.1, 1) 0.12s
    forwards;
  stroke-dashoffset: 20px;
}
.new-card .vert-center {
  display: block;
  width: 60px;
  position: relative;
  height: 21px;
}
.new-card .vert-center .line {
  height: 2px;
  width: 45px;
  background-color: #fff;
  position: absolute;
  content: "";
  right: 0;
  display: block;
  backface-visibility: hidden;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(28px) scaleX(0);
  -webkit-transform-origin: right;
  transform: translateY(-50%) translateX(28px) scaleX(0);
  transform-origin: right;
}
.new-card .vert-center .line {
  right: 16px;
  left: auto;
  top: auto;
  -ms-transition: none !important;
  -webkit-transition: none !important;
  transition: none !important;
  width: 34px;
  top: 43%;
}
.new-card:hover .vert-center .line {
  transform-origin: left;
  animation: portRightLineStart 0.4s cubic-bezier(0.05, 0.15, 0.1, 1) forwards;
}
.new-card .arrow-btn svg {
  opacity: 0;
}
.new-card:hover .arrow-btn svg {
  opacity: 1;
}
.new-section .no-gutters [class*="col--"]:nth-child(1) .new-card h2 {
  font-size: 43px;
  letter-spacing: -0.43px;
}
@keyframes rightArrowLineStart {
  0% {
    stroke-dashoffset: 30px;
  }
  100% {
    stroke-dashoffset: 40px;
  }
}

@keyframes rightArrowLineEnd {
  0% {
    stroke-dashoffset: 40px;
  }
  100% {
    stroke-dashoffset: 50px;
  }
}

@keyframes portRightLineStart {
  0% {
    transform: translateY(-50%) translateX(-25px) scaleX(0);
  }
  100% {
    transform: translateY(-50%) translateX(0px) scaleX(1);
  }
}

@keyframes rightLineStart {
  0% {
    transform: translateY(-50%) translateX(-88px) scaleX(0);
  }
  100% {
    transform: translateY(-50%) translateX(0px) scaleX(1);
  }
}

@keyframes rightLineEnd {
  0% {
    transform: translateY(-50%) translateX(0px) scaleX(1);
  }
  100% {
    transform: translateY(-50%) translateX(28px) scaleX(0);
  }
}
@-webkit-keyframes slideShow {
  0% {
    -webkit-transform-origin: bottom left;
    -moz-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    -o-transform-origin: bottom left;
    transform-origin: bottom left;
    transform: scale(1.0);
    -ms-transform: scale(1.0);
    /* IE 9 */

    -webkit-transform: scale(1.0);
    /* Safari and Chrome */

    -o-transform: scale(1.0);
    /* Opera */

    -moz-transform: scale(1.0);
    /* Firefox */
  }
  50% {
    transform: scale(1.2);
    -ms-transform: scale(1.2);
    /* IE 9 */

    -webkit-transform: scale(1.2);
    /* Safari and Chrome */

    -o-transform: scale(1.2);
    /* Opera */

    -moz-transform: scale(1.2);
    /* Firefox */
  }
  100% {
    transform: scale(1);
    -ms-transform: scale(1);
    /* IE 9 */

    -webkit-transform: scale(1);
    /* Safari and Chrome */

    -o-transform: scale(1);
    /* Opera */

    -moz-transform: scale(1);
    /* Firefox */
  }
}
