@media (min-width: 1000px){
.breadrumbWrap {
    position: relative;
    height: 0;
	display: none;
}
}
@media (min-width: 1500px){
.hero {
    height: 865px;
}
}
@media (min-width: 1280px){
.visible-lg {
    display: block!important;
}
}

@media (min-width: 1024px){
.hero {
    display: table;
    width: 100%;
    height: 600px;
}
}
.hero .hero-header {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    width: 100%!important;
}
.hero {
    text-align: center;
    position: relative;
    display: table;
    table-layout: fixed;
    /*height: 350px;*/
    width: 100%!important;
}
.hero .hero-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
}
.hero .hero-bg span {
    width: 100%;
    height: 100%;
    display: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.hero .hero-header {
    height: 100%;
    position: relative;
    z-index: 2;
    display: table-cell;
    vertical-align: middle;
    top: 0;
    width: 100%!important;
    padding-left: 2em;
    padding-right: 2em;
    font-size: 14px;
    padding-bottom: 40px;
}
.hero .hero-header .sentence, .hero .hero-header .smaller {
    display: block;
	font-family: 'Cormorant Garamond', serif;
}
.hero-header .h1, .hero-header h1 {
    /*font-size: 60px;*/
    margin-bottom: 23px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 798px;
    padding-top: 0;
	/*background-color: #FFFFFF;*/
	padding: 2.5rem;
}
}	
	
.ml-0{margin-left: 0px;}
.mr-0{margin-right: 0px;}

.pd-0{padding: 0;}
.pd-1{padding: 1.0em;}
.pd-2{padding: 2.0em;}
.pd-2{padding: 3.0em;}
.pd-3{padding: 4.0em;}
.pd-4{padding: 5.0em;}
.pd-5{padding: 6.0em;}
.pd-6{padding: 7.0em;}
.pd-7{padding: 8.0em;}
.pt-1{padding-top: 1.0em;}
.pt-2{padding-top: 2.0em;}
.pt-3{padding-top: 3.0em;}
.pt-4{padding-top: 4.0em;}
.pt-5{padding-top: 5.0em;}
.pt-6{padding-top: 6.0em;}
.pt-7{padding-top: 7.0em;}
.pt-8{padding-top: 8.0em;}
.pt-9{padding-top: 9.0em;}
.pt-10{padding-top: 10.0em;}
.pb-1{padding-bottom: 1.0em;}
.pb-2{padding-bottom: 2.0em;}
.pb-3{padding-bottom: 3.0em;}
.pb-4{padding-bottom: 4.0em;}
.pb-5{padding-bottom: 5.0em;}
.pb-6{padding-bottom: 6.0em;}
.pb-7{padding-bottom: 7.0em;}
.pb-8{padding-bottom: 8.0em;}
.pb-9{padding-bottom: 9.0em;}
.pb-10{padding-bottom: 10.0em;}

.bg-white{background-color: #FFFFFF;}
.bg-secondary{background-color: #F5F5F5;}
.bg-secondary-dark{background-color: #333333;}

.uppercase{text-transform: uppercase}

/* Button */
.btn {border: none;}
.btn-lg{padding: 1.5em;}
.btn-primary{background-color: #FFFFFF; color:#0079d7; font-size: 17px; }
.btn-primary:hover{background-color:#FFFFFF; color: #0079d7; font-weight: bold}
.btn-primary:active{background-color:#0079d7; color: #FFFFFF;}

.btn-success {color: #fff;background-color: #0072CE;border-color: #0072CE;}

.lh-100{ line-height: 100%;}
.lh-110{line-height: 110%;}
.lh-120{line-height: 120%;}
.lh-130{line-height: 130%;}
.lh-140{line-height: 140%;}
.lh-150{line-height: 150%;}
.lh-160{line-height: 160%;}
.lh-170{line-height: 170%;}
.lh-180{line-height: 180%;}
.lh-190{line-height: 190%;}
.lh-220{line-height: 200%;}

.p-14{ font-size: 14px;}
.p-15{ font-size: 15px;}
.p-16{ font-size: 16px;}
.p-17{ font-size: 17px;}
.p-18{ font-size: 18px;}

.card {
  display: flex;
  flex-direction: column;
  min-width: 0; // See https://github.com/twbs/bootstrap/pull/22740#issuecomment-305868106
  word-wrap: break-word;
  background-color: $card-bg;
  background-clip: border-box;
  border: $card-border-width solid $card-border-color;
  @include border-radius($card-border-radius);

  > hr {
    margin-right: 0;
    margin-left: 0;
  }

  > .list-group:first-child {
    .list-group-item:first-child {
      @include border-top-radius($card-border-radius);
    }
  }

  > .list-group:last-child {
    .list-group-item:last-child {
      @include border-bottom-radius($card-border-radius);
    }
  }
}

.card-body {
  // Enable `flex-grow: 1` for decks and groups so that card blocks take up
  // as much space as possible, ensuring footers are aligned to the bottom.
  flex: 1 1 auto;
  padding: $card-spacer-x;
  color: $card-color;
  background-color: #FFFFFF;
}

.card-title {
  margin-bottom: $card-spacer-y;
}

.card-subtitle {
  margin-top: -$card-spacer-y / 2;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link {
  @include hover {
    text-decoration: none;
  }

  + .card-link {
    margin-left: $card-spacer-x;
  }
}

//
// Optional textual caps
//

.card-header {
  padding: $card-spacer-y $card-spacer-x;
  margin-bottom: 0; // Removes the default margin-bottom of <hN>
  color: $card-cap-color;
  background-color: $card-cap-bg;
  border-bottom: $card-border-width solid $card-border-color;

  &:first-child {
    @include border-radius($card-inner-border-radius $card-inner-border-radius 0 0);
  }

  + .list-group {
    .list-group-item:first-child {
      border-top: 0;
    }
  }
}

.card-footer {
  padding: $card-spacer-y $card-spacer-x;
  background-color: $card-cap-bg;
  border-top: $card-border-width solid $card-border-color;

  &:last-child {
    @include border-radius(0 0 $card-inner-border-radius $card-inner-border-radius);
  }
}


//
// Header navs
//

.card-header-tabs {
  margin-right: -$card-spacer-x / 2;
  margin-bottom: -$card-spacer-y;
  margin-left: -$card-spacer-x / 2;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -$card-spacer-x / 2;
  margin-left: -$card-spacer-x / 2;
}

// Card image
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: $card-img-overlay-padding;
}

.card-img {
  width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch
  @include border-radius($card-inner-border-radius);
}

// Card image caps
.card-img-top {
  width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch
  @include border-top-radius($card-inner-border-radius);
}

.card-img-bottom {
  width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch
  @include border-bottom-radius($card-inner-border-radius);
}


// Card deck

.card-deck {
  display: flex;
  flex-direction: column;

  .card {
    margin-bottom: $card-deck-margin;
  }

  @include media-breakpoint-up(sm) {
    flex-flow: row wrap;
    margin-right: -$card-deck-margin;
    margin-left: -$card-deck-margin;

    .card {
      display: flex;
      // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4
      flex: 1 0 0%;
      flex-direction: column;
      margin-right: $card-deck-margin;
      margin-bottom: 0; // Override the default
      margin-left: $card-deck-margin;
    }
  }
}


//
// Card groups
//

.card-group {
  display: flex;
  flex-direction: column;

  // The child selector allows nested `.card` within `.card-group`
  // to display properly.
  > .card {
    margin-bottom: $card-group-margin;
  }

  @include media-breakpoint-up(sm) {
    flex-flow: row wrap;
    // The child selector allows nested `.card` within `.card-group`
    // to display properly.
    > .card {
      // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4
      flex: 1 0 0%;
      margin-bottom: 0;

      + .card {
        margin-left: 0;
        border-left: 0;
      }

      // Handle rounded corners
      @if $enable-rounded {
        &:not(:last-child) {
          @include border-right-radius(0);

          .card-img-top,
          .card-header {
            // stylelint-disable-next-line property-blacklist
            border-top-right-radius: 0;
          }
          .card-img-bottom,
          .card-footer {
            // stylelint-disable-next-line property-blacklist
            border-bottom-right-radius: 0;
          }
        }

        &:not(:first-child) {
          @include border-left-radius(0);

          .card-img-top,
          .card-header {
            // stylelint-disable-next-line property-blacklist
            border-top-left-radius: 0;
          }
          .card-img-bottom,
          .card-footer {
            // stylelint-disable-next-line property-blacklist
            border-bottom-left-radius: 0;
          }
        }
      }
    }
  }
}


//
// Columns
//

.card-columns {
  .card {
    margin-bottom: $card-columns-margin;
  }

  @include media-breakpoint-up(sm) {
    column-count: $card-columns-count;
    column-gap: $card-columns-gap;
    orphans: 1;
    widows: 1;

    .card {
      display: inline-block; // Don't let them vertically span multiple columns
      width: 100%; // Don't let their width change
    }
  }
}


//
// Accordion
//

.accordion {
  > .card {
    overflow: hidden;

    &:not(:first-of-type) {
      .card-header:first-child {
        @include border-radius(0);
      }

      &:not(:last-of-type) {
        border-bottom: 0;
        @include border-radius(0);
      }
    }

    &:first-of-type {
      border-bottom: 0;
      @include border-bottom-radius(0);
    }

    &:last-of-type {
      @include border-top-radius(0);
    }

    .card-header {
      margin-bottom: -$card-border-width;
    }
  }
}
