@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;
}
.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 7px;
  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;
}

.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: -51%;
}
.heading_header h1::after {
  left: 1rem;
  margin-right: -50%;
}
.heading_header img {
  height: 80px;
  width: 181px;
  position: absolute;
  top: 1%;
  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;
  }
}
/******************************************** slider ********************************************/
.slider-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-slider {
  position: relative;
  width: 800px;
  height: 450px;
  margin: 10px;
  background: #1d212b;
  background: rgb(185, 172, 172);
  background: #fff;
  border-radius: 20px;
}

.img-slider .slides {
  z-index: 1;
  position: absolute;
  width: 100%;
  clip-path: circle(0% at 0 50%);
}

.img-slider .slides.active-slide {
  clip-path: circle(150% at 0 50%);
  transition: 2s;
  transition-property: clip-path;
}

.img-slider .slides img {
  z-index: 1;
  width: 500px;
  height: 450px;
  float: right;
}

.img-slider .slides .info {
  position: absolute;
  top: 0;
  padding: 15px 30px;
}

.img-slider .slides .info h1 {
  color: #fff;
  background: #272727;
  margin-top: 40px;
  width: 50%;
  padding: 22px;
  padding-top: 50px;
  height: 250px;
  border-radius: 10px;
  font-family: "Times New Roman", Times, serif;
  font-size: 2.4rem;
}

.img-slider .navigation {
  z-index: 2;
  position: absolute;
  display: flex;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.img-slider .navigation .btn-slider {
  background: rgba(255, 255, 255, 0.5);
  width: 12px;
  height: 12px;
  margin: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.img-slider .navigation .btn-slider.active-slide {
  background: #fa9333;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.box-img {
  width: 150px;
  height: 150px;
  margin: auto;
}

.container_law {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  margin: 70px auto;
  padding: 0 6rem;
  padding: 0;
}

@media screen and (min-width: 1023.999px) {
  .container_law {
    padding: 0 6rem;
  }
}
@media screen and (min-width: 749px) {
  .box-5 h1 {
    padding-top: 30px;
  }
}
.box {
  padding: 50px;
  border: 1px solid black;
  background: #fff;
  display: grid;
  cursor: pointer;
}
.box:hover {
  background: #fa9333;
  cursor: pointer;
  color: white;
}

.box:hover .box-img {
  filter: invert(1);
}
.box h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 27px;
  font-weight: bolder;
  margin-bottom: 40px;
}

.box-5 {
  grid-column: 2/4;
  grid-row: 2;
  background: #272727;
  border: none;
  color: whitesmoke;
  text-align: left;
}
.box-5 h1 {
  font-size: 80px;
  font-family: Georgia, "Times New Roman", Times, serif;
}
.box-5 p {
  margin-bottom: 2.75rem;
}
.box-5:hover {
  background: initial;
  cursor: initial;
}

.planning {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0 7rem;
  margin-bottom: 90px;
}
.planning_info {
  margin: 0 auto;
  padding-top: 30px;
  width: 100%;
  color: #fff;
}
.plan_head {
  font-size: 40px;
  font-size: 60px;
  font-family: "Times New Roman", Times, serif;
  margin-bottom: 20px;
}
.plan_text {
  font-size: 18px;
  line-height: 1.9;
}

.plan_img img {
  height: 400px;
  width: 400px;
  float: right;
  box-shadow: 50px 50px #000;
}

.planning_two {
  padding: 0 4rem;
  margin-bottom: 20px;
}
.planning_info_two {
  margin: 0 auto;
  color: #fff;
}
.plan_head_two {
  font-size: 60px;
  font-weight: 100;
  font-family: "Times New Roman", Times, serif;
}
.name_heading {
  font-size: 48px;
  font-weight: 600;
  font-family: "Times New Roman", Times, serif;
  margin-bottom: 10px;
}
.plan_text_two {
  font-size: 20px;
  font-size: 18px;
  line-height: 2;
}

.plan_img_two img {
  height: 400px;
  width: 400px;
  float: left;
  box-shadow: 40px 40px #000;
  margin-right: 80px;
  margin-bottom: 30px;
}

.books {
  background: url(./images/Mask_Group_3@2x.png) no-repeat center center/cover;
  height: 400px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-box {
  background: white;
  background: linear-gradient(#f0f, #f00, #00f);
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.692),
    rgba(255, 255, 255, 0.425),
    rgba(233, 233, 233, 0.1)
  );
  backdrop-filter: blur(15px);
  box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.2);
  width: 90%;
  height: 80%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-heading {
  color: #fff;
  font-size: 25px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 10px;
  font-weight: bolder;
}

.book-title {
  width: 650px;
  font-size: 50px;
  font-weight: 800;
  font-family: "Times New Roman", Times, serif;
}

/* footer */
.bg-grey {
  color: white;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}

.widget-header-2 h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #eaecee;
  padding-bottom: 10px;
  position: relative;
}
.widget-header-2 h5::after {
  content: "";
  background: white;
  height: 3px;
  width: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.widget_categories ul.font-small li a {
  text-align: left;
  padding: 0;
}

.font-small {
  font-size: 12px;
  padding-left: 0px;
}
.font-small li a {
  color: #687385;
  color: white;
}
.font-small li a:hover {
  color: #313133;
}
.widget_categories ul.font-small li {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
  border-bottom: 1px dotted gray;
  display: table;
  width: 100%;
  padding: 8px 0;
}

.widget_categories ul.font-small li a {
  text-align: left;
  padding: 0;
}
.widget_categories ul.font-small li a {
  text-align: left;
}
.widget_tagcloud .tag-cloud-link {
  -moz-user-select: none;
  text-transform: capitalize;
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  line-height: 0;
  padding: 15px 20px;
  border-radius: 30px;
  margin: 0 5px 10px 0;
  border: 1px solid #ebebeb;
  background: #f2f3f5;
  color: #000;
}
.widget_tagcloud .tag-cloud-link:hover {
  color: #313133;
}
.font-medium {
  font-size: 14px;
}
.input-group:not(.has-validation) > .form-control:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .form-control:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.form-subcriber input.form-control {
  padding: 16px 25px;
  line-height: 24px;
  border-radius: 30px 0 0 30px;
  max-width: 300px;
  font-size: 0.875rem;
}
.input-group > .form-control {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}
.form-control {
  border: 1px solid rgb(225, 225, 225);
  border-radius: 30px;
  height: 48px;
  padding-left: 18px;
  font-size: 14px;
  background: transparent;
  background: #fff;
}
button.bg-black:hover {
  background-color: #ff9d00 !important;
}
.form-subcriber .btn {
  font-size: 14px;
  border-radius: 0 30px 30px 0;
  padding: 0 25px;
  font-weight: bold;
}
.btn {
  font-style: normal;
  font-weight: 500;
  text-transform: none;
  font-family: "Roboto", sans-serif;
}
.header-social-network .list-inline-item:not(:last-child) {
  margin-right: 7px;
}
.header-social-network .list-inline-item a {
  width: 24px;
  display: block;
  height: 24px;
  border-radius: 30px;
  line-height: 24px;
  text-align: center;
  font-size: 11px;
  color: #fff !important;
}

@media screen and (max-width: 1023.9988777px) {
  .plan_head_two {
    font-size: 48px;
  }

  .box-5 h1 {
    padding-top: 30px;
    font-size: 65px;
  }
}

@media screen and (max-width: 770px) {
  .container_law {
    padding: 0 1rem;
  }
  .books {
    width: 100%;
  }
  .box {
    padding: 40px 10px;
  }
  .name_heading {
    font-size: 55px;
  }
  .planning_two {
    display: grid;
    text-align: center;
  }
  .plan_img_two {
    margin: auto;
    padding-bottom: 50px;
  }
  .plan_text_two {
    text-align: justify;
    line-height: 1.5;
    font-style: italic;
  }
  .plan_img_two img {
    height: 300px;
    width: 300px;
    margin-right: 0;
    box-shadow: 25px 25px #000;
  }
  .planning {
    padding: 0 2rem;
  }
  .plan_head {
    font-size: 30px;
  }
  .plan_text {
    font-size: 16px;
    line-height: 1.75;
  }
  .plan_img img {
    height: 300px;
    width: 300px;
    float: right;
    box-shadow: 20px 20px #000;
  }
  .box-5 h1 {
    font-size: 50px;
    font-size: 60px;
  }
  .book-title {
    font-size: 38px;
  }
}

@media screen and (max-width: 600px) {
  .container_law {
    display: initial;
  }
  .box-5 h1 {
    font-size: 50px;
    margin-bottom: 0;
  }
  .book-title {
    font-size: 18px;
  }
  .planning {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
    padding: 0;
  }
  .planning_info {
    padding-top: 30px;
  }
  .plan_head {
    margin-top: 30px;
    font-size: 34px;
  }
  .plan_text {
    font-style: italic;
    font-size: 18px;
  }
  .plan_img img {
    height: 300px;
    width: 350px;
    margin-left: -22px;
  }
  .planning_two {
    padding: 0;
  }
  .name_heading {
    font-size: 45px;
  }

  .planning_info_two {
    margin: 0;
    text-align: center;
  }
  .plan_text_two {
    text-align: center;
  }
  .plan_img_two img {
    height: 300px;
    width: 350px;
    margin-right: 0;
    box-shadow: 25px 25px #000;
  }
  .book-box {
    height: 50%;
  }
  .books {
    overflow-x: hidden;
  }
  .book-heading {
    font-size: 16px;
  }
  .book-title {
    font-size: 18px;
    font-weight: bolder;
    width: fit-content;
  }
}

@media screen and (max-width: 992px) {
  label {
    display: block;
    cursor: pointer;
  }
  label:hover {
    color: #fa9333;
  }
}

@media (max-width: 820px) {
  .img-slider {
    width: 600px;
    width: 700px;
    height: 375px;
  }
  .img-slider .slides img {
    z-index: 1;
    width: 420px;
    height: 375px;
    float: right;
  }
  .img-slider .slides .info {
    padding: 10px 30px;
  }

  .img-slider .slides .info h1 {
    margin-top: 50px;
    width: 55%;
    height: 230px;
    font-size: 36px;
  }
  .img-slider .navigation {
    bottom: 25px;
  }

  .img-slider .navigation .btn {
    width: 10px;
    height: 10px;
    margin: 8px;
  }
}

@media (max-width: 620px) {
  .img-slider {
    width: 400px;
    height: 173px;
  }
  .img-slider .slides img {
    z-index: 1;
    width: 250px;
    height: 173px;
    float: right;
  }
  .img-slider .slides .info {
    padding: 10px 20px;
  }

  .img-slider .slides .info h1 {
    margin-top: 10px;
    width: 50%;
    height: 130px;
    font-size: 16px;
    padding-top: 30px;
  }

  .img-slider .navigation {
    bottom: 15px;
  }

  .img-slider .navigation .btn {
    width: 8px;
    height: 8px;
    margin: 6px;
  }
}

@media (max-width: 420px) {
  .box-5 h1 {
    margin-bottom: 0px;
    padding-top: 30px;
    font-size: 42px;
  }
  .img-slider {
    width: 320px;
    height: 200px;
  }
  .img-slider .slides img {
    z-index: 1;
    width: 200px;
    height: 200px;
    border-radius: 0 20px 20px 0;
    float: right;
  }
  .img-slider .slides .info {
    padding: 5px 10px;
  }

  .img-slider .slides .info h1 {
    width: 52%;
    font-size: 14px;
  }

  .img-slider .navigation {
    bottom: 10px;
  }
  .img-slider .slides .info h1 {
    margin-top: 30px;
    width: 50%;
    height: 115px;
    font-size: 13px;
    padding-top: 30px;
  }
}

@media screen and (min-width: 999.999px) {
  .img-slider {
    width: 900px;
    height: 375px;
  }
  .img-slider .slides img {
    z-index: 1;
    width: 550px;
    height: 375px;
    float: right;
  }
  .img-slider .slides .info {
    padding: 10px 40px;
  }

  .img-slider .slides .info h1 {
    margin-top: 50px;
    width: 50%;
    height: 250px;
    font-size: 42px;
  }
  .img-slider .navigation {
    bottom: 25px;
  }
}
@media screen and (min-width: 1270px) {
  .img-slider {
    width: 1200px;
    height: 450px;
  }
  .img-slider .slides img {
    z-index: 1;
    width: 700px;
    height: 450px;
    float: right;
  }
  .img-slider .slides .info {
    padding: 10px 40px 10px 80px;
  }

  .img-slider .slides .info h1 {
    margin-top: 50px;
    width: 50%;
    height: 300px;
    font-size: 50px;
    padding-left: 50px;
  }
  .img-slider .navigation {
    bottom: 25px;
  }
}

@media screen and (max-width: 351px) {
  .plan_img_two img {
    height: 250px;
    width: 250px;
    float: left;

    box-shadow: 25px 25px #000;
  }
  .plan_img img {
    height: 250px;
    width: 250px;
  }
  .img-slider .slides .info h1 {
    width: 50%;
    font-size: 12px;
    padding-top: 35px;
    margin-top: 30px;
    height: 110px;
  }
}

.row.no-gutters {
  margin: -3px !important;
}

.row.no-gutters > * {
  padding: 3px !important;
}

.flipper {
  height: 350px;
  position: relative;
  -webkit-perspective: 1000px;
  -ms-perspective: 1000px;
  perspective: 1000px;
}

@media (min-width: 576px) {
  .ratio-not-1-1 {
    padding-bottom: calc(50% - 5px);
  }
}

.flipper-card {
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transform-style: preserve-3d;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.flipper-card-5 {
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transform-style: preserve-3d;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flipper-front,
.flipper-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #fff;
}
.flipper-front h3,
.flipper-back h3 {
  font-family: "Montserrat", sans-serif;
}

.flipper-back {
  /* background: #fa9333;
  color: white; */
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.flipper-back:hover{
  cursor: pointer;
}

.flipper-card:hover .flipper-front img{
  filter: invert(1);
}
.flipper-card:hover .flipper-front {
  background: #fa9333;
  color: #fff;  
  cursor: pointer;
}
.flipper-is-flipped{
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.carousel-inner {
  background: white;
  background: linear-gradient(#f0f, #f00, #00f);
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.692),
    rgba(255, 255, 255, 0.425),
    rgba(233, 233, 233, 0.1)
  );
  backdrop-filter: blur(15px);
  box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.2);
  width: 90%;
  height: 80%;
  border-radius: 10px;
}
@media (min-width: 576px) {
  .carousel-item {
    width: 600px;
  }
}
@media (max-width: 600px) {
  .carousel-inner h3 {
    font-size: 18px;
  }
}

.px-5.py-3.bg-white.text-center.ntw-img {
  border-radius: 30px;
}

.img-ntw {
  height: 200px;
}

/************************************* form *************************************/
.contact-title span {
  font-size: 18px;
  color: white;
  margin-bottom: 10px;
  display: block;
  font-weight: 700;
}

.contact-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: white;
}
.contact-form input {
  width: 100%;
  padding: 5px 5px 5px 10px;
  margin-bottom: 25px;
  border: 0;
  outline: none;
  border-radius: 5px;
  background: #f6f7f9;
}
.contact-form textarea {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  padding: 5px 5px 5px 10px;
  border-radius: 5px;
  background: #f6f7f9;
  outline: none;
}
.contact-btn button {
  border: 0;
  padding: 5px 35px;
  font-size: 22px;
  border-radius: 5px;
  color: black;
  background: white;
}

/************************************* form css end *************************************/

/********************************* hero css *********************************/
.hero {
  display: flex;
}
.vertical {
  border-left: 2px solid rgb(153, 153, 155);
  /* height: 265px; */
  height: 17rem;
  margin: 0 1rem;
}

.table-info {
  border-top: 4px solid #fd7e14;
  padding-right: 3rem;
}
#public {
  color: rgba(204, 204, 204, 1);
  color: rgba(204, 204, 204, 0.459);
  position: relative;
  top: 9%;
}
#private {
  /* color: rgba(204, 204, 204, 1); */
  color: rgba(204, 204, 204, 0.459);
  position: relative;
  top: 32%;
}
.vertical-2 {
  border-left: 2px solid rgb(153, 153, 155);
  height: 20rem;
  margin: 0 1rem;
}

#img-book {
  margin-top: -30%;
  margin-left: 20%;
}
#right {
  margin-left: 40%;
  margin-top: -15%;
}
.img-class {
  height: 100px;
  width: 100px;
}
.service-items {
  margin-top: 19rem;
}

.row-padding {
  --bs-gutter-x: 0.5rem;
}
#second-col {
  margin-top: -11rem;
}
#third-col {
  margin-top: -25rem;
}
#fourth-col {
  margin-top: -20rem;
}
.service-items .container .row .column div {
  cursor: pointer;
}
.service-items .container .row .column div:hover {
  background-color: rgba(235, 150, 1, 1) !important;
}

.service-items .container .row .column div:hover img {
  filter: invert(1);
}
.service-items .container .row .column div:hover h4 {
  color: white;
}
.p_f-size{
  font-size: 1.15em;
}
/********************************* hero css end *********************************/

/********************************* faq *********************************/
.accordion-collapse {
  border: 0;
}
.accordion-button:focus {
  box-shadow: none;
  border: none;
}
.accordion-button:not(.collapsed) {
  background: none;
  color: #ff9800 !important;
  box-shadow: none;
  border-bottom: none;
}
.accordion-button::after {
  width: auto;
  height: auto;
  content: "+";
  font-size: 40px;
  background-image: none;
  font-weight: 100;
  color: #ff9800;
  transform: translateY(-4px);
}
.accordion-button:not(.collapsed)::after {
  width: auto;
  height: auto;
  background-image: none;
  content: "-";
  font-size: 48px;
  transform: translate(-5px, -4px);
  transform: rotate(0deg);
}

.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
  background-color: #272727;
  color: white;
}
.accordion-body {
  padding: 1rem 4rem 1rem 1.25rem;
  line-height: 2;
  background-color: #272727;
  color: white;
  border-top: 1px solid white;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 1px solid white;
}

.mask {
  height: 550px;
  width: 500px;
  margin-left: -9rem;
}
@media (min-width: 1400px) {
  .mask {
    height: 550px;
    width: 500px;
    margin-left: -5.25em;
  }
 .vertical{
   height: 15rem;
 }
}
/********************************* faq-end *********************************/
p{
  text-align: justify !important;
}