@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
  /* font-family: "Roboto", sans-serif; */
  font-family: "Noto Sans Bengali", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans Bengali", sans-serif;
}
.lawyer-application-page {
  background-color: #eeeefb;
}
.agent-application-page {
  background-color: #edf8ff;
}
.application-form-header {
  font-size: 35px;
  font-weight: 500;
  padding-bottom: 2rem;
}
.lawyer-form-header {
  color: #7b7bdf;
}
.agent-form-header {
  color: #68a8d3;
}
#join-application-form h3 {
  font-size: 1.25rem;
  color: #434343;
  font-weight: 500;
  margin-bottom: 20px;
}
#join-application-form h4 {
  font-size: 1rem;
  color: #434343;
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: 24px;
}

.join-as-section-container {
  margin-bottom: 200px;
  margin-top: 50px;
}
.join-as-section-wrapper {
  gap: 80px;
}
.join-as-section-wrapper h1 {
  font-size: 50px;
  color: #373737;
  line-height: 60px;
  font-weight: 500;
  margin-bottom: 80px;
  margin-top: 20px;
}
.join-as-section-wrapper .left {
  position: sticky;
  top: 0rem;
  height: fit-content;
}
.join-as-section-wrapper .left ul {
  gap: 1rem;
  padding-left: 0;
}
.join-as-section-wrapper .left .steps-icon {
  margin-bottom: 1.875rem;
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.join-as-section-wrapper .left .steps-icon img {
  height: 100%;
  object-fit: contain;
}
.join-as-section-wrapper .left ul li {
  position: relative;
}
.join-as-section-wrapper .left .separator {
  width: 2px;
  height: 80px;
  margin-left: 30px;
  margin-top: -1.5rem;
  background-color: #c2c2c2;
}
.join-as-section-wrapper .left ul li:last-child::after {
  display: none;
}
.join-as-section-wrapper .left .steps-icon img {
  height: 100%;
  object-fit: cover;
}
.join-as-section-wrapper .left .title {
  margin-bottom: 5px;
  font-size: 1.25rem;
  color: #686868;
}
.join-as-section-wrapper .left .description {
  font-size: 1rem;
  color: #686868;
  max-width: 200px;
}
.join-as-section-wrapper .right {
  border-radius: 30px;
  max-width: 630px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.join-as-section-wrapper .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.join-as-section-wrapper .right:hover img {
  transform: scale(1.1);
}

/* success modal syles */
#successModal .modal-dialog {
  max-width: 950px;
}
#successModal .modal-content {
  padding: 50px;
  border-radius: 20px;
}
#successModal img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-inline: auto;
}
#successModal h4 {
  font-size: 50px;
  font-weight: 500;
  color: #171717;
  text-align: center;
  margin-block: 60px 40px;
}
#successModal p {
  font-size: 25px;
  line-height: 50px;
  color: #797979;
  text-align: center;
}

.video-section-container {
  margin-bottom: 200px;
}
.video-section-container h2 {
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 60px;
  color: #373737;
  text-align: center;
}
.video-section-container .watch-video {
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

/* responsive */

@media screen and (max-width: 992px) {
  .join-as-section-wrapper {
    align-items: center;
  }
  .join-as-section-wrapper h1 {
    text-align: center;
  }
  .join-as-section-wrapper .left ul li {
    align-items: center;
    text-align: center;
  }
  .join-as-section-wrapper .left {
    position: static;
  }
  .join-as-section-wrapper .left .separator {
    width: 100%;
    height: 2px;
    margin-left: 0px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .join-as-section-container {
    margin-bottom: 100px;
  }
  .join-as-section-wrapper {
    gap: 50px;
  }
  .join-as-section-wrapper h1 {
    font-size: 2rem;
    line-height: 40px;
    margin-bottom: 50px;
    margin-top: 0px;
    text-align: center;
  }
  .join-as-section-wrapper .left ul {
    gap: 10px;
    justify-content: space-between;
  }
  .join-as-section-wrapper .left ul li {
    gap: 0.5rem !important;
  }
  .join-as-section-wrapper .left .steps-icon {
    margin-bottom: 1.5rem;
    height: 50px;
  }
  .join-as-section-wrapper .left .title {
    font-size: 1rem;
  }
  .join-as-section-wrapper .left .description {
    font-size: 0.75rem;
  }
  .join-as-section-wrapper .left .separator {
    width: 10%;
  }
  .join-as-section-wrapper .right {
    width: 100%;
    padding: 1.875rem 1.25rem !important;
    height: fit-content;
  }
  .application-form-header {
    font-size: 1.875rem;
    text-align: center;
  }

  /* success modal */
  #successModal .modal-content {
    padding: 30px;
  }
  #successModal img {
    width: 100px;
    height: 100px;
  }
  #successModal h4 {
    font-size: 32px;
    margin-block: 30px 20px;
  }
  #successModal p {
    font-size: 1rem;
    line-height: 2rem;
    margin-bottom: 0;
  }

  .video-section-container {
    margin-bottom: 100px;
  }
  .video-section-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
