.testimonials-container {
  padding: 120px 0;
}
.testimonials-container .headline-part {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding: 37px 0;
  text-align: center;
}
.testimonials-container .headline-part h1 {
  color: #ba7802;
  font-size: 40px;
  /* font-weight: 800; */
  margin: 0;
  padding: 20px 0;
   font-family: "Allura";
}
.testimonials-container .testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
.testimonials-container .testimonials-list .testimonial-box {
  display: flex;
  align-items: center;
  gap: 100px;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1024px) {
  .testimonials-container .testimonials-list .testimonial-box {
    flex-direction: column;
    gap: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .testimonials-container .testimonials-list .testimonial-box.reverse {
    flex-direction: row-reverse;
  }
  .testimonials-container .testimonials-list .testimonial-box.reverse .testimonial-picture::before {
    right: 25px;
    left: auto;
  }
  .testimonials-container .testimonials-list .testimonial-box.reverse .testimonial-picture .box-inside {
    left: -66px;
  }
}
.testimonials-container .testimonials-list .testimonial-box .testimonial-picture {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 300px;
}
@media only screen and (max-width: 1100px) {
  .testimonials-container .testimonials-list .testimonial-box .testimonial-picture {
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
  }
}
.testimonials-container .testimonials-list .testimonial-box .testimonial-picture::before {
  content: "";
  position: absolute;
  border: 1px solid #ba7802;
  width: 100%;
  height: 85%;
  left: 25px;
  top: 25px;
}
@media only screen and (max-width: 576px) {
  .testimonials-container .testimonials-list .testimonial-box .testimonial-picture::before {
    width: 90%;
    height: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.testimonials-container .testimonials-list .testimonial-box .testimonial-picture .box-inside {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.9rem;
  right: -66px;
  top: 20%;
  width: 80px;
  height: 80px;
  background-color: #ba7802;
  z-index: 1;
}
@media screen and (max-width: 620px) {
  .testimonials-container .testimonials-list .testimonial-box .testimonial-picture .box-inside {
    width: 60px;
    height: 60px;
  }
}
@media only screen and (max-width: 576px) {
  .testimonials-container .testimonials-list .testimonial-box .testimonial-picture .box-inside {
    display: none;
  }
}
.testimonials-container .testimonials-list .testimonial-box .testimonial-picture img {
  width: 100%;
  max-width: 300px;
  min-height: 300px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials-container .testimonials-list .testimonial-box .testimonial-content {
  margin: 0 auto;
}
.testimonials-container .testimonials-list .testimonial-box .testimonial-content .testimonial-info {
  width: 100%;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.testimonials-container .testimonials-list .testimonial-box .testimonial-content .testimonial-info h3 {
  padding-bottom: 30px;
  font-size: 30px;
  font-weight: 400;
  margin: 0;
}
.testimonials-container .testimonials-list .testimonial-box .testimonial-content .testimonial-info p {
  margin: 0;
  padding-top: 20px;
  width: 100%;
  max-width: 560px;
  font-weight: 300;
}
.testimonials-container .testimonials-list .testimonial-box .testimonial-content .testimonial-info .buttons .btn a {
  margin: 0;
}

.buttons {
  display: flex;
  position: relative;
  gap: 20px;
  padding: 20px 0;
  letter-spacing: 2px;
}
@media only screen and (max-width: 576px) {
  .buttons {
    display: block;
  }
}
.buttons .btn div {
  color: black;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 40px;
  text-align: center;
  transition: all 0.5s ease-in-out;
}
@media only screen and (max-width: 576px) {
  .buttons .btn div {
    padding: 0;
  }
}
.buttons .btn div h1 {
  font-size: 1.1rem;
  font-weight: 100;
  margin-right: 10px;
  font-weight: 600;
}
.buttons .btn div i {
  font-size: 1.2rem;
}
.buttons .btn div:hover {
  color: #ba7802;
}
.buttons .straight-line {
  position: absolute;
  left: 153px;
  width: 2px;
  height: 40px;
  background-color: #ba7802;
}
@media only screen and (max-width: 576px) {
  .buttons .straight-line {
    width: 100%;
    max-width: 150px;
    height: 1px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    left: 0;
  }
}

.padding-top{
  padding-top: 0;
}