/*
Theme Name: Classic Attorney Pro
Theme URI: https://www.theclassictemplates.com/products/portfolio-wordpress-theme
Author: Theclassictemplates
Author URI: https://www.theclassictemplates.com/
Description: Premium Portfolio WordPress Theme is a theme all creatives need to display their work to potential clients. Be it writers, designers, illustrators, cartoonists, web developers, photographers, architects, fashion designers, or marketing and advertising professionals, if you have a portfolio to show, this theme is all you need. Tell your clients about what you do and yourself under “About Me” as it becomes your call-to-action (CTA) tool. With sleek, modern design layouts, well-structured configuration, this theme is cross-platform and all-browsers compatible, making it responsive. The bug and breach free theme reassures for a faster loading website that won’t keep your clients waiting for pages to load.
Version: 0.0.1
Requires at least: 5.0
Tested up to: 6.0
Requires PHP: 5.6
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: classic-attorney-pro
Tags: one-column, right-sidebar, custom-menu, editor-style, featured-images, full-width-template, sticky-post, theme-options, threaded-comments
developed by Theclassictemplates(Theclassictemplates.net), 2023.
Classic Attorney Pro WordPress Theme is released under the terms of GNU GPL

/* Basic Style */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
:root {
  --white: #ffffff;
  --black: #000000;
  --blue: #2B3745;
  --dark-blue: #152131;
  --yellow: #F8BB6A;
}
:root {
  --pri-font: "Montserrat", sans-serif;
  --sec-font: "Cormorant", serif;
  --ter-font: "Lora", serif;
  overflow: auto;
}

#createpackages-image-wrapper img {
  width: 50px !important;
  height: 50px !important;
}
#wpadminbar {
  position: fixed !important;
}
section{
  padding: 4% 0px;
  position: relative;
}
body.home {
  background-color: var(--blue);
}
html body {
  margin: 0;
  padding: 0;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  position: relative;
  color: var(--color-black);
  font-weight: 300;
  font-size: 15px;
  font-family: var(--pri-font);
  overflow-x: hidden;
  background-color:var(--blue);
  overflow-x: hidden;
  width: 100%;
}
.owl-nav{
  display: none;
}
h6{
  font: 600 16px/22px var(--pri-font);
  color: var(--white);
  margin: 0px;
}
h5{
  font: 600 22px/25px var(--sec-font);
  color: var(--white);
  margin: 0px;  
}
h4{
  font: 600 20px/25px var(--sec-font);
  color: var(--yellow);
  margin: 0;    
}
h3,h3 a{
  font: 600 25px/30px var(--sec-font);
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
h1{
  font: 600 22px/25px var(--sec-font);
  color: var(--white);
  margin: 0px;  
}
h22{
  font: 700 45px/55px var(--pri-font);
  color: #fff;
  margin: 0px;
}
p{
  font: 400 14px/20px var(--pri-font);
  color: var(--white);
  margin: 0;
}
#reply-title{
  font: 400 35px/60px var(--pri-font);
  color: var(--blackk);
  margin: 0;
}
.page-title{
  color: #000;
  font: 600 40px/52px var(--pri-font);
  /* text-transform: capitalize; */
}
.heading-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.heading-box h3{
  position: relative;
}
.heading-box h3:after {
  content: '';
  width: 40px;
  height: 4px;
  position: absolute;
  background: var(--yellow);
  bottom: -7px;
  left: 0;
  border-radius: 0px;
  animation: rubberBand 3s infinite alternate ease-in-out;
}
@keyframes rubberBand{
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
      -webkit-transform: scale3d(1.25, 0.75, 1);
      transform: scale3d(1.25, 0.75, 1);
  }
  40% {
      -webkit-transform: scale3d(0.75, 1.25, 1);
      transform: scale3d(0.75, 1.25, 1);
  }
  50% {
      -webkit-transform: scale3d(1.15, 0.85, 1);
      transform: scale3d(1.15, 0.85, 1);
  }
  65% {
      -webkit-transform: scale3d(0.95, 1.05, 1);
      transform: scale3d(0.95, 1.05, 1);
  }
  75% {
      -webkit-transform: scale3d(1.05, 0.95, 1);
      transform: scale3d(1.05, 0.95, 1);
  }
  100% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
  }
}
.btn {
  font: 600 16px/16px var(--ter-font);
  letter-spacing: 0;
  color: var(--dark-blue);
  background: var(--white);
  padding: 12px 20px;
  border-radius: 2px;
  position: relative;
  border: none;
  z-index: 0;
  overflow: hidden;
  box-shadow: 0px 0px 10px 1px var(--yellow);
}
/* .btn:hover:before, .btn:hover:after {
  transition: all 0.4s;
}
.btn:hover:before {
  left: 0;
}
.btn:before {
  left: -100%;
  z-index: -1;
}
.btn:after {
  right: -100%;
  z-index: -1;
}
.btn:hover:after {
  right: 0;
}
.btn:after, .btn:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  background: var(--yellow);
}
.btn:hover {
  color: #fff;
} */

/* .slider:hover .plan-btn */

.slider-btn.btn:hover :before, .slider-btn.btn:hover :after {
  transition: all 0.4s;
}
.slider-btn.btn:hover :before {
  left: 0;
}
.slider-btn.btn:hover :after {
  right: 0;
}
.slider-btn.btn:after, .slider-btn.btn:before{
  background: var(--black);
}

/* .pricing-plans:hover .plan-btn */

.pricing-plans:hover .btn:before, .pricing-plans:hover .btn:after {
  transition: all 0.4s;
}
.pricing-plans:hover .btn:before {
  left: 0;
}
.pricing-plans:hover .btn:after {
  right: 0;
}
/* slider form */
.slider-form-box-outer .submit {
  width: max-content;
}
.slider-form-box-outer .submit p input {
  background: transparent;
  border: none;
  font-family: var(--font-two);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #fff;
  padding: 0;
}
/* plan form */
.packages-form .plan.btn {
  font: 500 14px/20px var(--pri-font);
  color: var(--white);
  background: var(--black);
  border: none;
  border-radius: 6px;
  padding: 8px 28px;
  width: max-content;
}
/* .packages-form .plan {
  width: max-content;
}
.packages-form .plan p input {
  background: transparent;
  border: none;
  font-family: var(--font-two);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #fff;
  padding: 0;
} */
/* owl-nav */
.owl-nav {
  padding-top: 2% !important;
}
.owl-nav .owl-prev,.owl-nav .owl-next{
  width: 36px !important;
  height: 36px !important;
  border: none !important;
}
.owl-nav .owl-prev{
  background: var(--black) !important;
  color: #fff !important;
  margin-right: 2px;
}
.owl-nav .owl-next{
  background: var(--yellow) !important;
  color: #fff !important;
  margin-left: 8px;
}
.owl-nav .owl-next:hover{
  background: var(--black) !important;
}
.owl-nav button{
  border-radius: 6px !important;
}
.owl-nav button i{
  font-size: 18px;
  line-height: 36px;
}
.bypostauthor {
  font-weight: 600;
}
.wpcf7-spinner {
  display: none;
}

/* loader */
.eco-box {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: var(--dark-blue);
  cursor: pointer;
  z-index: 9999;
}
.loader {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  /* background: #FFF; */
  display: inline-block;
  border-radius: 50%;
  box-sizing: border-box;
  transform: rotate(45deg);
}
.loader::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: -24px;
  -webkit-animation: animloader59 4s ease infinite;
  animation: animloader59 4s ease infinite;
}
.loader::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  -webkit-animation: animloader 2s ease infinite;
  animation: animloader 2s ease infinite;
}
@keyframes animloader59{
  0% {
    box-shadow: 0 24px rgba(255, 255, 255, 0), 24px 24px rgba(255, 255, 255, 0), 24px 48px rgba(255, 255, 255, 0), 0px 48px rgba(255, 255, 255, 0);
  }
  12% {
      box-shadow: 0 24px white, 24px 24px rgba(255, 255, 255, 0), 24px 48px rgba(255, 255, 255, 0), 0px 48px rgba(255, 255, 255, 0);
  }
  25% {
      box-shadow: 0 24px white, 24px 24px white, 24px 48px rgba(255, 255, 255, 0), 0px 48px rgba(255, 255, 255, 0);
  }
  37% {
      box-shadow: 0 24px white, 24px 24px white, 24px 48px white, 0px 48px rgba(255, 255, 255, 0);
  }
  50% {
      box-shadow: 0 24px white, 24px 24px white, 24px 48px white, 0px 48px white;
  }
  62% {
      box-shadow: 0 24px rgba(255, 255, 255, 0), 24px 24px white, 24px 48px white, 0px 48px white;
  }
  75% {
      box-shadow: 0 24px rgba(255, 255, 255, 0), 24px 24px rgba(255, 255, 255, 0), 24px 48px white, 0px 48px white;
  }
  87% {
      box-shadow: 0 24px rgba(255, 255, 255, 0), 24px 24px rgba(255, 255, 255, 0), 24px 48px rgba(255, 255, 255, 0), 0px 48px white;
  }
  100% {
      box-shadow: 0 24px rgba(255, 255, 255, 0), 24px 24px rgba(255, 255, 255, 0), 24px 48px rgba(255, 255, 255, 0), 0px 48px rgba(255, 255, 255, 0);
  }
}
@keyframes animloader{
  0% {
    transform: translate(0, 0) rotateX(0) rotateY(0);
  }
  25% {
      transform: translate(100%, 0) rotateX(0) rotateY(180deg);
  }
  50% {
      transform: translate(100%, 100%) rotateX(-180deg) rotateY(180deg);
  }
  75% {
      transform: translate(0, 100%) rotateX(-180deg) rotateY(360deg);
  }
  100% {
      transform: translate(0, 0) rotateX(0) rotateY(360deg);
  }
}
  
/* video popup */
.modal-new {
  display: none;
  position: fixed;
  z-index: 999999999999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,.4);
}
/* Modal Content */
.modal-contents {
  background-color: #fff;
  margin: auto;
  padding: 6px;
  width: 45%;
  transition: 2s;
  border-radius: 10px;
}
/* The Close Button */
 .close-one{
  color: #252525;
  float: right;
  font-size: 28px;
  padding-right: 20px;
  cursor: pointer;
  background: transparent;
  border: none;
  font-weight: 900;
}

/* HEADER ANIMATION */
#menu-primary-menu >li:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#menu-primary-menu >li:hover ul.sub-menu {
  transition: all 0.5s;
}
#menu-primary-menu >li:hover ul.sub-menu li:nth-child(odd) {
  animation-name: menurhs;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  border-radius: 0;
}
#menu-primary-menu >li:hover ul.sub-menu li:nth-child(even) {
  animation-name: menulhs;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  border-radius: 0;
}
#menu-primary-menu >li:hover ul.sub-menu li:hover{
  background-color: var(--yellow);
}
#menu-primary-menu li ul.sub-menu li a {
  font-size: 14px;
  position: relative;
  color: #000;
  transition: all 0.4s;
}
header.site-header ul.sub-menu li{
  background-color: var(--yellow);
}
.main-navigation ul ul li a{
  color: #fff;
}
@keyframes menulhs {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes menurhs {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}


/* faq page */
.accordion p.faq-blank {
  font: 600 20px/20px var(--sec-font);
  padding-top: 17px;
}
.faq-quest-box-para {
  color: var(--yellow);
  font: 600 22px/25px var(--sec-font);
}
#faq .accordion-button.collapsed {
  background: transparent;
  padding: 0px;
  color: #fff;
  font: 600 16px/40px var(--pri-font);
}
#faq .accordion-body{
  color: #fff;
  padding: 0px;
  font: 400 14px/20px var(--pri-font);
}
#faq .accordion-item{
  background: var(--blue);
  margin: 28px 0px;
  padding: 5px 10px;
}
#faq .accordion-item:has(.accordion-collapse.show){
  border: none;
  background: var(--blue);
  border-radius: 0px;
  margin: 15px 0px;
  padding: 20px 15px;
  box-shadow: 0px 0px 10px px var(--yellow) !important;
}
#faq .accordion-button{
  background: transparent;
  color: #fff;
  padding: 0;
  font: 600 16px/40px var(--pri-font);
}
#faq .accordion-collapse.collapse.show{
  width: 90%;
}
#faq .accordion-button.collapsed::after {
  content: '\f178';
}
#faq .accordion-button::after {
  content: '\f178';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  background-image: unset !important;
  height: unset !important;
  width: unset !important;
  transform: unset !important;
}
#faq .accordion-button:not(.collapsed)::before {
  content: '';
  width: 10px;
  height: 2px;
  background: var(--white);
  position: absolute;
  right: 10px;
  align-self: center;
}
#faq .accordion-button.collapsed::before {
  content: '';
  width: 10px;
  height: 2px;
  background: #e8e8e8;
  position: absolute;
  right: 10px;
  align-self: center;
}
.faq-image-box{
  height: 450px;
}
.faq-form {
  position: relative;
}
.contains-faq-search {
  position: absolute;
  width: 20px;
  top: 18px;
  right: 25px;
  z-index: 0;
}
.faq-search-container .faq-search-form label {
  width: 100%;
  background: var(--grey);
  border: none;
  border-radius: 50px;
}
.faq-search-container {
  box-shadow: 0px 0px 10px 2px var(--yellow);
}
.faq-search-icon svg {
  width: 20px;
  height: 20px;
}
.faq-search-container [type=search] {
  font: 400 14px/20px Montserrat;
  background: var(--grey);
  border: none;
  padding: 20px;
  width: 85%;
  outline: none;
  color: #fff;
}
#custom-faq-search-form input::placeholder{
  color: #fff;
}
#faq .faq-search-icon i{
  color: #fff;
  font-size: 18px;
}
.faq-search-container ::-webkit-input-placeholder {
  color: #fff;
}
.faq-search-submit {
  font-size: 0;
  border: none;
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
}
.faq-form-title{
  text-align: center;
  color: var(--yellow);
  padding: 20px 0px;
}
#faq .accordion-item:hover{
  box-shadow: 0px 0px 10px 0px var(--yellow);
}
.faq-image1 {
  position: absolute;
  left: -100px;
  transform: rotate(-10deg);
  border: 7px solid var(--blue);
  height: 400px;
  width: fit-content;
  z-index: 1;
}
.faq-image2 {
  position: absolute;
  left: 0px;
  transform: rotate(10deg);
  border: 7px solid var(--blue);
  height: 350px;
  width: fit-content;
  z-index: 1;
  top: 50px;
  right: 0;
  margin: auto;
}
.faq-main-img-inner-two,.faq-main-img-inner-one{
  width: 100%;
  height: 100%;
}
#faq img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* contact */
.get-contact-head-content-box h3,.get-contact-head-content-box h5,.get-contact-head-content-box p{
  color: #000;
}

.contact-outer-form{
  gap: 50px 0px;
  justify-content: space-between;
}
.get-contact-small-head {
  padding: 5% 10px 5% 0px;
}
.contact-touch-form-box .wpcf7 form.invalid .wpcf7-response-output{
  color: #fff;
}
.checkbox .wpcf7-list-item-label{
  color: var(--yellow);
  font: 300 14px/14px var(--pri-font);
  padding-left: 6px;
}
.contact-touch-form-box form .get:nth-child(5)-box input[type="text"]{
  padding-bottom: 40px;
}
.contact-touch-form-box .wpcf7-checkbox input {
  background: transparent;
}
.contact-detail-box svg path{
  fill: var(--yellow);
}
.contact-touch-form-box .wpcf7-checkbox input[type=checkbox]:before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  border: 1px solid var(--yellow);
  border-radius: 3px;
  background-color: #fff;
  padding: 1px;
}
.contact-touch-form-box .wpcf7-checkbox input[type=checkbox] {
  position: relative;
  cursor: pointer;
}
.contact-touch-form-box .wpcf7-checkbox input {
  background: transparent;
}
.contact-touch-form-box form .submit.btn{
  font: 500 16px/20px var(--pri-font);
  padding: 8px 45px 8px 15px;
  width: max-content;
  box-shadow: none;
}
.contact-touch-form-box form .submit input[type="submit"] {
  background: transparent;
  border: none;
  color: var(--dark-blue);
  font: 800 18px/25px var(--sec-font);
}
.contact-touch-form-box form .submit.btn:hover{
  /* background: var(--yellow);
  color: #fff; */
}
.contact-touch-form-box form .submit.btn::after {
  content: "";
  background-image: url(assets/images/law.svg) !important;
  font-family: 'FontAwesome';
  color: #000;
  font-size: 14px;
  text-align: center;
  margin-right: 6px;
  position: absolute;
  right: 15px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  top: 0px;
  z-index: 1;
  background-repeat: no-repeat;
  bottom: 0;
  margin: auto;
}
.contact-bg-colr{
  background: var(--yellow) 0% 0% no-repeat padding-box;
  opacity: 0.1;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
input[type="text"], input[type="tel"], input[type="email"], input[type="number"], input[type="date"], input[type="phone"], input[type="password"], textarea{
  background: #fff;
}
.contact-form-content-box { 
  background: #ffffff;
  padding: 25px 35px;
  box-shadow: 0px 1px 2px 0px #999999;
}
.contact-touch-form-box input[type="text"], .contact-touch-form-box input[type="tel"], .contact-touch-form-box input[type="email"], .contact-touch-form-box input[type="number"], .contact-touch-form-box input[type="date"], .contact-touch-form-box input[type="phone"], .contact-touch-form-box input[type="password"], .contact-touch-form-box textarea, .contact-touch-form-box select {
  font-size: 14px !important;
  padding: 14px 18px !important;
  width: 100%;
  border-radius: 0px;
  line-height: 16px;
  font-family: var(--pri-font);
  border: none;
  box-shadow: 0px 2px 3px 0px #999999;
}
/* login page */
.modal.modal-login {
  position: fixed;
  z-index: 2147483647;
  padding-top: 100px;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: auto;
}
#loginModal .modal-content {
  width: 50%;
  margin: 0 auto;
  border: none;
}
#myNewModal .close-one, #loginModal .close, #bsServiceModal .close-one, #bsserviceAppointment .close-one {
  color: #252525;
  cursor: pointer;
  background: #ECECEC;
  border: none;
  font-weight: 900;
  position: absolute;
  right: -15px;
  height: 60px;
  width: 60px;
  top: -20px;
  border-radius: 50%;
  padding-top: 6px;
  text-align: center;
}
#loginform {
  padding: 30px 25px;
}
#loginModal .close i {
  padding-top: 7px;
  font-size: 35px;
}
#loginform label {
  font: 500 15px/32px var(--pri-font);
  color: #000000;
}
#loginform p{
  margin: 0 0 15px 0;
}
#loginform input {
  border: 1px solid #bdbdbd;
}
#loginform input[type="text"], #loginform input[type="tel"], #loginform input[type="email"], #loginform input[type="phno"], #loginform input[type="password"], #loginform textarea{
  font-size: 16px;
  padding: 10px 10px;
  margin: 0 0 0px 0;
  height: auto;
  width: 100%;
  background: transparent;
}
#loginform #wp-submit {
  background: var(--yellow);
  border-radius: 8px;
  padding: 6px 30px;
  font: 500 16px/28px var(--pri-font);
  letter-spacing: 0px;
  color: #FFFFFF;
  border: none;
}



/* single blog review form */
#comments textarea {
  height: 150px;
  background-color: #ffffff;
  border-color: #f1f1f1;
  border: 1px solid #cfcfcf;
  border-radius: 5px;
}
#comments input[type="text"],#comments input[type="tel"],#comments input[type="email"],#comments input[type="number"],#comments input[type="date"],#comments input[type="phone"],#comments input[type="password"],#comments textarea {
  border: 1px solid #cfcfcf;
  padding: 12px 10px;
  font-size: 14px;
  color: #fff;
  background: #ffffff00;
  height: auto;
  border-radius: 0px;
  width: 100%;
}
div#comments {
  background: var(--dark-blue);
  padding: 3rem 2rem 2rem 2rem;
  box-shadow: 0px 0px 5px 2px var(--yellow);
}
#respond {
  padding: 1.5rem 2rem;
  border-radius: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
#wp-comment-cookies-consent{
  align-self: baseline;
  position: relative;
  top: 8px;
}
.comment-form-cookies-consent{
  display: flex;
}
.comment-form-cookies-consent label{
  margin-left: 4px !important;
}
#comments{
  float: left;
  width: 100%;
  margin-top: 10px;
}
#comments .comment-body{
  color: #fff;
  font: 500 14px/20px var(--pri-font);
  padding: 20px;
  border: 1px solid #646464;
  margin-top: 15px;
}
.comment-list{
  color: #fff;
}
#comments h2.comments-title{
  font-size:20px;
  font-weight:bold;
  color: #fff;
}
#comments h3.comment-reply-title{
  font-size:20px;
  font-weight:bold;
  clear:both;
}
#comments input[type="submit"].submit {
  background: var(--white);
  color: var(--blue);
  border: unset;
  padding: 10px 45px 10px 15px;
  font:600 16px/22px var(--ter-font);
  border-radius: 0px;
}
#comments p.form-submit:after {
  content: "";
  background-image: url(assets/images/law.svg) !important;
  font-family: 'FontAwesome';
  color: #000;
  font-size: 14px;
  text-align: center;
  margin-right: 6px;
  position: absolute;
  right: 15px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  top: 0px;
  z-index: 999999;
  background-repeat: no-repeat;
  bottom: 0;
  margin: auto;
}
#comments p.form-submit{
  position: relative;
  width: fit-content;
  z-index: 2;
}

#comments a time{
  color:#000;
  font-weight:bold;
  font-size:12px;
}
#comments .reply{
  text-align:right;
}
#comments .comment-metadata{
  width:90%;
  float:left;
  padding:1% 0 0 0;
}
#comments .comment-content{
  width:90%;
  text-align:left;
  margin-left:7%;
}
#comments .comment-author{
  margin-bottom: 1em;
}
#comments h2#reply-title {
  display: inline-table;
  font-family: var(--sec-font);
  color: var(--yellow);
}
#comments .comment-author.vcard img {
  padding: 2px;
}
/* free guide */
.page-template-free-consultation .middle-content{
 margin: 4% 0px;
}
.free-consulation-bold-para {
  font: 600 15px/20px var(--pri-font);
}
.privacy-heading,.free-consulation-heading,.terms-conditions-heading{
  font: 600 25px/40px var(--sec-font);
}
/* service page */
.practice-area-image-box{
  height: 250px;
  width: 100%;
}
.practice-area-image-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* single service */
#singleService .single-srevice-title a{
  font: 700 24px/24px var(--pri-font);
  color: var(--yellow);
}
#singleService .service-image{
  height: 430px;
}
#singleService .service-image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#singleService .nav-pills .nav-link {
  color: #fff;
  padding: 15px 35px;
  font: 600 15px/25px var(--pri-font);
  border-radius: 6px;
  box-shadow: 0px 0px 6px 0px var(--yellow);
  width: 90%;
  text-align: center;
  background-color: var(--dark-blue);
}
#singleService .nav-pills .nav-link.active {
  background-color: var(--yellow);
}
#singleService .nav-pills .nav-item{
  width: 100%;
}
#singleService .top_title {
    font: normal normal 600 26px/30px var(--pri-font);
    color: var(--black);
}
#singleService .about_me p span,#singleService .about_me p{
    color: #000;
}
#singleService .about_me{
  box-shadow: rgb(0 0 0/10%) 0px 0px 12px;
  background-color: #fff;
  border-radius: 25px;
  padding: 40px;
  margin-right: 10%;
}
.sidebar4 .add-title i{
  font-size: 20px;
}
#services-page .heading-box{
  display: none;
}
.single-post-content {
  font: 400 16px/25px var(--pri-font);
}
.services-list-items{
  padding-top: 20px;
  list-style-type: decimal;
  padding-left: 18px;
}
.services-list-items li,.service-para{
  font: normal normal normal 14px/25px var(--pri-font);
  color: var(--white);
}
.single-post-content li {
  font: 600 15px/30px var(--pri-font);
}
.single-services-img-box , .single-services-img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}













/* features */
.our-features-box {
  width: 50px;
  height: 50px;
}
.our-features-box .our-features-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.our-features-inner-box:hover .our-features-img{
  animation: flipInX 2s infinite;
}
.our-features-content-box{
  width: 95%;
}
.our-features-inner-boxed {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* about */
#about-sec .heading-box{
  padding: 40px 0px 40px 40px;
}
.our-about-box {
  background: var(--dark-blue);
  border: 1px solid var(--yellow);
  box-shadow: 0px 0px 20px 4px var(--yellow);
  margin: 10% 0px 5% 0px;
}
.about-paragraph {
  width: 92%;
  font: 400 13px/20px var(--pri-font);
}
.About-image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.about-main-img-inner-one{
  width: 100%;
  height: 100%;
}
.about-main-img-one {
  position: absolute;
  bottom: -30px;
  transform: rotate(-10deg);
  border: 8px solid var(--blue);
  height: 500px;
  width: 450px;
}
.about-main-img-two {
  position: absolute;
  right: 0;
  bottom: -20px;
  transform: rotate(12deg);
  border: 8px solid var(--blue);
  height: 320px;
  width: 270px;
}
.about-main-img-inner-two{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
a.about-btn.btn {
  font: 600 16px/22px var(--ter-font);
  padding: 8px 16px;
  transition: all 0.7s ease 0s;
}
a.about-btn.btn span{
  position: relative;
  /* top: -2px; */
}
a.about-btn.btn:hover{
  /* color: #fff; */
}
a.about-btn.btn:before, a.about-btn.btn:after, a.about-btn.btn .btn-span:before, a.about-btn.btn .btn-span:after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--yellow);
  opacity: 0.6;
  position: absolute;
  top: -90px;
  left: 0;
  z-index: -1;
  transition: all 0.4s ease 0.2s;
}
a.about-btn.btn:after {
  opacity: 1;
  z-index: -2;
  transition: all 0.4s ease 0.3s;
}
a.about-btn.btn:hover:before, a.about-btn.btn:hover:after, a.about-btn.btn:hover .btn-span:before, a.about-btn.btn:hover .btn-span:after {
  top: 0;
}
a.about-btn.btn .btn-span:before, a.about-btn.btn .btn-span:after {
  opacity: 0.4;
  z-index: -2;
  transition: all 0.4s ease 0.1s;
}
a.about-btn.btn .btn-span:after {
  opacity: 0.2;
  transition: all 0.4s ease 0s;
}




/* 

.header-contact-button-box:before, .header-contact-button-box:after, .header-contact-button-box .a.header-contact-btn.btn:before, .header-contact-button-box .a.header-contact-btn.btn:after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--yellow);
  opacity: 0.6;
  position: absolute;
  top: -90px;
  left: 0;
  z-index: -1;
  transition: all 0.4s ease 0.2s;
}
.header-contact-button-box:after {
  opacity: 1;
  z-index: -2;
  transition: all 0.4s ease 0.3s;
}
.header-contact-button-box:hover:before, .header-contact-button-box:hover:after, .header-contact-button-box:hover .a.header-contact-btn.btn:before, .header-contact-button-box:hover .a.header-contact-btn.btn:after {
  top: 0;
}
.header-contact-button-box .a.header-contact-btn.btn:before, .header-contact-button-box .a.header-contact-btn.btn:after {
  opacity: 0.4;
  z-index: -2;
  transition: all 0.4s ease 0.1s;
}
.header-contact-button-box .a.header-contact-btn.btn:after {
  opacity: 0.2;
  transition: all 0.4s ease 0s;
} */

/* our attorney */
.attorney-bottom-svg {
  position: absolute;
  bottom: -32%;
  left: -15%;
}
.attorney-bottom-svg svg{
  width: 245px;
}
.our-attorney-image-box:before {
  content: '';
  border: 1px solid var(--yellow);
  position: absolute;
  bottom: -1px;
  left: 10px;
  width: 100%;
  height: 95%;
}
.our-attorney-image-box {
  width: 260px;
  height: 320px;
  position: relative;
  left: 40px;
}
.our-attorney-image-box:after {
  content: '';
  width: 260px;
  height: 306px;
  background: var(--dark-blue);
  border: 1px solid var(--yellow);
  position: absolute;
  left: 0;
  z-index: -1;
  margin-top: 10%;
}

.our-attorney-image-box img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
}
/* .attorney-bottom-svg {
  position: absolute;
  bottom: -20%;
  left: -20%;
}
.our-attorney-image-box {
  width: 310px;
  height: 330px;
  position: relative;
}
.our-attorney-image-box:after {
  content: '';
  width: 310px;
  height: 310px;
  background: var(--dark-blue);
  border: 1px solid var(--yellow);
  position: absolute;
  left: 0;
  z-index: -1;
  margin-top: 10%;
}
.our-attorney-image-box:before {
  content: '';
  border: 1px solid var(--yellow);
  position: absolute;
  bottom: -1px;
  left: 10px;
  width: 100%;
  height: 94%;
} */
h5.our-attorney-title,.our-attorney-certificate-title {
  color: var(--yellow);
  font: 600 20px/55px var(--sec-font);
  position: relative;
}
h5.our-attorney-title:after{
  content: '';
  background: var(--yellow);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: 0px 0px 5px 0px var(--yellow);
}
.our-attorney-outer-box{
  height: 550px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.attorney-information-outer-box{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.attorney-meta-image img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.attorney-meta-image{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.attorney-meta-image .attorney-main-img-one,.attorney-meta-image .attorney-main-img-two{
  width: 270px;
  height: 220px;
  position: relative;
}
.our-attorney-svg-image svg{
  width: 100%;
}
#our-attorney .attorney-main-img-two:after {
  /* content: '';
  position: absolute;
  bottom: 0px;
  height: 100%;
  width: 100%;
  background: #0000003b;
  right: 0px; */
}
/* why choose us */
.circle-carousel {
  position: relative;
  padding-top: 110%;
  margin-top: 4%;
}
.circle-carousel .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.circle-carousel .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 0;
  opacity: 0;
}
.circle-carousel .slide.active {
  z-index: 1;
  opacity: 1;
}
.circle-carousel .pagination {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  transition-property: transform;
  transition-timing-function: ease-out;
  pointer-events: none;
  user-select: none;
}
.circle-carousel .pagination .dot {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 53%;
  transform: translate(-65%, -65%);
  width: 165px;
  height: 200px;
  border-radius: 0%;
  pointer-events: auto;
  transition: 0.3s;
  background: black;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.circle-carousel .pagination .dot:hover {
  transform: translate(-66%, -66%) scale(1.05);
  cursor: pointer;
}
.circle-carousel .pagination .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.item.why-choose-us-outer-box.active .dot {
  border: 1px solid var(--yellow);
  box-shadow: 0px 0px 5px 2px var(--yellow);
}
.circle-carousel .next, .circle-carousel .prev {
  position: absolute;
  bottom: 6%;
  z-index: 1;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  transition: 0.3s;
  user-select: none;
}
.circle-carousel .next:before, .circle-carousel .prev:before {
  content: "";
  position: absolute;
  top: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-color: transparent black;
  transition: 0.3s;
}
.circle-carousel .next:hover, .circle-carousel .prev:hover {
  cursor: pointer;
  color: black;
}
.circle-carousel .next:hover:before, .circle-carousel .prev:hover:before {
  border-color: transparent white;
  transform: translate(-50%, -50%) scale(1.05);
}
.circle-carousel .next {
  right: 5%;
}
.circle-carousel .next:before {
  left: 65%;
  border-width: 30px 0 30px 70px;
}
.circle-carousel .prev {
  left: 5%;
}
.circle-carousel .prev:before {
  left: 35%;
  border-width: 30px 70px 30px 0;
}
.why-choose-main-inner-box{
  height: 530px;
  overflow: hidden;
  padding: 30px 0px 30px 0px;
}
.why-choose-us-box{
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10px 8px;
}
.why-choose-us-box:after {
  background: #2B374580;
  opacity: 0.9;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  margin: auto;
}
h6.why-choose-us-title {
  font: 600 15px/18px var(--pri-font);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.why-choose-us-content-box{
  padding: 6px 6px;
  height: 98%;
  width: 98%;
  margin: auto;
}
.why-choose-us-text{
  color: #fff;
  font: 400 13px/18px var(--pri-font);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.why-choose-us-title-content-box{
  position: absolute;
  bottom: 50px;
  justify-content: center;
  left: 0;
  right: 0;
  margin: auto;
}
.why-choose-us-title-content-box h5{
  text-align: -webkit-center;
  width: 50%;
  margin: auto;
  color: var(--yellow);
}
.why-choose-us-title-content-box p{
  text-align: center;
  width: 90%;
  margin: auto;
}
/* case result */

.case-result-outer-box{
  width: fit-content;
  margin: auto;
  position: relative;
}
.multi-graph {
  width: 600px;
  height: 300px;
  position: relative;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}
.multi-graph:before {
  content: "";
  width: 600px;
  height: 300px;
  border: 50px solid rgba(0, 0, 0, 0);
  border-bottom: none;
  position: absolute;
  box-sizing: border-box;
  transform-origin: 50% 0%;
  border-radius: 300px 300px 0 0;
  left: 0;
  top: 0;
}
.multi-graph .graph {
  width: 600px;
  height: 300px;
  border: 50px solid var(--fill);
  border-top: none;
  position: absolute;
  transform-origin: 50% 0% 0;
  border-radius: 0 0 300px 300px;
  left: 0;
  top: 100%;
  /* animation: progressBar 8s ease-in-out; */
  animation-fill-mode:both; 
  transform: rotate(calc(1deg * ( var(--percentage) * 1.8 )));
  box-sizing: border-box;
  cursor: pointer;
}
@keyframes progressBar {
  0% { width: 0; }
  100% { width: 100%; }
}
.multi-graph .graph:nth-child(3) {
  border: 38px solid var(--fill);
  border-top: none !important;
  top: 102%;
}
.multi-graph .graph:nth-child(2) {
  border: 25px solid var(--fill);
  border-top: none;
  top: 105%;
}
.multi-graph .graph:hover:after {
  left: 30px;
}
@keyframes fillAnimation {
  0% {
    transform: rotate(-45deg);
  }
  50% {
    transform: rotate(135deg);
  }
}
@keyframes fillGraphAnimation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}
.graph-title-box:nth-child(3){
  text-align: end;
  position: absolute;
  top: 0;
  bottom: 0;
  height: fit-content;
  margin: auto;
  left: -40%;
}
.graph-title-box:nth-child(2){
  text-align: start;
  position: absolute;
  top: -20%;
  right: -15%;
  margin: auto;
}
.graph-title-box:nth-child(1) {
  text-align: start;
  position: absolute;
  top: 35%;
  right: -45%;
}
.graph-title-box:nth-child(1) .graph-square-box{
  width: 38px;
}
.graph-title-box:nth-child(2) .graph-square-box{
  width: 30px;
}
.graph-title-box:nth-child(1) .graph-title,.graph-title-box:nth-child(2) .graph-title{
  flex-direction: row-reverse;
}
.graph-title-box{
  width: 28%;
  font: 600 14px/20px var(--pri-font);
  text-align: start;
  color: #fff;
}
.graph-square-box {
  width: 33px;
  height: 20px;
  background: var(--fill);
  border: 1px solid var(--yellow);
  margin: 0px 10px;
  box-shadow: 0px 0px 3px 1px var(--yellow);
  position: relative;
}
.graph-title-box:nth-child(1) .graph-square-box:after {
  position: absolute;
  content: '';
  right: 15px;
  width: 140px;
  height: 1px;
  background: #fff;
  transform: rotate(-30deg);
  top: 48px;
}
.graph-title-box:nth-child(2) .graph-square-box:after {
  position: absolute;
  content: '';
  left: -95px;
  top: 55px;
  width: 110px;
  height: 1px;
  background: #fff;
  transform: rotate(-55deg);
}
.graph-title-box:nth-child(3) .graph-square-box:after{
  position: absolute;
  content: '';
  left: 20px;
  top: 35px;
  width: 110px;
  height: 1px;
  background: #fff;
  transform: rotate(28deg);
}
.graph-percent-box {
  font: 600 16px/25px var(--pri-font);
  color: var(--yellow);
}
.multi-graph-title-box{
  width: 65%;
  margin: auto;
  text-align: center;
  top: 20%;
  position: relative;
  z-index: 2;
}
.multi-graph-title-box h5{
  color: var(--yellow);
  font: 600 20px/25px var(--sec-font);
}
.multi-graph-text{
  font: 600 14px/22px var(--pri-font);
}
.case-result-outer-box:after {
  content: '';
  height: 1px;
  background: #fff;
  width: 725px;
  right: -65px;
  bottom: -1px;
  position: absolute;
  margin: auto;
}

/* testimonial */
.why-choose-main-inner-box,.testimonial-outer-box,.our-expertise-main-outer-box,.faq-grid-box,.our-video-grid-box{
  background: var(--dark-blue);
  border: 1px solid var(--yellow);
  box-shadow: 0px 0px 20px 4px var(--yellow);
  padding: 30px;
}
.our-expertise-top-svg,.testimonial-top-svg,.faq-top-svg,.our-video-top-svg,.why-choose-top-svg {
  position: absolute;
  top: -80px;
  right: -80px;
  z-index: -1;
}
.our-expertise-bottom-svg,.testimonial-bottom-svg,.faq-bottom-svg,.our-video-bottom-svg,.why-choose-bottom-svg {
  position: absolute;
  bottom: -80px;
  left: -80px;
  z-index: -1;
}
.testimonial-title-box {
  color: var(--yellow);
  width: fit-content;
  padding-right: 8%;
  border-bottom: 1px solid var(--yellow);
  font: 600 20px/40px var(--sec-font);
}
.testimonial-contents{
  font: 600 15px/15px var(--pri-font);
}
.testimonial-para-content-box{
  color: var(--white);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
#testimonial .heading-box p{
  font: normal normal normal 14px/25px var(--pri-font);
}
.testimonial-client-image {
  width: 250px;
  height: 70px;
}
.testimonial-client-image img {
  width: 100% !important;
  height: 100%;
  border-radius: 0%;
  object-fit: cover;
}
.testimonial-content-box {
  padding: 30px;
  border: 1px solid var(--yellow);
}
.testimonial-content-box:after {
  content: '';
  border: 1px solid var(--yellow);
  position: absolute;
  top: 10px;
  width: 100%;
  height: 100%;
  left: 10px;
  bottom: 10px;
  z-index: -1;
}
button.slick-next.slick-arrow,button.slick-prev.slick-arrow{
  display: none !important;
}
.slick-dots{
  display: flex;
  margin: auto;
  left: 0;
  justify-content: center;
  list-style-type: none;
}
.slick-dots .slick-active button{
  width: 45px;
  height: 4px;
  background: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 0px;
}
.slick-dots li button{
  width: 18px;
  height: 4px;
  background: var(--yellow);
  border: none;
  border-radius: 10px;
  font-size: 0px;
  margin: 0 4px;
}


/* service */
.icon-box i {
  color: #ffff;
  width: 20px;
  height: 20px;
  line-height: 20px;
  transform: rotate(-45deg);
}
.icon-box {
  width: 27px;
  height: 27px;
  position: absolute;
  right: 0;
  bottom: 0;
  line-height: 27px;
  text-align: center;
  background: var(--blue);
  display: none;
}
.services-para{
  position: absolute;
  bottom: 15px;
  right: 0px;
  font: 400 15px/21px var(--pri-font);
  z-index: 1;
}
.services-image:after {
  position: absolute;
  content: '';
  background: var(--dark-blue);
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  clip-path: polygon(100% 0%, 83.173% 0%, 69.763% 0%, 0% 100%, 100% 100%, 100% 0%);
  z-index: 0;
  opacity: 0.8;
  bottom: 0;
}
.services-outer-box .services-title{
  color: var(--yellow);
}
.services-progress-box{
  height: 400px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.services-outer-box:nth-child(1),.services-outer-box:hover {
  background: var(--dark-blue);
  box-shadow: 0px 0px 10px 2px var(--yellow);
  filter: brightness(1);
}
.services-outer-box:nth-child(1) .icon-box, .services-outer-box:hover .icon-box{
  display: block !important;
}
.services-outer-box{
  padding: 10px 40px 10px 15px;
  margin: 10px 15px 10px 5px;
  filter: brightness(0.6);
}
.services-progress-box::-webkit-scrollbar,.our-attorney-outer-box::-webkit-scrollbar {
  width: 2px;
}
.services-progress-box::-webkit-scrollbar-track,.our-attorney-outer-box::-webkit-scrollbar-track {
  background: #4D627A;
  margin-top: 5px;
  margin-bottom: 5px;
}
.services-progress-box::-webkit-scrollbar-thumb,.our-attorney-outer-box::-webkit-scrollbar-thumb{
  background: var(--yellow);
  height: 80px;
}
.services-image{
  height: 400px;
  object-fit: cover;
}
.services-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-image-title{
  align-self: start;
  color: #000;
  padding: 10px 5px 10px 8px;
  position: relative;
  font: 600 15px/22px var(--pri-font);
  z-index: 1;
}
.services-image-title:after {
  clip-path: polygon(0 0, 100% 0, 73% 100%, 0 100%);
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  z-index: -1;
}
.services-image-over-contents-box{
  position: absolute;
  bottom: 0px;
  padding: 20px;
  justify-content: space-between;
  height: 275px;
  width: 100%;
}
/* our-expertise */
.our-expertise-main-box{
  padding: 3% 0;
}
.progress-text-wrap{
  position: absolute;
  width: max-content;
  height: 28px;
  transform: rotate(-90deg);
  left: -11px;
  margin: 0 auto;
  background: #fff;
  border-radius: 5px;
  padding: 2px 10px;
  bottom: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.animated-progress {
  height: 25px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: rgb(200 200 200/15%);
  padding: 6px;
}
.animated-progress .progress-width {
  height: 12px;
  display: flex;
  justify-content: center;
  border-radius: 0;
  color: #FFFFFF;
  box-shadow: 0px 0px 5px 1px var(--yellow);
}
.progress-blue .progress-width{
  background-color: #fff;
  font-size: 0px;
}
.our-expertise-percentage-text {
  font: 600 16px/16px var(--pri-font);
}
.our-expertise-image {
  height: 320px;
}
.our-expertise-image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--yellow);
}
.our-expertise-us-title {
  font: 600 15px/22px var(--pri-font);
}
.our-expertise-us-box .our-expertise-us-title {
  font: 600 20px/22px var(--sec-font);
}
.our-expertise-us-text {
  font: 400 14px/18px var(--pri-font);
  width: 90%;
}










/* blog */
#blog .owl-carousel .owl-stage-outer{
  padding: 8px
}
.blog-contents-box h6 {
  font: 600 16px/25px var(--pri-font);
  color: var(--yellow);
}
.blog-contents-box h6 a{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.blog-image-box{
  width: 100%;
  position: relative;
}
#blog .blog-image-box{
  width: 350px;
  height: 450px;
  position: relative;
}
.blog-image-box img{
  width: 100%;
  height: 80%;
  object-fit: cover;
}
.blog-date-admin-box,.post-mins-text-box {
  color: #fff;
  font: 400 14px/14px var(--pri-font);
}
.post-mins-text-box:after {
  content: '';
  position: absolute;
  left: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50px;
  background: #fff;
  top: 0;
  bottom: 0;
  margin: auto;
}
.blog-image-box:hover .blog-contents-box h5{
  color: var(--daek-blue);
}
#blog .item.active .blog-image-box {
  width: 542px;
  height: 450px;
}
#blog .item.active .blog-image-box img{
  background: var(--dark-blue);
  box-shadow: 0px 0px 10px 2px var(--yellow);
}
.blog-category {
  position: absolute;
  top: 10px;
  left: 0;
  width: fit-content;
  padding: 12px 18px;
  background: var(--blue);
  font: 600 14px/14px var(--pri-font);
  color: #fff;
}



/* our video */
.video-controls{
  -webkit-background-clip: padding-box;
 background-clip: padding-box;
  position: absolute;
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.our-video-grid-box .video-controls:after{
  content: '';
  background: rgb(242 242 242/50%);
  position: absolute;
  height: 95px;
  width: 95px;
}
.our-video-grid-box:hover .video-controls:after{
  transform: rotate(45deg);
  transition: all 0.5s ease-in-out 0s;
}
.video-controls i.fa.fa-pause{
  display: none;
}
.video-controls i {
  font-size: 25px;
  color: var(--white);
  z-index: 1;
}
.container .controls {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 95%;
  display: flex;
  justify-content: space-around;
  transition: opacity 0.4s;
}
.controls .timeline .bar .inner {
  background:#F86F03;
  width: 0%;
  height: 100%;
}
.container .controls .timeline {
  flex: 1;
  display: flex;
  align-items: center;
  border: none;
}
.container .controls .timeline .bar{
  background: #fff;
  height: 6px;
  flex: 1;
  border-radius: 10px;
}
.video-setting i{
  color: #ffffff;
}
.video-setting{
  width: 60px;
  height: 20px;
  position: absolute;
  bottom: -20px;
  right: 40px;
  text-align: end;
}
.video-fullscreen{
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: -20px;
  right: 0px;
}
.timings{
  position: absolute;
  bottom: -22px;
  left: 10px;
  color: #fff;
}
.video-setting-wrap{
  position: absolute;
  bottom: -1px;
  right: 30px;
  color: #fff;
  width: max-content;
}
.video-setting:hover .video-setting-wrap {
  display: block !important;
}
#viewDemoVideo{
  height: 510px;
  object-fit: cover;
  width: 100%;
}
.video-controls {
  cursor: pointer;
}
.lawyers-video-playlist {
  background: var(--blue);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0px;
  padding: 20px;
  margin: auto;
  width: 345px;
  height: 450px;
}
.playlist-inner-box{
  height: 400px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.playlist-inner-box::-webkit-scrollbar {
  width: 2px;
  padding-right: 30px;
}
.playlist-inner-box::-webkit-scrollbar-track {
  background: #4D627A;
  margin-top: 25px;
  margin-bottom: 25px;
  margin-right: 30px;
}
.playlist-inner-box::-webkit-scrollbar-thumb {
  background: var(--yellow);
  height: 80px;
  padding-right: 30px;
}

.playlist-client-video{
  width: 100px;
  height: 75px;
}
#our-video .playlist-client-video-box .playlist-icon {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  color: #fff;
  width: fit-content;
  height: fit-content;
  font-size: 18px;
  z-index: 1;
}
#our-video .playlist-client-video-box:nth-child(1) .playlist-icon,#our-video .playlist-client-video-box:nth-child(1) .playlist-client-video:after {
  display: block;
}
#our-video .playlist-client-video-box .playlist-client-video:after{
  display: none;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.playlist-client-video-box:hover .playlist-icon, .playlist-client-video-box:hover .playlist-client-video:after{
  display: block !important;
}
.playlist-client-video img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.video-client-details h6{
  font: 600 15px/22px var(--pri-font);
}
.video-client-details p{
  font: 400 13px/20px var(--pri-font);
}



/* partner */
.patner-image {
  width: 200px;
  height: 150px;
  margin: auto;
}
.patner-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#partners .owl-carousel .owl-stage-outer{
  position: relative;
}
#partners .owl-carousel .owl-stage-outer:after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  left: 0;
  right: 0;
  background-image: linear-gradient(to right, var(--yellow) 45%, rgba(255, 255, 255, 0) 0%);
  background-position: top;
  background-size: 20px 2px;
  background-repeat: repeat-x;
  margin: auto;
  z-index: -1;
}

/* newsletter */
section#newsletter:before {
  content: '';
  background-color: var(--dark-blue);
  inset: 0 45% 0 0;
  position: absolute;
  clip-path: polygon(0.46% 3.261%, 90.656% 3.261%, 99.156% 96.739%, 0.46% 96.739%, 0.46% 3.261%);
  margin: 5px;
}
#newsletter .heading-box h6{
  color: var(--yellow);
}
#newsletter .heading-box h3{
  color: var(--white);
}
.newsletter-inner-box{
  position: relative;
  z-index: 2;
  padding: 50px 0px 40px 0px;
}
.newsletter-head-content-box h3, .newsletter-head-content-box p{
  color: #000000;
}
.newsletter-head-content-box p{
  width: 80%;
}
#newsletter .wpcf7 input[type="email"] {
  padding: 12px 20px;
  border: none;
  border-radius: 0px;
  background-color: #fff !important;
  color: #000 !important;
  width: 100% !important;
  margin: 10px auto !important;
}
#newsletter .wpcf7-form-control-wrap{
  font: 400 14px/20px var(--pri-font);
  color: #000;
}
#newsletter input[type="submit"] {
  background: transparent;
  border-radius: 0px;
  color: var(--blue);
  padding: 10px 25px;
  font-family: 'fontawesome';
  width: fit-content;
  border: none;
}
#newsletter input[type="submit"]:hover{
  background: var(--yellow);
}
#newsletter form{
  position: relative;
  background: var(--blue);
  padding: 0px 10px;
}
#newsletter .wpcf7 form.invalid .wpcf7-response-output{
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.newsletter-head-form-box form p:nth-child(2){
  width: 100%;
}
.newsletter-head-form-box form p:nth-child(3){
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
}
.newsletter-outer-box:before {
  content: '';
  background-color: var(--yellow);
  position: absolute;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12% 100%);
  height: 170px;
  bottom: 9px;
  width: 47%;
  right: 0px;
}
#newsletter .wpcf7-not-valid-tip{
  position: absolute;
}
#newsletter .wpcf7 form .wpcf7-response-output{
  position: absolute;
  width: fit-content;
  color: #fff;
  right: 0;
  left: 0;
  margin: 0px auto;
  font: 400 12px/12px var(--pri-font);
}


@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
      -webkit-transform: skewX(20deg);
      transform: skewX(20deg);
      opacity: 1;
  }
  80% {
      -webkit-transform: skewX(-5deg);
      transform: skewX(-5deg);
  }
  100% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
  }
}

/* quotation form */
.quotation-form-box{
  box-shadow: 0px 1px 5px 0px #b1b1b1;
  padding: 50px;
  border-radius: 0px;
}
.quotation-form-box .head-label {
  font-size: 22px !important;
  line-height: 35px;
  font-weight: 600 !important; 
}
.quotation-form-box .waste-box label {
  font-weight: 500;
  font-size: 18px;
  line-height: 35px;
}
.quotation-form-box input[type="text"], .quotation-form-box input[type="tel"], .quotation-form-box input[type="email"], .quotation-form-box input[type="number"], .quotation-form-box input[type="date"], .quotation-form-box input[type="phone"], .quotation-form-box input[type="password"], .quotation-form-box textarea, .quotation-form-box select {
  font-size: 16px !important;
  padding: 14px 18px !important;
  width: 100%;
  border-radius: 0px;
  line-height: 16px;
  font-family: var(--pri-font);
  border: none;
  box-shadow: 0px 1px 3px 0px #999999;
}
.quotation-form-box form .submit p input[type="submit"] {
  font: 500 16px/20px var(--pri-font);
  color: var(--white);
  background: var(--black);
  border: none;
  border-radius: 0px;
  padding: 10px 25px;
  width: max-content;
}
.quotation-form-box form .submit p input[type="submit"]:hover {
  background: var(--yellow);
  color: #fff;
}







/* media css */
@media screen and (max-width: 1800px){
  .topbar-inner-cls{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }  
  .topbar-social-box {
    width: fit-content;
    position: unset;
    /* margin: auto; */
  }
}
@media screen and (max-width: 1600px){
  .attorney-bottom-svg {
    position: absolute;
    bottom: 28%;
    left: 6%;
  }
  .attorney-bottom-svg {
    position: absolute;
    bottom: -2%;
    left: -15%;
    width: 300px;
    height: 250px;
  }
}
@media screen and (max-width: 1499px){
  .our-expertise-top-svg, .testimonial-top-svg, .faq-top-svg, .our-video-top-svg,.our-expertise-bottom-svg, .testimonial-bottom-svg, .faq-bottom-svg, .our-video-bottom-svg{
    display: none;
  }
  .title-box h1 {
    font-size: 30px;
    line-height: 35px;
  }
}
@media screen and (max-width: 1520px) and (min-width: 1400px){
  .faq-image2{
    left: 20%;
  }
  .faq-image1 {
    left: -30px;
  }
}
@media screen and (max-width: 1399px){
  #blog .blog-image-box {
    width: 350px;
  }
  .main-navigation ul#menu-primary-menu .current-menu-item > a:after {
    content: '';
    width: 10px !important;
    height: 3px;
    background: var(--dark-blue);
    position: absolute;
    top: 0;
    bottom: 0;
    left: -12px !important;
    margin: auto;
  }
  #menu-primary-menu li ul.sub-menu li a {
    font-size: 12px;
  }
  .attorney-bottom-svg{
    display: none;
  }
  #slider .slide-small-heading{
    font: 600 12px/22px var(--pri-font);
    clip-path: polygon(0 0, 100% 0, 86% 100%, 0% 100%);
  }
  #menu-primary-menu > li {
    padding: 20px 6px;
  }
  .main-navigation #menu-primary-menu a{
    font: 500 12px/14px var(--pri-font);
  }
  #about-sec .heading-box {
    padding: 60px 0px 60px 40px;
  }
  .testimonial-client-image {
    width: 300px;
    height: 70px;
  }
  .about-main-img-two{
    width: 240px;
  }
  #about-sec .heading-box {
    padding: 60px 0px 60px 40px;
  }
  .search-container {
    width: 169px;
  }
  .our-attorney-image-box:after{
    height: 330px;
    margin-top: 1%;
    width: 100%;
  }
  .our-attorney-image-box {
    width: 100%;
    left: 0;
  }
  .attorney-meta-image .attorney-main-img-one, .attorney-meta-image .attorney-main-img-two {
    width: 100%;
    height: 100%;
  }
  .circle-carousel {
    padding-top: 130%;
  }
  .why-choose-us-title-content-box h5{
    width: 65%;
  }
  .newsletter-outer-box:before{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
    width: 49%;
  }
}
@media screen and (max-width: 1199px){  
  #singleService .nav-pills .nav-link {
    padding: 15px 25px;
  }
  .main-navigation ul#menu-primary-menu .current-menu-item > a:after{
    width: 10px;
    left: -12px;
    height: 3px;
  }
  .footer-contact-box .location a, .footer-content li a {
    font: 600 12px/18px var(--pri-font);
    color: #fff;
  }
  #blog .blog-image-box {
    width: 290px;
  }  
  #slider .slide-small-heading{
    /* width: 48%; */
    clip-path: polygon(0 0, 100% 0, 79% 100%, 0% 100%);
  }
  .multi-graph .graph,.multi-graph:before,.multi-graph {
    width: 519px;
    height: 260px;
  }

  a.header-contact-btn.btn {
    font: 601 12px/13px var(--pri-font);
    padding: 15px 30px 15px 12px;
    clip-path: polygon(0 0, 62% 0, 100% 100%, 0% 100%);
  }
  a.header-login-btn.btn {
    font: 600 12px/13px var(--pri-font);
    padding: 15px 14px 15px 8px;
  }
  section {
    padding: 4% 0px;
  }
  .title-box {
    height: 320px;
  }
  .main-navigation #menu-primary-menu a{
    /* font: 500 10px/12px var(--pri-font); */
  }
  #menu-primary-menu > li {
    padding: 10px 5px;
  }
  .header-main-box:after {
    inset: 0 -30% 0% -115%;
  }
  .search-container{
    width: 174px;
  }  
  p.services-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .services-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  #singleService .service-image {
    height: 300px;
  }
  #about-sec .heading-box {
    padding: 40px 0px 40px 25px;
  }
  .about-main-img-one{
    width: 380px;
  }
  .about-main-img-two {
    right: 20px;
  }
  .testimonial-client-image {
    width: 550px;
    height: 70px;
  }
  .faq-image1 {
    left: 0px;
    height: 350px;
  }
  .faq-image2 {
    height: 300px;
    top: 150px;
    right: -55px;
  }
  #faq .accordion-button,#faq .accordion-button.collapsed{
    font: 600 15px/25px var(--pri-font);
  }
  .footer-contact-box .location a, .footer-content li a {
    font: 600 12px/18px var(--pri-font);
  }
  .footer-copy {
    font: 400 13px/20px var(--pri-font);
  }
  #faq .accordion-item{
    margin: 20px 0px;
  }
  .slider-inner-bg-image {
    height: 700px;
  }
  .slider-content-main-box{
    top: 26%;
  }
  .slider-content-column{
    padding: 50px 40px 20px 40px !important;
  }
  .abt-icons1 {
    left: -20px;
  }
  #slider .slider-content-box:after{
    left: 43.2%;
  }
  .our-features-inner-boxed  h5{
    font: 600 19px/25px var(--sec-font);
  }
  .slider-para {
    width: 80%;
    font: 600 14px/22px var(--pri-font);
  }
  #slider h5 {
    font: 600 20px/30px var(--sec-font);
  }
  .slider-content-column:after{
    width: 40%;
  }
  
  .circle-carousel .pagination .dot{
    transform: translate(-60%, -70%);
  }
  .circle-carousel {
    position: relative;
    padding-top: 160%;
  }
  .why-choose-us-title-content-box h5{
    width: 80%;
  }
  .why-choose-us-title-content-box p{
    width: 100%;
  }
  .services-para{
    font: 400 13px/21px var(--pri-font);
  }
  .services-image-title{
    font: 600 13px/22px var(--pri-font);
    padding: 10px 20px 10px 8px;
  }
  .services-image-title:after {
    clip-path: polygon(0 0, 100% 0, 52% 100%, 0 100%);
  }
  #footer_box .custom-social-icons a{
    font-size: 14px;
  }
  #footer_box .social_widget h4{
    font: 600 13px/20px var(--pri-font);
  }
  section#newsletter:before{
    inset: 0 43% 0 0;
  }
  .newsletter-outer-box:before{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
  }
  #amelia-container .am-fs-sb .am-fs-sb__step-wrapper:after {
    width: 87%;
  }
  .title-box h1{
    font-size: 26px;
    line-height: 30px;
  }
  .slider-inner-bg-image:after {
    width: 77%;
  }
}
@media screen and (max-width: 991px){
  .our-expertise-bottom-svg, .testimonial-bottom-svg, .faq-bottom-svg, .our-video-bottom-svg, .why-choose-bottom-svg,.why-choose-top-svg{
    display: none;
  }
  #blog .item.active .blog-image-box {
    width: 325px;
  }
  #newsletter .wpcf7 form .wpcf7-response-output {
    position: absolute;
    width: fit-content;
    color: #fff;
    right: 0;
    left: unset;
  }
  #blog .blog-image-box {
    width: 335px;
  }
  .footer-content{
    justify-content: center;
  }
  .slider-inner-right-image {
    position: absolute;
    bottom: 0px;
    right: 0px;
    height: 280px;
    width: 150px;
  }
  #slider .slide-small-heading {
    /* clip-path: polygon(0 0, 100% 0, 86% 100%, 0% 100%); */
  }
  .graph-title-box:nth-child(1) {
    top: 8%;
    right: -10%;
  }
  .graph-title-box:nth-child(1) .graph-square-box {
    width: 20px;
  }
  .graph-title-box:nth-child(2) {
    top: -20%;
    right: 0%;
  }
  .graph-title-box:nth-child(2) .graph-square-box {
    width: 15px;
  }
  .graph-title-box:nth-child(3) {
    top: -100%;
    left: -4%;
  }
  .graph-square-box {
    width: 16px;
    height: 13px;
  }
  .graph-title-box{
    font: 600 10px/14px var(--pri-font);
  }
  .graph-percent-box {
    font: 600 12px/18px var(--pri-font);
  }
  .graph-title-box:nth-child(2) .graph-square-box:after {
    left: -52px;
    top: 40px;
    width: 65px;
  }
  .graph-title-box:nth-child(3) .graph-square-box:after {
    left: 12px;
    top: 20px;
    width: 60px;
  }
  .graph-title-box:nth-child(1) .graph-square-box:after {
    right: -28px;
    width: 60px;
    transform: rotate(90deg);
    top: 43px;
  }

  .header-main-box{
    padding: 8px 0px;
  }
  .header-main-box:after {
    inset: 0 -320% 0% -550%;
  }
  .video-client-details p {
    font: 400 12px/15px var(--pri-font);
  }
  .video-client-details h6 {
    font: 600 11px/20px var(--pri-font);
  }
  .lawyers-video-playlist{
    width: 270px;
    padding: 12px;
  }
  h3 {
    font: 700 18px/30px var(--pri-font);
  }
  .title-box h1 {
    color: #fff;
    font-size: 22px;
    line-height: 32px;
  }
  .banner-heading{
    padding-top: 5%;
  }
  .single-post-content li {
    font: 400 13px/24px var(--pri-font);
  }
  .single-post-content {
    font: 400 14px/22px var(--pri-font);
  }
  .single-service-sidebar-box{
    display: flex;
  }
  #about-sec .heading-box {
    padding: 40px 0px 20px 20px;
  }
  .about-paragraph{
    width: 100%;
  }
  .about-main-img-two {
    position: absolute;
    right: 40px;
    bottom: -20px;
    height: 250px;
    width: 200px;
  }
  .about-main-img-one {
    position: relative;
    bottom: -20px;
    width: 260px;
    left: 0px;
    height: 320px;
  }
  .testimonial-outer-box, .our-expertise-main-outer-box, .faq-grid-box, .our-video-grid-box{
    padding: 30px 20px;
  }
  .testimonial-content-box {
    padding: 15px;
  }
  .testimonial-content-box:after{
    left: 9px;
  }
  .testimonial-title-box{
    font: 600 18px/40px var(--sec-font);
  }
  .testimonial-contents {
    font: 600 15px/25px var(--pri-font);
  }
  .newsletter-outer-box:before{
    right: -6px;
  }
  .services-image-title:after {
    clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
  }
  .services-image-title{
    font: 600 13px/22px var(--pri-font);
  }
  .faq-image1 {
    left: 100px;
    height: 350px;
  }
  .faq-image2 {
    height: 300px;
    top: 150px;
    right: -150px;
  }
  .why-choose-main-inner-box {
    height: 560px;
  }
  .circle-carousel .pagination .dot{
    transform: translate(-60%, -63%);
    width: 145px;
    height: 180px;
  }
  .circle-carousel {
    padding-top: 200%;
    margin-top: 15%;
  }
  .our-about-box{
    margin: ;
  }
  .our-attorney-image-box,.our-attorney-image-box:after {
    width: 100%;
    left: 0;
  }    
  .attorney-meta-image{
    flex-direction: row;
  }
  .attorney-information-outer-box {
    margin: auto;
    gap: 10px;
  }
  #slider .slide-small-heading{
    clip-path: polygon(0 0, 100% 0, 84% 100%, 0% 100%);
  }
  #slider .slider-content-box:after{
    left: 41%;
  }
  .slider-content-column:after{
    width: 40%;
  }
  .slider-inner-bg-image:after{
    width: 76%;
  }
  .why-choose-us-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
  }
  .topbar-info-contents{
    text-align: center;
  }
}
@media screen and (max-width:767px){
  .amelia-v2-booking #amelia-container.am-fs__wrapper{
    height: 450px !important;
  }
  #newsletter .wpcf7 form.invalid .wpcf7-response-output {
    color: #fff;
    font-size: 9px;
  }
  #blog .blog-image-box {
    margin: 0 auto;
    width: 280px;
    height: 380px;
  }
  .blog-image-box img {
    height: 75%;
  }
  #blog .owl-carousel .owl-stage-outer{
    padding: 0;
  }
  #header_navigation{
    top: 100px;
  }
  .topbar-inner-cls{
    display: block;
  }
  .topbar-social-box {
    width: fit-content;
    position: unset;
    margin: auto;
  }
  .topbar-info-contents{
    text-align: center;
  }
  #header_navigation{
    top: 100px;
  }
  .newsletter-outer-box:before {
    right: -15px;
  }
  .slider-inner-right-image{
    display: none;
  }
  .header-main-box:after {
    inset: 0 -530% 0% -550%;
  }
  .header-main-outer-box .logo:before{
    height: 55px;
  }
  .logo{
    padding: 0px 5px;
    height: 45px;
  }
  .logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  a.header-contact-btn.btn {
    font: 600 12px/13px var(--pri-font);
    padding: 12px 18px 12px 6px;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
  }
  a.header-login-btn.btn {
    font: 600 12px/13px var(--pri-font);
    padding: 12px 10px 12px 10px;
  }
  .header-login-button-box:after{
    left: -30px;
    border-right: 18px solid var(--yellow);
    border-bottom: 38px solid transparent;
  }
  .search-container [type=search]{
    padding: 10px 12px;
    font-size: 10px;
  }
  .search-container {
    width: 150px;
  }
  .header-main-box {
    padding: 0px 0px;
  }
  .newsletter-head-form-box{
    padding-bottom: 25px;
  }
  #newsletter .wpcf7 form .wpcf7-response-output {
    position: absolute;
    bottom: -40px;
    /* margin: 0 auto; */
    left: 0px;
    right: unset;
    padding: 0;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
  }
  #newsletter .wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 12px;
  }

  .our-video-grid-box .video-controls:after{
    width: 75px;
    height: 75px;
  }
  .stickynavbar .header-button-outer-box{
    /* display: none !important; */
  }
  .title-box {
    height: 400px;
  }
  .banner-heading {
    /* padding-top: 20%; */
  }
  .btn {
    font: 400 13px/13px var(--pri-font);
    padding: 10px 25px;
  }
  .heading-box{
    gap: 25px;
    margin: auto;
  }
  .heading-box h3:after{
    right: 0;
    margin: auto;
  }
  h3{
    font: 700 17px/30px var(--pri-font);
  }
  #about-sec .heading-box {
    padding: 40px 0px 20px 0px;
  }
  .about-main-img-two {
    position: absolute;
    right: 40px;
    bottom: -20px;
    height: 250px;
    width: 200px;
  }
  .about-main-img-one {
    position: relative;
    bottom: -20px;
    width: 245px;
    left: 40px;
    height: 320px;
  }
  .testimonial-client-image {
    width: 280px;
    height: 70px;
  }
  .services-image-title:after {
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
  }
  .services-image {
    height: 360px;
  }
  .services-image-over-contents-box{
    height: 280px;
  }
  .services-image-title{
    font: 600 12px/20px var(--pri-font);
  }
  .services-para{
    font: 400 13px/20px var(--pri-font);
  }
  .our-expertise-us-text{
    width: 100%;
  }
  .faq-image-box {
    height: 400px;
  }
  .faq-image1 {
    left: 40px;
    height: 330px;
  }
  .faq-image2 {
    right: 40px;
    height: 265px;
    left: unset;
  }
  #faq .accordion-button{
    font: 600 14px/20px var(--pri-font) !important;
  }
  #faq .accordion-item{
    margin: 20px 0px;
    padding: 8px 10px
  }
  .faq-quest-box-para{
    font: 600 20px/25px var(--sec-font);
  }
  .newsletter-inner-box{
    padding: 30px 0px 20px 0px;
  }
  #viewDemoVideo {
    height: 310px;
  }
  .footer2 #menu-quick-links, .footer-content {
    text-align: start;
    width: 100%;
    margin: auto;
  }
  #slider .slide-small-heading {
    clip-path: polygon(0 0, 100% 0, 84% 100%, 0% 100%);
    font: 600 13px/22px var(--pri-font);
  }
  .slider-content-column{
    padding: 50px 20px 20px 25px !important;
  }
  .slider-inner-bg-image:after{
    width: 75%;
  }
  .slider-content-main-box h2 {
    font: 600 20px/25px var(--sec-font);
  }
  .slider-content-column:after{
    width: 41%;
  }
  .abt-icons1 {
    left: 0px;
  }
  .slider-para {
    width: 90%;
    padding: 20px 20px;
    font: 600 15px/22px var(--pri-font);
  }
  .slider-inner-bg-image {
    height: 680px;
  }
  .attorney-information-text,.our-attorney-text{
    font: 400 13px/20px var(--pri-font);
  }
  .attorney-information-title{
    font: 600 14px/22px var(--pri-font);
  }
  .our-attorney-image-box:after {
    width: 270px;
    height: 340px;
    margin: auto;
  }
  .our-attorney-image-box{
    height: 320px;
    width: 270px;
    margin: auto;
    left: -10px;
  }
  .circle-carousel .pagination .dot{
    transform: translate(-45%, -50%);
  }
  .why-choose-main-inner-box {
    height: 550px;
  }
  .circle-carousel {
    padding-top: 320%;
    margin-top: 12%;
  }
  .lawyers-video-playlist {
    position: unset;
    width: 100%;
  }
}
@media screen and (max-width:575px){ 
  #appointement_form .amelia-v2-booking #amelia-container .am-adv-select .el-input__inner{
    padding: 10px 35px 10px 10px;
  }
  .am-button-group,.am-advsc__duration,.am-advsc__time-zone{
    display: none !important;
  }
  .search-container{
    display: none;
  }
  .header-main-box:after {
    inset: 0 -320% 0% -550%;
  }
  .graph-title-box:nth-child(2) {
    top: -30%;
    right: -10%;
  } 
  .graph-title-box:nth-child(1) .graph-square-box {
    width: 18px;
  }
  .graph-square-box {
    height: 10px;
    margin: 0px 5px;
  }
  .graph-title-box:nth-child(1) {
    top: 13%;
    right: -28%;
  }
  .graph-percent-box {
    font: 600 10px/15px var(--pri-font);
  }
  .graph-title-box:nth-child(1) .graph-square-box:after {
    right: 12px;
    width: 20px;
    top: 10px;
  }
  .graph-title-box:nth-child(2) .graph-square-box {
    width: 14px;
  }
  .graph-title-box:nth-child(2) .graph-square-box:after {
    left: -35px;
    top: 30px;
    width: 40px;
  }
  .graph-square-box {
    width: 16px;
  }
  .graph-title-box:nth-child(3) {
    top: -80px;
    left: -28%;
  }
  .graph-title-box:nth-child(3) .graph-square-box:after {
    left: 14px;
    top: 12px;
    width: 25px;
  }
  .graph-title-box{
    font: 600 10px/14px var(--pri-font);
  }
  .graph-title-box {
    width: 40%;
  }
  .multi-graph .graph:nth-child(3){
    top: 104%;
  }
  .multi-graph .graph:nth-child(2){
    top: 111%;
  }
  .our-features-content-box{
    width: 100%;
  }
  .our-features-grid-box{
    justify-content: center;
  }
  .multi-graph .graph,.multi-graph:before,.multi-graph {
    width: 300px;
    height: 150px;
  }
  .multi-graph-title-box h5 {
    font: 600 12px/18px var(--sec-font);
  }
  .multi-graph-text {
    font: 600 11px/22px var(--pri-font);
  }
  .multi-graph-text span.per{
    font-size: 16px !important;
  }
  
  .slider-inner-bg-image {
    height: 950px;
  }
  .slider-content-main-box{
    top: 35%;
  }
  .footer3,.footer2{
    padding-top: 20px;
  }
  section {
    padding: 10% 0px;
  }  
  .footer2 #menu-quick-links,.footer-content{
    text-align: center;
  }
  .footer2 #menu-quick-links, .footer-content {
    text-align: center;
    width: 80%;
    margin: auto;
  }
  .footer-contact-box .location,#footer_box .social_widget aside{
    justify-content: center;
  }
  .footer-content h4,#footer_box .social_widget aside {
    padding-bottom: 4%;
  }
  #footer_box .social_widget aside {
    /* padding-top: 2%;
    padding-bottom: 4%; */
  }
  .header-button-outer-box {
    justify-content: center !important;
    flex-wrap: wrap;
  }
  .search-container{
    width: 244px;
  }
  .single-service-sidebar-box{
    display: block;
  }
  .sidebar4{
    width: 100%;
  }
  .single-service-sidebar-box .nav-pills{
    width: 100%;
  }
  #singleService .nav-pills .nav-link{
    margin: auto;
  }
  .newsletter-head-form-box{
    padding-bottom: 25px;
  }
  #newsletter .wpcf7 form .wpcf7-response-output {
    position: absolute;
    bottom: -45px;
    margin: 0 auto;
    left: 0px;
    right: unset;
    padding: 0;
    font-size: 9px;
    line-height: 16px;
    font-weight: 600;
  }
  #newsletter .wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 12px;
  }
  .error-img {
    width: auto;
    margin: auto;
  }
  .title-box {
    height: 400px;
  }
  .banner-heading {
    padding-top: 20%;
    width: 90%;
  }
  .title-box h1 {
    color: #fff;
    font-size: 18px;
    line-height: 26px;
  }
  .testimonial-outer-box, .our-expertise-main-outer-box, .faq-grid-box, .our-video-grid-box{
    padding: 25px 10px;
  }
  .testimonial-content-box {
    padding: 20px 10px 20px 20px;
  }
  .services-image-title:after {
    clip-path: none;
  }
  .services-image-over-contents-box{
    margin: auto;
  }
  .services-image-over-contents-box,.services-image {
    height: 350px;
  }
  .newsletter-outer-box:before {
    content: '';
    background-color: var(--yellow);
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 9% 100%);
    height: 155px;
    bottom: 9px;
    width: 48%;
    right: -6px;
  }
  section#newsletter:before{
    margin: 5px 6px;
  }
  .newsletter-inner-box{
    padding: 30px 0px 20px 0px;
  }
  .slider-content-main-box{
    top: 28%;
    width: 90% !important;
  }
  .slider-content-column{
    padding: 45px 10px 20px 20px !important;
  }
  #slider h5 {
    font: 600 18px/22px var(--sec-font);
  }
  .slider-para {
    padding: 15px 15px;
    font: 600 12px/22px var(--pri-font);
    width: 100%;
  }
  .slider-inner-bg-image {
    height: 700px;
  }
  .abt-icons1 {
    left: 0px;
  }
  .slider-inner-bg-image:after {
    clip-path: none;
    width: 100%;
  }
  .our-features-box{
    margin: auto;
  }
  .attorney-meta-image{
    flex-direction: column;
    margin: auto;
    width: fit-content;
  }
  .why-choose-main-inner-box {
    height: 550px;
  }
  .circle-carousel .pagination .dot{
    width: 150px;
    height: 190px;
    transform: translate(-50%, -70%);
  }
  .circle-carousel {
    padding-top: 260%;
    margin-top: 20%;
  }
  .why-choose-us-title-content-box h5{
    width: 90%;
  }
  .amelia-v2-booking #amelia-container .am-fs__main-content {
    padding: 0px 15px !important;
  }
}
@media screen and (max-width:480px){
  
  .banner-heading {
    padding-top: 20%;
  }
  .slider-inner-bg-image {
    height: 720px;
  }
  .slider-content-main-box {
    top: 25%;
  }
  #newsletter form{
    display: block;
  }
  .newsletter-head-form-box form p:nth-child(2) {
    width: 100%;
  }
  a.single-services-button.btn{
    padding: 12px 20px;
  }
  .service-box-outer {
    margin: auto;
    width: 60%;
  }
  .about-main-img-one {
    height: 250px;
  }
  .about-main-img-one,.about-main-img-two{
    position: unset;
    transform: rotate(0deg);
    width: 100%;
  }
  .testimonial-quote-box {
    display: block !important;
  }
  .testimonial-title-box{
    text-align: center;
    margin: auto;
    padding: 0;
  }
  .testimonial-para-content-box{
    font: 400 13px/20px var(--pri-font);
    text-align: center;
  }
  .testimonial-client-image {
    width: 70px;
    height: 70px;
    margin: auto;
  }
  .testimonial-contents {
    font: 600 15px/20px var(--pri-font);
    text-align: center;
  }
  .faq-image1 {
    width: 100%;
    transform: unset;
    height: 250px;
    position: unset;
  }
  .faq-image2 {
    height: 250px;
    width: 100%;
    position: unset;
    transform: unset;
  }
  .faq-image-box {
    height: unset;
  }
  #faq .accordion-collapse.collapse.show {
    width: 100%;
  }
  #faq .accordion-button{
    font: 600 14px/20px var(--pri-font) !important;
  }
  #faq .accordion-item:has(.accordion-collapse.show){
    padding: 15px 10px;
  }
  #faq .accordion-item{
    margin: 15px 0px;
  }
  .why-choose-main-inner-box {
    height: 550px;
  }
  .circle-carousel .pagination .dot{
    width: 150px;
    height: 190px;
    transform: translate(-50%, -70%);
  }
  .circle-carousel {
    padding-top: 320%;
    margin-top: 35%;
  }
  .why-choose-us-title-content-box h5{
    width: 90%;
  }
}
@media screen and (max-width:425px){
  .banner-heading {
    /* padding-top: 60%; */
  }
  .footer-content{
    width: 100%;
  }
  .circle-carousel {
    padding-top: 390%;
  }
  .graph-title{
    display: none;
  }
  .graph-title-box:nth-child(1) .graph-square-box:after {
    right: -10px;
    width: 50px;
    top: 38px;
    transform: rotate(-66deg);
  }
  .graph-title-box:nth-child(1) .graph-title{
    flex-direction: row;
  }
  .graph-title-box:nth-child(1) {
    top: 8%;
    right: -15%;
  }
  .graph-title-box:nth-child(1) .graph-square-box,.graph-title-box:nth-child(2) .graph-square-box,.graph-square-box {
    width: 10px;
    align-self: center;
  }
  .graph-title-box:nth-child(2) {
    top: -25%;
    right: 3%;
  }
  .graph-title-box:nth-child(2) .graph-square-box:after {
    left: -35px;
    top: 30px;
    width: 40px;
  }
  .graph-title-box:nth-child(3) {
    top: -150px;
    left: -2%;
  }
  .graph-title-box:nth-child(3) .graph-square-box:after {
    left: 14px;
    top: 12px;
    width: 25px;
  }
}
@media screen and (max-width:375px){
  .service-box-outer {
    margin: auto;
    width: 80%;
  }
  .circle-carousel {
    padding-top: 460%;
  }
  .footer3, .footer2 {
    padding: 20px 0px 0px 0px;
  }  
  .slider-inner-bg-image {
    height: 750px;
  }

}
@media screen and (max-width:320px){
  .banner-heading {
    /* padding-top: 70%; */
  }
  .circle-carousel {
    padding-top: 580%;
  }
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  
  80% {
    transform: translateX(10px);
  }
  
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  
  80% {
    transform: translateX(-10px);
  }
  
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

/* tada  */
@keyframes tada{
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
      -webkit-transform: scale(0.9) rotate(-3deg);
      -ms-transform: scale(0.9) rotate(-3deg);
      transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
      -webkit-transform: scale(1.1) rotate(3deg);
      -ms-transform: scale(1.1) rotate(3deg);
      transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
      -webkit-transform: scale(1.1) rotate(-3deg);
      -ms-transform: scale(1.1) rotate(-3deg);
      transform: scale(1.1) rotate(-3deg);
  }
  100% {
      -webkit-transform: scale(1) rotate(0);
      -ms-transform: scale(1) rotate(0);
      transform: scale(1) rotate(0);
  }
}







@keyframes bouncess{
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
      -webkit-transform: translateY(-30px);
      transform: translateY(-15px);
  }
}





















































#about-sec .top , #faq .top {
  animation: animateTop 7s ease-in-out infinite;
}
#about-sec .top , #faq .top {
  top: -6px;
  left: 0;
  /* width: 100%; */
  height: 6px;
  background: linear-gradient(90deg, #b4b4b4 0%, var(--blue) 47.5%, var(--yellow) 100%);
  z-index: 1;
}

#about-sec .bottom , #faq .bottom {
  animation: animateBottom 7s ease-in-out infinite;
}
#about-sec .bottom , #faq .bottom {
  right: 0;
  bottom: -6px;
  height: 6px;
  background: linear-gradient(90deg, #b4b4b4 0%, var(--blue) 47.5%, var(--yellow) 100%);
}
#about-sec .left , #faq .left{
  animation: animateLeft 7s ease-in-out infinite;
}
#about-sec .left , #faq .left{
  left: -6px;
  bottom: 0;
  width: 6px;
  height: 6px;
  background: linear-gradient(110deg, #b4b4b4 0%, var(--blue) 47.5%, var(--yellow) 100%);
}

#about-sec .right , #faq .right{
  animation: animateRight 7s ease-in-out infinite;
}
#about-sec .right , #faq .right{
  top: 0;
  right: -6px;
  width: 6px;
  /* height: 0; */
  background: linear-gradient(90deg, #F2E496 0%, #B3892D 47.5%, #BA983C 100%);
  z-index: 2;
}

#about-sec .animate-border , #faq .animate-border{
  position: absolute;
}

@keyframes animateTop{
  25% {
    width: 100%;
    opacity: 1;
  }
  30%, 100% {
      opacity: 0;
  }
}
@keyframes animateLeft{
  0%, 75% {
    opacity: 0;
    bottom: 0;
    height: 0;
  }
  100% {
      opacity: 1;
      height: 100%;
  }
}
@keyframes animateBottom{
  0%, 50% {
    opacity: 0;
    width: 0;
  }
  75% {
      opacity: 1;
      width: 100%;
  }
  76%, 100% {
      opacity: 0;
  }
}

@keyframes animateRight{
  0%, 25% {
    opacity: 0;
    height: 0;
  }
  50% {
      opacity: 1;
      height: 100%;
  }
  55%, 100% {
      height: 100%;
      opacity: 0;
  }
}





.highcharts-figure,
.highcharts-data-table table {
    min-width: 320px;
    max-width: 500px;
    margin: 1em auto;
}

.highcharts-figure {
    padding: 0;
}

#container {
    height: 400px;
}

.highcharts-data-table table {
    font-family: Verdana, sans-serif;
    border-collapse: collapse;
    border: 1px solid #ebebeb;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: #555;
}

.highcharts-data-table th {
    font-weight: 600;
    padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
    padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
    background: #f8f8f8;
}

.highcharts-data-table tr:hover {
    background: #f1f7ff;
}

.highcharts-description {
    margin: 0.3rem 10px;
}
.highcharts-exporting-group{
  display: none;
}






#testimonial .owl-dots {
  display: flex;
  margin: auto;
  position: relative;
  top: -60px;
  width: fit-content;
  gap: 6px;
}
#testimonial .owl-carousel button.owl-dot {
  background: var(--yellow);
  border: none;
  width: 15px;
  height: 4px;
  border-radius: 5px;
}
#testimonial .owl-carousel button.owl-dot.active{
  background: var(--white);
  width: 40px;
}







/* appointement */
#amelia-container .am-fs-sb{
  width: 100% !important;
  max-width: 100% !important;
}
#amelia-container .am-fs-sb .am-fs-sb__step-wrapper{
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: relative;
}
#amelia-container .am-fs-sb .am-fs-sb__step-wrapper:after {
  content: '';
  width: 90%;
  position: absolute;
  top: 55px;
  height: 1px;
  background: var(--yellow);
  /* bottom: 0; */
  margin: auto;
  left: 15px;
  z-index: -1;
}
#appointement_form .amelia-v2-booking #amelia-container .am-fs-sb__step-checker .am-icon-check{
  background-color: var(--yellow);
  color: var(--dark-blue);
}
#appointement_form .amelia-v2-booking #amelia-container.am-fs__wrapper {
  display: block !important;
  margin: 0 auto;
  box-shadow: none !important;
  max-width: 80% !important;
}
.amelia-v2-booking #amelia-container .am-fs__main{
  width: 100% !important;
  max-width: 100% !important;
}
.amelia-v2-booking #amelia-container .am-fs-sb__step-heading{
  margin: 0 !important;
  font: 500 14px/40px var(--pri-font) !important;
}
.amelia-v2-booking #amelia-container .am-button.am-button--micro.is-icon-only,.am-fs-sb__step-icon,.amelia-v2-booking #amelia-container .am-fs-sb__menu,.amelia-v2-booking #amelia-container .el-form-item.is-required .el-form-item__label:before,.amelia-v2-booking .am-lite-footer {
  display: none !important;
}
.amelia-v2-booking #amelia-container .am-fs-sb__step-checker{
  margin-left: unset !important;
}
.amelia-v2-booking #amelia-container .am-fs-sb__step-inner{
  display: block !important;
}
.amelia-v2-booking #amelia-container .am-fs-sb__step{
  background-color: transparent !important;
}
.amelia-v2-booking #amelia-container .am-fs-sb{
  background-color: transparent !important;
}
.amelia-v2-booking #amelia-container .am-fs-sb__step-checker-selected {
  --am-c-sb-checker-border: var(--yellow) !important;
  border-width: 1px !important;
}
.amelia-v2-booking #amelia-container .am-fs-sb__step-checker{
  width: 15px !important;
  height: 15px !important;
  background-color: var(--blue) !important;
  border-radius: 50%;
  border: 1px solid var(--yellow) !important;
}
#appointement_form .amelia-v2-booking #amelia-container .am-fs-sb__step-checker .am-icon-check {
  position: absolute;
  width: 15px;
  height: 15px;
  font-size: 15px;
}
#appointement_form .amelia-v2-booking #amelia-container .am-fs-sb__step-checker-selected {
  background-color: var(--yellow) !important;
}
#appointement_form .amelia-v2-booking #amelia-container .am-fs__main-heading-inner-title {
  color: var(--yellow) !important;
  font: 600 22px/25px var(--sec-font) !important;
}
.amelia-v2-booking #amelia-container .am-fs__main{
  background-color: transparent !important;
}
#appointement_form span.am-fs__init-form__label,#appointement_form .amelia-v2-booking #amelia-container .am-fs__payments>*:nth-child(5),#appointement_form .am-advsc__slots-heading {
  font: 500 15px/30px var(--pri-font) !important;
  color: #fff !important;
}
#appointement_form .amelia-v2-booking #amelia-container .am-fs__payments-sentence p{
  color: #fff !important;
}
#appointement_form .amelia-v2-booking #amelia-container .am-button-group, #appointement_form .amelia-v2-booking #amelia-container .am-advsc__wrapper>div:nth-child(3){
  display: none;
}
#appointement_form .amelia-v2-booking #amelia-container .am-adv-select .el-input__inner {
  background-color: var(--dark-blue);
  border: none;
  border-radius: 0px;
  color: #fff !important;
}
.amelia-v2-booking #amelia-container .am-fs__main-content{
  height: 300px !important;
  padding: 0px 32px !important;
}
#appointement_form .amelia-v2-booking #amelia-container .am-fs__main-content::-webkit-scrollbar-thumb{
  background: var(--yellow);
}
#appointement_form .amelia-v2-booking #amelia-container .am-fs__main-content::-webkit-scrollbar-track{
  background: var(--dark-blue);
}
.amelia-v2-booking #amelia-container .am-fs__main-footer{
  display: block !important;
}
.amelia-v2-booking #amelia-container .am-advsc.fc-theme-standard th.am-advsc__dayGridMonth-header-cell .fc-col-header-cell-cushion{
  color: #fff !important;
}
.amelia-v2-booking #amelia-container .el-form-item.is-required .el-form-item__label{
  padding-left: 0px !important;
}
#appointement_form .amelia-v2-booking #amelia-container .am-button.am-button--filled {
  background-color: #fff;
  color: var(--dark-blue);
  border: none;
  border-radius: 0px;
  padding: 10px 40px 10px 10px;
  position: relative;
  box-shadow: 0px 0px 10px 1px var(--yellow);
}
#appointement_form .amelia-v2-booking #amelia-container .am-button span {
  font: 800 18px/25px var(--sec-font) !important;
}
#appointement_form .amelia-v2-booking #amelia-container .am-advsc.fc-theme-standard td.am-advsc__dayGridMonth-cell .fc-daygrid-day-frame{
  background-color: rgb(111 111 111/10%) !important;
}
#appointement_form .amelia-v2-booking #amelia-container .am-input-wrapper .am-input .el-input__inner:not([type=text-area]), #appointement_form .amelia-v2-booking #amelia-container .am-input-wrapper .am-textarea .el-input__inner:not([type=text-area]),#appointement_form.amelia-v2-booking #amelia-container .m-phone-number-input__input{
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
  color: #fff;
}
#appointement_form .amelia-v2-booking #amelia-container .am-fs__info-form__label {
  color: #ffffff;
}
#appointement_form .amelia-v2-booking #amelia-container .m-phone-number-input{
  border: var(--dark-blue);
}
#appointement_form .amelia-v2-booking #amelia-container .m-phone-number-input__select.m-select .m-input-wrapper-right,#appointement_form .amelia-v2-booking #amelia-container .m-phone-number-input__input{
  background: var(--dark-blue);
}
#appointement_form .amelia-v2-booking #amelia-container .m-phone-number-input__input .m-input-wrapper-input label{
  /* display: none; */
}
#appointement_form .amelia-v2-booking #amelia-container .m-phone-number-input__input{
  color: #fff !important;
}
#appointement_form input:-webkit-autofill,#appointement_form input:is(:-webkit-autofill, :autofill){  
  -webkit-text-fill-color: #fff !important;
}
#appointement_form .amelia-v2-booking #amelia-container .am-fs__payments-heading,#appointement_form .amelia-v2-booking #amelia-container .am-fs__payments-services-info span,#appointement_form .amelia-v2-booking #amelia-container .am-fs__payments-services-sub p,#appointement_form .amelia-v2-booking #amelia-container .am-fs__payments-app-info-subtotal span,#appointement_form .amelia-v2-booking #amelia-container .am-fs__payments-app-info-total{
  color: #fff;
}
#appointement_form .amelia-v2-booking #amelia-container .am-fs__payments-price{
  background: var(--dark-blue);
}
#appointement_form .amelia-v2-booking #amelia-container .am-fs__payments-service{
  padding: 0px;
}
#appointement_form .amelia-v2-booking #amelia-container .am-fs__payments-price{
  padding: 30px 20px;
  border-radius: 0px;
}
#appointement_form .amelia-v2-booking #amelia-container .am-select .el-input__inner{
  background-color: var(--dark-blue);
  color: #fff;
  border-color: var(--dark-blue);
}
#appointement_form .amelia-v2-booking #amelia-container .am-select .el-input__inner{
  height: 45px;
}
#appointement_form .amelia-v2-booking #amelia-container .am-advsc__slots-item__inner{
  background-color: var(--dark-blue);
  color: #fff;
  border-color: var(--dark-blue);
}
#appointement_form .amelia-v2-booking #amelia-container .am-fs__payments-services-info span{
  font: 500 15px/30px var(--pri-font) !important;
}
#appointement_form .amelia-v2-booking #amelia-container .am-adv-select .el-input .el-icon {
  font-size: 27px;
  color: #ffffff;
}
#appointement_form .am-advsc__slots-item.am-advsc__slots-item__selected .am-advsc__slots-item__inner,#appointement_form .amelia-v2-booking #amelia-container .am-advsc.fc-theme-standard td.am-advsc__dayGridMonth-cell .fc-daygrid-day-bg .fc-bg-event .am-advsc__slot-wrapper {
  background-color: var(--yellow) !important;
}
#appointement_form .am-fs__payments-services-sub p {
  font: 500 13px/30px var(--pri-font) !important;
}
#appointement_form .amelia-v2-booking #amelia-container .am-fs__payments-app-info-total>span:nth-child(2){
  color: var(--yellow);
}
#appointement_form .amelia-v2-booking #amelia-container .am-fs__congrats-main-heading,#appointement_form .amelia-v2-booking #amelia-container.am-fs__wrapper .el-form-item__error,#appointement_form .amelia-v2-booking #amelia-container .am-fs__congrats-info-customer div span,#appointement_form .amelia-v2-booking #amelia-container .am-advsc.fc-theme-standard td.am-advsc__dayGridMonth-cell .fc-daygrid-day-number{
  color: #fff;
}
#appointement_form .amelia-v2-booking #amelia-container .am-fs__congrats-info{
  background-color: var(--dark-blue);
  padding: 25px 25px;
}
#appointement_form .amelia-v2-booking #amelia-container .am-advsc.fc-theme-standard td.am-advsc__dayGridMonth-cell .fc-daygrid-day-frame{
  border-color: var(--yellow);
}
#appointement_form .amelia-v2-booking #amelia-container .am-fs-sb__step-wrapper{
  /* justify-content: center; */
}
#appointement_form .amelia-v2-booking #amelia-container .am-fs-sb-cs-cals ,.amelia-v2-booking #amelia-container .am-fs-sb-cs{
  display: none;
}
#appointement_form .amelia-v2-booking #amelia-container .am-fs__main-footer{
  position: unset;
}
#appointement_form .amelia-v2-booking #amelia-container .am-fs__congrats-main{
  margin-top: 0px;
  margin-bottom: 0px;
}
.amelia-v2-booking #amelia-container .am-button.am-button--default span::after {
  content: "";
  background-image: url(assets/images/law.svg) !important;
  font-family: 'FontAwesome';
  color: #000;
  font-size: 14px;
  text-align: center;
  margin-right: 6px;
  position: absolute;
  right: 15px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  top: 0px;
  z-index: 1;
  background-repeat: no-repeat;
  bottom: 0;
  margin: auto;
}

@keyframes rotation{
  0% {
      --gradient-angle: 0deg;
  }
  100% {
      --gradient-angle: 360deg;
  }
}