@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans&family=Roboto:wght@100&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100&family=Open+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100&family=Open+Sans&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #272727;
  font-family: "Open Sans", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Georgia, "Times New Roman", Times, serif;
}
#check_box {
  display: none;
}
#main_menu label {
  color: #fff;
  font-size: 2.5rem;
  padding: 25px 0 30px 10px;
  display: none;
  padding-left: 87%;
}

.inner_main_menu {
  margin: 0 auto;
  padding: 40px 40px 50px 40px;
  padding: 40px 40px 50px 80px;
}
.inner_main_menu > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.left_list {
  float: left;
}
.right_list {
  float: right;
}
.inner_main_menu > ul {
  display: inline;
}
.inner_main_menu > ul > li {
  display: inline-block;
  /* display: block; */
}
.inner_main_menu > ul > li:nth-child(even) {
  color: #fa9333;
  font-size: 4px;
}
.inner_main_menu > ul > li > a {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  padding: 10px 30px;
}
.inner_main_menu > ul > li > a:hover {
  color: #fc983a;
}

/* new dropdown  */
.pa-ul {
  float: right;
  color: white;
  list-style: none;
  display: none;
  position: absolute;
  z-index: 3;
  background: #272727;
  border: 1px solid white;
  padding-left: 0;
}
.practice-area:hover .pa-ul {
  display: block;
}

.pa-ul-li {
  display: block;
  padding: 5px 0px;
  margin: 7px 10px;
  border: 1px solid #000;
  border-radius: 5px;
  text-align: center;
}

.practice-area:hover .pa-ul-li:hover {
  border: 1px solid white;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
.pa-ul-li > a {
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 15px;
}
.pa-ul-li > a:hover {
  font-weight: bolder;
  color: orange;
}
/* dropdown end */
.heading_header {
  text-align: center;
  overflow: hidden;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  /* margin-bottom: 3rem; */
}

.heading_header h1::before,
.heading_header h1::after {
  content: "";
  background-color: #fff;
  display: inline-block;
  height: 1px;
  width: 33%;
  width: 40%;
  position: relative;
  vertical-align: middle;
}
.heading_header h1::before {
  right: 1rem;
  margin-left: -50%;
}
.heading_header h1::after {
  left: 1rem;
  margin-right: -50%;
}
.heading_header img {
  height: 80px;
  width: 170px;
  position: absolute;
  top: 2%;
  left: 44%;
}

@media (max-width: 1023.9988777px) {
  .inner_main_menu {
    margin: 0 auto;
    padding: 40px 0px 50px 0px;
  }
  .heading_header img {
    height: 80px;
    width: 170px;
    position: absolute;
    top: 2%;
    left: 41.5%;
  }
}
@media screen and (max-width: 1180px) {
  .inner_main_menu {
    margin: 0 auto;
    padding: 40px 0px 50px 0px;
  }
}

@media screen and (max-width: 600px) {
  .heading_header img {
    height: 80px;
    width: 170px;
    position: absolute;
    top: 5%;
    left: 30%;
  }
}

@media screen and (max-width: 992px) {
  #main_menu label {
    display: block;
    cursor: pointer;
  }
  #main_menu label:hover {
    color: #fa9333;
  }
  .inner_main_menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80vw;
    background: #070707e7;
    border: 10px solid rgb(231, 116, 9);
    position: absolute;
    left: -100%;
    top: 0;
    z-index: 111;
  }
  .inner_main_menu > ul > li:nth-child(even) {
    display: none;
  }
  .inner_main_menu > ul {
    display: contents;
  }
  .inner_main_menu > ul > li > a {
    font-size: 25px;
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
  }
  .inner_main_menu > ul > li > a:hover {
    font-size: 30px;
    transition: all 0.3s ease-in;
    border-bottom: 2px solid orange;
  }
  #check_box:checked ~ .inner_main_menu {
    left: 0;
    transition: 0.5s ease-in-out;
  }
  .pa-ul {
    position: unset;
  }
}

@media (max-width: 420px) {
  .heading_header img {
    height: 80px;
    width: 170px;
    position: absolute;
    top: 5%;
    left: 25%;
  }
}

@media screen and (max-width: 1023px) {
  .inner_main_menu {
    margin: 0 auto;
    padding: 40px 0px 50px 20px;
  }
}
@media screen and (max-width: 351px) {
  .inner_main_menu {
    padding: 120px 0px 90px 20px;
  }
}
@media screen and (min-width: 1300px) {
  .inner_main_menu > ul {
    padding-right: 70px;
  }
  .heading_header h1{
    margin-top: 7px;
  }
}
@media (max-width: 767.988px) {
  .inner_main_menu {
    padding: 120px 0px 101px 20px;
  }
}

/************** team-heading **************/
#team-heading h1 {
  font-size: 12rem;
  font-size: 11.5rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: rgba(10, 10, 10, 1);
  opacity: 0.2;
  font-weight: bold;
}
#team-heading-2 h2 {
  font-size: 3.5rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  margin-top: -7rem;
}


@media (max-width: 600px) {
  #team-heading h1 {
    font-size: 6rem;
  }
  #team-heading-2 h2 {
    font-size: 2.5rem;
    font-family: Georgia, "Times New Roman", Times, serif;
    margin-top: -4.7rem;
  }
}

/************************ main section image ************************/
.img-main-section {
  /* height: 500px; */
  /* width: auto; */
}
@media (max-width: 991.98px) {
  .img-main-section {
    height: 400px;
    width: 280px;
  }
  .details {
    /* padding-left: 5rem; */
    margin-top: 1.75rem !important;
  }
  .details h1 {
    font-size: 1.5rem;
  }
  .details p {
    font-size: 0.88rem;
  }
  /* .info-detail {
    padding-right: 7rem;
  } */
  .detail {
    padding-top: 0 !important;
  }
  .detail h1 {
    font-size: 1.5rem;
  }
  .detail p {
    font-size: 0.88rem;
  }
}
@media (max-width: 575.98px) {
  .info {
    display: unset;
    text-align: center;
  }
  .img-main-section {
    height: 250px;
    width: 300px;
  }
  .details {
    margin-top: 3rem !important;
    padding-top: 0;
    width: 100%;
    padding-left: 0;
    text-align: left;
  }
  .info-detail {
    display: grid;
  }
  .detail {
    width: 100%;
    text-align: left !important;
  }
  .info-detail .detail:nth-of-type(1) {
    order: 2;
  }
}
/* @media (min-width: 1400px) {
  .details {
    margin-left: -6rem;
  }
} */

#choose{
  padding-left: 0;
}
.heading-color{
  font-family: serif;
  color: #fc983a;
}


