select {
  display: none;
}

.selectdropdown {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0.25)),
    to(rgba(255, 255, 255, 0))
  );
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#40FFFFFF', endColorstr='#00FFFFFF', GradientType=0);
  background-color: #ffffff;
  border-radius: 4px;
  border: solid 1px #eee;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.0075);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.0075);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  float: left;
  font-size: 14px;
  font-weight: normal;
  height: 50px;
  line-height: 48px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}

.selectdropdown:focus {
  background-color: #f1f1f1;
}

.selectdropdown:hover {
  background-color: #f3f3f3;
}

.selectdropdown:active,
.selectdropdown.open {
  background-color: #ffffff;
  border-color: #ed8b00;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05) inset;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05) inset;
}

.selectdropdown:after {
  height: 0;
  width: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #777;
  -webkit-transform: origin(50% 20%);
  transform: origin(50% 20%);
  -webkit-transition: all 0.125s ease-in-out;
  transition: all 0.125s ease-in-out;
  content: "";
  display: block;
  margin-top: -2px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 50%;
}

.selectdropdown.open:after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.selectdropdown.open .list {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}

.selectdropdown.open .option {
  cursor: pointer;
  border-bottom: 1px #ccc solid;
}

.selectdropdown.open .option:last-child {
  border-bottom: 0;
}

.selectdropdown.wide {
  width: 100%;
}

.selectdropdown.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.selectdropdown .list {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
  transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
  background-color: #fff;
  border-radius: 4px;
  margin-top: 4px;
  padding: 3px 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
}

.selectdropdown .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.selectdropdown .option {
  cursor: default;
  font-weight: 400;
  line-height: 48px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.selectdropdown .option:hover,
.selectdropdown .option:focus {
  background-color: #f6f6f6 !important;
}

.selectdropdown .option.selected {
  font-weight: 600;
  border-left: 4px solid #ed8b00;
}

.selectdropdown .option.selected:focus {
  background: #ffffff;
}

.gdWill-breadcrumb {
  position: relative;
}

@media (min-width: 980px) {
  .gdWill-breadcrumb__content {
    padding: 1.2em 2em;
  }
}

@media (min-width: 1161px) {
  .container {
    width: 1170px;
  }
  .container .page-content {
    max-width: 100%;
  }
}

@media screen and (min-width: 1201px) and (max-width: 1300px) {
  .container {
    width: 1100px;
  }
}

@media screen and (min-width: 1161px) and (max-width: 1200px) {
  .container {
    width: 1000px;
  }
}

.ambdr-row {
  border-bottom: 1px solid #dee2e6;
  padding: 2em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media (max-width: 575px) {
  .ambdr-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.ambdr-row:first-child {
  padding-top: 0;
}

.ambdr-row .img-col {
  width: 100%;
  max-width: 270px;
  max-height: 300px;
}

@media (max-width: 575px) {
  .ambdr-row .img-col {
    margin-bottom: 25px;
  }
}

@media (min-width: 768px) and (max-width: 980px) {
  .ambdr-row .img-col {
    min-width: 200px;
  }
}

.ambdr-row .img-col img {
  border-radius: 5px;
  width: 100%;
  max-width: 250px;
  max-height: 270px;
  -o-object-fit: cover;
  object-fit: cover;
}

.ambdr-row .cnt-col {
  position: relative;
  padding: 0 0 4em 2em;
}

@media (max-width: 575px) {
  .ambdr-row .cnt-col {
    padding: 0 0 4em 0;
  }
}

.ambdr-row .cnt-col h2 a {
  color: #000000;
}

.ambdr-row a.btn {
  text-transform: none;
  color: #000000;
  font-weight: 700;
  position: absolute;
  left: 2.05em;
  bottom: 0;
  font-size: 16px;
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
}

@media (max-width: 575px) {
  .ambdr-row a.btn {
    left: 0;
  }
}

.ambdr-row a.btn::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #ed8b00;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
  left: 0;
}

.ambdr-row a.btn:hover::after {
  content: "";
  width: 50%;
  height: 2px;
  background-color: #ed8b00;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.readmore {
  display: inline-block;
}

.isactive .readmore {
  display: none;
}

.readless {
  display: none;
}

.isactive .readless {
  display: inline-block;
}

.sum-details {
  display: none;
}

.no-gutters {
  padding-left: 0;
  padding-right: 0;
}

.no-gutter-mobile {
  padding-left: 0;
  padding-right: 0;
}

.with-gutter {
  margin-left: 0;
  margin-right: 0;
}

.with-gutter h2,
.with-gutter h3 {
  margin-left: 0;
}

nav.pager-nav::after {
  position: relative;
  display: table;
  content: "";
  width: 100%;
}

.org-bg01 {
  background: #fef4e9;
}

.goodwill-block {
  padding: 2em 0 3em;
}

.goodwill-block article .read-more {
  font-weight: 700;
  color: #ed8b00;
}

.goodwill-block .content-cntr-block {
  padding-bottom: 1em;
  padding-left: 0;
  padding-right: 0;
}

.goodwill-block .goodwill-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 1em;
}

.goodwill-block .goodwill-gallery .gal-thumb {
  position: relative;
  width: calc(100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #000;
  border-radius: 5px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .goodwill-block .goodwill-gallery .gal-thumb {
    width: calc(100% / 2 - 20px);
  }
}

@media (min-width: 860px) {
  .goodwill-block .goodwill-gallery .gal-thumb {
    width: calc(100% / 3 - 20px);
  }
}

.goodwill-block .goodwill-gallery .gal-thumb a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.goodwill-block .goodwill-gallery .gal-thumb a img {
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
  opacity: 0.8;
}

.goodwill-block .goodwill-gallery .gal-thumb a img:hover {
  -webkit-filter: grayscale(0%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
  opacity: 1;
}

.goodwill-block .goodwill-gallery .gal-thumb a h4 {
  position: absolute;
  bottom: 30px;
  z-index: 2;
  margin: 0 auto;
  color: #ffffff;
}

.goodwill-detail-cnt {
  margin-bottom: 70px;
}

@media (max-width: 979px) {
  .goodwill-detail-cnt {
    margin-bottom: 40px;
  }
}

.goodwill-detail-cnt .col-md-5 {
  padding-right: 40px;
  padding-left: 25px;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .goodwill-detail-cnt .col-md-5 {
    padding-right: 15px;
    margin-bottom: 30px;
    width: 100%;
  }
}

.goodwill-detail-cnt .image {
  position: relative;
}

.goodwill-detail-cnt .image::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  border: 10px solid #fbdcbd;
  width: 50%;
  height: 100%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.goodwill-detail-cnt .image img {
  position: relative;
  border: 2px solid #fff;
  width: 100%;
}

.goodwill-detail-cnt .caption {
  font-size: 0.9em;
  color: #7a7a7a;
  font-weight: 300;
  margin: 25px 0 0;
}

.goodwill-detail-cnt .photo-credit {
  padding: 5px 15px;
  margin: 10px 0 0;
  font-size: 0.85em;
  background: #fbdcbd;
  font-weight: 300;
}

.goodwill-detail-cnt .content p {
  margin-bottom: 25px;
}

.goodwill-detail-cnt .content p.lead {
  margin-bottom: 35px;
  font-weight: 400;
}

.goodwill-detail-cnt .content blockquote {
  padding: 10px 0 10px 25px;
  font-size: 1.12em;
  margin: 1.5em;
  background: url("../images/quote.svg") no-repeat left top;
  background-size: 6%;
  border-left: 0;
  color: #ed8b00;
}

@media (min-width: 980px) {
  .goodwill-detail-cnt .content blockquote {
    padding: 15px 0 15px 4em;
    font-size: 1.12em;
    margin: 1.5em;
  }
}

@media (max-width: 979px) {
  .goodwill-detail-cnt .content blockquote {
    padding-left: 50px;
  }
}

@media (max-width: 575px) {
  .goodwill-detail-cnt .content blockquote {
    padding-left: 30px;
  }
}

.goodwill-detail-cnt .content ul {
  padding-left: 20px;
}

.goodwill-detail-cnt .content ul li {
  list-style-type: disc;
  margin-bottom: 20px;
}

.goodwill-detail-cnt .content ol {
  padding-left: 20px;
}

.goodwill-detail-cnt .content ol li {
  list-style-type: decimal;
  margin-bottom: 20px;
}

.pad-top-bottom.level1 {
  padding-top: 3em;
  padding-bottom: 4em;
}

@media (max-width: 767px) {
  .ct-card-group {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
    -ms-flex-direction: initial;
    flex-direction: initial;
  }
}

@media (max-width: 575px) {
  .ct-card-group.colm-3 .ct-card {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    margin: 0 0 15px;
  }
}

@media (min-width: 768px) {
  .tittle-vertical {
    left: -8%;
  }
}
