@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
:root {
  --prata: "Prata", serif;
  --lato: "Lato", sans-serif;
  --c1: #3f3d45;
  --c2: #ba805b;
  --c3: #272b2e;
  --golden: #c9a65a;
}
body {
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--prata);
}
p {
  font-family: var(--lato);
}
.bookmarkBtn {
  width: 160px;
  height: 60px;
  border-radius: 10px;
  border: 1px solid #e9e9e9;
  cursor: pointer;
  padding: 5px;
}

.bookmarkBtn,
.phone {
  font-size: 14px;
  color: #000;
}

.iconcontainer {
  width: 50px;
  height: 50px;
  background: var(--golden);
  border-radius: 10px;
  justify-content: center;
  color: white;
  z-index: 2;
}

.icon {
  border-radius: 1px;
}

.text {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  z-index: 1;
  transition-duration: 0.3s;
  font-size: 1.04em;
  margin: 0 0 0 10px;
  overflow-y: hidden;
}

.bookmarkBtn:hover .iconcontainer {
  width: 200px;
  transition-duration: 0.3s;
}

.bookmarkBtn:hover .text {
  transform: translate(10px);
  width: 0;
  font-size: 0;
  transition-duration: 0.3s;
  margin: 0;
}

.bookmarkBtn:active {
  transform: scale(0.95);
  transition-duration: 0.3s;
}
.contact-buttons ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
  margin-bottom: 0;
}
.contact-buttons ul a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-family: var(--lato);
}
.bookmarkBtn,
.iconcontainer {
  align-items: center;
  transition-duration: 0.3s;
  display: flex;
  position: relative;
  overflow: hidden;
}
p.texts {
  position: absolute;
  color: white;
  right: 10px;
  top: 15px;
  font-size: 15px;
}
header {
  position: absolute;
  width: 100%;
  top: 30px;
}
.banner-main {
  position: absolute;
  width: 100%;
  z-index: 2;
  top: 200px;
}
.banner-content H3 {
  font-size: clamp(24px, 5vw + 2vh, 55px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: white;
  margin-bottom: 0;
}
.banner-content p {
  font-size: clamp(16px, 4vw + 1vh, 22px);
  line-height: 1.5;
  letter-spacing: 2px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: white;
  margin-bottom: 0;
  padding-top: 0px;
  padding-bottom: 2rem;
}
a.get-started:hover {
    background: transparent;
    border-color: aliceblue;
}
.get-started {
  padding: 14px 40px;
  color: white;
  transition: 0.7s ease all;
  background: var(--golden);
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  border: 1px solid transparent;
}
.banner-main form {
  padding: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background: #ffffff54;
  border: 1px solid #fff;
  border-radius: 5px;
}
.banner-main form h6 {
  font-family: var(--lato);
  font-size: 20px;
  font-weight: 700;
  line-height: 45px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: white;
}
.banner-main form h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 2px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: white;
}
.banner-main form input,
.banner-main form select,
.banner-main form textarea {
  width: 100%;
  padding: 17px;
  margin: 10px 0;
  border: 1px solid white;
  border-radius: 0;
  background: transparent;
  color: white !important;
  font-family: Lato;
  font-size: 11px;
  font-weight: 700;
  line-height: 11px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  border-radius: 5px;
}
.banner-main form .form-control::placeholder,
.banner-content form select::placeholder,
.banner-content form textarea::placeholder {
  color: white !important;
}
.banner-main .form-control:focus {
  background-color: transparent;
  border-color: white;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
button.get-started {
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  width: 100%;
}

/* about sec */

.about-content h3 {
  font-weight: 400;
  font-family: var(--prata);
  line-height: 1.5;
  color: var(--c3);
  font-size: clamp(26px, 6vw + 1vh, 40px);
}
.about-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--lato);
  color: var(--c3);
}
.about-img img {
  width: 100%;
}
section.about-sec {
  /* margin-top: 100px; */
  padding: 100px 0;
}

/* legal sec */
.legal-heading h3 {
  font-size: 38px;
  font-family: var(--prata);
  font-weight: 400;
  line-height: 64px;
  text-align: center;
  color: #ffffff;
}
section.legal-practice {
  background: var(--c1);
  padding: 100px 0;
}
.legal-heading p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
  font-family: var(--lato);
}
.workers {
  border: 1px solid #F8F8F880;
  padding: 20px 30px;
  max-height: 350px;
  height: 330px;
}
.workers h6 {
  font-size: 22px;
  font-weight: 400;
  line-height: 24.2px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: white;
  margin-top: 20px;
}
.workers p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: white;
}
.trials {
  padding: 100px 0;
}
.workers a {
  color: #80858b;
  text-decoration: none;
}
.legal-heading {
  margin: 0 0 40px 0;
}
.trials .legal-heading h3 {
  color: var(--c1);
}
.trials .legal-heading p {
  color: var(--c1);
}
.trial {
  cursor: pointer;
  overflow: hidden;
}

.trial img {
    transition: 0.7s ease all;
    width: 100%;
    margin-bottom: 1.5rem;
}
.trial:hover img {display: block;transform: scale(1.12);}
.j-img img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}
.testimonial {
  background: url("../images/hbg.png");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  background-repeat: no-repeat;
}
.testi h4 {
  font-size: clamp(24px, 4vw + 1vh, 48px);
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--c1);
  text-transform: capitalize;
}
.testi ul {
  width: 530px;
  list-style: none;
  gap: 20px;
  padding-left: 0;
}
p.name {
  font-size: 28px;
  font-weight: 400;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--c1);
  padding-left: 60px;
}
footer {
  background: #232629;
}
.social-icons {
  list-style: none;
  gap: 20px;
  margin-bottom: 0;
}
.social-icons li a {
  color: var(--c2);
  font-size: 22px;
}
.lower {
  border-top: 2px solid white;
  padding: 20px 0;
}
.lower p {
  color: white;
  font-size: 17px;
  font-weight: 400;
  line-height: 23.29px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 0;
  text-align: center;
}
.logo h3 {
  font-family: Prata;
  font-size: 40px;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: 1px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: white;
  text-transform: uppercase;
}
footer .logo  h3{
 text-align: center;
 padding: 50px 0;
}

/*.trial {*/
/*    position: relative;*/
/*}*/

/*h6.consultation {*/
/*    position: absolute;*/
/*    color: #ffffff;*/
/*    bottom: 25px;*/
/*    left: 30px;*/
/*    font-size: 24px;*/
/*    letter-spacing: 0px;*/
/*    font-weight: 800;*/
/*}*/

.logo a img {
  width: 260px;
  display: block;
}
.doc-img img {
  width: 100%;
}
.copyright {text-align: center;}
.lower hr {
    color: #fff;
}
.modal-content.banner-main {
  background: none;
  position: relative;
  top: 140px;
}

.modal-content.banner-main form {
  background: #2b2729;
}
button.btn-close {
  position: absolute;
  right: 20px;
  top: 9px;
  
}
button {
  color: #fff;
  /* opacity: 0; */
  border: 0;
  background: none;
}


button i {
    right: 30px;
    top: 11px;
    font-size: 40px;
}
button.modal-close {
  position: absolute;
  right: 13px;
  top: 10px;
}
.footer-address h4 {
  color: #fff;
}
.copyright p {
    color: #fff;
}

.hr-color {
    color: #fff !important;
}
ul {
  padding-left: 0;
  list-style: none;
  text-decoration: none;
}

ul.footer-contact li a {
  color: #fff;
  text-decoration: none;
  padding-bottom: 10px !important;
  display: flex;
  gap: 1rem;
}

ul.footer-contact li a i {
  margin-right: 10px;
}

.bg-blac:hover {
  border-color: #000 !important;
  color: #000 !important;
}
.testi li {
    font-size: 24px;
}