/*!
    RESET CSS v4.0 - MH 2020
*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
audio,
canvas,
video,
picture {
    display: block;
}
a {
    background-color: transparent;
    outline: none !important;
    text-decoration: none;
    -webkit-text-decoration-skip: objects;
    color: #d6b893;
}
a:active,
a:hover {
  outline-width: 0;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -.25em;
}
sup {
  top: -.5em;
}
mark {
  background-color: #ff0;
  color: #000;
}
button {
    border: none;
    background: none;
    cursor: pointer;
}
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;
} 
ul, ol{
    padding: 0;
    margin: 0;
    list-style: none;
}
.clearfix{
    clear: both;
}
hr {
    border : 0;
    height : 1px;
    background : #999;
    margin : 40px 0;
    opacity: .30;
}
.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;
}

.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;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -15px;
  content: '';
}
.loading.blue::after {
    border-color: #fff;
    border-right-color: transparent;
}

@-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(255,255,255,.90); 
    padding: 15px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;  
}
.overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.overlay.video-overlay {
    padding: 0;
}
.overlay.video-overlay .container {
    padding: 0;
}

.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);
}

.flexible-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*------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;
}
/*------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;
}   
.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-29 {
    width: 29%;
}
.col-30 {
    width: 30%;
}
.col-32 {
    width: 32%;
}
.col-33 {
    width: 33.3333%;
}
.col-35 {
    width: 35%;
}
.col-36 {
    width: 36%;
}
.col-37 {
    width: 37%;
}
.col-38 {
    width: 38%;
}
.col-39 {
    width: 39%;
}
.col-40 {
    width: 40%;
}
.col-41 {
    width: 41%;
}
.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-64 {
    width: 64%;
}
.col-65 {
    width: 65%;
}
.col-66 {
    width: 66%;
}
.col-67 {
    width: 67%;
}
.col-70 {
    width: 70%;
}
.col-75 {
    width: 75%;
}
.col-80 {
    width: 80%;
}
.col-82 {
    width: 82%;
}
.col-88 {
    width: 88%;
}
.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-bottom-right.fluid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    position: absolute;
}
.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%;
}
.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 {
    background-color: rgba(156, 19, 45, 1);
    background-size: contain;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    filter: none;    
    background-image: url(../images/prev.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    opacity: 1 !important;
    margin: 0 !important;
    pointer-events: auto;
    text-indent: -999em;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* transition: opacity 300ms, background 300ms; */
}
.owl-next:hover, 
.owl-prev:hover {
    background-color: #bc223f;

}
.owl-next.disabled,
.owl-prev.disabled {
    opacity: 0.35 !important;
}

.owl-next {
    left: auto;
    right: 0;
    background-image: url(../images/next.svg);
}



.owl-dots {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.owl-dot {
    position: relative;
    float: left;
    width: 12px;
    height: 12px;
    background: rgba(13, 32, 74, .2);
    transition-duration: 300ms;
    -webkit-transition-duration: 300ms;
    -ms-transition-duration: 300ms;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
}
.owl-dot.active {
    background: #0D204A;
}

/*-----------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: .7;
    } 
    .owl-prev:hover {
        margin-left: -4px;
        opacity: .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;
    }
}