.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 75px;
}

.logo .company-name {
  font-weight: 600;
  font-family: "Jost";
  font-size: 28px;
  color: #ff6a78;
}

.testimonial .profile {
  position: relative;
  z-index: 2;
  background-color: var(--secondary);
  color: #fff;
  font-size: 50px;
}

.testimonial .profile .image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.gallery img {
  height: 250px;
  object-fit: contain;
}

@media (max-width: 992px) {
  .navbar {
    padding: 0;
  }
  .logo img {
    width: 40px;
  }
}

/* Law Modal styles begin */
.modal.law-modal .modal-dialog {
  transform: translate(0%, -50%);
  top: 50%;
  left: 0;
}

.modal.law-modal .modal-content {
  padding: 30px;
  font-weight: 600;
  color: #000;
}

.modal.law-modal .modal-content .close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--secondary);
  box-shadow: none;
  border: none;
  color: var(--secondary-text-color);
  font-size: 30px;
}

@media (max-width: 820px) {
  .modal.law-modal .modal-content {
    padding: 14px;
    font-size: 12px;
  }
  .modal.law-modal .modal-content .close {
    width: 18px;
    height: 24px;
    font-size: 19px;
    right: -4px;
  }

  .logo .company-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
  }
}
/* Law Modal styles end */
