/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #015c94;
  --secondary: #333333;
}

html {
  overflow-x: hidden;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  font-family: "Montserrat", serif;
}

section {
  position: relative;
  padding: 2rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  margin: 0;
  color: #828282;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: "Marcellus", serif;
  margin: 0;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.preLoader.black {
  background-color: var(--black);
  z-index: 11113;
}

.preLoader.white {
  z-index: 11112;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background: #7f8990;
  font-size: 1rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 400;
  padding: 1.04em 1.96em;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  font-family: "Marcellus";
}

.nav-right .themeBtn:hover {
  background: #7f8990;
  color: #fff;
}

.themeBtn:hover {
  background-color: var(--primary);
  color: var(--white);
  transition: 0.6s ease;
}

.meet-content .themeBtn:hover {
  background: #000;
  color: #fff;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* NAV HEADER CSS */

header {
  margin: 0 auto;
  width: 100%;
  transition: 0.3s ease-in-out;
  backdrop-filter: blur(72px);
  background-color: rgb(255 255 255 / 80%);
  position: static;
  z-index: 111;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  align-items: center;
  gap: 3.75rem;
  margin-left: 4.6875rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: #00243a;
  text-transform: capitalize;
  font-weight: 400;
  padding: 0 0;
  display: inline-block;
  font-family: "Marcellus";
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 738px;
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
}

.homeSlider .swiper-pagination {
  bottom: 50%;
  width: fit-content;
  right: 0;
  left: auto;
  writing-mode: sideways-lr;
  display: flex;
  gap: 0.625rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
  width: 4.35rem;
  height: 4.35rem;
  font-size: 1rem;
  color: #fff;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.28);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.homeSlider .swiper-button-next {
  right: 1rem;
}

.homeSlider .swiper-button-prev {
  left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
  background: var(--white);
  color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
  height: 1.125rem;
  width: 1.125rem;
  display: inline-block;
  margin: 0 0.5rem !important;
  opacity: 1;
  background: #fff;
  border: 3px solid #000;
}

.homeSlider .swiper-pagination-bullet-active {
  background: #999999;
  position: relative;
  border: 1px solid #ffff;
  box-shadow: 0 0 2px 1px #828282;
}

.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 111;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.main-slider h1 {
  margin: 0;
  font-size: 4.375rem;
  line-height: 1;
  font-weight: 400;
  text-transform: capitalize;
  color: #015c94;
  width: 90%;
}

.main-slider p {
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
  margin-top: 1rem;
  font-size: 1.5625rem;
}

/* !MAIN HERO SLIDER CSS */

/* New Css Start */
a.navbar-brand {
  height: 6.875rem;
  width: 6.875rem;
  display: grid;
  place-items: center;
  background-color: var(--primary);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-right: 2.5rem;
}

.nav-right a i {
  color: #015c94;
  font-size: 1.2rem;
}

.nav-right .themeBtn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: unset;
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.2px;
  background-color: var(--primary);
}

.navbar-nav .nav-item .nav-link:hover {
  color: #015c94;
  transition: 0.6s ease;
}

.slideOne h3 {
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #015c94;
  line-height: 1.5;
  letter-spacing: 1px;
}

.main-slider h1 span {
  color: #7f8990;
}

.main-Btn {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

a.secondBtn {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #015c94;
  font-family: "Marcellus";
}

.secondBtn i {
  border: 1px solid #015c94;
  height: 3.125rem;
  width: 3.125rem;
  display: grid;
  place-items: center;
  color: #015c94;
}

.homeSlider .slide-inner::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(50deg,
      rgb(255 255 255 / 0%),
      rgb(255 255 255 / 50%));
  z-index: -1;
}

.nav-right .themeBtn i {
  color: #fff;
}

figure.main-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.main-bottom {
  position: absolute;
  left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  bottom: 4.375rem;
}

.main-bottom h3 {
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.5px;
  writing-mode: sideways-lr;
  position: relative;
}

.main-bottom h3::before {
  position: absolute;
  content: "";
  height: 50px;
  width: 2px;
  background-color: var(--primary);
  bottom: 76px;
  left: 0;
  right: 0;
  margin: auto;
}

ul.main-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

ul.main-list li a i {
  color: var(--primary);
}

/* New Css End  */

/* Imag-Sec Css Start */
section.img-sec {
  background-color: var(--primary);
  padding: 0;
  border-bottom: 1px solid rgb(255 255 255 / 19%);
}

.imag-wrapp {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid rgb(255 255 255 / 10%);
  padding: 3.125rem;
}

.imag-content h3 {
  font-size: 0.8125rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1px;
}

.imag-content h4 {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
  line-height: 1.4;
}

/* Imag-Sec Css End  */

/* Meet-Sec Css Start */
section.meet-sec {
  background-color: var(--primary);
  padding: 9.375rem 0;
}

.mainHead {
  font-size: 3.125rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
  line-height: 1.2;
  position: relative;
}

section.meet-sec .mainHead {
  margin-bottom: 2rem;
}

.mainHead::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 5rem;
  background: #7f8990;
  bottom: -1rem;
}

.meet-content p {
  color: var(--white);
  line-height: 1.8;
  font-size: 0.9375rem;
  width: 87%;
  margin: 1.25rem 0;
}

figure.meet-imag {
  margin-left: 7rem;
  margin-top: 6rem;
}

/* Meet-Sec Css End  */

/* Skilled-Sec Css Start */
.skill-wrapp {
  display: flex;
  align-items: stretch;
}

.skill-wrapp>figure img {
  width: 354px;
  height: 394px;
  object-fit: cover;
}

.skill-conetent {
  flex: 1;
  border: 1px solid rgb(0 36 58 / 10%);
  position: relative;
  padding: 2.775rem 2.5rem;
}

.skill-conetent h2 {
  font-size: 2rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #00243a;
  line-height: 1.125;
  width: 70%;
}

.skill-conetent p {
  color: #00243a;
  line-height: 1.8;
  margin: 0.625rem 0 1rem;
  width: 72%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.skill-conetent a i {
  border: 1px solid rgb(0 36 58 / 10%);
  height: 3rem;
  width: 3rem;
  display: grid;
  place-items: center;
  color: #00243a;
}

figure.skill-img {
  text-align: end;
}

.skill-conetent span {
  position: absolute;
  top: 1rem;
  font-size: 1.5rem;
  font-weight: 400;
  color: #00243a;
  font-family: auto;
  right: 2rem;
}

.skill-conetent:hover {
  background: #00243a;
  transition: 0.6s ease;
}

.skill-conetent:hover h2,
.skill-conetent:hover p,
.skill-conetent:hover span {
  color: #fff;
}

.skill-conetent:hover a i {
  background-color: #ffffff;
  color: #00243a;
  transition: 0.6s ease;
}

.skill-main {
  padding-left: 17rem;
  margin-bottom: 4rem;
}

.skill-main .mainHead {
  color: #00243a;
}

section.skilled-sec {
  padding: 8rem 0;
}

/* Skilled-Sec Css End  */

/* Eward-Sec Css Start */
.review-section {
  background: var(--primary);
}

.eward-content h3 {
  font-size: 1.875rem;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.1;
  color: var(--white);
}

.eward-content h4 {
  font-size: 0.9375rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 0.625rem;
}

ul.eward-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 1rem 0;
}

ul.eward-list li a i {
  color: rgb(255 255 255 / 50%);
}

.eward-wrapp {
  border: 1px solid #fff;
  display: flex;
  border-radius: 50%;
  align-items: center;
  width: 410px;
  height: 390px;
  padding-left: 1rem;
}

figure.revimges img {
  width: 100%;
}

figure.revimges {
  position: absolute;
  left: 11rem;
  right: 30px;
  top: 27px;
}

/* Eward-Sec Css Start */

/* Succes-Sec Css Start */
section.succes-sec .mainHead {
  margin-bottom: 4rem;
  color: #00243a;
}

.secces-content h3 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.125;
  text-transform: capitalize;
  margin-bottom: 1rem;
}

.secces-content p {
  color: #00243a;
  line-height: 1.8;
}

.secces-content {
  background-color: rgb(217 217 217 / 12%);
  padding: 1.25rem 30px;
  border: 1px solid rgb(0 36 58 / 23%);
}

.secces-wrapp figure img {
  width: 100%;
}

section.succes-sec {
  background-color: #f7f6f4;
  padding: 6rem 0;
}

/* Succes-Sec Css End  */

/* News-Sce Css Start */
.new-main {
  display: flex;
  align-items: start;
  gap: 5rem;
  border-bottom: 1px solid rgb(0 36 58 / 30%);
  padding-bottom: 2.5rem;
}

section.news-sec {
  padding: 6rem 0;
}

section.news-sec .row+.row {
  padding: 6em 0 0;
}

section.news-sec .mainHead {
  color: #00243a;
}

.new-main h5 {
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
}

.new-content h3 {
  font-size: 4.375rem;
  font-weight: 400;
  text-transform: capitalize;
  -webkit-text-fill-color: rgb(0 36 58 / 30%);
}

.new-content p {
  color: rgb(0 36 58 / 30%);
  font-size: 0.9375rem;
  text-transform: uppercase;
}

.new-main+.new-main {
  margin: 4rem 0;
}

.new-main:nth-child(3) {
  border-bottom: unset;
}

/* News-Sce Css End */
/* Marquee-Sec Css Start */
.marquee {
  user-select: none;
  display: flex;
  gap: 6.5rem;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.marquee ul {
  list-style: none;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  animation: marquee 10s linear infinite;
  align-items: center;
}

.marquee .text {
  text-align: center;
  font-size: 1.5625rem;
  font-weight: 600;
  line-height: 0.7;
  position: relative;
  z-index: -1;
  color: var(--white);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1rem;
}

@keyframes marquee {
  to {
    transform: translateX(calc(-100% - 4rem));
  }
}

section.marquee-sec {
  padding: 3rem 0;
  background-color: #7f8990;
}

.marquee ul li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-transform: uppercase;
}

.marquee ul li a i {
  font-size: 1.2rem;
  transform: rotate(315deg);
  color: #ffff;
}

/* Marquee-Sec Css End  */

/* Footer-Sec Css Start */
footer h2 {
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #7f8990;
  margin-bottom: 1.25rem;
}

footer {
  background: url(../images/footer-bg.webp) center/cover;
  padding: 6rem 0 0;
}

footer h3 {
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.25;
  color: #015c94;
}

figure.footerlogo {
  margin-bottom: 2rem;
}

ul.discover-list li a {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  color: #015c94;
  font-family: "Montserrat";
}

ul.discover-list {
  display: flex;
  flex-flow: column wrap;
  max-height: 140px;
  gap: 0.625rem;
}

ul.support-list li a {
  font-size: 14px;
  color: #015c94;
  font-weight: 400;
  text-transform: capitalize;
  font-family: "Montserrat";
}

ul.support-list li+li {
  margin: 1rem 0;
}

footer p {
  color: #015c94;
  font-size: 14px;
  margin-top: 0.625rem;
}

form.footerform .form-control {
  height: 3.125rem;
  background-color: transparent;
  border: unset;
  border-bottom: 1px solid #015c94;
  border-radius: unset;
  position: relative;
  color: #757575;
  box-shadow: unset;
  outline: unset;
}

form.footerform button {
  position: absolute;
  right: 1rem;
  bottom: 0;
  top: -18px;
  margin: auto;
  height: 3.125rem;
  width: 3.125rem;
  display: grid;
  place-items: center;
  background-color: #7f8990;
  color: var(--white);
  outline: none !important;
}

form.footerform {
  margin-top: 1rem;
}

.footer-bottom p {
  text-align: center;
}

.footer-bottom {
  padding: 1.25rem 0;
  border-top: 1px solid rgb(1 92 148 / 21%);
  margin-top: 4rem;
}

form.footerform .form-control::placeholder {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: #757575;
  font-family: "Montserrat", serif;
}

/* Footer-Sec Css End   */

/* inner pages css start */

.inner-banner {
  position: relative;
  padding: 0;
}

.inner-banner h2 {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 27%;
  font-size: 4.375rem;
  color: var(--primary);
}

.meet-sec.about-page figure.meet-imag {
  margin-left: 0;
  margin-top: 4rem;
}

.meet-sec.about-page .row+.row {
  margin-top: 0.5rem;
}

.meet-sec.about-page {
  padding-bottom: 3rem;
}

.news-sec.abtpg-news .new-main:nth-child(3) {
  margin-bottom: 0;
  padding-bottom: 0;
}

.attorney-page {
  background: var(--primary);
  padding: 5rem 0;
}

.atorney-content .mainHead {
  margin: 0 0 2.5rem;
}

.atorney-content p {
  font-size: 15px;
  color: var(--white);
  line-height: 27px;
  margin: 0 0 1.5rem;
}

.atorney-content h4 {
  color: var(--white);
  font-weight: 600;
  margin: 1.5rem 0 0.7rem;
}

.atorney-content span {
  font-size: 15px;
  color: var(--white);
  /* line-height: 27px; */
  margin: 7px 0 0;
  display: block;
}

figure.atorny-img img {
  width: 100%;
}

figure.atorny-img {
  margin-left: -5rem;
}

.attorney-pagewalker {
  padding: 5rem 0;
}

.attorney-pagewalker figure.atorny-img {
  margin: 0;
}

.attorney-pagewalker .atorney-content .mainHead,
.attorney-pagewalker .atorney-content p,
.attorney-pagewalker .atorney-content h4,
.attorney-pagewalker .atorney-content span {
  color: var(--black);
}

.attorney-pagewalker .atorney-content {
  margin-left: -4rem;
  padding-right: 1.8rem;
}

.skilled-sec.practice-astpg {
  padding: 5rem 9rem;
}

.skilled-sec.practice-astpg .skill-conetent h2 {
  width: 100%;
}

.skilled-sec.practice-astpg .skill-conetent {
  padding: 3.9rem 2rem;
  height: 100%;
}

.skilled-sec.practice-astpg .skill-conetent p {
  color: #00243a;
  width: 100%;
}

.skilled-sec.practice-astpg .skill-conetent span {
  color: #00243a;
}

.skilled-sec.practice-astpg .skill-conetent:hover p,
.skilled-sec.practice-astpg .skill-conetent:hover span {
  color: var(--white);
}

.skilled-sec.practice-astpg .skill-wrapp {
  margin-bottom: 1.4rem;
}

.skilled-sec.practice-astpg .skill-main {
  padding-left: 8rem;
}

.news-sec.news-page .new-main:nth-child(3) {
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Contact Us Start */

form.helpForm.pricingform .form-group input {
  background: var(--primary);
  height: 70px;
  border-radius: 0;
  border: unset;
  color: #fff;
}

form.helpForm.pricingform .form-group input::placeholder {
  color: #fff;
}

form.helpForm.pricingform h2 {
  font-size: 1rem;
  margin-bottom: 23px;
}

form.helpForm.pricingform.aos-init.aos-animate .form-group {
  margin-bottom: 46px;
}

.helpForm.form-check {
  padding: 0 0 4rem 0;
}

.helpForm .form-group textarea {
  height: 260px !important;
  background: var(--primary);
  border-radius: 0;
  border: unset;
  color: #fff;
}

form.helpForm.pricingform .form-group textarea::placeholder {
  color: #000;
}

.contact-page form.helpForm.pricingform.aos-init.aos-animate {
  padding: 0;
}

.contact-page form.helpForm.pricingform .form-group input {
  border-radius: 8px;
  border: 1px solid #636d79;
  height: 55px;
  background: #f6f6f6;
  color: #000;
}

.contact-page form.helpForm.pricingform.aos-init.aos-animate .form-group {
  margin-bottom: 20px;
}

.helpForm.form-check.multicheck {
  padding-left: 1rem;
  display: flex;
  flex-flow: column wrap;
  max-height: 110px;
  gap: 1rem 1rem;
  padding-bottom: 24px;
}

.contact-page .helpForm .form-group textarea {
  height: 140px !important;
  border-radius: 8px;
  border: 1px solid #636d79;
  background: #f6f6f6;
  color: #000;
}

.contact-pagetop a {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  background: var(--primary);
  padding: 1.5rem 45rem 1.5rem 1rem;
  position: absolute;
  top: -10.5rem;
  left: -8rem;
}

.contact-page form.helpForm.pricingform .form-group input::placeholder {
  color: #000;
}

.contact-content {
  background: var(--primary);
  height: 100%;
  padding: 3.75em 4em;
  border-radius: 0;
}

.contact-content h3 {
  font-size: 3.125rem;
  font-weight: 400;
  color: var(--white);
  text-transform: capitalize;
}

.contact-content h5 {
  font-size: 2rem;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-weight: 300;
}

.contact-content .line {
  display: block;
  width: 124px;
  height: 1px;
  background: var(--white);
  margin: 1.25em 0 3em;
}

.contact-list li:not(:last-child) {
  margin-bottom: 2.5rem;
}

.contact-list li a {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.contact-list li a .icon {
  width: 84px;
  max-width: 84px;
  height: 84px;
  aspect-ratio: 1;
  border-radius: 0.3125rem;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  background: #7f8990;
  color: var(--white);
}

.contact-list li a div h4 {
  font-size: 1.5625rem;
  color: var(--white);
  margin: 0;
}

.contact-list li a div h4 span {
  display: block;
  font-size: 1.625rem;
  font-weight: 400;
  margin-top: 0.375rem;
  font-family: "Montserrat", serif;
}

.contact-icon-img {
  text-align: right;
  margin: -4rem -4rem 0 0;
}

.contact-form-wrapper {
  background: #f7f6f4;
  padding: 3.875em 18em 4em 3.125em;
  margin: 0rem -20rem 0 0;
}

.contact-form label {
  font-size: 1.375rem;
  font-weight: 400;
  color: #7f8990;
  font-family: "Marcellus", serif;
}

.contact-form :is(input, textarea) {
  display: block;
  width: 100%;
  height: unset;
  padding: 0.75em;
  border-radius: 0;
  border: 1px solid rgb(0, 0, 0, 10%);
  background: var(--white);
  color: var(--black);
  outline: none;
  margin-bottom: 2rem;
  resize: none;
}

.contact-form .themeBtn {
  width: 100%;
  border: none;
  outline: none;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
}

.pricingpage.contact-page {
  padding: 5rem 0;
}

/* Contact Us End */

figure.law-img {
  margin-right: -10rem;
}

figure.law-img img {
  width: 100%;
}

.attorney-pagewalker.lawpg1 .lawpg-content p {
  color: #00243a;
  margin: 0;
}

.lawpg-content p+p {
  margin-top: 30px;
}

.attorney-pagewalker.lawpg1 {
  background: #f7f6f4;
}

.attorney-pagewalker.lawpg1 .law-img {
  margin: 0;
}

.attorney-pagewalker.lawpg1 .atorney-content.lawpg-content {
  margin-left: 0;
  margin-right: -12rem;
}

.attorney-pagewalker.lawpg1 .lawpg-content p+p {
  margin-top: 1.7rem;
}

.attorney-pagewalker.lawpg .atorney-content.lawpg-content {
  margin: 0;
  padding: 0 54px 0 0;
}

.attorney-pagewalker.lawpg .atorney-content.lawpg-content p {
  margin: 0;
}

.attorney-pagewalker.lawpg .atorney-content.lawpg-content p+p {
  margin-top: 2rem;
}

/* inner pages css end */

.error {
  display: block !important;
  color: #ff0000 !important;
}

#contactFormResult {
  margin: 1rem 0 0 0;
}

section.current-section .mainHead {
  font-size: 3.125rem;
  font-weight: 400;
  color: #00243a;
  margin-bottom: 3rem;
}

section.current-section {
  padding: 4rem;
}

.leftwrap h3 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #b3bec4;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.leftwrap ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.leftwrap ul li {
  font-size: 1rem;
  color: #b3bec4;
  list-style: disc;
}

.current-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #b3bec4;
  padding: 34px 61px;
  margin-top: 2rem;
}

.current-wrap a {
  background: #015c94;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2rem;
}

.current-wrap a i {
  transform: rotate(317deg);
}

form.helpForm.pricingform .form-group input {
  border-radius: unset;
  border: unset;
  height: 55px;
  color: #000;
  border-bottom: 1px solid rgb(194 190 190 / 40%);
}

.helpBox h2 {
  font-size: 3.125rem;
  font-weight: 400;
  color: #fff;
  margin: 3rem 0 1rem 0;
}

.helpBox button.themeBtn {
  border: unset;
}

form.helpForm.pricingform .form-group.filegrp input {
  background: #7f8990;
}

.appointment-page .contact-content {
  height: auto;
  padding: 1.25em 2em;
  text-align: center;
}

.appointment-page .contact-form-wrapper {
  margin: 0;
  padding: 1.5em 2em;
}

/* New-Page Css Start */
section.new-page-sec {
  padding: 6rem 0 5rem;
  background-color: var(--primary);
}

section.new-page-sec .mainHead {
  margin-bottom: 3rem;
}

section.new-page-sec .mainHead::before {
  background-color: var(--white);
}

.news-content h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white);
  letter-spacing: -0.16px;
  font-family: "Montserrat";
}

.news-content h3 span {
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Montserrat";
  padding: 0.625rem;
  letter-spacing: 1px;
  background-color: #7f8990;
}

figure.news-img img {
  width: 100%;
}

figure.news-img {
  border: 1px solid rgb(255 255 255 / 30%);
  padding: 1.25rem;
}

.news-content h4 {
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.24px;
  margin: 0.925rem 0 0.965rem;
}

.news-content {
  padding-top: 1rem;
}

figure.news-sub {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

figure.news-sub h5 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: -0.16px;
}

figure.news-sub h5 span {
  font-weight: 600;
  letter-spacing: 1px;
}

section.new-page-sec .row+.row {
  padding-top: 3.1rem;
}

/* New-Page Css End  */

.associate-attorney-job {
  padding: 3rem 0;
}

.title {
  color: #0056b3;
  text-align: center;
}

.section-title {
  color: #0056b3;
  margin: 1.5rem 0;
}

.content {
  color: var(--black);
  font-weight: 600;
  line-height: 1.6;
  margin: 1rem 0;
}

.associate-attorney-job .contact-form-wrapper {
  margin: 0;
  padding: 3em;
}
.list li {
  color: var(--black);
  font-weight: 700;
}