body {
  padding-bottom: 1rem;
}
.btn {
  margin: 0.7rem;
}

a {
    color: #337ab7;
    text-decoration: none;
}
a:hover {
    color: #23527c;
}

img {
  margin: 0.7rem;
  max-width: 100%;
}
img.howto {
  height: auto;
}
img.lazy {
  content: "";
  background: #F1F1FA;
  max-width: 100%;
  display: block;
  margin: 0.7rem auto;
  border: 0;
}
img.lazydone {
  max-width: 100%;
  margin: 0.7rem auto;
  border: 0;
}

img[alt$=">"] {
  float: right;
}

img[alt$="<"] {
  float: left;
}
.video-container { position: relative; padding-bottom: 56.25%; padding-top: 2rem; height: 0; overflow: hidden; } 
.video-container iframe, .video-container object, .video-container embed, .video-container .container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.navbar-brand {
  padding: 0;
}
.navbar-brand>img {
  height: 100%;
  padding: 0;
  margin: 0;
  width: auto;
}


.pricing {
  text-align: center;
  border: 0.07rem solid #f0f0f0;
  color: #000;
  font-size: 1rem;
  padding-left: 0;
  margin-bottom: 30px;
}
.pricing img {
  display: block;
  margin: auto;
  width: 2rem;
}
.pricing li:first-child,
.pricing li:last-child {
  padding: 1.5rem 1rem;
}
.pricing li {
  list-style: none;
  padding: 1rem;
}
.pricing li + li {
  border-top: 0.07rem solid #f0f0f0;
}
.pricing big {
  font-size: 1.5rem;
  font-weight: bold;
}
.pricing h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}
.pricing span {
  font-size: 0.9rem;
  color: #999;
  font-weight: normal;
}
.pricing li:nth-last-child(2) {
  padding: 2rem 1rem;
}
.pricing button {
  width: auto;
  margin: auto;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 3rem;
  color: #fff;
  padding: 0.7rem 1.6rem;
  background: #aaa;
  opacity: 1;
  transition: opacity .2s ease;
  border: none;
  outline: none;
}
.pricing button:hover {
  opacity: .9;
}
.pricing button:active {
  box-shadow: inset 0 0.14rem 0.14rem rgba(0, 0, 0, 0.1);
}
/* pricing color */
.p-green big,
.p-green h3, .p-green .footer {
  color: #4c7737;
}
.p-green button {
  background: #4c7737;
}
.p-yel big,
.p-yel h3,.p-yel .footer {
  color: #ffbb42;
}
.p-yel button {
  background: #ffbb42;
}
.p-red big,
.p-red h3, .p-red .footer {
  color: #e13c4c;
}
.p-red button {
  background: #e13c4c;
}
.p-blue big,
.p-blue h3, .p-blue .footer {
  color: #3f4bb8;
}
.p-blue button {
  background: #3f4bb8;
}
.borderzero {
  border:0;
}
.price-strike {
text-decoration: line-through;
font-weight: 300;
}

.wrapper {
  margin: 0 auto;
  padding: 0;
}

.youtube {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
}
.youtube img {
  width: 100%;
  left: 0; 
  top:-16.7%;
  margin: 0 auto;
  padding: 0;
  opacity: 1;
  overflow: hidden;
}
.youtube .play-button {
  width: 90px;
  height: 60px;
  background-color: #333;
  box-shadow: 0 0 30px rgba( 0,0,0,0.6 );
  z-index: 1;
  opacity: 0.8;
  border-radius: 6px;
}
.youtube .play-button:before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 26.0px;
  border-color: transparent transparent transparent #fff;
}
.youtube img,
.youtube .play-button {
  cursor: pointer;
}
.youtube img,
.youtube iframe,
.youtube .play-button,
.youtube .play-button:before {
  position: absolute;
}
.youtube .play-button,
.youtube .play-button:before {
  top: 50%;
  left: 50%;
  transform: translate3d( -50%, -50%, 0 );
}
.youtube iframe {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.testimonial-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.testimonial-card {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 10px;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.testimonial-text {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.testimonial-name {
    font-size: 14px;
    font-weight: normal;
    color: #666;
}

#load-more-button {
    padding: 10px 20px;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
}
#searchBox {
    width: 300px;
    padding: 8px;
    font-size: 16px;
}

#resultBox {
    position: absolute;
    width: 300px;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    display: none;
    z-index: 999;
}

.resultItem {
    padding: 8px;
    cursor: pointer;
}

.resultItem:hover {
    background-color: #f0f0f0;
}

