.tabs-wrapper .tab {
  overflow: hidden;
  border: 1px solid transparent;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}
.tabs-wrapper .tab button {
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 22px;
  transition: 0.3s;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: normal;
  text-align: center;
  background-color: #cca667;
  color: #fff;
  margin: 5px;
  text-transform: uppercase;
	border: 1px solid transparent;
  font-family: 'Helvetica Bold';
}
.tabs-wrapper .tab button:hover {
  background-color: #baad8d;
	border: 1px solid transparent !important;
}
.tabs-wrapper .tab button.active {
  background-color: #baad8d;
	border: 1px solid transparent;
}
.tabs-wrapper .tabcontent {
  display: none;
  padding: 30px 16px;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}

@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tabTitle {
  font-size: 30px;
  letter-spacing: 2px;
  line-height: normal;
  color: #4d4d4d;
  margin-bottom: 38px;
  text-align: center;
	text-transform: uppercase;
}

.testimonial-item {
  max-width: calc(100%);
  flex-basis: calc(100%);
  /*overflow: hidden;*/
  margin-bottom: 20px;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}
.testimonial-item .item-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
.testimonial-item .item-container .item-media {
  margin-right: 28px;
}
.testimonial-item .item-container .item-media .image {
  display: inline-flex;
}
.testimonial-item .item-container .item-media .image img {
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 250px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 250px;
  width: 100%;
}
@media (max-width: 767px) {
  .testimonial-item .item-container .item-media .image img {
    width: 180px;
    height: 180px;
    max-width: none;
    max-height: none;
  }
}
.testimonial-item .item-container .item-media .item-name h3{
  font-size: 20px;
  letter-spacing: 0px;
  line-height: normal !important;
  color: #4d4d4d;
	text-align: center;
  margin-bottom: 38px;
}
.testimonial-item .item-container .item-body {
  max-width: 70%;
  padding-top: 5%;
}
.testimonial-item .item-container .item-body .quote {
  position: relative;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 24px;
  color: #4d4d4d;
  border: 1px solid #d1aa67;
  border-width: 1px 0px 1px 0px;
  padding: 20px 0px;
}
.testimonial-item .item-container .item-body .quote::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 20px;
  display: inline-block;
  height: 30px;
  width: 30px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d1aa67'%3E%3Cpath d='M13 14.725C13 9.584 16.892 4.206 23 3l.984 2.126c-2.215.835-4.163 3.742-4.38 5.746A5.213 5.213 0 0124 16.021C24 19.203 21.416 21 18.801 21 15.786 21 13 18.695 13 14.725zm-13 0C0 9.584 3.892 4.206 10 3l.984 2.126c-2.215.835-4.163 3.742-4.38 5.746A5.213 5.213 0 0111 16.021C11 19.203 8.416 21 5.801 21 2.786 21 0 18.695 0 14.725z'/%3E%3C/svg%3E");
}
.testimonial-item .item-container .item-body .quote::after {
  content: "";
  position: absolute;
  bottom: -16px;
  right: 20px;
  display: inline-block;
  height: 30px;
  width: 30px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d1aa67' viewBox='0 0 24 24'%3E%3Cdefs/%3E%3Cpath d='M11 9.275C11 14.416 7.108 19.794 1 21l-.984-2.126c2.215-.835 4.163-3.742 4.38-5.746A5.213 5.213 0 010 7.979C0 4.797 2.584 3 5.199 3 8.214 3 11 5.305 11 9.275zm13 0C24 14.416 20.108 19.794 14 21l-.984-2.126c2.215-.835 4.163-3.742 4.38-5.746A5.213 5.213 0 0113 7.979C13 4.797 15.584 3 18.199 3 21.214 3 24 5.305 24 9.275z'/%3E%3C/svg%3E");
}

.btn-loadmore {
  border: 2px solid #cca667;
  padding: 8px 16px;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  width: calc(150px - 14px * 2);
  display: block;
  text-align: center;
  background-color: transparent;
  color: #cca667;
	font-size: 16px;
  font-weight: 800;
  text-transform: capitalize;
  transition: 0.3s ease-in all;
}
.btn-loadmore:hover {
  background-color: #cca667;
  color: #fff;
  border-color: #cca667;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex;
}