/* You can add global styles to this file, and also import other style files */
/*-- Default CSS --*/
html {
  overflow-x: hidden;
}

body {
  font-family: var(--common-font);
  color: var(--text-color);
  background-color: var(--white-color);
  font-size: var(--all-size);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black-color);
  line-height: 1.4;
}

p {
  line-height: 1.8;
}

a {
  transition: var(--transition);
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-100 {
  padding-bottom: 100px;
}

button:focus {
  outline: 0;
}

select {
  -webkit-appearance: listbox !important;
}

.btn.focus,
.btn:focus {
  box-shadow: none;
}

/*-- End Default CSS --*/
.show-more a {
  display: inline-block;
  font-size: 16px;
  color: inherit;
  border: 1px solid var(--primary-color);
  padding: 12px 15px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.show-more a:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
  background-color: var(--primary-color);
}
.show-more a:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
  background-color: var(--primary-color);
}
.show-more a:hover:before {
  width: 50%;
  opacity: 1;
}
.show-more a:hover:after {
  width: 50%;
  opacity: 1;
}

/*----- Home Page 1 -----*/
/*-- Navbar --*/
.main-nav {
  background-color: transparent;
  transition: var(--transition);
  color: var(--white-color);
  transition: var(--transition);
}
.main-nav nav .navbar-brand {
  max-width: 80px;
}
.main-nav nav .navbar-brand-title {
  margin: 0;
  color: inherit;
  font-size: x-large;
}
.main-nav nav .navbar-brand-title:hover {
  color: var(--primary-color);
}
.main-nav nav .navbar-nav {
  margin-left: auto;
  margin-right: 20px;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu {
  background: #242323;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover, .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus, .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--primary-color);
  letter-spacing: 1px;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover:before, .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus:before, .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active:before {
  display: none;
}
.main-nav nav .navbar-nav .nav-item:hover a {
  color: var(--primary-color);
}
.main-nav nav .navbar-nav .nav-item a {
  font-size: 16px;
  text-transform: capitalize;
  position: relative;
  color: inherit;
}
.main-nav nav .navbar-nav .nav-item a:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  bottom: -12px;
  transform: rotate(45deg);
  transition: var(--transition);
  opacity: 0;
  animation: rotate-animation 5s linear infinite;
  background-color: var(--primary-color);
}
.main-nav nav .navbar-nav .nav-item a:hover, .main-nav nav .navbar-nav .nav-item a:focus, .main-nav nav .navbar-nav .nav-item a.active {
  color: var(--primary-color);
}
.main-nav nav .navbar-nav .nav-item a:hover:before, .main-nav nav .navbar-nav .nav-item a:focus:before, .main-nav nav .navbar-nav .nav-item a.active:before {
  opacity: 1;
}
.main-nav.hide-nav {
  opacity: 0;
  visibility: hidden;
}

.main-nav.menu-shrink {
  opacity: 1;
  visibility: visible;
  padding-top: 0;
  padding-bottom: 0;
  transition: var(--transition);
  background-color: var(--white-color);
  color: var(--black-color);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.side-nav a {
  display: inline-block;
  font-size: 16px;
  color: inherit;
  border: 1px solid var(--primary-color);
  padding: 12px 15px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.side-nav a:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
  background-color: var(--primary-color);
}
.side-nav a:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
  background-color: var(--primary-color);
}
.side-nav a:hover:before {
  width: 50%;
  opacity: 1;
}
.side-nav a:hover:after {
  width: 50%;
  opacity: 1;
}

.mobile-nav {
  --mobile-menu-height: 85px;
  height: var(--mobile-menu-height);
  transition: var(--transition);
}

.mobile-nav .mean-bar {
  height: var(--mobile-menu-height);
  color: var(--white-color);
  transition: var(--transition);
  background: transparent;
}

.mobile-nav .mean-nav {
  margin-top: var(--mobile-menu-height);
}

.mobile-nav a.meanmenu-reveal {
  top: 50%;
  translate: 0 -50%;
  color: inherit;
  padding: 0;
  margin: 0 15px 0 0;
}

.mobile-nav.menu-shrink {
  --mobile-menu-height: 65px;
  transition: var(--transition);
}
.mobile-nav.menu-shrink .mean-bar {
  transition: var(--transition);
  background: var(--white-color);
  color: var(--black-color);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.mobile-nav.menu-shrink .mean-bar a {
  color: inherit;
}
.mobile-nav.menu-shrink .mean-bar a span {
  background: var(--black-color);
}

.mobile-nav .logo {
  width: 60px;
  top: 50%;
  translate: 0 -50%;
}

.mobile-nav.mean-container .mean-nav ul li a.active {
  color: var(--primary-color);
}

.mobile-nav nav .navbar-nav {
  height: 350px;
  overflow-y: scroll;
}

/*-- End Navbar --*/
/*-- Banner --*/
.banner-area {
  height: 830px;
  max-width: 100vw;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.banner-item .banner-left {
  margin-top: 60px;
}
.banner-item .banner-left h2 {
  color: var(--white-color);
  margin-bottom: 30px;
  font-size: 45px;
  font-family: var(--heading-font);
  font-weight: 900;
}
.banner-item .banner-left p {
  margin-bottom: 40px;
  color: #e0e0e0;
  font-size: 16px;
}
.banner-item .banner-left a {
  display: inline-block;
  color: var(--white-color);
  border: 3px solid var(--primary-color);
  padding: 18px 25px;
}
.banner-item .banner-left a i {
  display: inline-block;
  font-size: 20px;
  position: relative;
  top: 1px;
  left: 5px;
  transition: var(--transition);
}
.banner-item .banner-left a:hover {
  background-color: var(--primary-color);
}
.banner-item .banner-left a:hover i {
  left: 0;
}
.banner-item .banner-right img {
  width: 85%;
  position: relative;
  bottom: -180px;
}
.banner-item .banner-right .banner-animation {
  animation: banner-animation 10s infinite linear;
}

.banner-text-carousel .banner-item:not(:first-child) {
  display: none;
}

@keyframes banner-animation {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -50px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.banner-bottom {
  border-top: 30px solid rgba(182, 157, 116, 0.3490196078);
  border-bottom: 30px solid rgba(182, 157, 116, 0.3490196078);
  border-left: 40px solid rgba(182, 157, 116, 0.3490196078);
  border-right: 40px solid rgba(182, 157, 116, 0.3490196078);
  display: inline-block;
  position: absolute;
  bottom: -65px;
  margin-left: auto;
}
.banner-bottom ul {
  margin: 0;
  padding: 0;
  margin-bottom: -2px;
}
.banner-bottom ul li {
  list-style-type: none;
  display: inline-block;
  background-color: var(--white-color);
  position: relative;
}
.banner-bottom ul li i {
  padding-left: 20px;
  padding-right: 20px;
  line-height: 100px;
  text-align: center;
  font-size: 50px;
  display: inline-block;
  background-color: var(--primary-color);
}
.banner-bottom ul li:last-child {
  padding-left: 30px;
  padding-right: 110px;
  padding-top: 23px;
  padding-bottom: 24px;
  margin-left: -4px;
}
.banner-bottom ul li:last-child span {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--primary-color);
}
.banner-bottom ul li:last-child p {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-color);
}
.banner-bottom ul li:last-child img {
  position: absolute;
  right: 0;
  bottom: 0;
}

/*-- End Banner --*/
/*-- Help --*/
.about-area {
  padding-top: 165px;
  position: relative;
}

.about-shape img {
  position: absolute;
  right: 50px;
  bottom: 0;
  animation: move-left-animation 10s infinite linear;
}

.about-left {
  position: relative;
  max-width: 610px;
  margin-left: auto;
  padding-top: 65px;
  padding-bottom: 65px;
}
.about-left:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: -60px;
  top: 0;
  z-index: -1;
  animation: 10s move-right-animation linear infinite;
  border: 25px solid var(--primary-color);
  background-color: transparent;
}

@keyframes move-left-animation {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-50px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes move-right-animation {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes move-right-animation-two {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.about-item .about-right {
  max-width: 520px;
  margin-bottom: 120px;
}
.about-item .about-right h2 {
  font-size: 38px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  line-height: 1.4;
}
.about-item .about-right p {
  color: var(--black-color);
  margin-bottom: 25px;
}
.about-item .about-right .about-inner-left {
  width: 49%;
  display: inline-block;
}
.about-item .about-right .about-inner-left ul {
  margin: 0;
  padding: 0;
}
.about-item .about-right .about-inner-left ul li {
  list-style-type: none;
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 12px;
}
.about-item .about-right .about-inner-left ul li:last-child {
  margin-bottom: 0;
}
.about-item .about-right .about-inner-left ul li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 25px;
  position: relative;
  top: 2px;
}
.about-item .about-right .about-inner-right {
  width: 50%;
  display: inline-block;
}
.about-item .about-right .about-inner-right ul {
  margin: 0;
  padding: 0;
}
.about-item .about-right .about-inner-right ul li {
  list-style-type: none;
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 12px;
}
.about-item .about-right .about-inner-right ul li:last-child {
  margin-bottom: 0;
}
.about-item .about-right .about-inner-right ul li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 25px;
  position: relative;
  top: 2px;
}
.about-item .about-right .about-signature img {
  margin-top: 30px;
  margin-bottom: 30px;
}

.cmn-btn {
  display: inline-block;
  color: var(--white-color);
  background-color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 30px;
  position: relative;
  z-index: 1;
}
.cmn-btn:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
  background-color: var(--black-color);
}
.cmn-btn:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
  background-color: var(--black-color);
}
.cmn-btn:hover {
  color: var(--white-color);
}
.cmn-btn:hover:before {
  width: 50%;
  opacity: 1;
}
.cmn-btn:hover:after {
  width: 50%;
  opacity: 1;
}

/*-- End Help --*/
/*-- Practice --*/
.section-title {
  text-align: center;
  margin-bottom: 50px;
  margin-top: -7px;
}
.section-title span {
  display: block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}
.section-title h2 {
  font-weight: 700;
  font-size: 38px;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.practice-area {
  background-color: #f5f1f1;
}

.service-item {
  display: none;
}

.practice-item {
  text-align: left;
  padding: 10px 15px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.practice-item:hover {
  transform: translate(0, -10px);
}
.practice-item:hover .practice-icon:before {
  background-color: #66573e;
  transform: rotate(135deg);
}
.practice-item:hover .practice-icon:after {
  background-color: #86714d;
  transform: rotate(-45deg);
}
.practice-item:hover .practice-icon i {
  color: var(--white-color);
}
.practice-item .practice-icon {
  position: relative;
  z-index: 1;
  margin-top: 25px;
}
.practice-item .practice-icon:before {
  position: absolute;
  content: "";
  width: 55px;
  height: 55px;
  left: 0;
  top: -5px;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  transform: rotate(45deg);
  z-index: -1;
  transition: var(--transition);
  background-color: #4c4b4b;
}
.practice-item .practice-icon:after {
  position: absolute;
  content: "";
  width: 55px;
  height: 55px;
  left: 0;
  top: -15px;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  transform: rotate(45deg);
  z-index: -2;
  transition: var(--transition);
  background-color: #2d2c2c;
}
.practice-item .practice-icon i {
  color: var(--primary-color);
  margin-bottom: 32px;
  display: block;
  font-size: 38px;
  position: relative;
  top: -10px;
  transition: var(--transition);
}
.practice-item .title {
  margin-bottom: 25px;
  font-weight: 500;
  font-size: 24px;
  color: var(--black-color);
}
.practice-item p {
  margin-bottom: 25px;
}
.practice-item a {
  display: inline-block;
  color: var(--white-color);
  border: 1px solid var(--white-color);
  padding: 15px 30px;
  position: relative;
  z-index: 1;
}
.practice-item a:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
  background-color: var(--white-color);
}
.practice-item a:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
  background-color: var(--white-color);
}
.practice-item a:hover {
  color: var(--black-color);
}
.practice-item a:hover:before {
  width: 50%;
  opacity: 1;
}
.practice-item a:hover:after {
  width: 50%;
  opacity: 1;
}
.practice-item .practice-shape-one {
  position: absolute;
  right: -25px;
  bottom: -60px;
}
.practice-item .practice-shape-two {
  position: absolute;
  right: -72px;
  bottom: -56px;
}

/*-- End Practice --*/
/*-- Expertise --*/
.expertise-area {
  background-color: #1c1c1c;
}
.expertise-area .section-title h2 {
  margin-left: 0;
  color: var(--white-color);
}

.expertise-item {
  color: var(--white-color);
}
.expertise-item ul {
  margin: 0;
  padding: 0;
}
.expertise-item ul li {
  list-style-type: none;
  display: block;
  position: relative;
  margin-bottom: 70px;
}
.expertise-item ul li:last-child {
  margin-bottom: 0;
}
.expertise-item ul li .expertise-icon {
  position: absolute;
  top: 0;
  left: 0;
}
.expertise-item ul li .expertise-icon i {
  color: var(--primary-color);
  font-size: 45px;
  position: absolute;
  left: 22px;
  top: 22px;
}
.expertise-item ul li h3 {
  padding-left: 135px;
  font-size: 28px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 18px;
  color: var(--white-color);
}
.expertise-item ul li p {
  padding-left: 135px;
  font-size: 16px;
  margin-bottom: 0;
}

.expertise-image {
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 100px;
}
.expertise-image:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  top: 0;
  z-index: -1;
  border: 10px solid var(--primary-color);
  background-color: #373535;
}
.expertise-image img {
  position: relative;
  bottom: 10px;
}

/*-- End Expertise --*/
/*-- Attorney --*/
.attorney-slider {
  overflow: hidden;
}
.attorney-slider:not(.owl-loaded) {
  display: flex;
  gap: 20px;
}
.attorney-slider:not(.owl-loaded) .attorney-item:nth-child(n+3) {
  display: none;
}
.attorney-slider:not(.owl-loaded) .attorney-item {
  width: 33.33%;
}

.attorney-item {
  width: 100%;
  transition: var(--transition);
  position: relative;
  margin-bottom: 30px;
  color: var(--white-color);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.attorney-item img {
  width: 100%;
}
.attorney-item:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.attorney-item:hover {
  transform: translate(0, -10px);
}
.attorney-item:hover h3 a {
  color: var(--primary-color);
}
.attorney-item .attorney-inner {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 30px;
}
.attorney-item .attorney-inner span {
  display: block;
  margin-bottom: 20px;
  padding-bottom: 7px;
  position: relative;
}
.attorney-item .attorney-inner span:before {
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: var(--primary-color);
}
.attorney-item .attorney-inner h3 {
  margin-bottom: 0;
  line-height: 1.4;
}
.attorney-item .attorney-inner h3 a {
  display: block;
  color: var(--white-color);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 5px;
}
.attorney-item .attorney-inner h3 a:hover {
  color: var(--primary-color);
}
.attorney-item .attorney-inner p {
  margin-bottom: 0;
}
.attorney-item .attorney-inner p a {
  color: var(--white-color);
}
.attorney-item .attorney-inner p a:hover {
  color: var(--primary-color);
}

/*-- Portfolio --*/
.portfolio-area .text-center {
  margin-top: 20px;
}

.portfolio-item {
  width: 100%;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  color: var(--white-color);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.portfolio-item img {
  width: 100%;
}
.portfolio-item:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9770812131) 0%, rgba(182, 157, 116, 0.2860699771) 56%);
}
.portfolio-item:hover {
  transform: translate(0, -10px);
}
.portfolio-item:hover h3 a {
  color: var(--primary-color);
}
.portfolio-item .portfolio-inner {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 30px;
}
.portfolio-item .portfolio-inner span {
  display: block;
  margin-bottom: 20px;
  padding-bottom: 7px;
  position: relative;
}
.portfolio-item .portfolio-inner span:before {
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: var(--primary-color);
}
.portfolio-item .portfolio-inner h3 {
  margin-bottom: 0;
  line-height: 1.4;
}
.portfolio-item .portfolio-inner h3 a {
  display: block;
  color: var(--white-color);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 5px;
}
.portfolio-item .portfolio-inner h3 a:hover {
  color: var(--primary-color);
}
.portfolio-item .portfolio-inner p {
  margin-bottom: 0;
}

/*-- End Portfolio --*/
/*-- Team --*/
.team-area {
  padding-bottom: 190px;
}

.team-item {
  margin-bottom: 30px;
}
.team-item img {
  width: 100%;
}
.team-item .team-inner {
  background-color: var(--white-color);
  text-align: center;
  box-shadow: 0px 0px 15px 0px #ddd;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -40px;
  position: relative;
  transition: var(--transition);
}
.team-item .team-inner ul {
  margin: 0;
  padding: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #282828;
  max-width: 155px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 30px;
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  box-shadow: 0px 8px 13px 0px #ddd;
  transition: var(--transition);
}
.team-item .team-inner ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 4px;
  margin-left: 4px;
}
.team-item .team-inner ul li a {
  display: block;
  color: var(--primary-color);
}
.team-item .team-inner h3 {
  margin-bottom: 4px;
  padding-top: 25px;
  transition: var(--transition);
  font-family: var(--heading-font);
}
.team-item .team-inner h3 a {
  color: var(--black-color);
  font-weight: 600;
  font-size: 18px;
}
.team-item .team-inner span {
  display: block;
  color: var(--primary-color);
  font-size: 14px;
  transition: var(--transition);
}
.team-item:hover .team-inner {
  background-color: var(--primary-color);
  max-width: 100%;
}
.team-item:hover .team-inner ul {
  background-color: var(--white-color);
  box-shadow: none;
}
.team-item:hover .team-inner ul li a:hover {
  color: var(--black-color);
}
.team-item:hover .team-inner h3 a {
  color: var(--white-color);
}
.team-item:hover .team-inner h3 a:hover {
  color: var(--black-color);
}
.team-item:hover .team-inner span {
  color: var(--black-color);
}

/*-- End Team --*/
/*-- Location --*/
.loaction-area {
  position: relative;
  top: -100px;
}

.location-bg {
  background-image: url("img/home/location-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 50px;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
}
.location-bg:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--primary-color);
  opacity: 0.9;
}
.location-bg:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: -20px;
  width: 88%;
  height: 20px;
  margin-left: auto;
  margin-right: auto;
  background-color: #c3b59f;
}

.location-item {
  margin-bottom: 30px;
  position: relative;
  padding-left: 90px;
  color: var(--white-color);
}
.location-item .location-icon {
  position: absolute;
  left: 0;
  top: 0;
}
.location-item .location-icon i {
  display: inline-block;
  color: var(--white-color);
  font-size: 26px;
  position: absolute;
  left: 32px;
  top: 22px;
}
.location-item h3 {
  color: var(--white-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 28px;
}
.location-item ul {
  margin: 0;
  padding: 0;
  margin-bottom: 2px;
}
.location-item ul li {
  list-style-type: none;
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
}
.location-item ul li:last-child {
  margin-bottom: 0;
}
.location-item ul li a {
  color: var(--white-color);
}
.location-item ul li a:hover {
  color: var(--black-color);
}
.location-item .location-link {
  display: block;
  color: #282828;
  margin-top: 10px;
}
.location-item .location-link:hover {
  color: var(--white-color);
}

/*-- End Location --*/
/*-- Contact Form --*/
.contact-form {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.contact-form.form-white .form-control {
  color: var(--white-color);
}

.contact-wrap {
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
}
.contact-wrap .form-group {
  margin-bottom: 30px;
}
.contact-wrap .form-group .current {
  color: #ababab;
}
.contact-wrap .form-group .nice-select {
  float: unset;
}
.contact-wrap .form-group .nice-select.open .list {
  background-color: transparent !important;
  border: 1px solid var(--primary-color);
}
.contact-wrap .form-group .nice-select .option:hover, .contact-wrap .form-group .nice-select .option.focus, .contact-wrap .form-group .nice-select .option.selected.focus {
  background-color: var(--primary-color);
}
.contact-wrap .form-group .form-control {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  border-radius: 0;
  height: 60px;
  padding-left: 30px;
  font-size: 15px;
}
.contact-wrap .form-group .form-control:focus {
  box-shadow: none;
  border: 1px solid var(--white-color);
}
.contact-wrap .form-group ::-moz-placeholder {
  color: #ababab;
}
.contact-wrap .form-group ::placeholder {
  color: #ababab;
}
.contact-wrap .form-group textarea {
  height: auto !important;
  padding-top: 15px;
}

.contact-btn {
  font-weight: 600;
  font-size: var(--all-size);
  color: var(--white-color);
  background-color: var(--primary-color);
  padding: 16px 40px;
  border: 0;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.contact-btn:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
  background-color: var(--black-color);
}
.contact-btn:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
  background-color: var(--black-color);
}
.contact-btn:hover {
  color: var(--white-color);
}
.contact-btn:hover:before {
  width: 50%;
  opacity: 1;
}
.contact-btn:hover:after {
  width: 50%;
  opacity: 1;
}

.list-unstyled {
  color: #dc3545;
  margin-bottom: 0;
  font-size: 15px;
  margin-top: 5px;
}

.text-danger {
  color: #dc3545;
  margin-top: 25px;
  margin-bottom: 0;
  font-size: 24px;
}

.text-success {
  color: #28a745;
  margin-top: 25px;
  font-size: 25px;
}

/*-- End Contact Form --*/
/*-- Blog --*/
.blog-area {
  padding-bottom: 200px;
}
.blog-area .owl-theme .owl-dots .owl-dot.active span {
  background: var(--primary-color);
  position: relative;
}
.blog-area .owl-theme .owl-dots .owl-dot.active span:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  left: -5px;
  top: -5px;
  border: 1px solid var(--primary-color);
}
.blog-area .owl-theme .owl-dots .owl-dot span {
  background: #daceb9;
}

.blog-item {
  border-radius: 0 0 8px 8px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 12px 0px rgba(221, 221, 221, 0.6784313725);
  transition: var(--transition);
  margin-left: 15px;
  margin-right: 15px;
}
.blog-item:hover {
  transform: translate(0, -10px);
}
.blog-item a {
  display: block;
}
.blog-item a img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}
.blog-item .blog-inner {
  padding: 0 15px 30px 20px;
}
.blog-item .blog-inner span {
  display: block;
  text-align: center;
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  max-width: 165px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: -20px;
  border-radius: 30px;
  background-color: var(--primary-color);
  margin-bottom: 30px;
}
.blog-item .blog-inner h3 {
  margin-bottom: 18px;
  line-height: 1.4;
}
.blog-item .blog-inner h3 a {
  display: block;
  font-weight: 600;
  font-size: 20px;
  color: #111111;
}
.blog-item .blog-inner h3 a:hover {
  color: var(--primary-color);
}
.blog-item .blog-inner ul {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
}
.blog-item .blog-inner ul li {
  list-style-type: none;
  display: inline-block;
  color: var(--primary-color);
  font-size: 14px;
  margin-right: 20px;
}
.blog-item .blog-inner ul li:last-child {
  margin-right: 0;
}
.blog-item .blog-inner ul li:last-child i {
  font-size: 14px;
  position: relative;
  top: -2px;
}
.blog-item .blog-inner ul li i {
  display: inline-block;
  font-size: 17px;
  margin-right: 3px;
}
.blog-item .blog-inner ul li a {
  display: inline-block;
  color: var(--primary-color);
  font-size: 14px;
}
.blog-item .blog-inner ul li a:hover {
  color: var(--black-color);
}
.blog-item .blog-inner p {
  margin-bottom: 15px;
  color: #646464;
}
.blog-item .blog-inner .blog-link {
  display: block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 18px;
}
.blog-item .blog-inner .blog-link i {
  font-size: 20px;
  position: relative;
  top: 2px;
  left: -2px;
}
.blog-item .blog-inner .blog-link:hover {
  color: var(--black-color);
  letter-spacing: 1px;
}

/*-- End Blog --*/
/*-- Newsletter --*/
.newsletter-area {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  background-color: #212222;
  position: relative;
  top: -100px;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 60px;
}
.newsletter-area img {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 260px;
}
.newsletter-area h2 {
  font-weight: 700;
  font-size: 32px;
  font-family: var(--heading-font);
  color: var(--white-color);
  margin-bottom: 30px;
}
.newsletter-area .newsletter-form {
  position: relative;
  max-width: 490px;
}
.newsletter-area .newsletter-form .form-control {
  height: 46px;
  border-radius: 0;
  border: 1px solid var(--primary-color);
  background-color: transparent;
  padding-left: 20px;
  color: var(--white-color);
  font-size: 15px;
}
.newsletter-area .newsletter-form .form-control:focus {
  box-shadow: none;
}
.newsletter-area .newsletter-form .validation-danger {
  color: #dc3545;
  margin-top: 10px;
}
.newsletter-area .newsletter-form ::-moz-placeholder {
  color: #a9a3a3;
}
.newsletter-area .newsletter-form ::placeholder {
  color: #a9a3a3;
}
.newsletter-area .newsletter-form .contact-btn {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--white-color);
  border-radius: 0;
  padding: 11px 20px;
}

.btn.disabled,
.btn:disabled {
  opacity: 1;
}

/*-- End Newsletter --*/
/*-- Footer --*/
footer {
  position: relative;
  color: var(--white-color);
  z-index: 1;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
footer:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  z-index: -1;
  top: 0;
  background-color: #1c1d1e;
  opacity: 0.99;
}
footer .footer-item {
  margin-bottom: 30px;
}
footer .footer-item .footer-logo a {
  max-width: 80px;
  display: block;
}
footer .footer-item .footer-logo a img {
  margin-bottom: 35px;
  width: 100px;
}
footer .footer-item .footer-logo p {
  margin-bottom: 30px;
}
footer .footer-item .footer-logo ul {
  margin: 0;
  padding: 0;
}
footer .footer-item .footer-logo ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 18px;
}
footer .footer-item .footer-logo ul li:last-child {
  margin-right: 0;
}
footer .footer-item .footer-logo ul li a {
  font-size: 20px;
  color: var(--white-color);
}
footer .footer-item .footer-logo ul li a:hover {
  color: var(--primary-color);
}
footer .footer-item .footer-service h3 {
  margin-bottom: 30px;
  color: var(--white-color);
  font-weight: 600;
  font-size: 22px;
  display: inline-block;
  border-bottom: 2px solid var(--primary-color);
}
footer .footer-item .footer-service ul {
  margin: 0;
  padding: 0;
}
footer .footer-item .footer-service ul li {
  list-style-type: none;
  display: block;
  margin-bottom: 20px;
}
footer .footer-item .footer-service ul li:last-child {
  margin-bottom: 0;
}
footer .footer-item .footer-service ul li a {
  color: var(--white-color);
  display: block;
}
footer .footer-item .footer-service ul li a:hover {
  letter-spacing: 1px;
  color: var(--primary-color);
}
footer .footer-item .footer-service ul li a i {
  display: inline-block;
}
footer .footer-item .footer-find h3 {
  margin-bottom: 30px;
  color: var(--white-color);
  font-weight: 600;
  font-size: 22px;
  display: inline-block;
  border-bottom: 2px solid var(--primary-color);
}
footer .footer-item .footer-find ul {
  margin: 0;
  padding: 0;
}
footer .footer-item .footer-find ul li {
  list-style-type: none;
  display: block;
  margin-bottom: 20px;
}
footer .footer-item .footer-find ul li i {
  font-size: 23px;
  margin-right: 6px;
  position: relative;
  top: 2px;
  color: var(--primary-color);
}
footer .footer-item .footer-find ul li:last-child {
  margin-bottom: 0;
}
footer .footer-item .footer-find ul li a {
  display: inline-block;
  color: var(--white-color);
}
footer .footer-item .footer-find ul li a:hover {
  color: var(--primary-color);
  letter-spacing: 1px;
}
footer .copyright-area {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 70px;
  border-top: 1px solid #565655;
  position: relative;
}
footer .copyright-area .copyright-item span {
  display: inline-block;
  margin: 0 10px;
}
footer .copyright-area .copyright-item p {
  margin-bottom: 0;
}
footer .copyright-area .copyright-item a {
  color: var(--white-color);
  display: inline-block;
}
footer .copyright-area .copyright-item a:hover {
  color: var(--primary-color);
}
footer .copyright-area .copyright-right {
  text-align: right;
}

/*-- End Footer --*/
/*----- End Home Page 1 -----*/
/*----- Home Page 2 -----*/
/*-- Banner --*/
.banner-area-two .banner-item .banner-right img {
  bottom: -65px;
  z-index: 2;
}

/*-- End Banner --*/
/*-- Counter --*/
.counter-area {
  background-color: #fefaf3;
}

.counter-bg {
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.4588235294);
  padding-top: 50px;
  padding-bottom: 20px;
  background-image: url("img/home-two/4.png");
  background-repeat: repeat;
  background-color: var(--white-color);
  position: relative;
  top: -110px;
  z-index: 5;
}

.counter-item {
  margin-bottom: 30px;
  position: relative;
}
.counter-item i {
  color: var(--primary-color);
  display: inline-block;
  font-size: 50px;
  position: absolute;
  top: 0;
  left: 20px;
}
.counter-item .counter-inner {
  padding-left: 90px;
}
.counter-item .counter-inner h3 {
  font-weight: 600;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 0;
}
.counter-item .counter-inner p {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 18px;
  color: #504f4f;
}

/*-- End Counter --*/
/*-- Help --*/
.about-area-two {
  background-color: #fefaf3;
  padding-top: 0;
}
.about-area-two .about-shape img {
  right: 0;
  left: 50px;
}
.about-area-two .about-left:before {
  z-index: 1;
}
.about-area-two .about-left img {
  width: 100%;
  z-index: 2;
  position: relative;
}
.about-area-two .about-item .about-right p {
  margin-bottom: 20px;
}
.about-area-two .about-item .about-right .about-signature img {
  margin-top: 25px;
  margin-bottom: 25px;
}
.about-area-two .about-item .about-right h3 {
  font-weight: 600;
  font-size: var(--all-size);
  color: var(--black-color);
  margin-bottom: 10px;
}
.about-area-two .about-item .about-right span {
  display: block;
  color: var(--black-color);
  font-size: 14px;
}
.about-area-two .about-wrap .about-item .about-right {
  margin-left: auto;
  margin-right: 50px;
}
.about-area-two .about-wrap .about-item .cmn-btn {
  margin-top: 40px;
}
.about-area-two .about-wrap .about-left {
  margin-left: 0;
}
.about-area-two .about-wrap .about-left:before:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: -60px;
  top: 0;
  z-index: -1;
  animation: 10s move-right-animation-two linear infinite;
  border: 25px solid var(--primary-color);
  background-color: transparent;
}

/*-- End Help --*/
/*-- Practice --*/
.practice-area-two {
  background-color: var(--white-color);
}

/*-- End Practice --*/
/*-- Expertise --*/
.expertise-area-two .expertise-item ul li {
  border: 2px solid var(--primary-color);
  padding: 20px 20px 25px 35px;
  margin-bottom: 30px;
}
.expertise-area-two .expertise-item ul li .expertise-icon {
  top: 35px;
  left: 45px;
}

/*-- End Expertise --*/
/*----- End Home Page 2 -----*/
/*----- Home Page 3 -----*/
/*-- Home Slider --*/
.slider-bg-one {
  background-image: url("img/home-two/home-slider/bg1.jpg");
}

.slider-item {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 835px;
  position: relative;
}
.slider-item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--black-color);
  opacity: 0.95;
}

.slider-text {
  position: relative;
}
.slider-text h1 {
  margin-bottom: 0;
  color: var(--white-color);
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 46px;
  display: inline-block;
  margin-bottom: 25px;
}
.slider-text p {
  margin-bottom: 37px;
  font-weight: 900;
  font-size: 24px;
  font-family: var(--heading-font);
}
.slider-text a {
  display: inline-block;
  color: var(--white-color);
  border: 3px solid var(--primary-color);
  padding: 18px 25px;
}
.slider-text a i {
  display: inline-block;
  font-size: 20px;
  position: relative;
  top: 1px;
  left: 5px;
  transition: var(--transition);
}
.slider-text a:hover {
  background-color: var(--primary-color);
}
.slider-text a:hover i {
  left: 0;
}

.slider-shape .s-s-one {
  position: relative;
  top: 133px;
}
.slider-shape .s-s-two {
  position: relative;
  top: 180px;
}
.slider-shape .s-s-three {
  position: relative;
  top: 115px;
}

.home-slider .owl-prev {
  position: absolute;
  top: 45%;
  left: 20px;
  width: 60px;
  height: 60px;
  font-size: 30px !important;
  line-height: 60px !important;
  border-radius: 50% !important;
  color: var(--white-color) !important;
  background-color: rgba(182, 157, 116, 0.231372549) !important;
  transition: var(--transition);
}
.home-slider .owl-prev:hover {
  background-color: var(--primary-color) !important;
}
.home-slider .owl-next {
  position: absolute;
  top: 45%;
  right: 20px;
  width: 60px;
  height: 60px;
  font-size: 30px !important;
  line-height: 60px !important;
  border-radius: 50% !important;
  color: var(--white-color) !important;
  background-color: rgba(182, 157, 116, 0.231372549) !important;
  transition: var(--transition);
}
.home-slider .owl-next:hover {
  background-color: var(--primary-color) !important;
}

.home-slider.owl-theme .owl-nav {
  margin-top: 0;
}

.home-slider.owl-theme .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 120px;
}
.home-slider.owl-theme .owl-dots .owl-dot.active span {
  background: var(--white-color);
  width: 30px;
}
.home-slider.owl-theme .owl-dots .owl-dot span {
  background: var(--primary-color);
  width: 20px;
  height: 5px;
  transition: var(--transition);
}

/*-- End Home Slider --*/
/*-- Slider Bottom --*/
.slider-bottom-area .slider-bottom-wrap {
  background-color: rgba(182, 157, 116, 0.3490196078);
  padding-top: 45px;
  padding-bottom: 15px;
  padding-left: 45px;
  padding-right: 45px;
  position: relative;
  top: -100px;
  z-index: 1;
}
.slider-bottom-area .slider-bottom-wrap .banner-bottom {
  border-top: 0;
  border-bottom: 0;
  border-right: 0;
  border-left: 0;
  position: relative;
  bottom: 0;
  margin-bottom: 30px;
}
.slider-bottom-area .slider-bottom-wrap .banner-bottom ul li:last-child {
  padding-left: 20px;
  padding-right: 50px;
}

/*-- End Slider Bottom --*/
/*-- Help --*/
.about-area-three {
  padding-top: 0;
}

/*-- End Help --*/
/*-- Counter --*/
.counter-area-two {
  background-color: transparent;
}

/*-- End Counter --*/
/*----- End Home Page 3 -----*/
/*----- About Page -----*/
/*-- Page Title --*/
.page-title-area-three .page-title-text {
  margin-top: 85px;
}

.title-img-one {
  background-image: url("img/about/1.jpg");
}

.page-title-area {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 450px;
  text-align: center;
  position: relative;
}
.page-title-area:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--black-color);
  opacity: 0.9;
}

.page-title-text {
  position: relative;
  margin-top: 120px;
  color: var(--white-color);
}
.page-title-text h2 {
  font-weight: 900;
  font-size: 38px;
  font-family: var(--heading-font);
  color: var(--white-color);
  margin-bottom: 20px;
}
.page-title-text ul {
  margin: 0;
  padding: 0;
  margin-bottom: 25px;
}
.page-title-text ul li {
  list-style-type: none;
  display: inline-block;
  font-weight: 600;
  font-size: 17px;
}
.page-title-text ul li i {
  font-size: 20px;
  position: relative;
  top: 1px;
  display: inline-block;
}
.page-title-text ul li a {
  display: inline-block;
  color: var(--white-color);
}
.page-title-text ul li a:hover {
  color: var(--primary-color);
}
.page-title-text .page-title-btn a {
  display: inline-block;
  color: var(--white-color);
  border: 3px solid var(--primary-color);
  padding: 12px 28px;
  font-size: 15px;
}
.page-title-text .page-title-btn a i {
  display: inline-block;
  font-size: 20px;
  position: relative;
  top: 1px;
  left: 5px;
  transition: var(--transition);
}
.page-title-text .page-title-btn a:hover {
  background-color: var(--primary-color);
}
.page-title-text .page-title-btn a:hover i {
  left: 0;
}

/*-- End Page Title --*/
/*-- Help --*/
.about-area-four {
  padding-top: 100px;
}

/*-- End Help --*/
/*-- About --*/
.about-page-area {
  padding-bottom: 170px;
}

.about-page-item {
  margin-bottom: 30px;
}
.about-page-item .about-video-wrap {
  position: relative;
}
.about-page-item .about-video-wrap .about-video {
  position: relative;
}
.about-page-item .about-video-wrap .about-video:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--black-color);
  opacity: 0.8;
}
.about-page-item .about-video-wrap a {
  color: var(--primary-color);
  position: absolute;
  top: 46%;
  left: 46%;
  display: block;
  background-color: var(--white-color);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
}
.about-page-item .about-video-wrap a:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.about-page-item .about-content {
  margin-top: 25px;
  margin-bottom: 25px;
}
.about-page-item .about-content h2 {
  font-weight: 600;
  font-size: 22px;
  font-family: var(--heading-font);
  margin-bottom: 10px;
}
.about-page-item .about-content p {
  margin-bottom: 0;
  color: #4a4a4a;
}
.about-page-item .about-information {
  margin-bottom: 25px;
}
.about-page-item .about-information h2 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}
.about-page-item .about-information h2 span {
  display: inline-block;
  color: var(--primary-color);
}
.about-page-item .about-information p {
  margin-bottom: 10px;
  color: var(--black-color);
}

/*-- End About --*/
/*----- End About Page -----*/
/*----- Attorneys Page -----*/
/*-- Team --*/
.team-area-two {
  padding-bottom: 170px;
}

/*-- End Team --*/
/*----- End Attorneys Page -----*/
/*----- Attorneys Details Page -----*/
/*-- Attorneys Details --*/
.attor-details-item {
  margin-bottom: 30px;
}
.attor-details-item img {
  width: 100%;
}
.attor-details-item .attor-details-left {
  padding: 0 50px 40px 50px;
  box-shadow: 0px 0px 20px 0px #ddd;
  margin-bottom: 30px;
}
.attor-details-item .attor-details-left .attor-social {
  text-align: center;
  margin-top: -28px;
}
.attor-details-item .attor-details-left .attor-social ul {
  margin: 0;
  padding: 0;
  background-color: #282828;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px 0px #ddd;
  margin-bottom: 25px;
}
.attor-details-item .attor-details-left .attor-social ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 4px;
  margin-left: 4px;
}
.attor-details-item .attor-details-left .attor-social ul li a {
  display: block;
  color: var(--primary-color);
  font-size: 18px;
}
.attor-details-item .attor-details-left .attor-social ul li a:hover {
  color: var(--white-color);
}
.attor-details-item .attor-details-left .attor-social-details {
  margin-bottom: 30px;
}
.attor-details-item .attor-details-left .attor-social-details h3 {
  font-weight: 600;
  font-family: var(--heading-font);
  font-size: 22px;
  margin-bottom: 20px;
}
.attor-details-item .attor-details-left .attor-social-details ul {
  margin: 0;
  padding: 0;
}
.attor-details-item .attor-details-left .attor-social-details ul li {
  list-style-type: none;
  display: block;
  color: var(--black-color);
  margin-bottom: 13px;
}
.attor-details-item .attor-details-left .attor-social-details ul li:last-child {
  margin-bottom: 0;
}
.attor-details-item .attor-details-left .attor-social-details ul li a {
  display: inline-block;
  color: var(--black-color);
}
.attor-details-item .attor-details-left .attor-social-details ul li a:hover {
  color: var(--primary-color);
}
.attor-details-item .attor-details-left .attor-social-details ul li i {
  display: inline-block;
  color: var(--primary-color);
  font-size: 18px;
  margin-right: 5px;
}
.attor-details-item .attor-details-left .attor-work h3 {
  font-weight: 600;
  font-family: var(--heading-font);
  font-size: 22px;
  margin-bottom: 20px;
}
.attor-details-item .attor-details-left .attor-work ul {
  margin: 0;
  padding: 0;
}
.attor-details-item .attor-details-left .attor-work ul li {
  list-style-type: none;
  display: block;
  color: var(--black-color);
  margin-bottom: 8px;
}
.attor-details-item .attor-details-left .attor-work ul li:last-child {
  margin-bottom: 0;
}
.attor-details-item .attor-details-left .attor-work .attor-work-left {
  display: inline-block;
}
.attor-details-item .attor-details-left .attor-work .attor-work-left ul li {
  position: relative;
}
.attor-details-item .attor-details-left .attor-work .attor-work-left ul li:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  top: 13px;
  right: -88px;
  background-color: #cccccc;
}
.attor-details-item .attor-details-left .attor-work .attor-work-right {
  display: inline-block;
  margin-left: 115px;
}
.attor-details-item .attor-prev ul {
  margin: 0;
  padding: 0;
}
.attor-details-item .attor-prev ul li {
  list-style-type: none;
  display: inline-block;
}
.attor-details-item .attor-prev ul li:last-child {
  float: right;
}
.attor-details-item .attor-prev ul li a {
  display: block;
  color: #3f3f3f;
  border: 1px solid var(--primary-color);
  padding: 10px 20px;
  border-radius: 8px;
}
.attor-details-item .attor-prev ul li a:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.attor-details-item .attor-details-right .attor-details-name {
  margin-bottom: 40px;
}
.attor-details-item .attor-details-right .attor-details-name h2 {
  font-weight: 600;
  font-size: 38px;
  font-family: var(--heading-font);
  margin-bottom: 15px;
}
.attor-details-item .attor-details-right .attor-details-name span {
  display: block;
  color: #999897;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 5px;
}
.attor-details-item .attor-details-right .attor-details-name p {
  margin-bottom: 0;
  color: #838383;
}
.attor-details-item .attor-details-right .attor-details-things {
  margin-bottom: 30px;
}
.attor-details-item .attor-details-right .attor-details-things h1, .attor-details-item .attor-details-right .attor-details-things h2, .attor-details-item .attor-details-right .attor-details-things h3, .attor-details-item .attor-details-right .attor-details-things h4, .attor-details-item .attor-details-right .attor-details-things h5, .attor-details-item .attor-details-right .attor-details-things h6 {
  color: var(--primary-color);
  font-family: var(--heading-font);
  margin-bottom: 20px;
}
.attor-details-item .attor-details-right .attor-details-things h3 {
  font-weight: 600;
  font-size: 22px;
}
.attor-details-item .attor-details-right .attor-details-things p {
  margin-bottom: 20px;
  color: var(--black-color);
}
.attor-details-item .attor-details-right .attor-details-things ul {
  margin: 0 0 1.5em 0;
}
.attor-details-item .attor-details-right .attor-details-things ul li {
  display: list-item;
  color: var(--black-color);
  margin-bottom: 15px;
}
.attor-details-item .attor-details-right .attor-details-things ul li:last-child {
  margin-bottom: 0;
}
.attor-details-item.is-sticky {
  position: sticky;
  top: 100px;
}

/*-- End Attorneys Details --*/
/*-- Contact Form --*/
.contact-form-two {
  background-image: none;
}
.contact-form-two h2 {
  font-size: 25px;
  font-weight: 600;
  font-family: var(--heading-font);
  margin-bottom: 40px;
  text-align: center;
}
.contact-form-two .contact-wrap {
  max-width: 100%;
  padding: 55px 100px;
  box-shadow: 0px 0px 20px 0px #ddd;
}
.contact-form-two .contact-wrap .form-group .form-control:focus {
  border: 1px solid var(--black-color);
}
.contact-form-two .contact-wrap .form-group .list li {
  background-color: var(--white-color);
  color: var(--black-color);
}

/*-- End Contact Form --*/
/*----- End Attorneys Details Page -----*/
/*----- Case Studies Page -----*/
/*-- Portfolio --*/
.portfolio-area-two {
  padding-bottom: 200px;
}

.case-pagination {
  text-align: center;
  margin-top: 10px;
}
.case-pagination ul {
  margin: 0;
  padding: 0;
}
.case-pagination ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
}
.case-pagination ul li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-weight: 600;
  color: #111111;
  background-color: #d3d2d1;
  box-shadow: 0px 0px 15px 0px #d3d2d1;
}
.case-pagination ul li a:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.case-pagination ul li a i {
  font-weight: 600;
}

/*-- End Portfolio --*/
/*----- End Case Studies Page -----*/
/*----- Case Studies Details Page -----*/
/*-- Case Details Img --*/
.case-details-item {
  margin-bottom: 30px;
}
.case-details-item img {
  width: 100%;
}
.case-details-item h3 {
  font-size: 22px;
  font-weight: 600;
  font-family: var(--heading-font);
  margin-bottom: 20px;
  line-height: 30px;
}
.case-details-item p {
  margin-bottom: 0;
  color: #4a4a4a;
}
.case-details-item ul {
  margin: 0;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.case-details-item ul li {
  list-style-type: none;
  display: block;
  color: #4a4a4a;
}
.case-details-item ul li span {
  display: inline-block;
  font-weight: 600;
}

/*-- End Case Details Img --*/
/*-- Case Details Tab --*/
.case-details-tab {
  background-color: #1c1c1c;
}
.case-details-tab .case-details-tab-item h2 {
  color: var(--white-color);
  font-size: 38px;
  font-weight: 600;
  font-family: var(--heading-font);
  margin-bottom: 30px;
}
.case-details-tab .case-details-tab-item .nav-pills {
  margin-bottom: 30px;
}
.case-details-tab .case-details-tab-item .nav-pills .nav-link {
  border-radius: 0;
  color: var(--white-color);
  border: 1px solid var(--primary-color);
  width: 150px;
  text-align: center;
  margin-right: 10px;
  font-size: var(--all-size);
  padding: 12px 0;
}
.case-details-tab .case-details-tab-item .nav-pills .nav-link.active,
.case-details-tab .case-details-tab-item .nav-pills .show > .nav-link {
  background-color: var(--primary-color);
}
.case-details-tab .case-details-tab-item .tab-content h3 {
  line-height: 1.4;
  font-weight: 600;
  font-size: 22px;
  font-family: var(--heading-font);
  margin-bottom: 15px;
  color: var(--white-color);
}
.case-details-tab .case-details-tab-item .tab-content p {
  color: #c8c6c6;
  margin-bottom: 0;
}
.case-details-tab .case-details-tab-item .case-details-tab-img {
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.case-details-tab .case-details-tab-item .case-details-tab-img img {
  position: relative;
  bottom: 10px;
}
.case-details-tab .case-details-tab-item .case-details-tab-img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  top: 0;
  z-index: -1;
  border: 10px solid #b69d74;
  background-color: #373535;
}

/*-- End Case Details Tab --*/
/*-- Portfolio --*/
.portfolio-area-three {
  padding-bottom: 170px;
}

/*-- End Portfolio --*/
/*----- End Case Studies Details Page -----*/
/*----- Blog Details Page -----*/
/*-- Blog Details --*/
.blog-area-two .blog-item {
  margin-right: 0;
  margin-left: 0;
}

.blog-details-item {
  margin-bottom: 30px;
}
.blog-details-item .blog-details-img {
  padding-bottom: 20px;
  position: relative;
}
.blog-details-item .blog-details-img:before {
  position: absolute;
  content: "";
  width: 80%;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  background-color: #ebebeb;
}
.blog-details-item .blog-details-img img {
  width: 100%;
  margin-bottom: 40px;
}
.blog-details-item .blog-details-img h2 {
  font-weight: 600;
  font-size: 22px;
  font-family: var(--heading-font);
  line-height: 30px;
  padding-right: 60px;
  margin-bottom: 20px;
}
.blog-details-item .blog-details-img ul {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
}
.blog-details-item .blog-details-img ul li {
  list-style-type: none;
  display: inline-block;
  font-size: 14px;
  color: #a8a7a5;
  margin-right: 12px;
}
.blog-details-item .blog-details-img ul li:last-child {
  margin-right: 0;
}
.blog-details-item .blog-details-img ul li a {
  display: inline-block;
  color: #a8a7a5;
}
.blog-details-item .blog-details-img ul li a:hover {
  color: var(--black-color);
}
.blog-details-item .blog-details-img ul li i {
  color: var(--primary-color);
  position: relative;
  top: 0;
  font-size: 17px;
  margin-right: 4px;
}
.blog-details-item .blog-details-img p {
  margin-bottom: 15px;
  color: #464646;
}
.blog-details-item .blog-details-social {
  text-align: center;
  padding-top: 25px;
  margin-bottom: 20px;
}
.blog-details-item .blog-details-social ul {
  margin: 0;
  padding: 0;
}
.blog-details-item .blog-details-social ul li {
  list-style-type: none;
  display: inline-block;
}
.blog-details-item .blog-details-social ul li span {
  display: inline-block;
  color: #4a4a4a;
  font-weight: 500;
  margin-right: 10px;
}
.blog-details-item .blog-details-social ul li a {
  display: block;
  color: #a5a5a5;
  font-size: 22px;
  margin-right: 10px;
  position: relative;
  top: 1px;
}
.blog-details-item .blog-details-social ul li a:hover {
  color: var(--black-color);
}
.blog-details-item .blog-details-nav {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.blog-details-item .blog-details-nav a {
  color: #3f3f3f;
  border: 1px solid var(--primary-color);
  padding: 10px 22px;
  border-radius: 8px;
  display: inline-block;
}
.blog-details-item .blog-details-nav a:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.blog-details-item .blog-details-nav .nav-prev {
  flex: 0 0 50%;
  max-width: 50%;
}
.blog-details-item .blog-details-nav .nav-next {
  flex: 0 0 50%;
  max-width: 50%;
  text-align: right;
}
.blog-details-item .blog-details-contact h2 {
  font-weight: 600;
  font-size: 22px;
  font-family: var(--heading-font);
  margin-bottom: 30px;
}
.blog-details-item .blog-details-contact .contact-form {
  background-image: none;
}
.blog-details-item .blog-details-contact .contact-form .form-group .form-control {
  color: var(--black-color);
}
.blog-details-item .blog-details-contact .contact-form .form-group .form-control:focus {
  border: 1px solid var(--black-color);
}
.blog-details-item .blog-details-contact .contact-form .form-group .list li {
  color: var(--white-color);
}
.blog-details-item .blog-details-contact .contact-form .form-group .nice-select.open .list {
  background-color: var(--primary-color) !important;
}
.blog-details-item .blog-details-search {
  padding: 50px 55px 65px;
  box-shadow: 0px 0px 20px 0px #ddd;
  margin-bottom: 60px;
}
.blog-details-item .blog-details-search .search-area {
  position: relative;
  margin-bottom: 30px;
}
.blog-details-item .blog-details-search .search-area .form-control {
  height: 50px;
  border: 1px solid var(--primary-color);
  border-radius: 0;
  padding-left: 20px;
}
.blog-details-item .blog-details-search .search-area .form-control:focus {
  box-shadow: none;
  border: 1px solid var(--primary-color);
}
.blog-details-item .blog-details-search .search-area .blog-details-btn {
  position: absolute;
  transition: var(--transition);
  color: var(--white-color);
  background-color: var(--primary-color);
  top: 0;
  right: 0;
  width: 55px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  border-radius: 0;
  font-size: 19px;
}
.blog-details-item .blog-details-search .search-area .blog-details-btn:hover {
  background-color: var(--black-color);
}
.blog-details-item .blog-details-search h3 {
  font-weight: 600;
  font-size: 22px;
  font-family: var(--heading-font);
  color: #464646;
  margin-bottom: 20px;
}
.blog-details-item .blog-details-search ul {
  margin: 0;
  padding: 0;
}
.blog-details-item .blog-details-search ul li {
  list-style-type: none;
  display: block;
  position: relative;
  padding-top: 8px;
  margin-bottom: 40px;
}
.blog-details-item .blog-details-search ul li:last-child {
  margin-bottom: 0;
}
.blog-details-item .blog-details-search ul li img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 8px;
}
.blog-details-item .blog-details-search ul li .blog-details-recent {
  padding-left: 115px;
}
.blog-details-item .blog-details-search ul li .blog-details-recent h4 {
  color: #464646;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 10px;
}
.blog-details-item .blog-details-search ul li .blog-details-recent h4 a {
  display: block;
  color: #464646;
}
.blog-details-item .blog-details-search ul li ul li {
  display: inline-block;
  color: var(--primary-color);
  font-size: 14px;
  margin-right: 10px;
  padding-top: 0;
  margin-bottom: 0;
}
.blog-details-item .blog-details-search ul li ul li:last-child {
  margin-right: 0;
}
.blog-details-item .blog-details-search ul li ul li i {
  display: inline-block;
  margin-right: 5px;
}
.blog-details-item .blog-details-search ul li ul li a {
  color: var(--primary-color);
}
.blog-details-item .blog-details-search ul li ul li a:hover {
  color: var(--black-color);
}
.blog-details-item .blog-details-tags {
  padding: 50px 55px 45px;
  box-shadow: 0px 0px 20px 0px #ddd;
}
.blog-details-item .blog-details-tags h3 {
  font-weight: 600;
  font-size: 22px;
  font-family: var(--heading-font);
  color: #464646;
  margin-bottom: 20px;
}
.blog-details-item .blog-details-tags ul {
  margin: 0;
  padding: 0;
}
.blog-details-item .blog-details-tags ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 8px;
}
.blog-details-item .blog-details-tags ul li a {
  display: block;
  color: var(--black-color);
  background-color: #e5e5e5;
  border-radius: 6px;
  padding: 10px 25px;
}
.blog-details-item .blog-details-tags ul li a:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
}

.blog-details-category {
  padding: 50px 55px;
  box-shadow: 0px 0px 20px 0px #ddd;
  margin-bottom: 60px;
}
.blog-details-category h3 {
  font-weight: 600;
  font-size: 22px;
  font-family: var(--heading-font);
  color: #464646;
  margin-bottom: 20px;
}
.blog-details-category ul {
  margin: 0;
  padding: 0;
}
.blog-details-category ul li {
  list-style-type: none;
  display: block;
  margin-bottom: 9px;
  padding-top: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d8e1ee;
  position: relative;
  padding-left: 25px;
  z-index: 1;
  transition: var(--transition);
}
.blog-details-category ul li:before {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  width: 3px;
  height: 40px;
  background-color: var(--primary-color);
  transition: var(--transition);
  z-index: -1;
}
.blog-details-category ul li:last-child {
  margin-bottom: 0;
}
.blog-details-category ul li:hover a {
  color: var(--white-color);
}
.blog-details-category ul li:hover:before {
  width: 100%;
}
.blog-details-category ul li:hover i {
  opacity: 1;
}
.blog-details-category ul li a {
  display: block;
  color: var(--black-color);
  font-weight: 500;
  font-size: 16px;
}
.blog-details-category ul li i {
  display: inline-block;
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 19px;
  opacity: 0;
  transition: var(--transition);
  color: var(--white-color);
}

.blog-area-three {
  padding-bottom: 170px;
}
.blog-area-three .blog-item {
  margin-left: 0;
  margin-right: 0;
}

/*-- End Blog Details --*/
/*----- End Blog Details Page -----*/
/*----- Practice Page -----*/
/*-- Practice --*/
.practice-area-three {
  padding-bottom: 170px;
}

/*-- End Practice --*/
/*----- End Practice Page -----*/
/*----- Practice Details Page -----*/
/*-- Practice --*/
.practice-details-area {
  padding-bottom: 170px;
  position: relative;
}

.practice-details-item .practice-details-content {
  margin-bottom: 60px;
}
.practice-details-item .practice-details-content .section-title {
  margin-bottom: 30px;
}
.practice-details-item .practice-details-content p {
  margin-bottom: 20px;
  color: #4a4a4a;
}
.practice-details-item .practice-details-content ul {
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
.practice-details-item .practice-details-content ul li {
  list-style-type: none;
  display: block;
  color: #4a4a4a;
  margin-bottom: 5px;
}
.practice-details-item .practice-details-content ul li:last-child {
  margin-bottom: 0;
}
.practice-details-item .practice-details-content ul li span {
  display: inline-block;
  font-weight: 600;
}
.practice-details-item .blog-details-category {
  margin-bottom: 50px;
  padding: 0;
  box-shadow: none;
}
.practice-details-item .practice-details-contact {
  margin-bottom: 50px;
}
.practice-details-item .practice-details-contact h3 {
  font-weight: 600;
  font-size: 22px;
  font-family: var(--heading-font);
  margin-bottom: 20px;
}
.practice-details-item .practice-details-contact ul {
  margin: 0;
  padding: 0;
}
.practice-details-item .practice-details-contact ul li {
  list-style-type: none;
  display: block;
  color: #858585;
  font-size: 15px;
  margin-bottom: 20px;
}
.practice-details-item .practice-details-contact ul li:last-child {
  margin-bottom: 0;
}
.practice-details-item .practice-details-contact ul li a {
  color: #858585;
}
.practice-details-item .practice-details-contact ul li a:hover {
  color: var(--black-color);
}
.practice-details-item .practice-details-contact ul li i {
  color: var(--primary-color);
  display: inline-block;
  font-size: 20px;
  margin-right: 5px;
  position: relative;
  top: 1px;
}
.practice-details-item .practice-details-brochures h3 {
  font-weight: 600;
  font-size: 22px;
  font-family: var(--heading-font);
  margin-bottom: 20px;
}
.practice-details-item .practice-details-brochures p {
  color: #4a4a4a;
  margin-bottom: 20px;
}
.practice-details-item .practice-details-brochures .cmn-btn i {
  display: inline-block;
  font-size: 22px;
  margin-right: 10px;
  position: relative;
  top: 1px;
}

/*-- End Practice --*/
/*----- End Practice Details Page -----*/
/*----- Appointment Page -----*/
/*-- Team --*/
.team-area-three {
  padding-bottom: 70px;
}

.contact-form-three {
  padding-bottom: 200px;
}
.contact-form-three .form-group .form-control {
  color: var(--black-color);
}

/*-- End Team --*/
/*----- End Appointment Page -----*/
/*----- Testimonial Page -----*/
/*-- Testimonial --*/
.testimonial-area {
  padding-bottom: 200px;
}
.testimonial-area .testimonial-more {
  text-align: center;
  margin-top: 20px;
  position: relative;
}
.testimonial-area .testimonial-more:before {
  position: absolute;
  content: "";
  bottom: 22px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
}
.testimonial-area .testimonial-more:after {
  position: absolute;
  content: "";
  bottom: 22px;
  left: 0;
  right: 0;
  width: 180px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--white-color);
}

.testimonial-item {
  color: var(--white-color);
}
.testimonial-item .testimonial-wrap {
  position: relative;
  margin-bottom: 60px;
}
.testimonial-item .testimonial-wrap:hover p {
  background-color: var(--primary-color);
}
.testimonial-item .testimonial-wrap:hover p:before {
  border-top: 45px solid var(--primary-color);
}
.testimonial-item .testimonial-wrap img {
  border-radius: 50%;
  position: absolute;
  left: 25px;
  bottom: -25px;
  max-width: 85px;
}
.testimonial-item .testimonial-wrap p {
  margin-bottom: 50px;
  background-color: var(--black-color);
  padding: 35px;
  border-radius: 10px;
  position: relative;
  transition: var(--transition);
}
.testimonial-item .testimonial-wrap p:before {
  position: absolute;
  content: "";
  bottom: -35px;
  left: 28px;
  border-left: 40px solid transparent;
  border-top: 45px solid var(--black-color);
  border-right: 40px solid transparent;
  transition: var(--transition);
}
.testimonial-item .testimonial-wrap .testimonial-right {
  padding-left: 125px;
  position: relative;
  top: 6px;
}
.testimonial-item .testimonial-wrap .testimonial-right h3 {
  font-weight: 600;
  font-size: 22px;
  font-family: var(--heading-font);
  margin-bottom: 8px;
}
.testimonial-item .testimonial-wrap .testimonial-right span {
  display: block;
  color: var(--primary-color);
  font-size: 14px;
}

/*-- End Testimonial --*/
/*----- End Testimonial Page -----*/
/*----- FAQ Page -----*/
/*-- Faq --*/
.faq-area {
  padding-bottom: 170px;
}

.faq-head h2 {
  margin-bottom: 35px;
  font-weight: 600;
  font-size: 25px;
}

.faq-wrap {
  margin-bottom: 50px;
}
.faq-wrap:last-child {
  margin-bottom: 30px;
}

.accordion {
  padding-left: 0;
  margin: 0;
  padding: 0;
}
.accordion p {
  font-size: var(--all-size);
  display: none;
  padding: 20px 45px 15px 20px;
  margin-bottom: 0;
  color: var(--black-color);
}
.accordion a {
  color: #232323;
  font-size: 17px;
  width: 100%;
  display: block;
  cursor: pointer;
  font-weight: 600;
  padding: 15px 0 15px 18px;
  border: 1px solid #232323;
}
.accordion a:hover {
  color: var(--black-color);
}
.accordion a:after {
  position: absolute;
  right: 20px;
  content: "+";
  top: 10px;
  color: #232323;
  font-size: 25px;
  font-weight: 700;
}
.accordion li {
  position: relative;
  list-style-type: none;
  margin-bottom: 30px;
}
.accordion li:first-child {
  border-top: 0;
}
.accordion li:last-child {
  margin-bottom: 0;
}

.accordion li a.active {
  color: var(--white-color);
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.accordion li a.active:after {
  content: "-";
  font-size: 25px;
  color: var(--white-color);
}

/*-- End Faq --*/
/*----- End Faq Page -----*/
/*----- Error Page -----*/
/*-- 404 --*/
.error-area {
  position: relative;
}
.error-area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--black-color);
  opacity: 0.9;
}

.error-item {
  position: relative;
  height: 800px;
  text-align: center;
  margin-top: -30px;
  color: var(--white-color);
}
.error-item h1 {
  font-size: 130px;
  font-weight: 700;
  margin-bottom: 8px;
  color: inherit;
}
.error-item p {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 35px;
  color: inherit;
}
.error-item span {
  display: block;
}
.error-item a {
  display: inline-block;
  color: var(--white-color);
  background-color: var(--primary-color);
  padding: 20px 45px;
  margin-top: 70px;
  font-size: 18px;
}
.error-item a:hover {
  background-color: var(--black-color);
}

/*-- End 404 --*/
/*----- End Error Page -----*/
/*----- Privacy Policy Page -----*/
/*-- Privacy --*/
.privacy-area {
  padding-bottom: 150px;
}

.privacy-item {
  margin-bottom: 50px;
}
.privacy-item h2 {
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 600;
}
.privacy-item p {
  margin-bottom: 0;
  color: #646464;
}
.privacy-item ul {
  margin: 0;
  padding: 0;
}
.privacy-item ul li {
  list-style-type: none;
  display: block;
  margin-bottom: 18px;
  color: #646464;
}
.privacy-item ul li i {
  display: inline-block;
  font-size: 20px;
  position: relative;
  bottom: -2px;
}
.privacy-item ul li:last-child {
  margin-bottom: 0;
}

/*-- End Privacy --*/
/*----- End Privacy Policy Page -----*/
/*----- Contact Page -----*/
/*-- Location --*/
.contact-location-item {
  margin-bottom: 0;
}

/*-- End Location --*/
/*-- Contact --*/
.page-title-area-two {
  height: 550px;
}
.page-title-area-two .page-title-text {
  margin-top: 15px;
}

.contact-form-four {
  background-image: url("img/contact-bg.png");
}
.contact-form-four .location-item {
  border: 1px solid var(--primary-color);
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 15px;
}
.contact-form-four .location-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.contact-form-four .location-item ul li {
  font-size: 14px;
}
.contact-form-four .location-item ul li a:hover {
  color: var(--primary-color);
}
.contact-form-four .location-item .location-icon i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  left: 20px;
  top: 35px;
}
.contact-form-four .location-bg:before {
  background-color: var(--black-color);
}
.contact-form-four .location-bg:after {
  display: none;
}
.contact-form-four .form-group .form-control {
  color: var(--black-color);
}
.contact-form-four .form-group .form-control:focus {
  border: 1px solid var(--black-color);
}
.contact-form-four .form-group .nice-select.open .list {
  background-color: var(--white-color) !important;
  border: 1px solid #b69d74;
}
.contact-form-four .form-group .nice-select .option {
  color: var(--black-color);
}

/*-- End Contact --*/
/*-- Map --*/
.map-area iframe {
  width: 100%;
  height: 500px;
  margin-bottom: -8px;
  border: none;
}

/*-- End Map --*/
/*----- End Contact Page -----*/
/*----- Preloader -----*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: var(--brand-color);
}

.sk-folding-cube {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  position: relative;
  transform: rotateZ(45deg);
}
.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  transform: scale(1.1);
}
.sk-folding-cube .sk-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  animation: fold-animation 2.4s infinite linear both;
  transform-origin: 100% 100%;
}
.sk-folding-cube .sk-cube2 {
  transform: scale(1.1) rotateZ(90deg);
}
.sk-folding-cube .sk-cube3 {
  transform: scale(1.1) rotateZ(180deg);
}
.sk-folding-cube .sk-cube4 {
  transform: scale(1.1) rotateZ(270deg);
}
.sk-folding-cube .sk-cube2:before {
  animation-delay: 0.3s;
}
.sk-folding-cube .sk-cube3:before {
  animation-delay: 0.6s;
}
.sk-folding-cube .sk-cube4:before {
  animation-delay: 0.9s;
}

.logo-animate {
  margin: 0 auto;
  text-align: center;
  /***************************************************
   * Generated by SVG Artista on 6/6/2023, 10:46:23 AM
   * MIT license (https://opensource.org/licenses/MIT)
   * W. https://svgartista.net
   **************************************************/
}
@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 128px;
    stroke-dasharray: 128px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 128px;
  }
}
@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.logo-animate .svg-elem-1 {
  animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both, animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}
@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 124px;
    stroke-dasharray: 124px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 124px;
  }
}
@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.logo-animate .svg-elem-2 {
  animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both, animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
}
@keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 128px;
    stroke-dasharray: 128px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 128px;
  }
}
@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.logo-animate .svg-elem-3 {
  animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both, animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}
@keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 124px;
    stroke-dasharray: 124px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 124px;
  }
}
@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.logo-animate .svg-elem-4 {
  animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s both, animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
}
@keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 128px;
    stroke-dasharray: 128px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 128px;
  }
}
@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.logo-animate .svg-elem-5 {
  animation: animate-svg-stroke-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both, animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
}
@keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 124px;
    stroke-dasharray: 124px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 124px;
  }
}
@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.logo-animate .svg-elem-6 {
  animation: animate-svg-stroke-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both, animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
}
@keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 128px;
    stroke-dasharray: 128px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 128px;
  }
}
@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.logo-animate .svg-elem-7 {
  animation: animate-svg-stroke-7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s both, animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s both;
}
@keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 124px;
    stroke-dasharray: 124px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 124px;
  }
}
@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.logo-animate .svg-elem-8 {
  animation: animate-svg-stroke-8 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s both, animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
}
@keyframes animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 346px;
    stroke-dasharray: 346px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 346px;
  }
}
@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.logo-animate .svg-elem-9 {
  animation: animate-svg-stroke-9 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s both, animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
}
@keyframes animate-svg-stroke-10 {
  0% {
    stroke-dashoffset: 346px;
    stroke-dasharray: 346px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 346px;
  }
}
@keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.logo-animate .svg-elem-10 {
  animation: animate-svg-stroke-10 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s both, animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s both;
}
@keyframes animate-svg-stroke-11 {
  0% {
    stroke-dashoffset: 778px;
    stroke-dasharray: 778px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 778px;
  }
}
@keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(238, 215, 216);
  }
}
.logo-animate .svg-elem-11 {
  animation: animate-svg-stroke-11 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both, animate-svg-fill-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
}
@keyframes animate-svg-stroke-12 {
  0% {
    stroke-dashoffset: 628px;
    stroke-dasharray: 628px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 628px;
  }
}
@keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.logo-animate .svg-elem-12 {
  animation: animate-svg-stroke-12 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.32s both, animate-svg-fill-12 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s both;
}
@keyframes animate-svg-stroke-13 {
  0% {
    stroke-dashoffset: 624px;
    stroke-dasharray: 624px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 624px;
  }
}
@keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.logo-animate .svg-elem-13 {
  animation: animate-svg-stroke-13 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s both, animate-svg-fill-13 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}
@keyframes fold-animation {
  0%, 10% {
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
/*----- End Preloader -----*/
/*----- Back To Top -----*/
#toTop {
  position: fixed;
  bottom: 30px;
  right: 0;
  cursor: pointer;
  display: none;
  z-index: 10;
}

.back-to-top-btn i {
  background-color: var(--brand-color);
  color: var(--white-color);
  height: 50px;
  width: 50px;
  line-height: 50px;
  display: inline-block;
  text-align: center;
  font-size: 26px;
  border-radius: 50%;
  transition: 0.5s all ease;
  margin-right: 28px;
  box-shadow: 0px 0px 14px 0px var(--brand-color);
}
.back-to-top-btn i:hover {
  background-color: var(--black-color);
}

/*----- End Back To Top -----*//*# sourceMappingURL=styles.css.map */