* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  font-family: 'Gellix';
}


.container_love_wall {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 48px;
}

.love_wall {
  padding: 81px 0 64px;
  background: url(images/love-of-wall-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.love_wall-title {
  display: flex;
  gap: 4px;
  text-align: center;
  justify-content: center;
}

.love_wall-title h1 {
  font-size: 64px;
  font-weight: 600;
  font-family: 'Gellix';
  color: rgb(255, 255, 255);
  line-height: 80px;
  text-align: center;
}

.love_wall-title img {
  width: 102px;
  height: 95px;
}

.love_wall-btn {
  padding-top: 82px;
  text-align: center;
}

.love_wall-btn a {
    padding: 14px 22px;
    background: #47be68;
    border: 2px solid #47be68;
    font-size: 38px;
    font-weight: 400;
    font-family: 'Gellix';
    color: rgb(255, 255, 255);
    display: inline-block;
    border-radius: 16px;
    transition: all 0.4s ease;
}

.love_wall-btn a:hover {
    background: transparent;
}
/*testimonial*/
.testimonial {
  padding-top: 24px;
  padding-bottom: 64px;
}

.testimonial_main {
  column-count: 5;
  column-gap: 20px;
}

.testimonial_card {
  margin-bottom: 20px;
  break-inside: avoid;
  border: 1px solid #fff;
  border-radius: 20px;
  background: #1c3042;
  box-shadow: 0px 6px 4.6px 0.4px rgba(0, 0, 0, 0.31);
  box-sizing: border-box;
}

.testimonial_username {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 18px 24px;
  background: #273d51;
  border-radius: 20px;
}

.testimonial_username h1 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  border-radius: 50%;
  background-color: #5d5dff;
  max-width: 54px;
  width: 100%;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial_username h3 {
  font-size: 18px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  line-height: 26px;
  /*  text-align: center;*/
}

.testimonial_card-content {
  padding: 0 24px 24px 24px;
}

.testimonial_stars {
  padding-top: 16px;
  padding-bottom: 18px;
}

.testimonial_stars img {
  width: auto;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.testimonial_image.d-block img {
  width: 100%;
  height: auto;
  border: 2px solid #fff;
  margin-bottom: 12px;
  display: block;
}

.testimonial_description p, .testimonial_dates p {
  font-size: 18px;
  color: rgb(229, 229, 229);
  line-height: 26px;
  text-align: left;
}


.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay img {
  max-width: 90%;
  max-height: 90%;
}

.close-button:hover {
    background: #47BE68;
    color: #fff;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    /* background: #47BE68; */
    background: white;
    cursor: pointer;
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 24px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    border: 3px solid #47BE68;
    border-radius: 40px;
    transition: 0.3s ease;
}

@media (max-width: 1440px) {
  .testimonial_main {
    column-count: 4;
  }
}

@media (max-width: 1025px) {
  .container {
    padding: 0 32px;
  }

  .testimonial_main {
    column-count: 3;
  }
}

@media (max-width: 769px) {
  .love_wall-title h1 {
    font-size: 42px;
    line-height: 54px;
  }

  .love_wall-title img {
    width: 78px;
    height: 71px;
  }

  .love_wall-btn a {
    font-size: 28px;
    line-height: 44px;
  }

  .testimonial_main {
    column-count: 2;
  }
  .close-button {
    padding: 12px 24px;
    font-size: 20px;
    font-weight: 600;
  }
}

@media (max-width: 430px) {
  .container {
    padding: 0 24px;
  }

  .love_wall-title h1 {
    font-size: 36px;
    line-height: 34px;
  }

  .love_wall-title img {
    width: 48px;
    height: 41px;
  }

  .love_wall-btn a {
    font-size: 18px;
    line-height: 26px;
    padding: 12px;
  }

  .testimonial_main {
    column-count: 1;
  }
  .close-button {
    padding: 8px 18px;
    font-size: 18px;
    font-weight: 600;
  }
}


