@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Regular.woff2") format("woff2"),
    url("../fonts/OpenSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans semi";
  src: url("../fonts/OpenSans-SemiBold.woff2") format("woff2"),
    url("../fonts/OpenSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "OpenSans bold";
  src: url("../fonts/OpenSans-Bold.woff2") format("woff2"),
    url("../fonts/OpenSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"),
    url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat-Bold";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"),
    url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "karlaregular";
  src: url("../fonts/karla-regular-webfont.woff2") format("woff2"),
    url("../fonts/karla-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "karlabold";
  src: url("../fonts/karla-bold-webfont.woff2") format("woff2"),
    url("../fonts/karla-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "assistantregular";
  src: url("../fonts/assistant-regular-webfont.woff2") format("woff2"),
    url("../fonts/assistant-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "assistantbold";
  src: url("../fonts/assistant-bold-webfont.woff2") format("woff2"),
    url("../fonts/assistant-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Open Sans", sans-serif;
  color: #555555;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #852e14;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.register_avtar{
  vertical-align: bottom;
  fill: #F75135;
}
.back-to-top:hover {
  background: #97d193;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
a:hover{
  text-decoration: none!important;
}
/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 3px 15px rgb(147 145 145 / 38%);
  padding: 10px;
}

header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    height: 70px;
  }
}

.scrolled-offset {
  margin-top: 90px;
}

@media (max-width: 992px) {
  .scrolled-offset {
    margin-top: 90px;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../images/hero-bg.png");
  position: relative;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#hero .hero-logo {
  margin-bottom: 30px;
}

#hero h1 {
  margin: 0 0 30px 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: #aeaeae;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 3px;
  margin: 10px;
  color: #fff;
  background: #852e14;
}

#hero .btn-get-started:hover {
  transition: 0.5s;
  background: #fff;
  color: #852e14;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    line-height: 22px;
  }
}

/*--------------------------------------------------------------
# Hero Section close
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: whitesmoke;
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 0;
  color: #151515;
}

.section-title p {
  margin-bottom: 0;
  color: #aeaeae;
}

/*--------------------------------------------------------------
# About Section close
--------------------------------------------------------------*/
.about .image {
  padding: 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.about .content ul i {
  font-size: 24px;
  padding: 2px 6px 0 0;
  color: #852e14;
}

.about .content p:last-child {
  margin-bottom: 0;
}
.registrbtn {
  background: #852e14;
  color: #fff;
  display: inline-block;
  padding: 5px 15px;
  margin-top: 12px;
  font-size: 14px;
  border-radius: 5px;
  position: relative;
  left: -35px;
}
.registrbtn:hover {
  color: #ffffff;
  text-decoration: none;
  background: #61b959;
}
.userinfoAtt {
  width: 25%;
  float: left;
  text-align: center;
  border-right: 1px solid #ccc;
  margin-bottom: 20px;
}
.userlocation {
  width: 65%;
  float: left;
  margin-left: 16px;
  height: 180px;
}
.userlocation p {
  margin-bottom: 8px;
  font-size: 13px;
}
.userlocation h2 {
  font-size: 12px;
  margin-bottom: 5px;
}
.userinfoAtt p {
  margin-bottom: 8px;
}
.attornyname {
  font-size: 14px;
  margin-top: 3px;
}
.timeup {
  font-size: 12px;
}
.userinfoAtt img {
  width: 43px;
  height: 43px;
  border-radius: 100%;
}
.user_desc {
  float: left;
}
.attorneycls {
  font-family: "Montserrat-Bold";
  font-size: 19px;
  color: #000000;
}
.benifit-list{
  font-size: 16px;
    list-style: disc;
}
.benifit-list li{
  margin-bottom: 10px;
}
.vlabox {
  position: relative;
}
.timeup.badge {
  background: #e86a42;
  color: #fff;
  font-weight: 400;
  margin-bottom: 5px;
}
/*.vlabox img{margin-right: 26px;}*/
.vlabox::after {
  content: "";
  background: #852e14;
  position: absolute;
  width: 2px;
  height: 215px;
  top: 53px;
  right: 0;
  left: 0;
  text-align: center;
  margin: 0 auto;
}
.vlabox img {
  width: 50px;
  position: relative;
  left: -15px;
}
.viewallattrney {
  color: #e86a42;
  margin-top: 15px;
  display: inline-block;
}
.practce_area {
  background: #f5c3b3;
  border-radius: 19px;
  font-size: 12px;
  padding: 0px 9px;
  margin-right: 5px;
}
.dateonPost {
  background: #f5c3b3;
  border-radius: 19px;
  font-size: 12px;
  padding: 0px 9px;
}
.loginbtnatt {
  background: #852e14;
  color: #fff;
  max-width: 181px;
  display: block;
  margin: 7px auto;
  border-radius: 5px;
}
.loginbtnatt:hover {
  background: #ab3a17;
  color: #ffffff;
  text-decoration: none;
}
.marqueeElement,
.marqueeElement2 {
  position: absolute;
  width: 100%;
  top: 10px;
}
#mholder,
#mholder2 {
  height: 180px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
/*--------------------------------------------------------------
# About Section close
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  background: whitesmoke;
  padding: 0;
}

.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #959595;
}

.why-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li + li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #852e14;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: #852e14;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#852e14 50%, rgba(124, 197, 118, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(124, 197, 118, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #852e14;
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {
  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
.home-contact-form button[type="submit"] {
  background: #852e14;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.home-contact-form button[type="submit"]:hover {
  background: #61b959;
}
.home-contact-form button[type="button"] {
  background: #852e14;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.home-contact-form button[type="button"]:hover {
  background: #61b959;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.services .icon-box i {
  font-size: 48px;
  float: left;
  color: #852e14;
}

.services .icon-box p {
  font-size: 15px;
  color: #959595;
  margin-left: 60px;
}

.services .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

.service_sub_title{
  font-size: 26px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 40px;
}
.services .service_box_wrap .services_main_box{
    background: #ffffff;
    color: #852e14;
    padding: 14px 7px;
    border-radius: 15px;
    margin: 6px;
    font-size: 13px;
    display: block;
    text-align: center;
    height: 90x;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.services .service_box_wrap .services_main_box:hover{
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}
/*--------------------------------------------------------------
# Featured
--------------------------------------------------------------*/
.featured {
  padding: 40px 0 0 0;
  background: white;
}

.featured .nav-tabs {
  border: 0;
}

.featured .nav-link {
  border: 0;
  padding: 20px;
  color: #151515;
  transition: 0.3s;
}

.featured .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.featured .nav-link:hover h4 {
  color: #852e14;
}

.featured .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.featured .nav-link.active {
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.08);
}

.featured .nav-link.active h4 {
  color: #852e14;
}

.featured .tab-pane.active {
  -webkit-animation: slide-down 0.5s ease-out;
  animation: slide-down 0.5s ease-out;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
/*--------------------------------------------------------------
# Featured close
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 18px 12px 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #555555;
  transition: all 0.3s ease-in-out;
  margin: 0 4px 10px 4px;
  background: whitesmoke;
  border-radius: 4px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #852e14;
  color: #fff;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #852e14;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #852e14;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #852e14;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 60px 0;
  background: url("../images/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}

.testimonials .quote-icon {
  text-align: center;
  margin-bottom: 30px;
}

.testimonials .quote-icon i {
  color: #852e14;
  font-size: 24px;
  padding: 18px;
  border-radius: 50px;
  border: 2px solid #852e14;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 30px auto;
  font-size: 20px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #852e14;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: whitesmoke;
  padding: 15px 0;
  text-align: center;
}

.clients img {
  width: 50%;
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  filter: none;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .clients img {
    width: 40%;
  }
}

@media (max-width: 575px) {
  .clients img {
    width: 50%;
  }
}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: -40px;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: bottom ease-in-out 0.4s;
  background: rgba(193, 30, 22, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a i {
  line-height: 0;
}

.team .member .social a:hover {
  color: #fff;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin: 15px 0 5px 0;
  font-size: 18px;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
  color: #852e14;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #888888;
}

.team .member:hover .social {
  bottom: 0;
  opacity: 1;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: #852e14;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-right: 25px;
  cursor: pointer;
}

.faq .faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #852e14;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
}

.contact .info i {
  font-size: 20px;
  color: #852e14;
  float: left;
  width: 44px;
  height: 44px;
  background: #eaf6e9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #852e14;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #852e14;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #61b959;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  /* background: url("../images/footer-bg.jpg") center center no-repeat; */
  color: #fff;
  font-size: 14px;
  position: relative;
}

#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

#footer .footer-top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 55px 0;
}

#footer .footer-top .footer-logo img {
  height: 80px;
}

#footer .footer-top h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 30px 0 0 0;
  margin-bottom: 0;
}

#footer .footer-top p {
  font-size: 15;
  font-style: italic;
  margin: 30px 0 0 0;
  padding: 0;
}

#footer .footer-top .footer-newsletter {
  text-align: center;
  font-size: 15px;
  margin-top: 30px;
}

#footer .footer-top .footer-newsletter form {
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #852e14;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #5ab652;
}

#footer .footer-top .social-links {
  margin-top: 30px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #852e14;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #5ab652;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  border-top: 1px solid #222222;
  z-index: 2;
  position: relative;
  padding-top: 30px;
  padding-bottom: 0px;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  padding-top: 5px;
}
/* nav bar section */
/* slider section */
/******home slider**********/
.slide1 {
  background: url(../images/vlaa.jpg) no-repeat center;
  -ms-background-size: cover;
  background-size: cover;
  color: #ffffff;
}

/*.slide1{background: url(../images/the-legal-gba91f6d9a_1920.jpg) no-repeat center;-ms-background-size: cover;background-size: cover;color: #ffffff;}
*/
.slide2 {
  background: url("../images/laew.jpg");
  background-position: center;
  background-size: cover;
  color: #ffffff;
}
.slide3 {
  background: url("../images/businessman-examining-papers-table.jpg");
  background-position: center;
  background-size: cover;
  color: #ffffff;
}
.bannertext h3 {
  font-size: 50px;
  color: #ffffff;
  text-decoration: none;
  font-family: "Montserrat-Bold";
  text-shadow: 2px 2px 7px #262525;
}
.dropdown-menu {
  top: 86%;
}
.slide4 {
  background: url("../images/businesssupport.jpg");
  background-position: center;
  background-size: cover;
  color: #ffffff;
}
.bannertext {
  padding: 50px 0;
}
#home {
  position: relative;
}
#home video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
#home .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}
/* #home .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100vh;
} */

/* slider section close*/


/* old website style */

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSans-Regular.woff2') format('woff2'),
      url('../fonts/OpenSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'OpenSans semi';
  src: url('../fonts/OpenSans-SemiBold.woff2') format('woff2'),
      url('../fonts/OpenSans-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'OpenSans bold';
  src: url('../fonts/OpenSans-Bold.woff2') format('woff2'),
      url('../fonts/OpenSans-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
      url('../fonts/Montserrat-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat-Bold';
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
      url('../fonts/Montserrat-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'karlaregular';
  src: url('../fonts/karla-regular-webfont.woff2') format('woff2'),
       url('../fonts/karla-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'karlabold';
  src: url('../fonts/karla-bold-webfont.woff2') format('woff2'),
       url('../fonts/karla-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'assistantregular';
  src: url('../fonts/assistant-regular-webfont.woff2') format('woff2'),
       url('../fonts/assistant-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'assistantbold';
  src: url('../fonts/assistant-bold-webfont.woff2') format('woff2'),
       url('../fonts/assistant-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}


/*************header*****/

.topbar{/*background: rgb(133 46 19 / 37%);
*/    
  color: #F75135;
  padding: 7px;
  z-index: 1;
  background: #373737;
}
.topbar a{color: #F75135; font-family: 'Open Sans';font-size: 14px;margin-right: 10px;margin-left: 10px;}
.topbar a span{color: #fff;}
.topbar a svg{margin-right: 5px;}
.navbar .navbar-brand img{width: 150px;}
.navbar .navbar-brand {padding: 0;}
.navbar-light .navbar-nav .nav-link{font-family: 'Montserrat';text-transform: uppercase;font-size: 14px;margin: 0px 10px;font-weight: 500;}

.carousel-captionhead{position: absolute;top: 45%;right: 0; left: 0;text-align: center;margin:0 auto;}
.carousel-inner{position: relative;}
.carousel-captionhead h2{color: #ffffff;font-size: 45px;}

.w3l-banner {background: url(../images/banner-img3.jpg) no-repeat center;-ms-background-size: cover;background-size: cover;z-index: 0;position: relative;min-height: 95vh;background-attachment: fixed;background-position: center;}
.title a{font-size: 50px;color: #ffffff;text-decoration: none; font-family: 'Montserrat-Bold';   text-shadow: 2px 2px 7px #262525;}
.bannertext p{font-size: 18px;}
.morebtn{background: #d64b24;font-size: 19px;color: #fff;}
.morebtn:hover{background:#f06953;font-size: 19px;color: #ffffff;border:1px solid #f06953;}
.fillbtn{background: transparent;font-size: 21px;color: #ffffff;border:1px solid #ffffff;}
.fillbtn:hover{background: #fff;font-size: 21px;color: #852e14;}
.morebtn-icon{color: #fff; fill:#fff;vertical-align: inherit;}
/*header{padding: 14px 0;}*/
/*********** section 2******************/
.section2{padding: 80px 0;}
.shadowimg{padding: 20px;box-shadow: 2px 2px 10px #e2e2e2;}
.rightcon h3{font-family: 'Montserrat-Bold';color: #318abf;}
.pl40{padding-left: 40px;}
.rightcon ul{padding-left: 0;}
.rightcon ul li{list-style: none;font-size: 21px;color: #666;line-height: 47px;}
.creedbtn{background: linear-gradient(45deg, #06c8fe, #07a2be);color: #ffffff;border: 0;padding: 7px 28px;border-radius: 46px;font-family: 'Montserrat-Bold';font-size: 21px;}
.rightcon ul li svg{margin-right: 10px;color: #318abf;}
.section3{background: url(../images/hp-map-bg-2.jpg);background-size: cover;background-position: center;background-attachment: fixed;background-repeat: no-repeat;padding: 80px 0;}
.section3 h2{font-family: 'Montserrat-Bold';color: #318abf;margin-bottom: 20px;}

/***********features section ***************/
.headerimgsewho{background: url('../images/aboutus.jpg');background-position: center; background-size: cover; margin-top: -126px;}
.headerimgsewho .textonheader{padding: 18% 0 10% 0;}
.leftcont h2{ font-family: 'Montserrat', sans-serif;font-weight: 600;font-size: 36px;}
.leftcont p{font-family: 'Open Sans', sans-serif;color: #1d1c1c;line-height: 32px;margin-top: 17px;}
.features{background:#fffaf8;padding: 80px 0;}
.features .smallbox{background: #fff;}
.shipperabout img{width: 100px;height: 100px;}
.shippermodes{padding: 80px 0;}
.shippermodes h2{font-family: 'Montserrat', sans-serif;font-weight: 600;font-size: 36px;}
.shipperabout p{    padding: 22px 22px 0 22px;}
.shipperabout .joinbtn{width: 90%;}
/*.col.smallbox:hover {
  filter: opacity(0.8);
}*/
.imgtopwrap {box-shadow: 2px 2px 10px #ccc1c1;padding: 17px;border-radius: 100%;width: 99px;margin: 0 auto; border: 6px solid #ffffff;}
.smallbox {box-shadow: 0 0 36.8px 9.2px rgb(16 37 65 / 10%);padding: 21px;border-radius: 5px;}
/*.flip-box {
perspective: 1000px;
}

.flip-box-inner {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.8s;
transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
transform: rotateY(180deg);
}

.flip-box-front, .flip-box-back {
position: absolute;
width: 100%;
top: 0;
border-radius: 10px;
height: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}

.flip-box-front {
background-color: #ffffff;
color: black;
text-align: left;
    padding: 20px 0;
}*/
.servicebox .flip-box-back h3{color: #ffffff;}

/*.flip-box-back {
background-color: #852e14;
color: white;
transform: rotateY(180deg);
text-align: left;
 padding: 20px 0;
}*/

.smallbox:hover {
  background: var(--primary-dark);
  transition: .3s;
  box-shadow: 0 25px 98px 0 rgb(0 0 0 / 10%);
  transform: translateY(-0.25rem);
  box-shadow: rgb(46 41 51 / 8%) 0px 2px 4px, rgb(71 63 79 / 16%) 0px 5px 10px;
  transition: .3s ease;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  -ms-transition: .3s ease;
  -o-transition: .3s ease;
      background: #852e14;
  color: #ffffff;
}
.smallbox:hover .imgtopwrap{background: #ffffff;box-shadow: none;    border: 6px solid #dba227;}
/*********services*********/
.services{padding: 50px 0;}
.servicebox img{padding: 8px; width: 100px;}
.servicebox h3{font-family: 'OpenSans semi';color: #852e14;font-size: 23px;padding: 14px 0 0 0;}
.subheading{font-family: 'Open Sans';font-size: 16px;margin: 0 auto;}
.mainheading{font-family: 'Montserrat-Bold';font-size: 41px;margin-bottom: 18px;}
.readmorefull{background: #852e14;display: inline-block;border-radius: 5px; color: #ffffff;padding: 9px 18px;z-index: 9; font-family: 'Montserrat';text-align: center;}
.readmorefull:hover{  background: #c55230;color: #ffffff;text-decoration: none;}
.headingsection{padding-bottom: 50px;}
.servicebox{border-radius: 10px;padding: 20px 28px 40px 20px;background-color: #ffffff}
.servicebox{box-shadow: 2px 2px 10px #e2e2e2;}
.services{background: #dddddd4a;}

.mb30{margin-bottom: 30px;}
.frecont p{    line-height: 28px;}
.lawsection{background: url(../images/imgbg.jpg) no-repeat center;background-size: cover;-webkit-background-size: cover;}
.hny-title{font-family: 'Montserrat-Bold';font-size: 38px;}
.smalltxt{color: #ffffff;font-family: 'Open Sans';font-size: 20px;}
.separatorhny {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  border-bottom: 4px solid #fff;
  margin: 6px 0 24px 0;
  width: 63px;
}
.separatorhnu {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  border-bottom: 4px solid #852e14;
  margin: 6px 0 24px 0;
  width: 63px;
}
.reademorewhite{background: #ffffff;color: #852e14;font-family: 'Montserrat';border:0;}
.contactbtn{background: #d56543; border: 0;font-family: 'Montserrat';}
.choosebtn{margin-top: 40px;padding: 13px 33px;}

.timer {font-size: 3.5em;font-weight: 600;color: #000000;}
p.count-text {text-transform: capitalize;color: #000000;font-family: 'Open Sans';}
.counter > span {
  font-size: 41px;
  color: #fff;
  background: #852E13;
  padding: 7px 15px;
  width: 80px;
  height: 80px;
  display: inline-flex;
  border-radius: 50%;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.countsec{background: #ffffff;}
.counter{text-align: center;}

/***************contactus page*******************/
.headerimgsecontact{background: url('../images/contctimg.jpg');background-position: center; background-size: cover; color: #ffffff;}
.headerimgsecontact .textonheader{padding: 18% 0 10% 0;text-align: center;}
.contactdetails{padding: 80px 0;}
.contactdetails ul{padding-left: 0;}
.contactheading{text-align: center;}
.contactsubhead{text-align: center;}
.contactdetails ul li{list-style: none;font-family: 'Open Sans', sans-serif;line-height: 40px;}
.submitform{cursor: pointer; background: #852e14;color: #ffffff!important;padding: 13px 0;display: block;text-align: center;font-family: 'Montserrat', sans-serif;font-weight: 700;}
.contact-box {padding: 50px;box-shadow: 2px 2px 10px #e2e2e2;}
.contactdetails ul li strong{margin-left: 5px;}
.pr-50{padding-right: 50px;}
.submitform:hover{background: #c76a4f; color: #ffffff;text-decoration: none;}
.smallbox p{font-size: 15px;}
.bannertext h1{font-size: 50px;}

/*********about us**********/
.abouthome{background: url('../images/aboutus.jpg');background-position: center; background-size: cover; color: #ffffff;}
.shadpwimg{border: 16px solid #ffffff;box-shadow: 2px 2px 10px #e2e2e2;}
p{font-family: 'Open Sans', sans-serif;}
.content-1-right p{line-height: 28px;}
.forsecimg{padding-bottom: 80px;}
.abouthome2{background: url('../images/about.jpg');background-position: center; background-size: cover; color: #ffffff;}

/***********legal Services**************/
.legalservice{background: url('../images/legalserv.png');background-position: center; background-size: cover; color: #ffffff;}
.managesec{padding: 80px 0;    background: #ca651e;}
.managesec h2{color: #ffffff;}
.managesec p{color: #ffffff;}
.legalcont p{line-height: 28px;}
.shadimg{box-shadow: 2px 2px 30px #c7c0c0;}
.contrcatsec{padding: 80px 0;   }
.smallimgwrap{background: #ffffff;box-shadow: 0 0 36.8px 9.2px rgb(16 37 65 / 10%);border-radius: 5px;text-align: center;padding: 20px 10px 28px 15px;}
.listtype{padding-left: 0;}
.listtype li{position: relative;padding-left: 26px;list-style: none;margin-bottom: 13px;}
.contrcatsec p{margin-bottom: 30px;margin-top: 20px;}
.listtype li::before{content: '';background: url(../images/dott.png);position: absolute;left: 0;width: 15px;height: 15px;background-size: cover;line-height: 15px;top: 6px;}
.legalbillsection{background: #f8f8f8;padding: 80px 0;}
h1, h2, h3{font-family: 'Montserrat-Bold';}
.shadoimgwrap{background: #fff;text-align: center;padding: 24px;border-radius: 10px;box-shadow: 2px 2px 10px #d0c0c0;}
.lagalpaddingcon{padding-left: 66px;}
.legalsec6{padding: 80px 0;}

/**************business Support System****************/
.businessserv{background: url('../images/businesssupport.jpg');background-position: center; background-size: cover; color: #ffffff;}
.smaalbox2 img{background:#fff;padding: 16px 50px; border-radius: 10px;}
.servbox2{box-shadow: 2px 2px 10px #e2e2e2;}
.pt70{padding-top: 70px;}
/*********section5****************/
.bheading{color: #852e14;margin-bottom: 42px;font-size: 38px;font-family: 'Montserrat-Bold';}
.smallheadingb{color: #000000;font-family: 'Open Sans';}
.section5{padding: 80px 0;}
.shadow {box-shadow: 2px 2px 10px #e2e2e2;}
.teambox{box-shadow: 0 0 36.8px 9.2px rgb(16 37 65 / 10%);padding: 21px 41px;border-radius: 5px;}
.teammember{position: relative;overflow: hidden;}
.teammember img{position: absolute;width: 100%;height: auto;left: 0;right: 0;}
.pl30{padding-left: 30px;}
.frecont  .teamp{font-size: 20px;display: inline-block;color: #666;margin-bottom: 12px;}
.frecont h3{margin-bottom: 0;}
.clienthis h3{font-size: 17px;margin-bottom: 0;}
.clienthis h6{font-weight: 400;}
.recentitems{box-shadow: 2px 2px 10px #e2e2e2;margin: 31px 0;padding: 0 0 31px 0;}
.recentitems p{font-size: 14px;padding: 24px 24px 0 24px;line-height: 25px;}
.recentarticles{padding: 0px 0;}
img.img-fluid.usericn{width: 36px!important;float: left;box-shadow: 2px 2px 10px #9f9595;border-radius: 50%;margin-right: 11px;padding: 4px;}
.seemoreart{background: #852e14;display: inline-block;border-radius: 5px;color: #ffffff;text-decoration: none;padding: 5px 20px;margin: 0 26px;font-size: 14px;}
.imgfit{position: relative;height: 180px;overflow: hidden;}
.seemoreart:hover{background-color: #d56543;color: #ffffff;text-decoration: none;}
.slidem{background: url(../images/businessman-examining-papers-table.jpg.jpg) no-repeat center;-ms-background-size: cover;background-size: cover;color: #ffffff;}


.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  background: 0 0;
  color:#852e14 !important;
  border: none;
  padding: 5px 20px !important;
  font: inherit;
  font-size: 50px !important
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
  color:#852e14 !important;
  background-color: transparent !important
}

.owl-dots {
  display: none
}

button:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline-width: 0
}




@media(min-width: 992px){
/*  .navbar .nav-item:hover .dropdown-menu{ display: block; }*/
.clienthis .owl-prev{position: absolute;left: -55px;top: 16%;}
.clienthis .owl-next{position: absolute;right: -55px;top: 16%;}
.recent_article .owl-prev{position: absolute;left: -55px;top: 16%;}
.recent_article .owl-next{position: absolute;right: -55px;top: 16%;}
}


@media(min-width: 768px) and (max-width: 991px){
.whitebox{padding: 30px;}
}
@media(max-width: 767px){
.whitebox{    min-height: auto;}
}

.quteform h1 {
  margin-bottom: 25px;
  margin-left: 10px;
}
/*********Footer********/
footer{background: #262525;padding:50px 0;}
footer h2{color: #ffffff;font-size: 18px;text-transform: uppercase;font-family: 'Montserrat-Bold';}
footer ul{padding-left: 0;}
footer ul li a{color: #ffff; font-family: 'Open Sans';font-size: 14px;line-height: 31px;}
footer a{color: #ffff; font-family: 'Open Sans';font-size: 14px;}
footer a:hover{color: #c9c8c8; font-family: 'Open Sans';font-size: 14px;}
footer p{color: #c9c8c8;font-family: 'Open Sans';font-size: 14px;}
.copyright{background-color: #000000;color: #ffffff;}
.copyright p{margin-bottom: 0;padding: 20px;}
footer ul li a:hover{color: #ffffff;}
.dropdown-menu{    border: 0;box-shadow:2px 2px 10px #ad9a94;padding: 0;top: 86%;position: relative;}
li.dropdown-submenu{position: relative;}
.dropdown-submenu > a.dropdown-item::after {
  content: '‹ ';
  font-size: 33px;
  position: absolute;
  left: 11px;
  top: 0;
  line-height: 22px;
  color: #ffffff;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: auto;
  margin-top: 0px;
  margin-left: 0px;
  right: 100%;
}
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.navbar-light .navbar-nav .nav-link{outline: 0;}
a.dropdown-item{position: relative;padding: 4px 15px 5px 16px;background: #ffffff;color: #000000;font-size: 14px;}
.teamwrap{background: #fff;box-shadow: 2px 2px 10px #e2e2e2;padding: 32px;text-align: center;}
.teamwrap h2{font-size: 21px;font-family: 'Montserrat';}
.teamwrap h3{font-size: 17px;color: #852e14;font-family: 'Open Sans';}
.teamwrap p{font-size: 14px;}
/******home slider**********/
.slide1{background: url(../images/vlaa.jpg) no-repeat center;-ms-background-size: cover;background-size: cover;color: #ffffff;}

/*.slide1{background: url(../images/the-legal-gba91f6d9a_1920.jpg) no-repeat center;-ms-background-size: cover;background-size: cover;color: #ffffff;}
*/.slide2{background: url('../images/laew.jpg');background-position: center; background-size: cover; color: #ffffff;}
.slide3{background: url('../images/businessman-examining-papers-table.jpg');background-position: center; background-size: cover; color: #ffffff;}
.bannertext h3{font-size: 50px;color: #ffffff;text-decoration: none;font-family: 'Montserrat-Bold';text-shadow: 2px 2px 7px #262525;}
.dropdown-menu{top: 86%;}
.slide4{background: url('../images/businesssupport.jpg');background-position: center; background-size: cover; color: #ffffff;}
.bannertext {padding: 50px 0;}
#home{position: relative;}
#home video {
position: absolute;
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: 100%;
height: auto;
z-index: 0;
-ms-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
#home .overlay {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: black;
opacity: 0.5;
z-index: 1;
}
#home .container {
position: relative;
z-index: 2;
/* display: flex;align-items: center; */
height: calc(100vh - 125px);
}




@media screen and (min-width: 992px) {

/* remove the padding from the navbar so the dropdown hover state is not broken */
.navbar  {
padding-top:0px;
padding-bottom:0px;
}

/* remove the padding from the nav-item and add some margin to give some breathing room on hovers */

.navbar .meghamenudrop .nav-item {
  padding:3px 0;
  margin:0 .25rem;
}
.navbar .meghamenudrop .nav-item .nav-link{font-size: 13px; text-transform: capitalize;color: #000;font-weight: 400;    font-family: 'Open Sans';margin-left:8px;}
/* makes the dropdown full width  */
.navbar  .dropdown.meghamenudrop {position:static;}
.meghamenu_head{font-size: 17px;padding: 4px 13px;margin-top: 10px;display: block;color: #852e14;}
.navbar .meghamenudrop .dropdown-menu {
  width:100%;
  left:0;
  right:0;
  /*  height of nav-item  */
  top:45px;
  display:block;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s linear;
}
.navbar .meghamenudrop .sm-dropdown.dropdown-menu {
  width: 54%;
  left: 24%;
  right: 0;
  top: 45px;
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s linear;
}


/* shows the dropdown menu on hover */
.navbar .dropdown.meghamenudrop:hover .dropdown-menu, .navbar .dropdown.meghamenudrop .dropdown-menu:hover {
display:block;
visibility: visible;
opacity: 1;
transition: visibility 0s, opacity 0.3s linear;
}

.navbar .meghamenudrop .dropdown-menu {
  border-top: 3px solid rgb(133 46 20);
      background-color: #fff;
}

}

/********flowchart************/


.flowchartbg{background:url(../imagesVector-1.png);background-size: 100%;background-position: center;background-repeat: no-repeat;}
.w13{width: 16%;display: inline-block;}
.w13 img{width: 100%;}
.imgtopwrap1, .imgtopwrap2, .imgtopwrap3, .imgtopwrap4, .imgtopwrap5, .imgtopwrap6{width: 81px;margin: 0 auto;padding: 15px;border-radius: 100%;background-color: #ffffff;}
.imgtopwrap1{border: 2px solid #c84646;}
.imgtopwrap3{width: 120px;}
.imgtopwrap2{border: 5px solid #fc5c35;}
.imgtopwrap3{border: 5px solid #852e14;}
.imgtopwrap4{border: 5px solid #f47777;}
.imgtopwrap5{border: 5px solid #852e13;}
.imgtopwrap6{border: 5px solid #e86a42;}
.fcont{display: flex;justify-content: center;align-items: center;padding: 8px 6px;margin: 17px;border-radius: 5px;}
.digi{font-size: 31px;font-family: 'Montserrat';font-weight: 700;margin-bottom: 0;display: inline-block;margin-right: 8px;}
.fsubheading{font-family: 'Open Sans';font-size: 14px;line-height: 17px;}
.d1{color: #c84646;}
.d2{color: #fc5c35;}
.d3{color: #3fccb5;}
.d4{color: #f47777;}
.d5{color: #3d7cfc;}
.d6{color: #f2915c;}
.middlesec{background:#c84646;padding: 80px 0;}
.middlesec p{color: #ffffff;font-family: 'Open Sans';font-size: 15px;text-align: center;}
.flowchart{margin: 50px 0;}
.servicelinks{text-align: center;color: #852e14;font-weight: 700;}
/************litigation services**************/

.litigationserv{background: url('../images/litit.jpg');background-position: center; background-size: cover; color: #ffffff;}
.contractmanage{background: url('../images/businessman-examining-papers-table.jpg');background-position: center; background-size: cover; color: #ffffff;}
.businesmanage{background: url('../images/contctimg.jpg');background-position: center; background-size: cover; color: #ffffff;}

.navbar-light .navbar-nav .nav-link {
position: relative;
}
/*.navbar-light .navbar-nav .nav-link:after {
position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 0%;
content: '.';
color: #318abf;
background: #aaa;
height: 1px;
}*/

.navbar-light .navbar-nav .nav-link{
border-bottom: 2px solid transparent;
  padding: 0;
}
li.nav-item {
  padding: 8px;
}

.navbar-light .navbar-nav .nav-link:before{background: #c00000;width: 0%;height: 1px;content: "";left: 0;bottom: -4px;position: absolute;transition: 0.5s;}
.navbar-light .navbar-nav .nav-link:hover:before {width: 100%;}
.navbar-light .navbar-nav .nav-link:hover:after {
z-index: -10;
animation: fill 1s forwards;
-webkit-animation: fill 1s forwards;
-moz-animation: fill 1s forwards;
opacity: 1;
transition: all 2s;
}

/***VLS landing page***********/
.ppheading{font-family: 'Montserrat-Bold';text-align: center;}
.patentleft ul{padding-left: 0;}
.patentleft ul li{font-family: 'Open Sans';font-size: 16px;list-style: none;margin-bottom: 20px;}
.ppimgright{text-align: right;}
.patentleft{margin-top: 57px;box-shadow: 2px 2px 10px #e2e2e2;padding: 23px;border-radius: 27px;}
.ppimgright img{margin-top: 40px;}
.vls2section{background: #E86A42;padding: 80px 0;}
.vlsicon {background: #fff;
  text-align: center;
  width: 160px;
  padding: 27px 16px;
  margin-bottom: 32px;
  border-radius: 100%;
  box-shadow: 2px 2px 11px #6b2812;
  height: 160px;
  /* display: flex; */
  margin: 13px -3px 0 0;}
.vlsicon img {width: 61px; margin-bottom: 4px;}
.vlsheading{color: #fff;text-align: center;margin-bottom: 52px;font-size: 40px;}
.vlsicon p{margin-bottom: 0;font-size: 14px;}
.p35{padding: 35px;}
.p41{padding: 35px 41px;}
.vls2section .col.bordervls{background: url(../images/circle2.png);background-size: 100%;background-repeat: no-repeat;    height: 200px;}
.bordervls .steps{position: absolute;
  background: #852e14;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: 'Montserrat-Bold';
  border: 5px solid #fff;
  right: 67px;
  box-shadow: 2px 2px 10px #796b6b;}

.vls2section .col.bordervls2{background: url(../images/circle3.png);background-size: 100%;background-repeat: no-repeat;    height: 200px;}
.bordervls2 .vlsicon{margin: 18px 0 0 42px;}
.bordervls2 .steps{position: absolute;background: #852e14;color: #fff;width: 40px;height: 40px;display: flex;align-items: center;justify-content: center;border-radius: 50%;font-family: 'Montserrat-Bold';border: 5px solid #fff;right: 0;left: 64px;box-shadow: 2px 2px 10px #796b6b;}
.vls2section .col.bordervlslast{background: url(../images/circlefull.png);background-size: 100%;background-repeat: no-repeat;    height: 200px;}
.bordervlslast .steps{position: absolute;background: #852e14;color: #fff;width: 40px;height: 40px;display: flex;align-items: center;justify-content: center;border-radius: 50%;font-family: 'Montserrat-Bold';border: 5px solid #fff;right: 0;left: 64px;box-shadow: 2px 2px 10px #796b6b;}
.bordervlslast .vlsicon{margin: 18px 0 0 42px;}
.onsmall .steps{position: absolute;background: #852e14;color: #fff;width: 40px;height: 40px;display: flex;align-items: center;justify-content: center;border-radius: 50%;font-family: 'Montserrat-Bold';border: 5px solid #fff;left: 59px;top: 19px;box-shadow: 2px 2px 10px #796b6b;}
.mb50{margin-bottom: 50px;}
.onsmall .vlsicon {border: 7px solid #852e14;margin: 19px auto;text-align: center;}
.vlsreport{padding: 80px 0;}
.flowchartbg{background:url(../images/Vector-1.png);background-size: 95%;background-position: center;background-repeat: no-repeat;}
.w13{width: 12%;display: inline-block;}
.w13 img{width: 100%;}
#vlaserv{    box-shadow: 2px 2px 10px #e5e5e5;}


.fcont{margin-bottom: 15px;display: flex;justify-content: center;align-items: center;border-radius: 5px;}
.digi{font-size: 31px;font-family: 'Montserrat';font-weight: 700;margin-bottom: 0;display: inline-block;margin-right: 8px;}
.fsubheading{font-family: 'Open Sans';font-size: 14px;line-height: 17px;text-align: center;color: #852e14;font-weight: 700;}
.d1{color: #c84646;}
.d2{color: #fc5c35;}
.d3{color: #3fccb5;}
.d4{color: #f47777;}
.d5{color: #3d7cfc;}
.d6{color: #f2915c;}
.middlesec{background:#c84646;padding: 80px 0;}
.middlesec p{color: #ffffff;font-family: 'Open Sans';font-size: 15px;text-align: center;}
.flowchart{margin: 50px 0;}
.democlass{color: #000000;background-color: #ffffff;font-size: 18px;font-family: 'Montserrat';display: inline-block;border: 2px solid #fff;border-radius: 39px;padding: 9px 35px;margin-top: 28px;}
.democlass:hover, .democlass:focus{background-color: transparent;color: #ffffff;text-decoration: none;}
.blog_history{right: 0;left: 0; position: absolute;bottom: 0;color: #ffffff;font-family: 'Montserrat';padding: 0 14px;font-size: 15px;background: rgba(39, 38, 38, 0.48);}
.noteclass{    padding: 26px 0 0 0;}
#requestqute .form-control{box-shadow: 2px 2px 10px #c5bcbc;border: 0;}
.readmorefullvls{border: 1px solid #852e14;display: inline-block;border-radius: 5px;color: #852e14;padding: 9px 18px;z-index: 9;font-family: 'Montserrat';text-align: center;}
.readmorefullvls:hover{background: #852e14; border: 1px solid #852e14;display: inline-block;border-radius: 5px;color: #ffffff;text-decoration: none; padding: 9px 18px;z-index: 9;font-family: 'Montserrat';text-align: center;}
.primarybgcolor{background-color: #852e14;}

.vls2section .col.bordervlsltrow{background: url(../images/circle42.png);background-size: 100%;background-repeat: no-repeat;position: relative;    height: 200px;}
.bordervlsltrow .steps{position: absolute;background: #852e14;color: #fff;width: 40px;height: 40px;display: flex;align-items: center;justify-content: center;border-radius: 50%;font-family: 'Montserrat-Bold';border: 5px solid #fff;right: 0;left: 116px;box-shadow: 2px 2px 10px #796b6b;}
.bordervlsltrow .vlsicon{margin: 13px -3px 0 0;}
.vls2section .col.bordervlsltrow::after{content: '';background: url(../images/rightarroow.png);position: absolute;background-size: 100%;    width: 42px;height: 29px;background-repeat: no-repeat;transform: rotate(142deg);right: 106px;bottom: -6px;}
.callink{position: fixed;right: 0;top: 61px;background: #fff;box-shadow: 2px 2px 10px #cecece;padding: 0 0 0 13px;z-index: 1;color: #868686;border-radius: 7px 0 0 7px;}
.callink img{ width: 43px;border-radius: 25px 25px 3px 25px;filter: hue-rotate(225deg);transform: rotate(98deg);}
.callink span{display: inline-block;width: 87px;vertical-align: middle;}
.callink:hover{text-decoration: none;color: #000;}
.callink.phoneb img{border-radius: 25px 3px 25px 25px;filter: hue-rotate(225deg); transform: rotate(89deg);}
.callink.phoneb{border-radius: 100%;    padding: 0;}

.forsecimg{padding: 50px 0;}
.lightcolor{background: #ffe8e1;padding: 50px 0;margin-bottom: 50px;}
.imgshadow{background: #fff;padding: 14px;border-radius: 7px;box-shadow: 2px 2px 10px #e89980;}
.mt64{margin-top: 64px;}
/********company profile***************/
.aboutprofsec{background: #fff;padding: 27px 40px;border-radius: 17px;box-shadow: 2px 2px 10px #c3c3c3;margin-bottom: 50px;}
.aboutprof{margin-top: -95px;}
.bannertext_small h1{font-size: 39px;margin-bottom: 47px;font-family: 'Montserrat-Bold';}
.valueclass{padding: 38px 0 80px;}
.valueclass h1{margin-bottom: 14px;font-family: 'Montserrat', sans-serif;font-weight: 600;font-size: 33px;}
.shadowbox_ab{text-align: center;box-shadow: 2px 2px 10px #e2e2e2;padding: 30px 19px;background: #ffffff;border-radius: 10px;}
.shadowbox_ab img{width: 75px;display: block;margin: 0 auto;}
.shadowbox_ab p{margin-top: 17px;}
.servicesoffer{background: #ffe8e1;padding: 46px 0;}
.servnum{background: #852e14;color: #fff;width: 45px;height: 45px;justify-content: center;display: flex;align-items: center;font-size: 25px;font-family: 'Montserrat'; border-radius: 50%;margin-right: 16px;}
.alincenter{align-items: center;}
.shadowbox_ab h3{font-size: 18px;margin: 14px 0 0 0;font-family: 'OpenSans semi';}
.servicesoffer .shadowbox_ab p{font-size: 15px;}
.servicesoffer .shadowbox_ab{    box-shadow: 2px 2px 10px #f1c5b9;}
.alincenter h1{font-size: 26px;}
.businessservice{background: url('../images/laew.jpg');background-position: center; background-size: cover; color: #ffffff;}
.callbtnsection{padding: 80px 0;background: #852e14;}
.reachback{border: 1px solid #fff;display: inline-block;border-radius: 5px;color: #ffffff;font-size: 23px;margin-left: 9px;padding: 9px 18px;z-index: 9;font-family: 'Montserrat';text-align: center;background: #852e14;}
.reachback:hover{color: #ffffff;text-decoration: none;background-color: #b25033;}
.reqbtn{border: 1px solid #ffffff;display: inline-block;border-radius: 5px;color: #000000;padding: 9px 18px;z-index: 9;font-family: 'Montserrat';text-align: center; background: #ffffff;font-size: 23px;}
.reqbtn:hover{text-decoration: none;background-color: #ffe8e0;color: #000;}
.showtxt{text-shadow: 2px 2px 10px #3f3c3c;}
.reqbox{display: flex;align-items: center;justify-content: center;}
/****************ip sub pages******************/
header{z-index: 1;}
.header_section .nav-item{
  align-self: center;
}
.header_section .dropdown-menu .nav-item{
  align-self: auto;
}
.knockout{background: url('../images/typing.jpg');background-position: center; background-size: cover; color: #ffffff;}
.commoncontent{line-height: 28px;font-size: 15px;}
.validitysec{background: #ffe8e1;}
.ftobenefit ul{padding-left: 20px;}
.ftobenefit ul li{line-height: 39px;}
.iti{width: 100%;}
.getqutesec{background: url('../images/rt.jpg');background-position: center; background-size: cover; color: #ffffff;}
.quteform{background-color: rgb(133 46 19 / 74%);padding: 50px;}
.submitqu{background: #e86a42;width: 100%;}
.iconserch ul{padding: 0;}
.iconserch ul li{list-style: none;position: relative;padding-left: 28px;text-align: left;}
.iconserch ul li::before{content: '';background:url(../images/check.png);position: absolute;width: 13px;height: 13px;left: 0;background-size: 100%;background-repeat: no-repeat;top: 7px;}
.iconserch ul li a{color: #666;font-size: 13px;font-family: 'Open Sans';}
.iconserch h3{margin-bottom: 18px;}
h3.subheadingimg{position: relative;padding: 0 0 0 50px;margin-bottom: 19px;}
.subheadingimg::before{content: '';position: absolute;background:url(../images/ipwatch.png);top: -7px;width: 40px;height: 40px;left: 0;background-size: 100%;
  background-position: center;}

h3.subheadingimg2{position: relative;padding: 0 0 0 50px;margin-bottom: 19px;}
.subheadingimg2::before{content: '';position: absolute;background:url(../images/desktop-computer.png);top: -7px;width: 40px;height: 40px;left: 0;background-size: 100%;background-position: center;}
h3.subheadingimg3{position: relative;padding: 0 0 0 50px;margin-bottom: 19px;}
.subheadingimg3::before{content: '';position: absolute;background:url(../images/patent.png);top: -7px;width: 40px;height: 40px;left: 0;background-size: 100%;background-position: center;}
h3.subheadingimg4{position: relative;padding: 0 0 0 50px;margin-bottom: 19px;}
.subheadingimg4::before{content: '';position: absolute;background:url(../images/infingment.png);top: -7px;width: 40px;height: 40px;left: 0;background-size: 100%;background-position: center;}
h3.subheadingimg5{position: relative;padding: 0 0 0 50px;margin-bottom: 19px;}
.subheadingimg5::before{content: '';position: absolute;background:url(../images/patentanalys.png);top: 0px;width: 40px;height: 40px;left: 0;background-size: 100%;background-position: center;}
h3.subheadingimg6{position: relative;padding: 0 0 0 50px;margin-bottom: 19px;}
.subheadingimg6::before{content: '';position: absolute;background:url(../images/paralel.png);top: -7px;width: 40px;height: 40px;left: 0;background-size: 100%;background-position: center;}
h3.subheadingimg7{position: relative;padding: 0 0 0 50px;margin-bottom: 19px;}
.subheadingimg7::before{content: '';position: absolute;background:url(../images/consultation2.png);top: -7px;width: 40px;height: 40px;left: 0;background-size: 100%;background-position: center;}
h3.subheadingimg8{position: relative;padding: 0 0 0 50px;margin-bottom: 19px;}
.subheadingimg8::before{content: '';position: absolute;background:url(../images/search-engine.png);top: -7px;width: 40px;height: 40px;left: 0;background-size: 100%;background-position: center;}
.servicebox.servbox2{padding: 30px 28px 20px 20px;}
.height208{min-height: 208px;}
.height184{min-height: 184px;}
.iconserch ul li a:hover {color: #e86a42;}
.sidenav{padding: 0;box-shadow: 0 0 20px rgb(0 0 0 / 10%);}
.sidenav li.nav-item a{padding: 16px 15px;color: #000;position: relative;}
.sidenav ul{width: 100%;}
.sidenav li.nav-item{padding: 0;background: #fafafa;margin-bottom: 2px;}
.sidenav li.nav-item a.active{background: #852e14; color: #ffffff;}
.sidenav li.nav-item a.dropdown-toggle::after{content: "";background: url(../images/chevron-right-solid.svg);width: 13px;height: 13px; position: absolute;right: 14px;top: 23px;background-repeat: no-repeat;border: 0;transform: rotate(90deg);}
header{background-color: #fff;}
.bannertext{padding: 100px 42px 0;}
.navbar-light .navbar-nav .nav-link{color: #000;}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover{color: #000;}
.navbar .meghamenudrop .nav-item .nav-link:hover{color: #000;}
.sidenav .dropdown-menu{padding-left: 0px;box-shadow: none;}
.sidenav .dropdown-menu a.nav-link{background-color: #fff;padding: 4px 12px 4px 28px;border-bottom: 0;font-size: 14px;color: #852e14;}
.sidenav .dropdown-menu a.nav-link:hover{color: #e86a42;}
.sidemenu ul{padding-left: 0;}
.sidemenu ul li{list-style: none;padding: 0;}
.sidemenu ul li a.nav-link.active{color: #e86a42;}
.sidemenu ul li a.nav-link{background-color: #fff;padding: 4px 12px 4px 28px;border-bottom: 0;font-size: 14px;color: #852e14;}
.sidemenu ul li a.nav-link:hover{color: #e86a42;text-decoration: none;}
.sidesubnav .card-header a{display: block;position: relative;    color: #060606;}
.sidesubnav .card-header a::after{content: "";background: url(../images/chevron-right-solid.svg);width: 13px;height: 13px; position: absolute;right: 0px;top: 10px;background-repeat: no-repeat;border: 0;transform: rotate(90deg);}
#accordionExample{box-shadow: 0 0 20px rgb(0 0 0 / 10%);} 
.sidesubnav .card-header{border:0;margin-bottom: 3px;}
.lightcolor_sub{background: #ffe8e1;padding: 26px 0;margin-bottom: 50px;}
.lightcolor_sub h3{font-size: 19px;padding: 0 0 0 22px;}
.common_cont h3{font-size: 20px;}
.dom_cont img{width: 55px;}
.dom_cont{box-shadow: 0 0 36.8px 9.2px rgb(16 37 65 / 10%);padding: 14px;border-radius: 5px;text-align: center;background: #ffffff;}
.dom_cont p{font-size: 14px;margin-top: 9px;font-family: 'Open Sans';}
span.iti__country-name{color: #3f3f3f;}
.pat_lices h3{font-size: 19px;color: #852e13;}
.smallheading{font-size: 20px; margin-bottom: 35px;margin-left: 14px;}
.dom_cont h3{font-size: 20px; }
.pat_lices p{font-size: 14px;}
p.content{font-size: 14px;}

/*.flip-card {background-color: transparent; perspective: 1000px;margin-bottom: 15px;}
.flip-card-inner {position: relative;width: 100%;height: 100%;text-align: center;transition: transform 0.6s;transform-style: preserve-3d;box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);}
.flip-card:hover .flip-card-inner {transform: rotateY(180deg);}
.flip-card-front, .flip-card-back {position: absolute;width: 100%;height: 100%;-webkit-backface-visibility: hidden;backface-visibility: hidden;}
.flip-card-front {background-color: #fff;color: black;}
.flip-card-back {background-color: #852e13;color: white;transform: rotateY(180deg);justify-content: center;border-radius: 5px;display: flex;align-items: center;}
*/.reqsamp{color: #fff;font-family: 'Montserrat';text-decoration: none;text-align: center; }
.reqsamp:hover{text-decoration: none;color: #fff;}
 /*#home .carousel{z-index: -1;}*/

.flip_container {width: 100%;cursor: pointer;margin-bottom: 15px;}
.flip_container:hover .flip {-webkit-transform: rotateY(180deg);transform: rotateY(180deg);}
.flip { -webkit-transition: 0.75s;transition: 0.75s;-webkit-transform-style: preserve-3d;transform-style: preserve-3d;position: relative;height: 100%;}
.flip_front, .flip_back {-webkit-backface-visibility: hidden;backface-visibility: hidden;position: absolute;top: 0;left: 0;}
.flip_front {-webkit-transform: rotateY(0deg);transform: rotateY(0deg);width: 100%;height: 100%;    border-radius: 5px}
.flip_back { -webkit-transform: rotateY(180deg);transform: rotateY(180deg);padding: 10px;background: #9d3c20;display: flex;flex-direction: column;justify-content: center;align-items: center;height: 100%;width: 100%;border-radius: 5px;}
.btn-reqst{background: #852e14;color: #fff;}
.btn-reqst:hover{background-color: #e86a42;color: #ffffff;text-decoration: none;}
.videoverlay{height: 100%;width: 100%;position: absolute;top: 0px;left: 0px;z-index: 2;background: rgb(10 10 10 / 66%);opacity: 0.5;}
.navbar-light .navbar-nav .nav-link.clientlog{    background: #F06953;
  display: inline-block;
  padding: 7px 9px;
  line-height: 19px;
  border-radius: 5px;
  vertical-align: middle;
  color: #fff;
  font-size: 11px;
}
.navbar-light .navbar-nav .nav-link.clientlog:hover{background-color: #e26f4c;color: #ffffff;text-decoration: none;}
.smallbox .card-body{padding: 11px 0 0;}
.ipbox a {background: #852e14;padding: 9px 15px;text-align: center;color: #ffff;display: flex;height: 100px; align-items: center;justify-content: center;border-radius: 8px;text-decoration: none;box-shadow: 2px 2px 10px #bba8a8;}
.w-20 {width: 19%;display: inline-block;vertical-align: middle;}
.documentsec{background: #fffaf8;}
.ipbox {border: 1px dashed #852e14;padding: 5px;border-radius: 9px;margin-bottom: 15px;}
a.doclink:hover {background: #ab4425;}
.w13:hover{transform: scale(1.2);transition: 1s;transition-timing-function: ease-in-out;}
a.servicelinks:hover{text-decoration: none;color: black;}
.fcont.lineb::after{content: '';position: absolute;border: 1px solid #d9d8d7;height: 1px;width: 133px;transform: rotate(90deg);bottom: -76px;right: 28px;display: none;}
.fcont.lineb{position: relative;}
.vlawrap{display: none;}
.vlawrpup{position: absolute;}
.searchname{background: #852e14;display: inline-block;border-radius: 5px;color: #ffffff;text-decoration: none;padding: 5px 20px;}
.searchname:hover{background-color: #bd4c2a;color: #ffffff;text-decoration: none;}

/**********VLA services**************/
.vlaimgwrap{background: #fff;padding: 17px;border-radius: 72px;border: 5px solid #852e14;}
.areyoyatt {background: #852e14;color: #fff;padding: 6px 23px;box-shadow: 2px 2px 10px #b9b8b8;}
.lookatt {background: #852e14;color: #fff;padding: 6px 23px;box-shadow: 2px 2px 10px #b9b8b8;}
.areyoyatt:hover{color: #ffffff;text-decoration: none;}
.lookatt:hover{color: #ffffff;text-decoration: none;}
.lookingbtnwrap{align-items: center;justify-content: center;display: inline-flex;}
.areyouattory{align-items: center;justify-content: center;display: inline-flex;    }
.vlsboxatt .vlaservise{display: inline-flex;position: relative;margin-right: 65px;margin-left: 65px;}
.vlsboxatt{max-width: 800px;margin: 0 auto;display: flex;justify-content: center;}
.vlaimgwrap::after{content: '';position: absolute;background: #852e14;width: 67px;height: 5px;top: 53px;left: 112px;}
.vlaimgwrap::before{content: '';position: absolute;background: #852e14;width: 67px;height: 5px;top: 53px;right: 112px;}
.vlaimgwrap img{width: 70px;}
.findnme input{box-shadow: 2px 2px 10px #b1afaf;border: 0;}
.findnme select{box-shadow: 2px 2px 10px #b1afaf;border: 0;}
.findnme label{color: #852e14;}

/******landing page****************/
.registerbox{background: #ffe8e1;padding: 25px;}
.registerbox h3{text-align: center;margin-bottom: 17px;color: #852e14;}
.registerbox input{border: 0;box-shadow: 2px 2px 10px #b3afaf;}
.registerbox select{border: 0;box-shadow: 2px 2px 10px #b3afaf;}
.registerbox label{font-weight: 600;}
.benefitstext ul{padding-left: 0;}
.benefitstext ul li{list-style: none;position: relative;padding-left: 29px;line-height: 36px;}
.benefitstext ul li::before{content: '';position: absolute;background: url(../images/tick.png);width: 20px;height: 20px;background-size: cover;left: 0;top: 10px;}
.registerbtn{background: #852e14;color: #ffffff;width: 100%;font-size: 20px;}
.registerbtn:hover{background-color: #cd5936;color: #ffffff;}

.attorney_sec{background: url('../images/attirney.jpg');background-position: top; background-size: cover; color: #ffffff;}
.attorney_sec h1.mainheading{color: #852e13;font-size: 60px;}
.attorney_sec p{color: #852e13;}
.lookatt{position: relative;}
.lookatt::after{content: '';background: url(../images/curve-arrow2.png);background-size: 100%;position: absolute;width: 100px;height: 100px;right: 0;top: 43px;}
.registrbtn{background: #ef5526;color: #fff;display: inline-block;padding: 5px 18px;margin-top: 12px;font-size: 14px;border-radius: 5px;}
.registrbtn:hover{color: #ffffff;text-decoration: none;background: #e86a42;}
.areyoyatt{position: relative;}
.areyoyatt::after{content: '';background: url(../images/curve-arrow.png);background-size: 100%;position: absolute;width: 100px;height: 100px;left: 0;top: 43px;}
.vlaservices{padding: 40px 0;}

.marqueeElement, .marqueeElement2 {position:absolute;width:100%;}
#mholder, #mholder2 {height: 180px;width:100%;position: relative;overflow: hidden;}



/*******blog***********/
.sidebar h3{font-size: 22px; margin: 13px 0;border-bottom: 1px solid #c9c2c2; padding-bottom: 8px;}
.sidebar{background: #f3f3f3; padding: 26px;}
.sidebar ul li{list-style: none;}
.sidebar ul {padding-left: 0;}
.tagwrap ul li{display: inline-block;background: #ffffff;padding: 4px 14px;margin-right: 8px;margin-bottom: 12px;box-shadow: 2px 2px 10px #e2e2e2;border-radius: 5px;}
.tagwrap ul li a{color: #000;}
.postline {padding: 9px 16px 0;}
.userpost {font-size: 12px;background: #ebebeb;display: inline-block;padding: 2px 7px;border-radius: 10px;}
.usernam{float: right;font-size: 13px;}
.bloghead{margin-top: 10px;margin-bottom: 25px;font-size: 20px;line-height: 30px;color: #852e14;}
.modename h2{font-size: 19px;color: #000;}
.modename{text-decoration: none;}
.modename:hover{text-decoration: none;}
.readlink{font-size: 13px;color: #100f0f;display: inline-block;margin: 0px 15px;padding-bottom: 12px;}
.categ h3{position: relative;font-family: 'Montserrat-Bold';color: #c84646;padding-bottom: 12px;}
.categ h3::after{content: '';border:1px solid #c84646;position: absolute;left: 0;bottom: 0;width: 102px;}
.categ ul li{list-style: none;font-family: 'Open Sans';font-size: 16px;line-height: 31px;}
.categ ul li a{color: #3e3e3e;}
.sidebar{border-left: 1px solid #e0e0e0;}
.rightimg img { float: right;max-width: 331px;padding: 10px;}
.detailpage .headingblog{font-family: 'Montserrat';color: #c84646;font-size: 24px;text-transform: uppercase;}
.detailpage p{font-family: 'Open Sans';}
.detailpage ul{padding-left: 0;}
.detailpage ol{padding-left: 0;}
.commentsec{display: flex;border: 1px solid #e8e7e7;padding: 12px;border-radius: 12px;margin-top: 20px;}
.commenttext h3{margin-top: 0;font-family: 'Montserrat-Bold';margin-bottom: 5px;font-size: 18px;}
.commenttext h3 span{font-size: 15px;font-family: 'Open Sans';color: #c84646;}
.userimg{display: flex;height: auto;justify-content: center;align-items: flex-start;}
.commenttext{padding: 0 0 0 15px;font-family: 'Open Sans';}
.commentarea > h3{font-family: 'Montserrat';font-size: 17px;}
.commentarea{padding-top: 55px;}
.comment_reply {font-family: 'Montserrat-Bold';color: #c84646;}
.replysec{display: flex;align-items: center;justify-content: center;}
.repimg{width: 265px;}
.repimg img{width: 50px;margin:0 auto;}
.postcomment h3{font-family: 'Montserrat';font-size: 18px;}
.subtn{background: #c84646;color: #fff;font-family: 'Montserrat-Bold';display: inline-block;padding: 4px 19px;border-radius: 5px;}
.postcomment{padding-top: 33px;}
.modename{padding: 0 17px 0px 17px;display: block;} 
.modename .smalltxt{color: #666666;margin-bottom: 4px;font-size: 14px;}
.modebox {box-shadow: 0 0 36.8px 9.2px rgb(16 37 65 / 10%);border-radius: 5px;}
.modebox .imgfullwrap{display: block;width: 100%;height: 190px;overflow: hidden;}
.modessec { margin-bottom: 35px;}
.blogmain{padding: 80px 0;}

/************VLA************/

.userinfoAtt{width: 25%;float: left;text-align: center;border-right: 1px solid #ccc;}
.userlocation{width: 65%;float: left;margin-left: 16px;}
.userlocation p{margin-bottom: 0;font-size: 12px;}
.userlocation h2{font-size: 13px;margin-bottom: 6px;}
.userinfoAtt p{margin-bottom: 0;}
.attornyname{font-size: 14px;margin-top: 3px;}
.timeup{font-size: 12px;}
.userinfoAtt img{width: 43px;height: 43px;border-radius: 100%;}
.user_desc{float: left;}
.attorneycls{font-family: 'Montserrat-Bold';font-size: 24px;color: #000000;}
.vlabox{position: relative;}
.timeup.badge{background: #e86a42;color: #fff;font-weight: 400;}
/*.vlabox img{margin-right: 26px;}*/
.vlabox::after{content: '';background: #852e14;position: absolute;width: 2px;height: 215px;top: 53px;right: 0;left: 0;text-align: center;margin: 0 auto;}
.vlabox img{width: 50px}
.viewallattrney{color: #e86a42;margin-top: 15px;display: inline-block; }
.practce_area{background: #f5c3b3;border-radius: 19px;font-size: 12px;padding: 0px 9px;margin-right: 5px;}
.dateonPost{background: #f5c3b3;border-radius: 19px;font-size: 12px;padding: 0px 9px;}
.loginbtnatt{background: #812c12;color: #fff;max-width: 181px;display: block;margin: 7px auto;border-radius: 5px;}
.loginbtnatt:hover{background: #ab3a17;color: #ffffff;text-decoration: none;}
.myTabContent ul.patentpros li{list-style: none;display: inline-block;position: relative;}
.myTabContent ul.patentpros li a{box-shadow: rgb(224 224 224) 0px 10px 50px;font-weight: 700;display: flex;color: #ab3a17;padding: 4px 23px;margin: 6px 13px;width: 95px;height: 95px;font-size: 12px;align-items: center;justify-content: center;text-align: center;position: relative;}
.myTabContent ul.patentpros{padding: 20px;background: #ffffff;box-shadow: 2px 2px 10px #e5e5e5;margin-bottom: 0;}
.myTabContent ul.patentpros li.selected a:hover, .myTabContent ul.patentpros li.selected a:focus{background: #ca6258;text-decoration: none;color: #fff;}
.myTabContent ul.patentpros li a::after{content: '';border: 1px dashed #e4dcda;position: absolute;width: 22px;height: 2px;right: -24px;}
.myTabContent ul.patentpros li:last-child a::after{display: none;}
.myTabContent ul.patentpros li.selected a{background: #ca6258;text-decoration: none;color: #fff;border: 0;}
.myTabContent ul.patentpros li a:hover{background: #ca6258;text-decoration: none;color: #fff;}
#myTab li.nav-item{padding: 0;}
#myTab li.nav-item a{border:0;padding: 8px 28px;color: #852e14;}
#myTab li.nav-item a:hover{background: #e86a42;color: #fff;}
#myTab{border-bottom: 0;}
.ip_services{font-size: 29px;font-family: 'Montserrat-Bold';color: #000000;text-transform: uppercase;}
#myTab li.nav-item a.active{box-shadow: -4px -5px 6px -3px #e5e5e5;background: white; background: #e15023;color: #fff;}
.att_link{color: #e86a42;font-weight: 700;}

.attorneybg{background: url('../images/blurbg.jpg');background-position: top; background-size: cover; color: #ffffff;}
.attornyleft ul, .attornyright ul{padding: 0;}
.attornyleft h1{font-size: 30px;border-bottom: 1px solid #fff;padding-bottom: 9px;display: inline-block;margin-bottom: 20px;}
.attornyright h1{font-size: 30px;border-bottom: 1px solid #fff;padding-bottom: 9px;display: inline-block;margin-bottom: 20px;}
.attornyleft ul li, .attornyright ul li{position: relative;list-style: none;padding-left: 34px; font-size: 15px;font-family: 'Montserrat';margin-bottom: 5px;}
.attornyleft ul li::before{content: ''; background: url(../images/tickwhiteka.png);background-size: 100%;position: absolute;width: 16px;height: 16px;left: 0;top:6px;}
.attornyright ul li::before{content: ''; background: url(../images/tickwhiteka.png);background-size: 100%;position: absolute;width: 16px;height: 16px;left: 0;top:6px;}
.regisformpage{margin-top: -113px;}
.leftatt{border-right: 2px solid #fff;}
.attornyleft h3, .attornyright h3{font-size: 20px;}
.padding_container{    padding: 113px 0 113px;}
.benefitstext{padding: 0 50px 0 0;}
.ftobenefit{padding: 0 0px 0 50px;}
.attornyright{padding-left: 36px;}

@media(min-width: 992px) and (max-width: 1199px){
.vlsicon{width: 128px;height: 128px;}
.vlsicon img{width: 43px;}
.vlsicon p{font-size: 13px;line-height: 16px;}
.bordervls2 .vlsicon{margin: 18px 0 0 36px;}
.bordervlslast .vlsicon{margin: 18px 0 0 36px;}
.vls2section .col.bordervlsltrow::after{right: 89px;bottom: 23px;}
}
@media(max-width: 991px){
.onlg{display: none;}
.topbar{display: none;}
.bannertext{padding: 100px 42px 0;text-align: center;}
 header .navbar-nav{background: rgb(255 255 255);}
 .navbar .meghamenudrop .nav-item .nav-link{font-size: 13px; text-transform: capitalize;color: #000;font-weight: 400;    font-family: 'Open Sans';}
 #home .carousel-item{margin-top: -50px;}
 #home video{object-fit: cover;width: 100vw;height: calc(100vh - 125px);}
 .navbar-light .navbar-toggler{background: #fff;border-radius: 0;border: 0;}
/*  .videobg{display: none!important;}*/

}
@media(min-width: 992px){
 .areyoyatt{width: 216px;display: block;text-align: center;}
.onsmall{display: none;}
 header{top: 40px;}
 li.nav-item.dropdown.meghamenudrop:hover .dropdown-menu{display: block;}
  li.nav-item.dropdown.aboutmenu:hover .dropdown-menu{display: block;}
/*
#home .carousel{z-index: -1;}
.navbar-light .navbar-nav .nav-link{color: #fff;}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover{color: #fff;}
.navbar .meghamenudrop .nav-item .nav-link:hover{color: #000;}*/
}

@media(max-width: 563px){
.timer{font-size: 30px;}
.vlsboxatt .vlaservise{margin-right: 22px;margin-left: 22px;}
.vlaimgwrap img{width: 42px;}
.vlaimgwrap::before{width: 44px;top: 44px;right: 85px;}
.vlaimgwrap::after{width: 44px;top: 44px;left: 85px;}
.meghamenudrop  .row{
  height: 50vh;
  overflow:auto;
}
}

/*******responsive**************/

@media(min-width: 769px){
.phoneb{display: none;}
}
@media(max-width: 768px){
.title a{font-size: 28px;}
.hny-title{    font-size: 30px;}
.leftcont h2{font-size: 30px;}
.freighticon{text-align: center;}
.teammember img{position: static;}
.frecont.pl30{padding: 15px 0;}
.frecont h3{font-size: 23px;}
.bannertext h1 {font-size: 38px;}
.servbox2{text-align: center;}
.deskb{display: none;}
.callink{top: auto;}
.bannertext h3{    font-size: 30px;}
.w-20 {width: 100%;display: inline-block;vertical-align: middle;}
.w13{width: 100%;}
.userlocation h2{font-size: 16px;}
.timeup{font-size: 12px;}
.attornyname{font-size: 12px;}
.userinfoAtt img{width: 36px;}
.vlabox{display: none;}

}
@media(max-width: 370px){
.bannertext h3{font-size: 21px;}
.bannertext p{font-size: 15px;}
.morebtn, .fillbtn{font-size: 15px;}
 .lookatt{padding: 6px 12px;font-size: 14px;}
.areyoyatt{padding: 6px 12px;font-size: 14px;}
}

.card.shadow.border-0.py-3.px-4.mt-2.mb-2{    min-height: 266px;}
.benefitstext{border-right: 2px solid #ffe8e1;}
.tabcontentlink{background: white;    padding: 0 20px 20px;}
.tabcontentlink ul li{    border-radius: 5px;list-style: none;line-height: 11px;font-size: 13px;position: relative;background: #e86a42;margin: 0 0 4px 0;display: inline-block;}
.tabcontentlink ul{ padding: 20px 20px 15px 20px;box-shadow: 2px 2px 10px #e2e2e2;}
.tabcontentlink ul li a{color: #ffffff;}
.patentpros li.selected::after {content: '';width: 0;height: 0;border-left: 8px solid transparent;border-right: 8px solid transparent;border-top: 9px solid #ca6258;position: absolute;right: 0;left: 0;margin: 0 auto;bottom: -2px;}
#myTabContent ul.patentpros li{position: relative;}
.tabcontentlink ul li:hover {background: #a6463d;}
.card-registration{border-radius: 15px;box-shadow: 2px 2px 42px #acacac;border: 0;}
.shadowcls{box-shadow: 2px 2px 10px #c8c3c3;padding: 27px;}
.form-outline input{height: calc(2.25rem + 2px);}

/**********attorneypage**************/
.attoerysection{padding: 80px 0;}
.datepub{background: #ffb49d;color: #000;font-size: 12px;padding: 1px 9px;border-radius: 10px;margin-top: 7px;display: inline-block;}
.attornydiv{float: left;border-bottom: 1px solid #efeeee;margin-bottom: 20px;padding-bottom: 20px;}
.page-link{border:0;color: #852e14;background-color: #ffffff;box-shadow: 2px 2px 10px #cdcccc;margin-right: 5px;}
.page-link:hover {color: #ffffff;background-color: #852e14;}
.page-item.active .page-link{background-color: #852e14;}
.searchbtn{background: #852e14;color: #fff;border: 0;}
.postyourqury{display: block;background: #852e14;color: #fff;text-align: center;font-family: 'Montserrat-Bold';padding: 11px;font-size: 22px;border-radius: 9px;}
.postyourqury:hover{color: #ffffff;text-decoration: none;background: #7e290e;}
.hidesubcat{display: none;}




@media(min-width: 1200px){
.myTabContent ul.patentpros{display: flex;}
}

/* home page Layout */
.position {
  text-align: center;
  color: #000;
  line-height: 22px;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 1px solid #444343dd;
  border-radius: 5px;
}

@media (max-width:767px) {

  .level {

      text-align: center;
  }

  .level.lev-one.top-level {
      margin-bottom: 70px;
  }

  .position {
      display: block;
      background-color: rgba(255, 255, 255, 0.33);

      max-width: 200px;

  }

  .lev-two .position {
      margin-left: 100px;
      margin-bottom: 50px;
      position: relative;

  }

  .lev-two .position:before {
      position: absolute;
      content: "";
      width: 50px;
      height: calc(100% + 50px);
      border-bottom: 1px solid #000;
      border-left: 1px solid #000;
      left: -50px;
      bottom: 50%;
  }

  .lev-two .position:first-child:before {
      height: 100%;


  }

}



@media (min-width:768px) {

  .level {

      text-align: center;


  }

  .top-level {
      margin-bottom: 100px;
  }

  .position {
      display: inline-block;

      width: calc(14.28% + 40px);

      vertical-align: top;
      position: relative;
  }

  .lev-two .position:nth-child(even) {

      margin-top: 130px;

  }

  .lev-two .position:nth-child(even):before {
      content: "";
      position: absolute;
      height: 180px;
      border-left: 1px solid #000;
      top: -180px;

  }


  .lev-two .position {
      margin-left: -20px;
      margin-right: -20px;
  }



  .lev-two .position:before {
      content: "";
      position: absolute;
      height: 50px;
      border-left: 1px solid #000;
      top: -50px;
      width: calc(100% - 33px);
      border-top: 1px solid #000;
      left: 50%
  }

  .lev-two .position:nth-last-child(1):before {
      content: "";
      position: absolute;
      height: 50px;
      border-left: 1px solid #000;
      top: -50px;
      width: calc(100% - 20px);
      border-top: none;
  }



  .flow-chart {
      position: relative;

  }

  .top-level .position:after {
      content: "";
      position: absolute;
      height: 50px;
      border-left: 1px solid #000;
      bottom: -50px;
      width: calc(100% - 40px);
      left: 50%;


  }
}

.swiper-pagination-bullet{border: 1px solid #1da1f2;}.swiper-pagination-bullet-active{background:#1da1f2}
img:not([draggable]), embed, object, video {
  max-width: 100%;
  height: auto;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  z-index: 1
}

.swiper-container-no-flexbox .swiper-slide {
  float: left
}

.swiper-container-vertical>.swiper-wrapper {
  flex-direction: column
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0, 0, 0)
}

.swiper-container-multirow>.swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap
}

.swiper-container-free-mode>.swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height
}

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000
}

.swiper-wp8-horizontal {
  touch-action: pan-y
}

.swiper-wp8-vertical {
  touch-action: pan-x
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: .3s;
  transform: translate3d(0, 0, 0);
  z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: .2
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer
}

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000
}

.swiper-container-vertical>.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px
}

.swiper-pagination-progress {
  background: rgba(0, 0, 0, .25);
  position: absolute
}

.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  transform-origin: right top
}

.swiper-container-horizontal>.swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0
}

.swiper-container-vertical>.swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0
}

.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, .5)
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000
}

.swiper-container-3d {
  -o-perspective: 1200px;
  perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  -ms-perspective: 1200px
}

.swiper-container-cube,
.swiper-container-flip {
  overflow: visible
}

.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1
}

.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}

.swiper-container-cube .swiper-slide {
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next+.swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .6;
  filter: blur(50px);
  z-index: 0
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, .1)
}

.swiper-container-horizontal>.swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%
}

.swiper-container-vertical>.swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, .5);
  border-radius: 10px;
  left: 0;
  top: 0
}

.swiper-scrollbar-cursor-drag {
  cursor: move
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
      -webkit-transform: rotate(360deg)
  }
}

@keyframes swiper-preloader-spin {
  100% {
      transform: rotate(360deg)
  }
}

.swiper-container.one {
  padding-top: 40px;
  text-align: center;
}

.swiper-container.one .swiper-slide {
  padding: 0 43px;
}

.swiper-container {
  width: 100%;
  padding-bottom: 60px;
}

.swiper-slide img {
  display: block;
  margin: auto;
  width: 100%;
}

.swiper-slide {
  width: 390px;
  height: auto;
  padding: 0 15px;
}
.two .swiper-slide {
  width: 300px;
}
.services .swiper-slide img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-height: 400px;
  max-height: 400px;
  object-fit: cover;
}
.services .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  color: #fff;
  background-color: #ffffff00!important;
}
.services li.nav-item {
  padding: 0px!important;
  cursor: pointer;
}
.services .nav-pills .nav-link {
  text-align: left;
  font-size: 14px;
  padding: 3px 18px;
  line-height: 25px;
}
.swiper-slide .slider-image .preview-icon {
  z-index: -1;
  width: calc(100% - 30px);
}
.swiper-slide .slider-image{
 position: relative;
 width: 291px;
}
.slider_overlay_section{
  position: absolute;
  top: 0;
  height: 100%;
  background: #00000061;
  text-align: center;
  width: 100%;
}
.slider_overlay_section h3{
  color: #fff;
  font-size: 23px;
  position: relative;
  top: 50%;
}
.swiper-slide.swiper-slide-active .slider-image:hover .preview-icon {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  z-index: 2;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
}

.swiper-pagination-bullet {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #ee0f6f;
  border-radius: 10px;
  display: inline-block;
  height: 10px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  width: 26px;
  transition: 0.2s;
}

.swiper-pagination-bullet-active {
  background: rgba(0, 0, 0, 0) linear-gradient(to right, #ee0f6f 0%, #f89482 100%) repeat scroll 0 0;
  border: medium none;
  height: 12px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  width: 12px;
}
.pagination-slider-control{
  width: 100%;
  max-width: 145px;
  position: relative;
  margin: auto;
  top: 36px;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: 'next';
  color: #000!important;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: 'prev';
  color: #000!important;
}
.swiper-button-next, .swiper-button-prev {
  background-image: none!important;
  border: 2px solid #dddd;
  border-radius: 56px;
  padding: 7px 20px;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px!important;
    font-weight: 800;
}
.slider-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0a0a0a94;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
  color: #fff;
  text-align: center;
}
.slider-overlay h3{
  font-size: 18px;
  margin: 20px 4px 8px;
}
.slider-image:hover .slider_overlay_section{
    opacity: 0
}
.swap_slider .slider-image:hover .slider_overlay_section{
    opacity: 1!important;
    transition: opacity 1s!important;
}
.slider-image:hover .slider-overlay{
height: 100%;
} 
/* close */

/* blog slider */
.blog_slider_image{
    height: 290px!important;
    object-fit: cover!important;
}
.blog_slider .slider-blog-title{
  display: block;
  overflow: hidden;
  height: 39px;
  text-overflow: ellipsis;
  font-size: 14px;
  color: #080808;
  margin-bottom: 9px;
}
/* blog slider close*/
/* footer section */
  .footer-top ul{
    list-style: none;
  }
  .footer-top ul{
    list-style: none;
  }
/* close */
/* e-discovery page */
.brdrRed {
  border: 1px red solid !important;
}

.Service_business {
  background: url(images/businesssupport.jpg);
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.imagetext {
  padding: 100px 42px 0;
}

.imagetext h1 {
  font-size: 50px;
}

.imageheading {
  font-family: 'Montserrat-Bold';
  font-size: 41px;
  margin-bottom: 198px;
}

.name h3 {
  font-size: large;
  font-weight: bold;
  font-family: sans-serif;
  padding-left: 10px;
  padding-top: 4px;
}

.name p {
  font-size: 12px;
  font-family: sans-serif;
  padding-left: 10px;
  margin-top: -6px;
}

.para p {
  height: 100px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: wrap;
  padding-left: 10px;
  font-size: 14px;
}

.navLinksColor .nav {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


.navLinksColor .nav-pills .nav-link {
  border: none;
  font-family: system-ui !important;
  border-radius: 0 !important;
  font-size: 15px !important;
  text-align: left;
  font-weight: 500;
  background-color: #fff !important;
  color: #00000080;
  cursor: pointer;
}


.navLinksColor .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background: #F06953 !important;
  border: none;
  font-family: system-ui;
  font-size: 15px !important;
  text-align: left;
  font-weight: 500;
}

.text_alignment .tab-content {
  text-align: justify;
  line-height: 1.9;
  color: #646363e3;
  font-size: 14px;
}
/* close */
.modal-backdrop {
  z-index: 1!important;
}
.modal-backdrop.show {
  opacity: 0!important;
}

.service_modal_header{
    background: #852e13d9;
    color: #fff;
}
.service_modal_header .close{
    color: #fff !important;
    opacity: 1 !important;
    font-weight: 100 !important; 
    font-size: 27px !important;
    position: relative !important; 
    top: -2px !important;
}