body {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  background-color: #ffffff;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  color: #000;
  line-height: 1.4;
}

p {
  line-height: 1.8;
}

a {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  text-decoration: none;
  color: #981a26;
}

a:hover {
  color: #333333;
}

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;
}

.btn.focus, .btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*-- End Default CSS --*/
/*----- Home Page 1 -----*/
/*-- Navbar --*/
.main-nav {
  background-color: #fff;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.main-nav .navbar-brand {
  width: 330px;
}
.main-nav .navbar-brand img{
  width: 100%;
}
.main-nav .navbar-nav .nav-item .dropdown-menu {
  background: #f6f6f6;
}

.main-nav .navbar-nav .nav-item .dropdown-menu li a:hover, .main-nav .navbar-nav .nav-item .dropdown-menu li a:focus, .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #981a26;
  letter-spacing: 1px;
}

.main-nav .navbar-nav .nav-item .dropdown-menu li a:hover:before, .main-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 .navbar-nav .nav-item:hover a {
  color: #981a26;
}

.main-nav .navbar-nav .nav-item a {
  font-size: 16px;
  text-transform: capitalize;
  position: relative;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.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;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  opacity: 0;
  -webkit-animation: a-one 5s linear infinite;
          animation: a-one 5s linear infinite;
  background-color: #981a26;
}

.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: #981a26;
}

.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;
}

@-webkit-keyframes a-one {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes a-one {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.side-nav a {
  display: inline-block;
  font-size: 16px;
  color: #000;
  border: 2px solid #981a26;
  padding: 10px 22px;
  position: relative;
  z-index: 1;
  font-weight: 500;
  border-radius: 5px;
}

.side-nav a:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  z-index: -1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  background-color: #981a26;
}

.side-nav a:after {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  z-index: -1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  background-color: #981a26;
}

.side-nav a:hover:before {
  width: 50%;
  opacity: 1;
}
.side-nav a:hover:after {
  width: 50%;
  opacity: 1;
}

.menu-shrink {
  padding-top: 8px;
  padding-bottom: 8px;
}

/*-- End Navbar --*/
/*-- Banner --*/
.banner-img-one {
  background-image: url("../img/home-one/1.jpg");
}

.banner-area {
  height: 830px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.banner-item .banner-left {
  margin-top: 60px;
}

.banner-item .banner-left h1 {
  color: #ffffff;
  margin-bottom: 30px;
  font-size: 48px;
  font-family: "Playfair Display", serif;
  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: #ffffff;
  border: 3px solid #981a26;
  padding: 18px 25px;
}

.banner-item .banner-left a i {
  display: inline-block;
  font-size: 20px;
  position: relative;
  top: 1px;
  left: 5px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.banner-item .banner-left a:hover {
  background-color: #981a26;
}

.banner-item .banner-left a:hover i {
  left: 0;
}

.banner-item .banner-right img {
  width: 100%;
  position: relative;
  bottom: -180px;
}

.banner-item .banner-right .banner-animation {
  -webkit-animation: banner-animation 10s infinite linear;
          animation: banner-animation 10s infinite linear;
}

@-webkit-keyframes banner-animation {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -50px);
            transform: translate(0, -50px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes banner-animation {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -50px);
            transform: translate(0, -50px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.banner-bottom {
  border-top: 30px solid #981a2659;
  border-bottom: 30px solid #981a2659;
  border-left: 40px solid #981a2659;
  border-right: 40px solid #981a2659;
  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: #ffffff;
  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: #981a26;
}

.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: #981a26;
}

.banner-bottom ul li:last-child p {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 18px;
  color: #981a26;
}

.banner-bottom ul li:last-child img {
  position: absolute;
  right: 0;
  bottom: 0;
}

/*-- End Banner --*/
/*-- Help --*/
.help-area {
  padding-top: 165px;
  position: relative;
}

.help-shape img {
  position: absolute;
  right: 50px;
  bottom: 0;
  -webkit-animation: a-two 10s infinite linear;
          animation: a-two 10s infinite linear;
}

@-webkit-keyframes a-two {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-50px, 0);
            transform: translate(-50px, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes a-two {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-50px, 0);
            transform: translate(-50px, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.help-left {
  position: relative;
  max-width: 610px;
  margin-left: auto;
  padding-top: 65px;
  padding-bottom: 65px;
}

.help-left:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: -60px;
  top: 0;
  z-index: 9;
  -webkit-animation: 10s help-animation linear infinite;
          animation: 10s help-animation linear infinite;
  border: 25px solid #981a26;
  background-color: transparent;
}

@-webkit-keyframes help-animation {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(30px, 0);
            transform: translate(30px, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes help-animation {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(30px, 0);
            transform: translate(30px, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@-webkit-keyframes help-animation-two {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(10px, 0);
            transform: translate(10px, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes help-animation-two {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(10px, 0);
            transform: translate(10px, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}



.help-item .help-right {
  max-width: 520px;
  margin-left: 50px;
}

.help-item .help-right h2 {
  font-size: 38px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  margin-bottom: 25px;
  line-height: 1.4;
}

.help-item .help-right p {
  color: #111;
  margin-bottom: 25px;
}

.help-item .help-right .help-inner-left {
  width: 49%;
  display: inline-block;
}

.help-item  ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: start;
  width: 100%;
  flex-wrap: wrap;
}

.help-item ul li {
   flex: 50%;
  list-style-type: none;
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 12px;
}

.help-item ul li:last-child {
  margin-bottom: 0;
}

.help-item  ul li i {
  color: #981a26;
  margin-right: 10px;
  font-size: 25px;
  position: relative;
  top: 2px;
}


.help-item .help-signature img {
  margin-top: 30px;
  margin-bottom: 30px;
}

.cmn-btn {
  display: inline-block;
  color: #ffffff;
  background-color: #981a26;
  font-weight: 500;
  font-size: 16px;
  padding:10px 22px;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  letter-spacing: 0.5px;
}
.blog-details-tags .flaticon-download:before{
      margin-right: 8px;
}
.cmn-btn:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  z-index: -1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  background-color: #3e4095;
}

.cmn-btn:after {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  z-index: -1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  background-color: #3e4095;
  border-radius: 0px 5px 5px 0px;
}

.cmn-btn:hover {
  color: #ffffff;
}

.cmn-btn:hover:before {
  width: 50%;
  opacity: 1;
  border-radius: 5px 0 0 5px;
}

.cmn-btn:hover:after {
  width: 50%;
  opacity: 1;
}

/*-- End Help --*/
/*-- Practice --*/
.section-title {
  text-align: center;
  margin-bottom: 50px;
  margin-top: -7px;
}


.section-title h2 {
  font-weight: 700;
  font-size: 38px;
  font-family: "Playfair Display", serif;
  margin-bottom: 0;
}

.practice-area {
  background-color: #faf5f6;
}

.practice-item {
  text-align: center;
  margin-bottom: 30px;
  padding: 45px 15px;
  background-color: #1d1c1c;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.practice-item:hover {
  background-color: #998056;
  -webkit-transform: translate(0, -10px);
          transform: translate(0, -10px);
}

.practice-item:hover .practice-icon:before {
  background-color: #66573e;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.practice-item:hover .practice-icon:after {
  background-color: #86714d;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.practice-item:hover .practice-icon i {
  color: #ffffff;
}

.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;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: -1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  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;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: -2;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  background-color: #2d2c2c;
}

.practice-item .practice-icon i {
  color: #981a26;
  margin-bottom: 32px;
  display: block;
  font-size: 38px;
  position: relative;
  top: -10px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.practice-item h3 {
  margin-bottom: 25px;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 28px;
}

.practice-item p {
  margin-bottom: 25px;
}

.practice-item a {
  display: inline-block;
  color: #ffffff;
  border: 1px solid #ffffff;
  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;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  background-color: #ffffff;
}

.practice-item a:after {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  z-index: -1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  background-color: #ffffff;
}

.practice-item a:hover {
  color: #333333;
}

.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: url(../img/testi-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.expertise-area .section-title h2 {
  margin-left: 0;
  color: #ffffff;
}

.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: #981a26;
  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: "Playfair Display", serif;
  margin-bottom: 18px;
  color: #ffffff;
}

.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 #981a26;
  background-color: #373535;
}

.expertise-image img {
  position: relative;
  bottom: 10px;
}

/*-- End Expertise --*/
/*-- Portfolio --*/
.portfolio-area .text-center {
  margin-top: 20px;
}

.portfolio-item {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.portfolio-item img {
  width: 100%;
}

.portfolio-item:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.977081)), color-stop(56%, rgba(182, 157, 116, 0.28607)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.977081) 0%, rgba(182, 157, 116, 0.28607) 56%);
}

.portfolio-item:hover {
  -webkit-transform: translate(0, -10px);
          transform: translate(0, -10px);
}

.portfolio-item:hover h3 a {
  color: #981a26;
}

.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: #981a26;
}

.portfolio-item .portfolio-inner h3 {
  margin-bottom: 0;
  line-height: 1.4;
}

.portfolio-item .portfolio-inner h3 a {
  display: block;
  color: #ffffff;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 5px;
}

.portfolio-item .portfolio-inner h3 a:hover {
  color: #981a26;
}

.portfolio-item .portfolio-inner p {
  margin-bottom: 0;
}

/*-- End Portfolio --*/
/*-- Team --*/
.team-area {
  padding-bottom: 60px;
  padding-top: 80px;
  background-color: #faf5f6;
}

.team-item {
    margin-bottom: 30px;
    background-color: #3e4095;
    box-shadow: 5.878px 8.09px 35px 0px rgb(0 0 0 / 15%);
    padding: 7px;
}

.team-item img {
  width: 100%;
}

.team-item .team-inner {
 background-color: #981a26;
    text-align: center;
    -webkit-box-shadow: 0px 0px 15px 0px #ddd;
    box-shadow: 0px 0px 15px 0px #1d1e58;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    margin-top: -40px;
    position: relative;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.team-item .team-inner ul {
  margin: 0;
  padding: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #f6f6f6;
  max-width: 155px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 30px;
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  transition: 0.5s all ease;
}

.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: #981a26;
}

.team-item .team-inner h3 {
  margin-bottom: 4px;
  padding-top: 25px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  font-family: "Playfair Display", serif;
}

.team-item .team-inner h3 a {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.3px;
}
.team-item .team-inner h3 a:hover{
  color: #fff !important;
}
.team-item .team-inner span {
  display: block;
  color: #fff;
  font-size: 14px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.team-item:hover .team-inner {
  background-color: #981a26;
  max-width: 100%;
}

.team-item:hover .team-inner ul {
  background-color: #ffffff;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.team-item:hover .team-inner ul li a:hover {
  color: #333333;
}

.team-item:hover .team-inner h3 a {
  color: #ffffff;
}

.team-item:hover .team-inner h3 a:hover {
  color: #333333;
}

.team-item:hover .team-inner span {
  color: #fff;
}

/*-- End Team --*/
/*-- Location --*/
.loaction-area {
  position: relative;
  top: -100px;
}

.location-bg {
  background-image: url("../img/home-one/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: #981a26;
  opacity: .90;
}

.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;
}

.location-item .location-icon {
  position: absolute;
  left: 0;
  top: 0;
}

.location-item .location-icon i {
  display: inline-block;
  color: #ffffff;
  font-size: 26px;
  position: absolute;
  left: 32px;
  top: 22px;
}

.location-item h3 {
  font-weight: 600;
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.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: #ffffff;
}

.location-item ul li a:hover {
  color: #333333;
}

.location-item .location-link {
  display: block;
  color: #282828;
  margin-top: 10px;
}

.location-item .location-link:hover {
  color: #ffffff;
}

/*-- End Location --*/
/*-- Contact Form --*/
.contact-form {
  background-image: url("../img/testi-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
/*.contact-form:before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(37,38,89,0.4);
  content: '';
}*/
form#contactForm,.section-title {
    position: relative;
    z-index: 9;
}
.form-branch-area{
  margin-top: -35px;
}

.contact-wrap .form-group {
  margin-bottom: 20px;
}

.contact-wrap .form-group .current {
  color: #333333;
}

.contact-wrap .form-group .nice-select.open .list {
  background-color: transparent !important;
  border: 1px solid #981a26;
}

.contact-wrap .form-group .nice-select .option:hover, .contact-wrap .form-group .nice-select .contact-wrap .form-group .nice-select .option.selected.focus {
  background-color: #981a26;
  color: #fff;
}

.contact-wrap .form-group .form-control {
  background-color: transparent;
  border: 1px solid #981a26;
  border-radius: 0;
  height: 50px;
  padding-left: 20px;
  color: #ffffff;
  font-size: 15px;
}
.contact-wrap .form-group .form-control::placeholder{
  color: #fff;
  font-weight: 300;
}
.contact-wrap .form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #ffffff;
}

.contact-wrap .form-group ::-webkit-input-placeholder {
  color: #ababab;
}

.contact-wrap .form-group :-ms-input-placeholder {
  color: #ababab;
}

.contact-wrap .form-group ::-ms-input-placeholder {
  color: #ababab;
}

.contact-wrap .form-group ::placeholder {
  color: #ababab;
}

.contact-wrap .form-group textarea {
  height: auto !important;
  padding-top: 15px;
}

.contact-wrap .form-group label {
  color: #333333;
}

.contact-btn {
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  border-radius: 5px;
  background-color: #981a26;
  padding: 14px 38px;
  border: 0;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.contact-btn:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  z-index: -1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  background-color: #3e4095;
  border-radius: 5px 0 0px 5px;
}

.contact-btn:after {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  z-index: -1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  background-color: #3e4095;
  border-radius: 0px 5px 5px 0px;
}

.contact-btn:hover {
  color: #ffffff;
}

.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: #981a26;
  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 #981a26;
}

.blog-area .owl-theme .owl-dots .owl-dot span {
  background: #daceb9;
}

.blog-item {
  border-radius: 0 0 8px 8px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 0px 12px 0px #ddddddad;
          box-shadow: 0px 0px 12px 0px #ddddddad;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  margin-left: 15px;
  margin-right: 15px;
}

.blog-item:hover {
  -webkit-transform: translate(0, -10px);
          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: #981a26;
  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: #981a26;
}

.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: #981a26;
  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: #981a26;
  font-size: 14px;
}

.blog-item .blog-inner ul li a:hover {
  color: #333333;
}

.blog-item .blog-inner p {
  margin-bottom: 15px;
  color: #646464;
}

.blog-item .blog-inner .blog-link {
  display: block;
  color: #981a26;
  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: #333333;
  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: "Playfair Display", serif;
  color: #ffffff;
  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 #981a26;
  background-color: transparent;
  padding-left: 20px;
  color: #ffffff;
  font-size: 15px;
}

.newsletter-area .newsletter-form .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.newsletter-area .newsletter-form .validation-danger {
  color: #dc3545;
  margin-top: 10px;
}

.newsletter-area .newsletter-form ::-webkit-input-placeholder {
  color: #a9a3a3;
}

.newsletter-area .newsletter-form :-ms-input-placeholder {
  color: #a9a3a3;
}

.newsletter-area .newsletter-form ::-ms-input-placeholder {
  color: #a9a3a3;
}

.newsletter-area .newsletter-form ::placeholder {
  color: #a9a3a3;
}

.newsletter-area .newsletter-form .contact-btn {
  position: absolute;
  top: 0;
  right: 0;
  color: #ffffff;
  border-radius: 0;
  padding: 11px 20px;
}

.btn.disabled, .btn:disabled {
  opacity: 1;
}

/*-- End Newsletter --*/
/*-- Footer --*/
footer {
  background-image: url("../img/home-one/footer.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding-top: 90px;
  padding-bottom: 50px;
}

footer:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #f4e8e9;
  opacity: .99;
  z-index: -1;
}

footer .footer-item {
  margin-bottom: 30px;
}

footer .footer-item .footer-logo a {
  display: block;
}

footer .footer-item .footer-logo a img {
  margin-bottom: 25px;
  width:320px;

}

footer .footer-item .footer-logo p {
  margin-bottom: 20px;
  color: #111;
  font-size: 15px;
  padding-right: 20px;
}

footer .footer-item .footer-logo ul {
  margin: 0;
  padding: 0;
  display: flex;
}

footer .footer-item .footer-logo ul li {
  list-style-type: none;
    display: inline-block;
    margin-right: 12px;
    border: 1.5px solid #981a26;
    width: 36px;
    height: 36px;
    border-radius: 5px;
    
}
footer .footer-item .footer-logo ul li  i{
  color: #981a26;
  transition: all 0.5s;
}
footer .footer-item .footer-logo ul li:last-child {
  margin-right: 0;
}

footer .footer-item .footer-logo ul li a {
  font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
footer .footer-item .footer-logo ul li:hover a i{
  transform: rotate(360deg);
}
footer .footer-item .footer-logo ul li a:hover {
  color: #981a26;
}

footer .footer-item .footer-service h3 {
  margin-bottom: 30px;
  color: #000;
  font-weight: 600;
  font-size: 22px;
  display: inline-block;
  border-bottom: 2px solid #981a26;
}

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: #111;
  display: block;
}

footer .footer-item .footer-service ul li a:hover {
  letter-spacing: 1px;
  color: #981a26;
}

footer .footer-item .footer-service ul li a i {
  display: inline-block;
}

footer .footer-item .footer-find h3 {
  margin-bottom: 30px;
  color: #333;
  font-weight: 600;
  font-size: 22px;
  display: inline-block;
  border-bottom: 2px solid #981a26;
}

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;
  color: #333;
  display: flex;
}

footer .footer-item .footer-find ul li i {
  font-size: 23px;
  margin-right: 6px;
  position: relative;
  top: 2px;
  color: #981a26;
}

footer .footer-item .footer-find ul li:last-child {
  margin-bottom: 0;
}

footer .footer-item .footer-find ul li a {
  display: inline-block;
  color: #333;
}

footer .footer-item .footer-find ul li a:hover {
  color: #981a26;
  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;
}

footer .copyright-area .copyright-item p {
  margin-bottom: 0;
}

footer .copyright-area .copyright-item a {
  color: #ffffff;
  display: inline-block;
}

footer .copyright-area .copyright-item a:hover {
  color: #981a26;
}

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 {
  -webkit-box-shadow: 0px 0px 20px 0px #dddddd75;
          box-shadow: 0px 0px 20px 0px #dddddd75;
  padding-top: 50px;
  padding-bottom: 20px;
  background-image: url("../img/home-two/4.png");
  background-repeat: repeat;
  background-color: #ffffff;
  position: relative;
  top: -110px;
  z-index: 5;
}

.counter-item {
  margin-bottom: 30px;
  position: relative;
}

.counter-item i {
  color: #981a26;
  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: #981a26;
  margin-bottom: 0;
}

.counter-item .counter-inner p {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 18px;
  color: #504f4f;
}

/*-- End Counter --*/
/*-- Help --*/
.help-area-two {
  background-color: #fefaf3;
  padding-top: 0;
}

.help-area-two .help-shape img {
  right: 0;
  left: 50px;
}

.help-area-two .help-left:before {
  z-index: 1;
}

.help-area-two .help-left img {
  width: 100%;
  z-index: 2;
  position: relative;
}

.help-area-two .help-item .help-right p {
  margin-bottom: 20px;
}

.help-area-two .help-item .help-right .help-signature img {
  margin-top: 25px;
  margin-bottom: 25px;
}

.help-area-two .help-item .help-right h3 {
  font-weight: 600;
  font-size: 16px;
  color: #333333;
  margin-bottom: 10px;
}

.help-area-two .help-item .help-right span {
  display: block;
  color: #333333;
  font-size: 14px;
}

.help-area-two .help-wrap .help-item .help-right {
  margin-left: auto;
  margin-right: 50px;
}

.help-area-two .help-wrap .help-item .cmn-btn {
  margin-top: 40px;
}

.help-area-two .help-wrap .help-left {
  margin-left: 0;
}

.help-area-two .help-wrap .help-left:before:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: -60px;
  top: 0;
  z-index: -1;
  -webkit-animation: 10s help-animation-two linear infinite;
          animation: 10s help-animation-two linear infinite;
  border: 25px solid #981a26;
  background-color: transparent;
}

/*-- End Help --*/
/*-- Practice --*/
.practice-area-two {
  background-color: #ffffff;
}

/*-- End Practice --*/
/*-- Expertise --*/
.expertise-area-two .expertise-item ul li {
  border: 2px solid #981a26;
  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/1.jpg");
}

.slider-item {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}


.slider-text {
  position: relative;
}

.slider-text h1 {
  margin-bottom: 0;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  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: "Playfair Display", serif;
}

.slider-text a {
  display: inline-block;
  color: #ffffff;
  border: 3px solid #981a26;
  padding: 18px 25px;
}

.slider-text a i {
  display: inline-block;
  font-size: 20px;
  position: relative;
  top: 1px;
  left: 5px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.slider-text a:hover {
  background-color: #981a26;
}

.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: #ffffff !important;
  background-color: #981a263b !important;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.home-slider .owl-prev:hover {
  background-color: #981a26 !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: #ffffff !important;
  background-color: #981a263b !important;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.home-slider .owl-next:hover {
  background-color: #981a26 !important;
}

.home-slider.owl-theme .owl-nav {
  margin-top: 0;
}

.home-slider.owl-theme .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
}

.home-slider.owl-theme .owl-dots .owl-dot.active span {
  background: #ffffff;
  width: 30px;
}

.home-slider.owl-theme .owl-dots .owl-dot span {
  background: #981a26;
  width: 20px;
  height: 5px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

/*-- End Home Slider --*/
/*-- Slider Bottom --*/
.slider-bottom-area .slider-bottom-wrap {
  background-color: #981a2659;
  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 --*/
.help-area-three {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #faf5f6;
}

/*-- 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: 400px;
  text-align: center;
  position: relative;
}

.page-title-area:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #3e4095;
  opacity: .60;
}

.page-title-text {
  position: relative;
  margin-top: 120px;
}

.page-title-text h2 {
  font-weight: 900;
  font-size: 38px;
  font-family: "Playfair Display", serif;
  color: #ffffff;
  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: 400;
  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: #ffffff;
}

.page-title-text ul li a:hover {
  color: #981a26;
}

.page-title-text .page-title-btn a {
  display: inline-block;
  color: #ffffff;
  border: 3px solid #981a26;
  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;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.page-title-text .page-title-btn a:hover {
  background-color: #981a26;
}

.page-title-text .page-title-btn a:hover i {
  left: 0;
}

/*-- End Page Title --*/
/*-- Help --*/
.help-area-four {
  padding-top: 100px;
}

/*-- End Help --*/
/*-- About --*/
.about-area {
  padding-bottom: 170px;
}

.about-item {
  margin-bottom: 30px;
}

.about-item .about-video-wrap {
  position: relative;
}

.about-item .about-video-wrap .about-video {
  position: relative;
}

.about-item .about-video-wrap .about-video:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #333333;
  opacity: .80;
}

.about-item .about-video-wrap a {
  color: #981a26;
  position: absolute;
  top: 46%;
  left: 46%;
  display: block;
  background-color: #ffffff;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
}

.about-item .about-video-wrap a:hover {
  color: #ffffff;
  background-color: #981a26;
}

.about-item .about-content {
  margin-top: 25px;
  margin-bottom: 25px;
}

.about-item .about-content h2 {
  font-weight: 600;
  font-size: 22px;
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}

.about-item .about-content p {
  margin-bottom: 0;
  color: #4a4a4a;
}

.about-item .about-information {
  margin-bottom: 25px;
}

.about-item .about-information h2 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}

.about-item .about-information h2 span {
  display: inline-block;
  color: #981a26;
}

.about-item .about-information p {
  margin-bottom: 10px;
  color: #333333;
}

/*-- 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;
  -webkit-box-shadow: 0px 0px 20px 0px #ddd;
          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;
  -webkit-box-shadow: 0px 0px 15px 0px #ddd;
          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: #981a26;
  font-size: 18px;
}

.attor-details-item .attor-details-left .attor-social ul li a:hover {
  color: #ffffff;
}

.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: "Playfair Display", serif;
  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: #333333;
  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: #333333;
}

.attor-details-item .attor-details-left .attor-social-details ul li a:hover {
  color: #981a26;
}

.attor-details-item .attor-details-left .attor-social-details ul li i {
  display: inline-block;
  color: #981a26;
  font-size: 18px;
  margin-right: 5px;
}

.attor-details-item .attor-details-left .attor-work h3 {
  font-weight: 600;
  font-family: "Playfair Display", serif;
  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: #333333;
  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 #981a26;
  padding: 10px 20px;
  border-radius: 8px;
}

.attor-details-item .attor-prev ul li a:hover {
  color: #ffffff;
  background-color: #981a26;
}

.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: "Playfair Display", serif;
  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 h3 {
  color: #981a26;
  font-weight: 600;
  font-size: 22px;
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
}

.attor-details-item .attor-details-right .attor-details-things p {
  margin-bottom: 20px;
  color: #333333;
}

.attor-details-item .attor-details-right .attor-details-things ul {
  margin: 0;
  padding: 0;
}

.attor-details-item .attor-details-right .attor-details-things ul li {
  list-style-type: none;
  display: block;
  color: #333333;
  margin-bottom: 15px;
}

.attor-details-item .attor-details-right .attor-details-things ul li:last-child {
  margin-bottom: 0;
}

/*-- End Attorneys Details --*/
/*-- Contact Form --*/
.contact-form-two {
  background-image: none;
}

.contact-form-two h2 {
  font-size: 25px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  margin-bottom: 40px;
  text-align: center;
}

.contact-form-two .contact-wrap {
  max-width: 100%;
  padding: 55px 100px;
  -webkit-box-shadow: 0px 0px 20px 0px #ddd;
          box-shadow: 0px 0px 20px 0px #ddd;
}

.contact-form-two .contact-wrap .form-group .form-control:focus {
  border: 1px solid #333333;
}

.contact-form-two .contact-wrap .form-group .list li {
  background-color: #ffffff;
  color: #333333;
}

/*-- 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;
  -webkit-box-shadow: 0px 0px 15px 0px #d3d2d1;
          box-shadow: 0px 0px 15px 0px #d3d2d1;
}

.case-pagination ul li a:hover {
  color: #ffffff;
  background-color: #981a26;
}

.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: "Playfair Display", serif;
  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: #ffffff;
  font-size: 38px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  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: #ffffff;
  border: 1px solid #981a26;
  width: 150px;
  text-align: center;
  margin-right: 10px;
  font-size: 16px;
  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: #981a26;
}

.case-details-tab .case-details-tab-item .tab-content h3 {
  line-height: 1.4;
  font-weight: 600;
  font-size: 22px;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
  color: #ffffff;
}

.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 #981a26;
  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: 40px;

}
.bg_styled{
    background-color: #f9f9f9;
    padding: 30px;
    box-shadow: 5.878px 8.09px 35px 0px rgb(0 0 0 / 10%);
}
.blog-details-item .blog-details-img {
  padding-bottom: 0px;
  position: relative;
}

.blog-details-item .blog-details-img img {
  width: 100%;
  margin-bottom: 40px;
}

.blog-details-item .blog-details-img h2 {
  font-weight: 600;
  font-size: 26px;
  font-family: "Playfair Display", serif;
  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: #333333;
}

.blog-details-item .blog-details-img ul li i {
  color: #981a26;
  position: relative;
  top: 0;
  font-size: 17px;
  margin-right: 4px;
}

.blog-details-item .blog-details-img p {
  margin-bottom: 15px;
  color: #464646;
  line-height: 1.6;
}

.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: #333333;
}

.blog-details-item .blog-details-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
}

.blog-details-item .blog-details-nav a {
  color: #3f3f3f;
  border: 1px solid #981a26;
  padding: 10px 22px;
  border-radius: 8px;
  display: inline-block;
}

.blog-details-item .blog-details-nav a:hover {
  color: #ffffff;
  background-color: #981a26;
}

.blog-details-item .blog-details-nav .nav-prev {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-item .blog-details-nav .nav-next {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          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: "Playfair Display", serif;
  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: #333333;
}

.blog-details-item .blog-details-contact .contact-form .form-group .form-control:focus {
  border: 1px solid #333333;
}

.blog-details-item .blog-details-contact .contact-form .form-group .list li {
  color: #ffffff;
}

.blog-details-item .blog-details-contact .contact-form .form-group .nice-select.open .list {
  background-color: #981a26 !important;
}

.blog-details-item .blog-details-search {
  padding: 50px 55px 65px;
  -webkit-box-shadow: 0px 0px 20px 0px #ddd;
          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 #981a26;
  border-radius: 0;
  padding-left: 20px;
}

.blog-details-item .blog-details-search .search-area .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #981a26;
}

.blog-details-item .blog-details-search .search-area .blog-details-btn {
  position: absolute;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  color: #ffffff;
  background-color: #981a26;
  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: #333333;
}

.blog-details-item .blog-details-search h3 {
  font-weight: 600;
  font-size: 22px;
  font-family: "Playfair Display", serif;
  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: #981a26;
  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: #981a26;
}

.blog-details-item .blog-details-search ul li ul li a:hover {
  color: #333333;
}

.blog-details-item .blog-details-tags {
  padding:30px 35px;
  -webkit-box-shadow: 0px 0px 20px 0px #ddd;
          box-shadow: 0px 0px 20px 0px #ddd;
}

.blog-details-item .blog-details-tags h3 {
  font-weight: 600;
  font-size: 22px;
  font-family: "Playfair Display", serif;
  color: #464646;
  margin-bottom: 10px;
}

.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: #333333;
  background-color: #e5e5e5;
  border-radius: 6px;
  padding: 10px 25px;
}

.blog-details-item .blog-details-tags ul li a:hover {
  color: #ffffff;
  background-color: #981a26;
}

.blog-details-category {
  padding: 30px 35px;
  -webkit-box-shadow: 0px 0px 20px 0px #ddd;
          box-shadow: 0px 0px 20px 0px #ddd;
  margin-top: 30px;
}

.blog-details-category h3 {
  font-weight: 600;
  font-size: 22px;
  font-family: "Playfair Display", serif;
  color: #464646;
  margin-bottom: 10px;
}

.blog-details-category ul {
  margin: 0;
  padding: 0;
}

.blog-details-category ul li {
  list-style-type: none;
  display: block;
  margin-bottom: 4px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d8e1ee;
  position: relative;
  padding-left: 20px;
  z-index: 1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.blog-details-category ul li:last-child{
  border-bottom: none;
}
.blog-details-category ul li:before {
  position: absolute;
  content: '';
  top: 2px;
  left: 0;
  width: 3px;
  height: 40px;
  background-color: #981a26;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  z-index: -1;
}

.blog-details-category ul li:last-child {
  margin-bottom: 0;
}

.blog-details-category ul li:hover a {
  color: #ffffff;
}

.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: #333333;
  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;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  color: #ffffff;
}

.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;
  -webkit-box-shadow: none;
          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: "Playfair Display", serif;
  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: #333333;
}

.practice-details-item .practice-details-contact ul li i {
  color: #981a26;
  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: "Playfair Display", serif;
  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: #333333;
}

/*-- 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: #981a26;
}

.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: #ffffff;
}

.testimonial-item .testimonial-wrap {
  position: relative;
  margin-bottom: 70px;
}

.testimonial-item .testimonial-wrap:hover p {
  background-color: #981a26;
  color: #fff;
}

.testimonial-item .testimonial-wrap:hover p:before {
  border-top: 45px solid #981a26;
}

.testimonial-item .testimonial-wrap img {
      border-radius: 50%;
    position: absolute;
    left: 9px;
    bottom: -70px;
    width: 105px;
    border: 3px solid #fff;
    height: 105px;
    object-fit: cover;
}
.testi_text{
margin-bottom: 10px;
}
.testimonial-item .testimonial-wrap p {
  margin-bottom: 50px;
  background-color: #fff;
  box-shadow: 1.362px 2.673px 10px 0 rgb(0 0 0 / 10%);
  padding: 35px;
  color: #111;
  border-radius: 10px;
  position: relative;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
   text-overflow: ellipsis;
   height: 329px;
   display: -webkit-box;   /* fallback */
         /* fallback */
   line-clamp: 10; /* standard property for compatibility */
   -webkit-line-clamp: 10; /* number of lines to show */
   -webkit-box-orient: vertical;
   display: flex;
    align-items: center;
}

.testimonial-item .testimonial-wrap p:before {
  position: absolute;
  content: "";
  bottom: -35px;
  left: 28px;
  border-left: 40px solid transparent;
  border-top: 45px solid #fff;
  border-right: 40px solid transparent;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.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: "Playfair Display", serif;
  margin-bottom: 8px;
  color: #fff;
}

.testimonial-item .testimonial-wrap .testimonial-right span {
  display: block;
  color: #fff;
  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: 16px;
  display: none;
  padding: 20px 45px 15px 20px;
  margin-bottom: 0;
  color: #333333;
}

.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: #333333;
}

.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: #ffffff;
  background-color: #981a26;
  border: 1px solid #981a26;
}

.accordion li a.active:after {
  content: "-";
  font-size: 25px;
  color: #ffffff;
}

/*-- End Faq --*/
/*----- End Faq Page -----*/
/*----- Error Page -----*/
/*-- 404 --*/
.error-item {
  height: 800px;
  text-align: center;
  margin-top: -30px;
}

.error-item h1 {
  font-size: 130px;
  font-weight: 700;
  margin-bottom: 8px;
}

.error-item p {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 35px;
  color: #646464;
}

.error-item span {
  display: block;
  color: #646464;
}

.error-item a {
  display: inline-block;
  color: #ffffff;
  background-color: #981a26;
  padding: 20px 45px;
  margin-top: 70px;
  font-size: 18px;
}

.error-item a:hover {
  background-color: #333333;
}

/*-- 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: 400px;
}
.form-branch-area h4{
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.8rem;
}
.form-branch-area h4 span{
  color: #981a26;
}
.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 #981a26;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 15px;
  min-height: 121px;
}

.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: #981a26;
}

.contact-form-four .location-item .location-icon i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #981a26;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  left: 20px;
  top: 35px;
}

.contact-form-four .location-bg:before {
  background-color: #333333;
}

.contact-form-four .location-bg:after {
  display: none;
}

.contact-form-four .form-group .form-control {
  color: #333333;
}
.contact-form-four .form-group .form-control::placeholder {
  color: #222;
  opacity: 1; /* Firefox */
}
.contact-form-four .form-group .form-control:focus {
    border: 1px solid #333333;
}

.contact-form-four .form-group .nice-select.open .list {
  background-color: #ffffff !important;
  border: 1px solid #981a26;
  width: 100%;
}

.contact-form-four .form-group .nice-select .option {
  color: #333333;
}

/*-- 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: #981a26;
}

.sk-folding-cube {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
          animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
          transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
          transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
          transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

/*----- End Preloader -----*/
/*----- Back To Top -----*/
#toTop {
  position: fixed;
  bottom: 30px;
  left: 0;
  cursor: pointer;
  display: none;
  z-index: 999;
}

.back-to-top-btn i {
  background-color: #981a26;
  color: #ffffff;
  height: 50px;
  width: 50px;
  border: 2px solid rgba(244, 244, 244, 0.8);
  line-height: 50px;
  display: inline-block;
  text-align: center;
  font-size: 26px;
  border-radius: 50%;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  margin-left: 28px;
  -webkit-box-shadow: 0px 0px 14px 0px #981a26;
          box-shadow: 0px 0px 14px 0px #981a26;
}

.back-to-top-btn i:hover {
  background-color: #333333;
}

/*----- End Back To Top -----*/
/*----- Buy Now Btn -----*/
.buy-now-btn {
  right: 20px;
  z-index: 99;
  top: 50%;
  position: fixed;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 30px;
  display: inline-block;
  color: #ffffff;
  background-color: #82b440;
  padding: 10px 20px 10px 42px;
  -webkit-box-shadow: 0 1px 20px 1px #82b440;
          box-shadow: 0 1px 20px 1px #82b440;
  font-size: 13px;
  font-weight: 600;
}

.buy-now-btn img {
  top: 50%;
  left: 20px;
  width: 15px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.buy-now-btn:hover {
  color: #ffffff;
  background-color: #94be5d;
}
.light-bg{
  background-color: #f5f1f1;
}
.expertise-area{
  padding:80px 0 70px 0;
}
.contact-form {
  padding:80px 0 70px;
  background-color: #faf5f6;
}
.practice-area{
  padding:90px 0 80px;
}
.contact-form .section-title h2{
  color: #fff;
}
.top_header ul{
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}
.top_header ul li a{
  color: #fff;
  font-size: 15px;
}
.top_header{
  padding: 10px 0;
  background-color: #981a26;
}
.middle-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
}
.navbar .navbar-nav{
  flex-direction: row;
}
.main-nav .navbar{
  border-top: 1px solid #d8d8e9;
}
.down-arrow::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover:after{
  transform: rotate(-90deg);
  transition: all 0.3s;
}
.download_brochure{
  width: 200px;
}
.main_menu{
  display: flex;
  justify-content: space-between;
}
.navbar>.container{
  display: block
}
.vision_img{
      box-shadow: 5.878px 8.09px 35px 0px rgb(0 0 0 / 15%);
      padding: 10px;
      /*background-color: #fff;*/
      background-color: #981a26;
}
span.color_title{
  color: #981a26;
}
.copyright-area{
  background-color: #981a26;
}
.copyright-area a{
  color: #fff;
}
.row_copy{
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.row_copy p{
  margin-bottom: 0;
}
.whatsaap_icon{
  width: 50px;
  display: block;
  position: fixed;
  right: 28px;
  z-index: 99;
  bottom: 30px;
  animation: play_Whatsapp 2s ease infinite;
  border-radius: 50px;
}
@keyframes play_Whatsapp{
    0% {
    transform: scale(1);
    }
    15% {
        box-shadow: 0 0 0 5px #2aa81a;
    }
    25% {
        box-shadow: 0 0 0 10px #2aa81a, 0 0 0 20px #2ba81a3f;
    }
    25% {
        box-shadow: 0 0 0 15px #2ba81a3f, 0 0 0 30px #2ba81a3f;
    }
}

.sticky-nav .navbar-brand{
  width: 320px;
  display: block;
}
.sticky-nav .main-menu{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.sticky-nav .main-menu nav ul{
      display: flex;
    flex-direction: revert;
}
.main-nav{
  -webkit-transition: all 0.5s ease;
  -moz-transition: position 10s;
  -ms-transition: position 10s;
  -o-transition: position 10s;
  transition: all 0.5s ease;
}
.main-nav.fixed{
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  background-color: #fcfdfd;
  border-bottom: 1px solid #ECECEC;
  animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}
.main-nav nav .navbar-nav {
    margin-left: auto;
    margin-right: auto;
}
.why_choose_us{
  padding: 80px 0 70px 0;
  background-color: #f4e8e9;
}
.why_choose_us p{
  color: #111;
}
.why_choose_us .section-title{
  text-align: left;
  margin-bottom: 25px;
}
.why_choose_us .form-group{
  margin-bottom: 20px;
  float: left;
  width: 100%;
}
.why_choose_us .form-group .nice-select{
  width: 100%;
  padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}
.why_choose_us .form-group .form-control{
  padding: 0.5rem 0.75rem;
}
.why_choose_us .form-group textarea.form-control{
  min-height: 80px;
}
.why_choose_us .inquiry_form .cmn-btn{
  border: 1px solid #3e4095;
}
.why_choose_us .cmn-btn:hover{
  border-color: #fff;
}
.why_choose_us .inquiry_form{
  background-color: #3e4095;
  padding: 35px;
}
.why_choose_us .inquiry_form h4{
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
}
.counter{
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.counter span{
  color: #fff;
  font-size: 52px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
}
.counter h4{
  color: #fff;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.counter img{
  width: 58px;
  display: block;
  margin: auto;
}
.navbar-area {
    border-bottom: 1px solid #efefef;
}
.our_branches .contact-form-four .location-item h3{
  color: #111;
  margin-bottom: 0;
}
.our_branches .contact-form-four .location-item ul li{
  color: #111;
}
.our_branches .contact-form-four .location-item{
  padding: 20px;
  min-height: auto;
}
.photo_gallery{
  padding: 60px 0;
}
.im_gallery{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;

}
.mobile_display {
  display: none;
}
.im_gallery img{
  height: 40vh;
    flex-grow: 1;
    object-fit: cover;
    border-radius: 1vmin;
    border: 2px solid #fefaf9;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
}
.blog-details-area table tr{
  display: flex;
  gap: 30px;
  margin-bottom: 15px;
}
.blog-details-area table tr:last-child{
  margin-bottom: 0;
}
.blog-details-area{
    padding: 80px 0 80px;
}
.blog-details-area table tr td{
   color: #464646;
}
.practice-details-brochures p{
  color: #464646;
  line-height: 1.6;
}
.sticky{
  position: sticky;
  top: 110px;
  margin-bottom: 0;
}
.price-tag-seal{
  margin-bottom: 20px;
}
.blog-details-item.bg_styled ol li{
  color: #464646;
  margin-bottom: 20px;
}
.apply_form{
  padding: 30px;
  box-shadow: 5.878px 8.09px 35px 0px rgb(0 0 0 / 10%);
  background-color: rgba(244, 244, 244, 0.7);
}
.apply_form label{
  margin-bottom: 8px;
  float: left;
}
.apply_form  h4{
  font-weight: 600 !important;

}
.apply_form .nice-select{
  width: 100%;
}
.practice-area .help-right{
  margin-left: 0;
}
.Fee_sec{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f2f2f2;
  margin-bottom: 15px;
}
.Fee_sec h3 {
  color: #000 !important;
  display: flex;
  align-items: center;
}
.Fee_sec h3 img{
   width: 24px;
}
.mean-container .mean-nav .mobile_display>.side-nav a{
    border: 1px solid #981a26 !important;
    width: auto !important;
    margin: 20px !important;
    padding: 12px 24px !important;
    color: #981a26;
}

/*download section*/
.download-inner .semester{
  box-shadow: 0px 0px 20px 0px #ddd;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  margin-top: 10px;
  background-color: #fff;
}
.download-inner{
  margin-bottom: 40px;
}
.download-inner .semester h4{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.download-inner .semester a{
  display: inline-block;
    font-size: 14px;
    color: #000;
    border: 2px solid #981a26;
    padding: 8px 18px;
    position: relative;
    z-index: 1;
    font-weight: 500;
    border-radius: 5px;
}
.download-inner{
  background-color: #f4e8e9;
  padding:35px 25px;
  border-radius: 10px;
}
.download-inner h5{
  font-weight: 600;
    font-size: 26px;
    font-family: "Playfair Display", serif;
    line-height: 30px;
    padding-right: 60px;
    margin-bottom: 0px;
}
.semes-item{
  margin-top: 30px;
}
.semes-item h6{
  font-size: 18px;
}
.innovator{
    color: #3e4095;
    font-weight: 600;
    background: #fff;
    padding: 0 5px;
}

/* =====================================================================
   Footer Redesign to Match Reference Site
======================================================================== */
footer {
    background-color: #f9ebeb;
    padding-top: 70px;
    padding-bottom: 30px;
}
.footer-logo p {
    color: #444;
    margin-top: 20px;
    line-height: 1.8;
}
.footer-logo ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    gap: 15px;
}
.footer-logo ul li a {
    color: #981a26;
    border: 1px solid #981a26;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: 0.3s;
}
.footer-logo ul li a:hover {
    background-color: #981a26;
    color: #fff;
}
.footer-service h3, .footer-find h3 {
    font-size: 20px;
    color: #222;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.footer-service h3:after, .footer-find h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #981a26;
}
.footer-service ul, .footer-find ul {
    list-style: none;
    padding: 0;
}
.footer-service ul li {
    margin-bottom: 15px;
}
.footer-service ul li a {
    color: #444;
    transition: 0.3s;
    font-weight: 500;
}
.footer-service ul li a:hover {
    color: #981a26;
}
.footer-service ul li i {
    margin-right: 5px;
    font-size: 14px;
}
.footer-find ul {
    list-style: none;
    padding: 0;
}
.footer-find ul li {
    color: #444;
    margin-bottom: 15px;
    display: flex;
    font-weight: 500;
}
.footer-find ul li i {
    color: #981a26;
    margin-right: 15px;
    font-size: 20px;
}
.footer-find ul li a {
    color: #444;
}
.copyright-area {
    background-color: #f5e4e4;
    padding: 20px 0;
}
.row_copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.copyright-item p {
    margin: 0;
    color: #444;
    font-weight: 500;
}
.copyright-right a {
    color: #981a26;
    font-weight: 700;
    text-decoration: none;
}

/* Global Fix for Mobile Horizontal Scroll */
html, body {
    overflow-x: hidden !important;
}

/* Team Section Fix */
.team-item {
    position: relative;
    border: 2px solid #283e87;
    background: #fff;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.team-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #f8f9fa;
}
.team-inner {
    background-color: #981a26 !important;
    padding: 15px;
    text-align: center;
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    opacity: 1 !important;
    transform: none !important;
    border: none !important;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.team-inner h3 a {
    color: #fff !important;
    font-size: 18px;
    font-weight: 700;
}
.team-inner span {
    color: #fff !important;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

/* Breadcrumb Overlay Fix */
.page-title-area:before {
    opacity: 0.5 !important;
    background-color: rgba(0, 0, 0, 0.4) !important;
}

/* Hard fix for mobile horizontal scroll */
.loaction-area, .location-bg-wrap {
    overflow: hidden;
}

/* Footer Copyright & Typography Refinement */
.copyright-area {
    background-color: #981a26 !important;
    padding: 15px 0 !important;
    border-top: none !important;
}
.copyright-item p {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 400 !important;
}
.copyright-right {
    text-align: right;
}
.copyright-right p {
    color: #ffffff !important;
    margin: 0;
}
.copyright-right p a {
    color: #981a26 !important;
    background-color: #ffffff !important;
    padding: 2px 8px;
    border-radius: 2px;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block;
    margin-left: 5px;
}
.footer-find ul li span {
    display: block;
    line-height: 1.6;
}
.footer-find ul li {
    align-items: flex-start !important;
}
.footer-find ul li i {
    margin-top: 4px;
}

/* Contact Us Layout Overlap Fix */
.loaction-area {
    position: relative !important;
    z-index: 99 !important;
    margin-top: -60px !important;
}
.location-bg {
    background-color: #3f3f3f !important;
    padding: 30px 15px !important;
    border-radius: 5px !important;
    overflow: hidden !important;
}
.location-item {
    padding: 20px 15px !important;
}

/* =====================================================================
   USER REQUESTED FONTS: POPPINS
======================================================================== */
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLmv1pVFteOcEg.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLmv1pVGdeOcEg.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiDyp8kv8JHgFVrJJLmv1pVF9eO.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiGyp8kv8JHgFVrLPTucXtAKPY.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiGyp8kv8JHgFVrLPTufntAKPY.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiGyp8kv8JHgFVrLPTucHtA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLFj_Z11lFc-K.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLFj_Z1JlFc-K.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLFj_Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDz8Z11lFc-K.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDz8Z1JlFc-K.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDz8Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJbecmNE.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJnecmNE.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLGT9Z11lFc-K.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLGT9Z1JlFc-K.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLEj6Z11lFc-K.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLEj6Z1JlFc-K.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLCz7Z11lFc-K.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLCz7Z1JlFc-K.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDD4Z11lFc-K.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDD4Z1JlFc-K.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDD4Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLBT5Z11lFc-K.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLBT5Z1JlFc-K.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLBT5Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   SITE-WIDE FONT OVERRIDE
   Poppins for body/UI; Playfair Display preserved on
   .location-item h3 (theme sets it explicitly there).
   ============================================================ */
body, p, a, span, li,
h1, h2, h4, h5, h6 {
    font-family: 'Poppins', sans-serif !important;
}
/* h3 NOT globally overridden — .location-item h3 needs Playfair Display */

/* ============================================================
   BREADCRUMB AREA
   ============================================================ */
.page-title-area {
    box-shadow: none !important;
}
.page-title-area:before {
    opacity: 1 !important;
    background-color: rgba(18, 72, 140, 0.36) !important;
}
.page-title-text h2 {
    text-shadow: 1px 2px 4px rgba(0,0,0,0.65) !important;
}
.page-title-text ul li,
.page-title-text ul li a,
.page-title-text ul li i {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.65) !important;
    font-weight: 500 !important;
}

/* ============================================================
   CONTACT PAGE — LOCATION INFO BOXES (dark top strip)
   Theme layout: .location-item is position:relative + padding-left:90px
   .location-icon is absolutely positioned at left:0 top:0
   The icon GLYPH comes from flaticon ::before pseudo-element —
   DO NOT set display:none on ::before or the icon disappears!
   ============================================================ */
.loaction-area {
    position: relative !important;
    z-index: 99 !important;
    margin-top: -60px !important;
    overflow: hidden;
}
.location-bg {
    background-color: #3f3f3f !important;
    padding: 30px 15px !important;
    border-radius: 5px !important;
    overflow: hidden !important;
    background-image: none !important;
}
/* Override the red overlay that .location-bg:before adds by default */
.contact-form-four .location-bg:before {
    background-color: #333333 !important;
    opacity: 0.95 !important;
}
.contact-form-four .location-bg:after {
    display: none !important;
}

/* Location item: original theme uses padding-left:90px + absolute icon */
.contact-form-four .location-item {
    position: relative !important;
    padding-left: 90px !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    padding-right: 10px !important;
    min-height: 90px !important;
    display: block !important;
    border: 1px solid #981a26 !important;
    background: transparent !important;
}

/* Icon circle: absolute position, centred vertically */
.contact-form-four .location-item .location-icon {
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 58px !important;
    height: 58px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #981a26 !important;
    border-radius: 50% !important;
    background: transparent !important;
}

/* CRITICAL: Do NOT touch ::before/::after on .location-icon itself
   because flaticon icons use i::before for the glyph.
   Only suppress pseudo-elements on the wrapper DIV if needed. */

/* The <i> tag inside .location-icon — override theme's absolute positioning
   which places it at left:32px top:22px and reset to static so flex centres it */
.contact-form-four .location-item .location-icon i {
    position: static !important;
    font-size: 22px !important;
    color: #fff !important;
    width: auto !important;
    height: auto !important;
    line-height: 1 !important;
    left: auto !important;
    top: auto !important;
    border: none !important;
    border-radius: 0 !important;
    display: inline-block !important;
}

/* Location heading: Playfair Display (theme default), white */
.contact-form-four .location-item h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 8px !important;
    margin-top: 0 !important;
}

/* Location list text: light grey */
.contact-form-four .location-item ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
.contact-form-four .location-item ul li,
.contact-form-four .location-item ul li a {
    color: #d1d1d1 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    font-family: 'Poppins', sans-serif !important;
}

/* ============================================================
   CONTACT PAGE — OUR BRANCHES SECTION
   Completely separate from the top dark strip.
   No icon circle, no 90px padding, white bg, dark text.
   ============================================================ */
.our_branches {
    margin-top: 5px;
}
.our_branches h4 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.8rem !important;
    margin-bottom: 20px !important;
    color: #111 !important;
}
.our_branches .contact-form-four {
    background-image: none !important;
    background: transparent !important;
}
.our_branches .contact-form-four .location-item {
    padding: 20px !important;
    margin-bottom: 0 !important;
    min-height: auto !important;
    border: 1px solid #981a26 !important;
    background: #fff !important;
    background-image: none !important;
    position: relative !important;
    display: block !important;
}
.our_branches .contact-form-four .location-item .location-icon {
    display: none !important;
}
.our_branches .contact-form-four .location-item h3 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    color: #111 !important;
    margin-top: 0 !important;
    margin-bottom: 12px !important;
}
.our_branches .contact-form-four .location-item ul {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}
.our_branches .contact-form-four .location-item ul li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    color: #333 !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 8px !important;
}
.our_branches .contact-form-four .location-item ul li i {
    position: static !important;
    color: #981a26 !important;
    font-size: 16px !important;
    margin-top: 3px !important;
    flex-shrink: 0 !important;
    width: auto !important;
    height: auto !important;
    line-height: 1 !important;
    left: auto !important;
    top: auto !important;
    border: none !important;
    border-radius: 0 !important;
    display: inline-block !important;
}
.our_branches .contact-form-four .location-item ul li a {
    color: #333 !important;
    font-family: 'Poppins', sans-serif !important;
}

/* ============================================================
   FOOTER — matches Image 2 target design
   Light pinkish bg (#f9ebeb), dark text, red accents
   ============================================================ */
footer {
    background-color: #f9ebeb !important;
    background-image: none !important;
    padding-top: 50px !important;
    padding-bottom: 28px !important;
}
footer:before {
    display: none !important;
}
.footer-item {
    margin-bottom: 0 !important;
}
/* Logo column */
.footer-logo a img {
    max-height: 80px !important;
    width: auto !important;
}
.footer-logo p {
    color: #444 !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}
/* Social icons row */
.footer-logo ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    gap: 10px !important;
}
.footer-logo ul li {
    margin: 0 !important;
    padding: 0 !important;
}
.footer-logo ul li a {
    color: #981a26 !important;
    border: 1px solid #981a26 !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 5px !important;
    transition: 0.3s !important;
    font-size: 16px !important;
    background: transparent !important;
}
.footer-logo ul li a:hover {
    background-color: #981a26 !important;
    color: #fff !important;
}
/* Footer section headings (Courses, Quick Links, Find Us) */
.footer-service h3,
.footer-find h3 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #222 !important;
    margin-bottom: 25px !important;
    padding-bottom: 10px !important;
    position: relative !important;
    border-bottom: 0 !important;
}
.footer-service h3::after,
.footer-find h3::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 50px !important;
    height: 2px !important;
    background-color: #981a26 !important;
}
/* Course / Quick Links list */
.footer-service ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.footer-service ul li {
    margin-bottom: 12px !important;
}
.footer-service ul li a {
    color: #444 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: 0.3s !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}
.footer-service ul li a:hover {
    color: #981a26 !important;
    padding-left: 3px !important;
}
.footer-service ul li a i {
    font-size: 13px !important;
    color: #981a26 !important;
}
/* Find Us list */
.footer-find ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.footer-find ul li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    color: #444 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 15px !important;
    line-height: 1.6 !important;
}
.footer-find ul li i {
    color: #981a26 !important;
    font-size: 20px !important;
    margin-top: 2px !important;
    flex-shrink: 0 !important;
}
.footer-find ul li span {
    display: block !important;
    line-height: 1.6 !important;
}
.footer-find ul li a {
    color: #444 !important;
}
.footer-find ul li a:hover {
    color: #981a26 !important;
}

/* ============================================================
   COPYRIGHT BAR — dark red background, white text
   ============================================================ */
.copyright-area {
    background-color: #981a26 !important;
    padding: 10px 0 !important;
    border-top: none !important;
}
.row_copy {
    padding: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}
.copyright-item p,
.copyright-right p {
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 400 !important;
}
.copyright-right {
    text-align: right !important;
}
.copyright-right p a {
    color: #981a26 !important;
    background-color: #ffffff !important;
    padding: 2px 8px !important;
    border-radius: 2px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin-left: 4px !important;
}

/* ============================================================
   MISC FIXES
   ============================================================ */
html, body {
    overflow-x: hidden !important;
}
.navbar-area {
    border-bottom: 1px solid #efefef;
}
.mobile_display {
    display: none;
}

/* ============================================================
   HOME PAGE IMAGE SLIDER
   The current homepage slider uses real <img> tags, so remove the
   template padding meant for the old background/text slider.
   ============================================================ */
.home-slider-area {
    background: #ffffff;
    overflow: hidden;
}
.home-slider-area .home-slider,
.home-slider-area .owl-stage-outer,
.home-slider-area .owl-stage,
.home-slider-area .owl-item,
.home-slider-area .slider-item {
    height: 520px !important;
}
.home-slider-area .slider-item {
    padding: 0 !important;
    background-image: none !important;
    overflow: hidden !important;
}
.home-slider-area .slider-item img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
}
.home-slider.owl-theme .owl-dots {
    bottom: 18px !important;
    line-height: 1 !important;
    margin-top: 0 !important;
}
.home-slider.owl-theme .owl-dots .owl-dot span {
    background: #ffffff !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.home-slider.owl-theme .owl-dots .owl-dot.active span {
    background: #981a26 !important;
}

@media (max-width: 991px) {
    .home-slider-area .home-slider,
    .home-slider-area .owl-stage-outer,
    .home-slider-area .owl-stage,
    .home-slider-area .owl-item,
    .home-slider-area .slider-item {
        height: 360px !important;
    }
}

@media (max-width: 575px) {
    .home-slider-area .home-slider,
    .home-slider-area .owl-stage-outer,
    .home-slider-area .owl-stage,
    .home-slider-area .owl-item,
    .home-slider-area .slider-item {
        height: 190px !important;
    }
    .home-slider .owl-prev,
    .home-slider .owl-next {
        width: 34px !important;
        height: 34px !important;
        line-height: 34px !important;
        font-size: 18px !important;
    }
    .home-slider.owl-theme .owl-dots {
        bottom: 10px !important;
    }
}
