
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*@font-face{
  font-family: second;
  src : url(assets/Bell-MT/Bell MT.ttf);
}*/
body {
  font-family: 'Poppins', sans-serif;
  /*font-family: 'Lora', serif;*/
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul{
  list-style: none;
}
p{
  margin-bottom: 0;
}
:root{
  --dark-blue: #228d9c;
  --light-blue: #f4f9fa;
  --sky-blue: #7acef3;
  --dark-grey: #434343;
  --grey: #dbe2ea;
  --black: #010101;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--dark-blue);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: var(--sky-blue);
  color: var(--black);
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/*#preloader {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  bottom: 0;*/
/*  z-index: 9999;*/
/*  overflow: hidden;*/
/*  background: #fff;*/
/*}*/

/*#preloader:before {*/
/*  content: "";*/
/*  position: fixed;*/
/*  top: calc(50% - 30px);*/
/*  left: calc(50% - 30px);*/
/*  border: 6px solid var(--red);*/
/*  border-top-color: var(--golden-brown);*/
/*  border-radius: 50%;*/
/*  width: 60px;*/
/*  height: 60px;*/
/*  -webkit-animation: animate-preloader 1s linear infinite;*/
/*  animation: animate-preloader 1s linear infinite;*/
/*}*/

/*@-webkit-keyframes animate-preloader {*/
/*  0% {*/
/*    transform: rotate(0deg);*/
/*  }*/
/*  100% {*/
/*    transform: rotate(360deg);*/
/*  }*/
/*}*/

/*@keyframes animate-preloader {*/
/*  0% {*/
/*    transform: rotate(0deg);*/
/*  }*/
/*  100% {*/
/*    transform: rotate(360deg);*/
/*  }*/
/*}*/
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 60px;
  width: 100%;
  color: var(--white);
  z-index: 996;
  background: var(--dark-blue);
  padding: 0 30px;
}
#topbar.topbar-scrolled {
  top: -60px;
}
.topbar_email_img img{
  width: 30px;
  height: auto;
  margin-right: 10px;
}
.topbar_email_img a img{
  margin-left: 10px;
}
.topbar_email_brf p{
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
  font-size: 16px;
}
.topbar_email_brf span{
  color: #fff
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  z-index: 997;
  height: 80px;
  top: 60px;
  border-top: 1px solid var(--golden-brown);
}
#header.header-scrolled {
  background: #fff;
  top: 0;
}
#header .logo img {
  max-width: 190px;
  height: 30px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 30px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  text-transform: uppercase;
}
.navbar a i, .navbar a:focus i {
  font-size: 26px;
  font-weight: 900;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--dark-blue);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 10px;
  height: 450px;
  overflow-y: scroll;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  color: var(--black);
  text-transform: capitalize;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, 
.navbar .dropdown ul li:hover > a {
  color: var(--dark-blue);
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--red);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--dark-blue);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--black);
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--dark-blue);
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: var(--dark-blue);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
#header h5{
  background: var(--dark-blue);
  padding: 10px 10px;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  width: 100%;
}
#header .header_cal_us{
  background: var(--dark-blue);
  color: #fff;
  font-size: 16px;
  border-radius: 10px;
  box-shadow: 0 0 10px gray;
  padding: 10px 40px;
  text-transform: capitalize;
  transition: all .5s ease-in-out;
}
#header .header_cal_us:hover{
  background-color: var(--sky-blue);
  color: var(--black);
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/


#hero{
  position: relative;
  margin-top: 135px;
}
#PnVideo {
  /*position: relative;*/
  width: 100%;
  height: 100%;
}
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.content h1{
  color: #fff;
    margin-bottom: 0;
    font-size: 27px;
    text-transform: capitalize;
    font-family: 'Lora', serif;;
}
.content h2 {
  /*width: 80%;*/
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
  font-weight: 800;
  font-size: 50px;
  letter-spacing: 1px;
  text-transform: capitalize;
}
.hero_counter{
  justify-content: space-between;
  width: 50%;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin: 20px 0 40px 0;
}
.hero_counter h3{
  color: #fff;
  margin-bottom: 0;
  font-family: 'Lora', serif;
  font-size: 26px;
  font-weight: 900;
}
.hero_counter p{
  color: var(--sky-blue);
  font-family: 'Lora', serif;
  text-transform: capitalize;
}

#hero .btn-get-started {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 50px;
  border-radius: 10px;
  transition: 0.5s;
  margin-top: 20px;
  color: #fff;
  background: var(--dark-blue);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  text-transform: capitalize;
}
#hero .btn-get-started:hover {
  background: var(--sky-blue);
  color: var(--black);
  text-decoration: none;
}




/*#hero {*/
/*  width: 100%;*/
/*  height: 710px;*/
/*  overflow: hidden;*/
/*  position: relative;*/
/*  background: url("../img/home/home-banner-img.png") top center;*/
/*  background-size: cover;*/
/*  position: relative;*/
/*  z-index: 99;*/
/*  transition: 0.3s;*/
/*  margin-top: 60px;*/
/*}*/
/*#hero:before {*/
/*  content: "";*/
/*  background: rgba(0, 0, 0, .6);*/
/*  position: absolute;*/
/*  bottom: 0;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*}*/
/*#hero .carousel-container {*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  flex-direction: column;*/
/*  text-align: center;*/
/*  bottom: 0;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*}*/
/*#hero h1 {*/
/*  color: #fff;*/
/*  margin-bottom: 0;*/
/*  font-size: 27px;*/
/*  text-transform: capitalize;*/
/*  font-family: 'Lora', serif;*/
/*}*/
/*#hero h2 {*/
  /*width: 80%;*/
/*  -webkit-animation-delay: 0.4s;*/
/*  animation-delay: 0.4s;*/
/*  margin: 0 auto 30px auto;*/
/*  color: #fff;*/
/*  font-weight: 800;*/
/*  font-size: 50px;*/
/*  letter-spacing: 1px;*/
/*  text-transform: capitalize;*/
/*}*/
/*#hero .carousel-control-prev, #hero .carousel-control-next {*/
/*  width: 10%;*/
/*}*/
/*#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {*/
/*  background: none;*/
/*  font-size: 48px;*/
/*  line-height: 1;*/
/*  width: auto;*/
/*  height: auto;*/
/*}*/
/*.hero_counter{*/
/*  justify-content: space-between;*/
/*  width: 50%;*/
/*  -webkit-animation-delay: 0.8s;*/
/*  animation-delay: 0.8s;*/
/*  margin: 20px 0 40px 0;*/
/*}*/
/*.hero_counter h3{*/
/*  color: #fff;*/
/*  margin-bottom: 0;*/
/*  font-family: 'Lora', serif;*/
/*  font-size: 26px;*/
/*  font-weight: 900;*/
/*}*/
/*.hero_counter p{*/
/*  color: var(--sky-blue);*/
/*  font-family: 'Lora', serif;*/
/*  text-transform: capitalize;*/
/*}*/

/*#hero .btn-get-started {*/
/*  font-weight: 700;*/
/*  font-size: 16px;*/
/*  letter-spacing: 1px;*/
/*  display: inline-block;*/
/*  padding: 15px 50px;*/
/*  border-radius: 10px;*/
/*  transition: 0.5s;*/
/*  margin-top: 20px;*/
/*  color: #fff;*/
/*  background: var(--dark-blue);*/
/*  -webkit-animation-delay: 0.8s;*/
/*  animation-delay: 0.8s;*/
/*  text-transform: capitalize;*/
/*}*/
/*#hero .btn-get-started:hover {*/
/*  background: var(--sky-blue);*/
/*  color: var(--black);*/
/*  text-decoration: none;*/
/*}*/
/*@media (min-width: 1024px) {*/
/*  #hero .carousel-control-prev, #hero .carousel-control-next {*/
/*    width: 5%;*/
/*  }*/
/*}*/
/*-------------------------------------------------------------------------------
Home Page Main Start
--------------------------------------------------------------------------------*/
/*---------------- About -----------------------*/
#HomeAbout{
  margin: 70px 0;
}
.home_abt_hding h2{
  font-size: 21px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--dark-blue);
  font-family: 'Lora', serif;
  margin-bottom: 0;
}
.home_abt_hding h3{
  font-size: 37px;
  font-weight: 700;
  color: var(--black);
  text-transform: capitalize;
  margin-bottom: 20px;
}
/*--------------------- Services ----------------------*/
#homePracArea{
  background: linear-gradient(#228d9ca8, #228d9ca8),
              url(../img/Practice-Area-bg-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px 80px;
}
.home_parea{
  background: rgba(255,255,255,.6);
  /*background: #fff;*/
  border-radius: 20px;
  width: 100%;
  height: 100%;
  transition: all .5s ease-in-out;
}
.hpa_img1{
  width: 60px;
  height: auto;
  margin-top: 60px;
  margin-bottom: 15px;
}
.home_parea h5{
  /*font-size: 25px;*/
  /*font-weight: 700;*/
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 60px;
  color: var(--black);
  text-transform: capitalize;
}
.home_parea p{
  display: none;
  font-size: 15px;
  color: #fff;
  text-align: center;
  margin-bottom: 17px;
  padding: 0 10px;
}
.hpa_img2{
  display: none;
  width: 50px;
  height: auto;
  margin-top: 36px;
  margin-bottom: 10px;
}
.home_parea_col:hover .hpa_img1{
  display: none;
}
.home_parea_col:hover .hpa_img2,
.home_parea_col:hover .home_parea p{
  display: block;
}
.home_parea_col:hover .home_parea h5{
  color: #fff;
  margin-bottom: 10px;
}
.home_parea_col:hover .home_parea{
  background: #228d9cb3;
}
.parea_row{
  margin-top: 10px;
}
.parea_heading h2{
  font-size: 21px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: 'Lora', serif;
  margin-bottom: 0;
  text-align: center;
  color: #fff;
}
.parea_heading h3{
  font-size: 37px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
}
.parea_heading p{
  color: #fff;
  text-align: center;
}
#homeSrvcmobile{
  display: none !important;
}
/*---------------- Criminal Court Text ---------------*/
#homeCrimiCourt{
  background: url(../img/Criminal-Courts-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 80px 40px;
  margin: 60px 100px;
  border-radius: 30px;
}
.hcc_brf h2{
  font-size: 21px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--dark-blue);
  font-family: 'Lora', serif;
  margin-bottom: 0;
  text-align: left;
}
.hcc_brf h3{
  font-size: 37px;
  font-weight: 700;
  color: var(--black);
  text-transform: capitalize;
  margin-bottom: 20px;
  text-align: left;
}
/*-------------------- Resolution ANd Firm --------------*/
#resolutionFirm{
  margin-bottom: 70px;
}
.res_firm_brf{
  background: var(--dark-blue);
  /*padding: 50px 150px;*/
  padding: 10px 50px;
}
.res_firm_brf h2{
  font-size: 21px;
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
  font-family: 'Lora', serif;
  margin-bottom: 0;
  text-align: left;
}
.res_firm_brf h3{
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 40px;
  text-align: left;
}
.res_firm_brf p{
  color: #fff;
  margin-bottom: 80px;
}
.res_firm_brf a{
  color: #fff;
  /*box-shadow: 0 0 10px var(--black);*/
   box-shadow: 0px 8px 30px #0101013d;
  padding: 15px 30px;
  border-radius: 10px;
  display: inline-block;
  width: 60%;
  text-align: center;
  text-transform: capitalize;
  transition: all .5s ease-in-out;
}
.res_firm_brf a:hover{
  background: var(--sky-blue);
  color: var(--black);
}
.res_firm_img img{
  width: 100%;
  /*height: 100%;*/
  height: 550px;
}
.firm_brf{
  /*background: var(--sky-blue);*/
  background: var(--dark-blue);
}
.firm_brf a{
  background: var(--dark-blue);
}
/*------------------- Contact --------------------*/
#homeContact{
  margin-bottom: 80px;
}
.home_contact h2{
  padding-bottom: 21px;
  font-size: 21px;
  font-weight: 500;
  /*text-transform: capitalize;*/
  color: var(--dark-blue);
  font-family: 'Lora', serif;
  margin-bottom: 0;
  text-align: left;
}
.home_contact h3{
  font-size: 37px;
  font-weight: 700;
  color: var(--black);
  /*text-transform: capitalize;*/
  margin-bottom: 20px;
  text-align: left;
}
.home_contact p{
  text-align: center;
}
.home_contact_form_row{
  margin-top: 40px;
  padding-bottom: 20px;
}
.home_contact_form{
  /*box-shadow: 0 0 10px gray;*/
  box-shadow: 0px 7px 30px #d5d5d59e;
  border-radius: 20px;
  padding: 20px 30px;
}
.home_contact_form form{
  width: 95%;
  padding-top: 40px;
}
.hcf_input{
  width: 32%;
  margin-bottom: 15px;
}
.hcf_input input[type="text"]{
  background: #eff7f9;
  border: none;
  outline: none;
  width: 100%;
  height: 55px;
  padding-left: 15px;
  border-radius: 10px;
}
.hcf_input input[type="text"]::placeholder{
  color: var(--black);
}
.hcf_row textarea{
  background: #eff7f9;
  border: none;
  outline: none;
  width: 100%;
  padding-left: 20px;
  padding-top: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
}
.hcf_row textarea::placeholder{
  color: var(--black);
  opacity: 1;
}
.hcf_row input[type="submit"]{
  background: var(--dark-blue);
  width: 20%;
  height: 55px;
  color: #fff;
  text-transform: capitalize;
  border-radius: 10px;
  box-shadow: 0 5px 10px #80808078;
  margin-bottom: 40px;
  outline: none;
  border: none;
  transition: all .5s ease-in-out;
}
.hcf_row input[type="submit"]:hover{
  background: var(--sky-blue);
  color: var(--black);
}
.hcf_checkbox{
  margin-top: 40px;
  margin-bottom: 40px;
}
.hcf_checkbox input[type="checkbox"]{
  width: 25px;
  height: 25px;
  outline: none;
  margin-right: 10px;
}
.hcf_checkbox p a{
  color: var(--sky-blue);
  text-decoration: underline;
  font-weight: 600;
}
/*---------------------- Footer --------------------*/
#footer{
  background: var(--black);
  background: #272727;
  /*padding: 25px 0;*/
  padding: 35px 0;
}
.footer_info{
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.footer_info img{
  max-width: 190px;
  height: 30px;
}
.footer_info a{
  color: #fff;
  text-transform: capitalize;
  padding-bottom: 3px;
  position: relative;
}
/*.footer_info a:after{*/
/*  content: "";*/
/*  width: 100%;*/
/*  height: 2px;*/
/*  background-color: #fff;*/
/*  position: absolute;*/
/*  left: 0;*/
/*  bottom: 0;*/
/*}*/
.footer_info p span{
  color: #fff;
  margin: 0 10px;
}
.copy_right{
  background-color: rgba(0, 0, 0, .8);
  padding: 10px;
}
.copy_right p{
  color: #fff;
  font-size: 15px;
  text-align: center;
}
.copy_right p a{
  color: #fff;
  font-size: 13px;
}
.copy_right p a:hover{
  color: var(--sky-blue);
  font-family: second;
}
/*----------------------------------------------------------------------------------
Disclaimer Page
----------------------------------------------------------------------------------*/
#ClaimHero{
  width: 100%;
  height: 550px;
  margin-top: 135px;
}
#ClaimHero h1{
  font-size: 50px;
  font-weight: 500;
  font-family: 'Lora', serif;
  color: #fff;
  letter-spacing: 1px;
  text-transform: capitalize;
  font-family: 'Lora', serif;
}

#Disclaimer{
  margin: 50px 0;
}
.disclaimer_brf{
  padding-left: 40px;
}
.disclaimer_brf h2{
  font-size: 21px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--dark-blue);
  font-family: 'Lora', serif;
  margin-bottom: 0;
}
.disclaimer_brf h3{
  font-size: 37px;
  font-weight: 700;
  color: var(--black);
  text-transform: capitalize;
  margin-bottom: 20px;
}
.disclaimer_img{
    padding-right: 0;
}
.disclaimer_img img{
  /*width: 65%;*/
  width: 100%;
  height: auto;
}
/*----------------------------------------------------------------------------------
Site map Page
----------------------------------------------------------------------------------*/
#SiteMap{
  padding: 50px 0;
  margin-bottom: 60px;
  background: var(--light-blue);
}
.Site_map_brf h2{
  font-size: 21px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--dark-blue);
  font-family: 'Lora', serif;
  margin-bottom: 0;
}
.Site_map_brf h3{
  font-size: 37px;
  font-weight: 700;
  color: var(--black);
  text-transform: capitalize;
  margin-bottom: 20px;
}
.sitmap_link ul li{
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.sitmap_link ul li a{
  color: var(--black);
  font-weight: 500;
}
.sitmap_link ul li a i{
  color: red;
  font-size: 25px;
  margin-right: 10px;
}
/*----------------------------------------------------------------------------------
About Page
----------------------------------------------------------------------------------*/
#About{
  margin: 80px 0 70px 0;
}
.about_brf{
  padding: 0 50px;
}
.about_brf h2{
  padding-bottom: 21px;
  font-size: 21px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--dark-blue);
  font-family: 'Lora', serif;
  margin-bottom: 0;
}
.about_brf h3{
  font-size: 37px;
  font-weight: 700;
  color: var(--black);
  text-transform: capitalize;
  margin-bottom: 20px;
}
.about_brf p{
  margin-bottom: 25px;
}
.about_brf h4{
  font-family: 'Lora', serif;
  color: var(--dark-blue);
  font-size: 26px;
  margin-bottom: 25px;
}
.about_brf a{
  font-family: 'Lora', serif;
  color: var(--sky-blue);
  margin-bottom: 10px;
  font-weight: 800;
  font-size: 18px;
}
.about_img{
  padding-right: 0;
}
.about_img .about_img1{
  width: 100%;
  height: 225px;
  margin-bottom: 50px;
}
.about_img .about_img2{
  width: 100%;
  height: 100%;
  /*height: 480px;*/
}
/*----------------------------------------------------------------------------------
Family Law Page
----------------------------------------------------------------------------------*/
#familyLaw{
  margin: 80px 0 70px 0;
}
.family_law_brf{
  padding: 0 50px;
}
.family_law_brf h2{
  padding-bottom: 21px;
  font-size: 21px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--dark-blue);
  font-family: 'Lora', serif;
  margin-bottom: 0;
}
.family_law_brf h3{
  font-size: 37px;
  font-weight: 700;
  color: var(--black);
  text-transform: capitalize;
  margin-bottom: 20px;
}
.family_law_brf p{
  margin-bottom: 25px;
}
.family_law_brf h4{
  font-family: 'Lora', serif;
  color: var(--dark-blue);
  font-size: 26px;
  margin-bottom: 25px;
}
.family_law_brf a{
  color: var(--sky-blue);
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
}
.family_law_brf ul{
  padding-left: 0;
}
.family_law_brf ul li{
  margin-bottom: 5px;
}
.family_law_brf ul li i{
  color: var(--dark-blue);
  margin-right: 15px;
}
.family_law_brf ul li a{
  font-family: 'Lora', serif;
  color: var(--sky-blue);
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: underline;
}
.family_law_img{
  padding-right: 50px;
}
.family_law_img img{
  width: 100%;
  height: auto;
}
/*--------------------------------------------------------------------------------
Contact Page
----------------------------------------------------------------------------------*/
#contactUs{
  margin: 70px 0;
}
.contact_dtl h2{
  font-size: 21px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--dark-blue);
  font-family: 'Lora', serif;
  margin-bottom: 0;
}
.contact_dtl h3{
  font-size: 37px;
  font-weight: 700;
  color: var(--black);
  text-transform: capitalize;
  margin-bottom: 20px;
}
.contact_dtl p a{
  color: var(--sky-blue);
}
#PersonalInfo{
  background: #eff7f9;
  padding: 60px 0;
  margin-bottom: 70px;
}
.personal_info h2{
  font-size: 21px;
  font-weight: 500;
  /*text-transform: capitalize;*/
  color: var(--dark-blue);
  font-family: 'Lora', serif;
  margin-bottom: 0;
}
.personal_info h3{
  font-size: 37px;
  font-weight: 700;
  color: var(--black);
  text-transform: capitalize;
  margin-bottom: 20px;
}
.personal_info_row{
  width: 100%;
  margin-bottom: 15px;
}
.personal_info_name, .personal_info_email, .personal_info_phone{
  width: 32%;
}
.personal_info_row input[type="text"]{
  border: none;
  outline: none;
  background: #ddedf1;
  border-radius: 10px;
  width: 100%;
  height: 55px;
  padding-left: 20px;
}
.personal_info_row input[type="text"]::placeholder{
  color: var(--black);
  opacity: 1;
}
.personal_info_state, .personal_info_zip{
  width: 49%;
}
.personal_info_state select{
  border: none;
  outline: none;
  background: #ddedf1;
  border-radius: 10px;
  width: 100%;
  height: 55px;
  padding-left: 20px;
}
.personal_info h4{
  font-size: 22px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--dark-blue);
  font-family: 'Lora', serif;
  margin-bottom: 10px;
  margin-top: 70px;
  text-align: center; 
}
.cntct_prefer p{
  margin-bottom: 0
}
.cntct_prefer input[type="checkbox"]{
  width: 18px;
  height: 22px;
  margin-left: 25px;
  margin-right: 10px;
  border-radius: 0;
  border: 1px solid var(--black);
  background: #eff7f9;
}
.personal_info h5{
  font-size: 25px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--dark-blue);
  font-family: 'Lora', serif;
  margin-bottom: 10px;
  margin-top: 70px;
  text-align: center; 
}
.personal_info textarea{
  background: #ddedf1;
  border: none;
  outline: none;
  border-radius: 10px;
  padding-left: 20px;
  padding-top: 15px;
}
.personal_info textarea::placeholder{
  color: var(--black);
  padding: 10px 0 0 20px;
  opacity: 1;
}
.personal_info_submit input[type="submit"]{
  background: var(--dark-blue);
  color: #fff;
  text-align: center;
  border: none;
  outline: none;
  height: 55px;
  width: 20%;
  box-shadow: 0 0 10px gray;
  border-radius: 10px;
  margin-top: 35px;
  text-transform: capitalize;
}
.personal_info_submit input[type="submit"]:hover{
  background: var(--sky-blue);
}
.read_policy{
  margin-top: 20px;
}
.read_policy input[type="checkbox"]{
  width: 18px;
  height: 20px;
  margin-right: 15px;
  border-radius: 0;
  border: 1px solid var(--black);
  background: #eff7f9;
}
.read_policy p{
  margin-bottom: 0;
}
.read_policy p a{
  color: var(--sky-blue);
  text-transform: capitalize;
}
.personal_info_disclaimer{
  text-align: center;
  background: #fff;
  margin-bottom: 0;
  padding: 10px 30px;
  margin-top: 50px;
  border-radius: 10px;
}