/*!
    RESET CSS v4.0 - MH 2020
*/
audio,
canvas,
video,
picture {
  display: block;
}
a {
  background-color: transparent;
  outline: none !important;
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
}
a:active,
a:hover {
  outline-width: 0;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
mark {
  background-color: #ff0;
  color: #000;
}
button,
input {
  outline: none !important;
  box-shadow: none !important;
}
img {
  border: 0;
  width: auto;
  height: auto;
  display: block;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}
button {
  overflow: visible;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  border-radius: 0;
}
button,
select {
  text-transform: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input {
  line-height: normal;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
input[type='checkbox'],
input[type='radio'] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
textarea {
  overflow: auto;
  resize: none;
  outline: none !important;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
input::-moz-placeholder {
  color: #000;
  opacity: 0.85;
}
input::-ms-placeholder {
  color: #000;
  opacity: 0.85;
}
input::-webkit-input-placeholder {
  color: #000;
  opacity: 0.85;
}
.clearfix {
  clear: both;
}
hr {
  border: 0;
  height: 1px;
  background: #999;
  margin: 40px 0;
  opacity: 0.3;
}
.block {
  display: block !important;
}
.visible-xs {
  display: none !important;
}
.visible-sm-xs {
  display: none !important;
}
.hide {
  display: none !important;
}

.v-main {
  display: table;
  width: 100%;
  height: 100%;
}
.v-align-middle,
.v-align-top,
.v-align-bottom {
  display: table-cell;
}
.v-align-middle {
  vertical-align: middle !important;
}
.v-align-top {
  vertical-align: top !important;
}
.v-align-bottom {
  vertical-align: bottom !important;
}
.select-container {
  position: relative;
}
.xm-tooltip {
  background: #7a303f;
  color: #fff;
  display: block;
  font-size: 15px;
  left: 50%;
  line-height: 1em;
  padding: 8px 10px 8px;
  position: absolute;
  text-align: center;
  bottom: 100%;
  width: 100%;
  min-width: 1px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 5;
  font-style: normal;
  letter-spacing: 0.045em;
}
.xm-tooltip::after {
  border-top: 10px solid #7a303f;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  bottom: -9px;
  content: '';
  left: 50%;
  position: absolute;
  z-index: -1;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.xm-tooltip .xm-tooltip {
  padding: 0;
  position: relative;
}
.xm-tooltip .xm-tooltip::after {
  display: none;
}
.for_textarea {
  position: relative;
}
.for_textarea .xm-tooltip {
  left: 0;
  top: -70px;
}
.loading {
  position: relative;
}
.loading::after {
  -webkit-animation-duration: 0.75s;
  -ms-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: rotate-forever;
  -ms-animation-name: rotate-forever;
  animation-name: rotate-forever;
  -webkit-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  animation-timing-function: linear;
  height: 30px;
  width: 30px;
  border: 2px solid #9c1f1f;
  border-right-color: transparent;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  margin: -15px 0 0 -15px;
  content: '';
}

@-webkit-keyframes rotate-forever {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate-forever {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 9999999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 500ms,
    visibility 500ms,
    top 500ms;
  -webkit-transition:
    opacity 500ms,
    visibility 500ms,
    top 500ms;
  -ms-transition:
    opacity 500ms,
    visibility 500ms,
    top 500ms;
  background: rgba(0, 0, 0, 0.75);
  padding: 15px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.overlay-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  border: none;
  background: #bbaf9d url(../images/cross.png) center center no-repeat;
  background-size: 90% auto;
  display: block;
  text-indent: -9999px;
  z-index: 9999;
  overflow: hidden;
  transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  transform: rotate(0deg) perspective(1px);
  -webkit-transform: rotate(0deg) perspective(1px);
  -ms-transform: rotate(0deg) perspective(1px);
  border-radius: 50%;
}
.overlay.video-overlay {
  padding: 0;
}
.overlay.video-overlay .container {
  padding: 0;
}
.video-overlay .overlay-close {
  background-color: transparent;
  background-image: url(../images/cross-white.png);
  top: 5px;
  right: 5px;
}
.overlay-close:hover {
  transform: rotate(180deg) perspective(1px);
  -webkit-transform: rotate(180deg) perspective(1px);
  -ms-transform: rotate(180deg) perspective(1px);
}
.has-overlay {
  overflow: hidden;
}
.overlay-container {
  width: 100%;
  background: #fff;
  position: relative;
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive img {
  width: 100%;
}
.embed-responsive::before {
  display: block;
  content: '';
  padding-top: 56.25%;
}
.play {
  width: 90px;
  height: 90px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/play.png) 0 0 no-repeat;
  background-size: contain;
  transition: 500ms;
}
.video-container a:hover .play {
  filter: brightness(0);
}
.video-container,
.video-div {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.img-responsive {
  max-width: 100%;
}
.no-select {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}
::-moz-selection {
  color: #fff;
  background: rgba(122, 48, 63, 0.52);
}

::selection {
  color: #fff;
  background: rgba(122, 48, 63, 0.52);
}
/*------Reset v-1.1--------*/

/*------Common Styles-------*/
.media-body {
  width: 10000px;
}
.media-body,
.media-left,
.media-right {
  display: table-cell;
  vertical-align: top;
}
.media-left {
  padding-right: 15px;
}
.media-right {
  padding-left: 15px;
}
.non-italic {
  font-style: normal !important;
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.circle {
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
button {
  transition: 300ms ease-out;
  text-decoration: none !important;
}
.input-group {
  border-collapse: separate;
  display: table;
  position: relative;
}
.input-group .form-control,
.input-group-addon {
  display: table-cell;
}
.input-group-addon {
  vertical-align: middle;
  white-space: nowrap;
  width: 1%;
}
/*------Common Styles-------*/

.container::before,
.container::after,
.row::before,
.row::after {
  display: table;
  clear: both;
  content: '';
}
.no-row::before,
.no-row::after {
  content: initial;
}
.hide-desktop {
  display: none !important;
}
.breadcrumb {
  color: #555;
  font-style: italic;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 20px;
  line-height: 24px;
}
.breadcrumb li + li::before {
  display: inline-block;
  padding-right: 4px;
  padding-left: 4px;
  color: #555;
  content: '/';
}
.breadcrumb a {
  color: #555;
  display: inline-block;
  border-bottom: 1px solid #555;
}

.card-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.card {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.card-group .card {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 0%;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
}
.card-group .card + .card {
  margin-left: 0;
  border-left: 0;
}
.card-block {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.paddingT0 {
  padding-top: 0 !important;
}
.paddingB0 {
  padding-bottom: 0 !important;
}
.border-bottom0 {
  border-bottom: none !important;
}

.full-width {
  width: 100% !important;
}
.half-width {
  width: 50% !important;
}
.col-10 {
  width: 10%;
}
.col-15 {
  width: 15%;
}
.col-20 {
  width: 20%;
}
.col-25 {
  width: 25%;
}
.col-28 {
  width: 28%;
}
.col-30 {
  width: 30%;
}
.col-33 {
  width: 33.3333%;
}
.col-36 {
  width: 36%;
}
.col-37 {
  width: 37%;
}
.col-39 {
  width: 39%;
}
.col-40 {
  width: 40%;
}
.col-42 {
  width: 42%;
}
.col-43 {
  width: 43%;
}
.col-44 {
  width: 44%;
}
.col-45 {
  width: 45%;
}
.col-47 {
  width: 47%;
}
.col-49 {
  width: 49%;
}
.col-50 {
  width: 50%;
}
.col-53 {
  width: 53%;
}
.col-54 {
  width: 54%;
}
.col-55 {
  width: 55%;
}
.col-56 {
  width: 56%;
}
.col-57 {
  width: 57%;
}
.col-58 {
  width: 58%;
}
.col-60 {
  width: 60%;
}
.col-67 {
  width: 67%;
}
.col-70 {
  width: 70%;
}
.col-75 {
  width: 75%;
}
.col-80 {
  width: 80%;
}
.col-90 {
  width: 90%;
}
.col-100 {
  width: 100%;
}
.col-oneThird {
  width: 33.3333%;
}
.col-oneThird.mid {
  width: 33.3334%;
}
.col-twoThird {
  width: 66.6667%;
}
.row [class^='col-'] {
  float: left;
}
.relative {
  position: relative;
}
.hide-overflow {
  overflow: hidden;
}
.marginB0 {
  margin-bottom: 0 !important;
}
.marginT0 {
  margin-top: 0 !important;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.jc-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.jc-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.ai-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ai-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.ac-sb {
  -ms-flex-line-pack: justify;
  align-content: space-between;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.jc-sb {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.jc-sa {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.jc-se {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}
.flex-dc {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-dcr {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.flex-dr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.flex-drr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.ai-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.fit-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.fit-contain {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.fit-top {
  object-position: center top;
}
.fit-bottom {
  object-position: bottom;
}

.fluid-img {
  width: 100%;
  position: relative;
}
.fluid-img.fit-cover {
  position: absolute;
  top: 0;
  left: 0;
}
video.fluid-img.fit-cover {
  height: 101%;
}
.internet-explorer video.fluid-img.fit-cover {
  height: 102%;
  width: 102%;
  top: -0.5%;
}
.fit-cover.relative {
  position: relative !important;
  top: auto;
  left: auto;
}
.has-fit-cover {
  overflow: hidden;
  position: relative;
}
.min-vh {
  min-height: 100vh;
}
footer {
  margin-top: auto;
}

/*-----------For Owl------------*/
.owl-next,
.owl-prev {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  background-image: url(../images/prev.svg?ver=2);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  text-indent: -9999px;
  transition-duration: 300ms;
  -webkit-transition-duration: 300ms;
  -ms-transition-duration: 300ms;
  transform: translateY(-50%);
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.65));
}
.owl-next.disabled,
.owl-prev.disabled {
  opacity: 0.35;
}
.owl-next {
  right: 24px;
  opacity: 1;
  transform: rotateY(180deg) translateY(-50%);
  transform-origin: center center;
}
.owl-prev {
  left: 24px;
  opacity: 1;
}
.owl-next:after,
.owl-prev:after {
  content: '';
  width: 200%;
  height: 200%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.owl-dots {
  position: absolute;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.owl-dot {
  position: relative;
  float: left;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  transition-duration: 300ms;
  -webkit-transition-duration: 300ms;
  -ms-transition-duration: 300ms;
  margin: 0 10px;
  cursor: pointer;
}
.owl-dot.active {
  background: #e8892f;
  border-color: #e8892f;
}

/*-----------For Owl------------*/
.will-zoom img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  transition: 500ms ease-out;
  height: auto !important;
}
.base-item .will-zoom img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*-----------For Ipads------------*/

@media screen and (min-width: 992px) {
  .owl-dot:hover {
    background: #e8892f;
    border-color: #e8892f;
  }
  .owl-next:hover {
    margin-right: -4px;
    opacity: 0.7;
  }
  .owl-prev:hover {
    margin-left: -4px;
    opacity: 0.7;
  }
  .will-zoom:hover img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
  }
}

@media screen and (max-width: 1199px) {
  .hide-desktop {
    display: block !important;
  }
  .hide-ipad {
    display: none !important;
  }
  a[href^='tel'] {
    color: inherit;
    text-decoration: none;
  }
}

@media screen and (max-width: 991px) {
  .hidden-sm-xs {
    display: none !important;
  }
  .visible-sm-xs {
    display: block !important;
  }
  .computer .visible-sm-xs.btn-fallback {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs {
    display: block !important;
  }
  .mobFullwidth {
    width: 100% !important;
  }
  .mobBlock {
    display: block !important;
  }
  [class^='col-'] {
    width: 100%;
  }
  .mpr0 {
    padding-right: 0 !important;
  }
  .mpl0 {
    padding-left: 0 !important;
  }
}
