@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap");
/*font-family: "Inter Tight", sans-serif;*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
/*font-family: "DM Sans", sans-serif;*/
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

/*font-family: "Playfair Display", serif;*/
* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  overflow-x: hidden;
  font-family: "DM Sans", sans-serif;
}

button:focus {
  outline: none;
}

input:focus {
  outline: none;
}

a {
  color: #ea2229;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: 0px;
}

p {
  line-height: 1.6;
}

/*#### Common css start ####*/
.common-btn1 {
  position: relative;
  background-color: #ea2229;
  color: #fff;
  font-size: 15px;
  padding: 8px 15px;
  border-radius: 30px;
}

.common-btn1 i {
  position: relative;
  display: inline-flex;
  width: 30px;
  height: 30px;
  background-color: #fff;
  color: #202020;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-left: 3px;
  transition: all 0.5s;
}

.common-btn1:hover {
  background-color: #c5161c;
  color: #fff;
}

.common-btn1:hover i {
  transform: rotate(-45deg);
  transition: all 0.5s;
}

.common-title {
  position: relative;
  width: 100%;
}

.common-title h4 {
  position: relative;
  width: 100%;
  color: #656565;
  font-size: 16px;
  margin-bottom: 5px;
}

.common-title h3 {
  position: relative;
  width: 100%;
  color: #202020;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.common-title h3 strong {
  color: #ea2229;
}

.common-title p {
  position: relative;
  width: 100%;
  color: #656565;
  font-size: 15px;
  margin-bottom: 15px;
}

/*#### Common css end ####*/

/*####### animation #########*/
@keyframes smoothScroll {
  0% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/*####### animation end #########*/
/*##### Header css start #####*/
.header-wrapper {
  position: relative;
  width: 100%;
  z-index: 9;
}

/*  */
.header-wrapper.sticky .top-header-wrap {
  display: none;
}

.header-wrapper.sticky {
  position: fixed;
  z-index: 10;
  width: 100%;
  top: 0;
  background: rgba(253, 253, 253, 0.88);
  animation: smoothScroll 1s forwards;
  backdrop-filter: blur(4px);
  box-shadow: 0px 1px 14px #00000030;
}

.top-header-wrap {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
  padding: 8px 0px;
}

.top-head-left {
  position: relative;
  width: 100%;
}

.top-head-left p {
  position: relative;
  width: 100%;
  color: #656565;
  font-size: 15px;
  margin-bottom: 0px;
}

.top-head-left p a {
  position: relative;
  color: #ea2229;
  font-weight: 500;
}

.top-head-left p a i {
  color: #202020;
}

.hed-contact-info {
  position: relative;
  width: 100%;
}

.hed-contact-info ul {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  justify-content: end;
}

.hed-contact-info ul li {
  position: relative;
  padding: 0px 6px;
}

.hed-contact-info ul li p {
  position: relative;
  color: #202020;
  font-size: 15px;
  margin-bottom: 0px;
}

.hed-contact-info ul li a {
  position: relative;
  color: #202020;
}

.hed-contact-info ul li a i {
  position: relative;
  color: #ea2229;
  margin-right: 3px;
}

.header-menu-wrap {
  position: relative;
  width: 100%;
}

.header-menu-wrap .navbar {
  position: relative;
}

.header-menu-wrap .navbar .logo-wrap {
  position: relative;
}

.header-menu-wrap .navbar .logo-wrap img {
  height: 100px;
}

.header-menu-wrap .navbar .navbar-nav {
  position: relative;
}

.header-menu-wrap .navbar .navbar-nav li {
  position: relative;
  /* padding: 0px 5px; */
  padding: 0px !important;
}

.header-menu-wrap .navbar .navbar-nav li a {
  position: relative;
  color: #202020;
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
}

.header-menu-wrap .navbar .navbar-nav li a {
  background-color: transparent;
}

.header-menu-wrap .navbar .navbar-nav li.active>a {
  position: relative;
  color: #ea2229;
}

.header-menu-wrap .navbar .navbar-nav .dropdown-menu li a {
  position: relative;
  font-size: 14px;
  white-space: normal;
  padding: 4px 15px;
  border-bottom: 1px solid #eee;
}

.header-menu-wrap .navbar .navbar-nav .dropdown-menu li:last-child a {
  border-bottom: 0;
}

.head-right-wrap {
  position: relative;
}

.head-right-wrap ul {
  position: relative;
  margin-bottom: 0px;
}

/*##### Header css end #####*/
/*##### Banner section css start #####*/
.banner-wrapper {
  position: relative;
  width: 100%;
  padding-top: 60px;
  background-image: url(../images/banner-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-left-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.banner-left-content h1 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 60px;
  font-weight: 700;
}

.banner-left-content h1 strong {
  color: #ea2229;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.banner-left-content p {
  position: relative;
  width: 100%;
  color: #bebebe;
  font-size: 15px;
  margin-bottom: 15px;
}

.banner-right-img {
  position: relative;
  width: 100%;
  text-align: right;
}

/*##### Banner section css end #####*/
/*##### About us css start #####*/
.about-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

@keyframes animName {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.about-left-content {
  position: relative;
  width: 100%;
}

.about-left-content .about-left-img {
  position: relative;
  width: calc(100% - 80px);
  border-radius: 10px;
  overflow: hidden;
}

.about-left-content .about-left-img img {
  position: relative;
  width: 100%;
}

.about-left-content .abt-tech-deg-box {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 170px;
  height: 170px;
  background-color: #ea2229;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.about-left-content .abt-tech-deg-box .globe-text {
  position: absolute;
  left: 5%;
  top: 5%;
  width: 90%;
  height: 90%;
  animation: animName 10s linear infinite;
}

.about-middle-content {
  position: relative;
  width: 100%;
}

.about-middle-content h2 {
  position: relative;
  width: 100%;
  font-size: 100px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-middle-content p {
  position: relative;
  width: 100%;
  color: #656565;
  font-size: 15px;
}

.about-solutions-list {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.about-solutions-list .icon {
  position: relative;
  width: 30px;
}

.about-solutions-list .content {
  position: relative;
  width: calc(100% - 30px);
  padding-left: 10px;
}

.about-solutions-list .content h4 {
  position: relative;
  width: 100%;
  color: #202020;
  font-size: 20px;
  margin-bottom: 5px;
}

.about-solutions-list .content p {
  position: relative;
  width: 100%;
  color: #656565;
  font-size: 15px;
  margin-bottom: 0px;
}

.about-right-img {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.about-right-img img {
  position: relative;
  width: 100%;
}

.about-right-img .about-video-wrap {
  position: relative;
  width: 100%;
}

.about-right-img .about-video-wrap video {
  position: relative;
  width: 100%;
  max-height: 550px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: -6px;
}

#brands-slider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20%;
  height: 100%;
  background: linear-gradient(270deg,
      rgba(255, 255, 255, 0) -2.03%,
      rgba(255, 255, 255, 0.779231) 45.06%,
      #ffffff 100%);
  z-index: 1;
}

#brands-slider::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 20%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) -2.03%,
      rgba(255, 255, 255, 0.779231) 45.06%,
      #ffffff 100%);
}

#brands-slider .brands-sld-items {
  position: relative;
  padding: 0px 10px;
}

.brands-logo {
  position: relative;
  width: 100%;
  border: 1px solid #e0e0e0;
  padding: 10px 10px;
  border-radius: 10px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.brands-logo img {
  width: auto;
  height: 65px;
}

/*##### About us css end #####*/
/*##### Services css start ####*/
.services-wrapper {
  position: relative;
  width: 100%;
  background-image: url(../images/services-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0px;
}

.services-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 32, 32, 0.88);
}

.services-wrapper .common-title h3 {
  color: #fff;
}

.services-nav {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.services-nav .nav-tabs {
  border: 1px solid rgba(217, 217, 217, 0.3294117647);
  border-radius: 30px;
  padding: 8px 8px;
}

.services-nav .nav-tabs li {
  position: relative;
  padding: 5px 15px;
}

.services-nav .nav-tabs li .nav-link {
  position: relative;
  padding: 0;
  color: #fff;
  font-size: 18px;
  background-color: transparent;
  border: 0px;
  transition: all 0.5s;
}

.services-nav .nav-tabs li .nav-link.active {
  color: #ea2229;
}

.services-nav .nav-tabs li .nav-link:hover {
  color: #ea2229;
}

.services-tab-content {
  position: relative;
}

.services-tab-left {
  position: sticky;
  width: 100%;
  top: 0;
}

.services-tab-left h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 15px;
}

.services-tab-left p {
  position: relative;
  width: 100%;
  color: #d9d9d9;
  font-size: 15px;
  margin-bottom: 15px;
}

.services-tab-left .services-left-img {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.services-tab-left .services-left-img img {
  position: relative;
  width: 100%;
}

.services-list {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 15px 15px;
  border: 1px solid #303030;
  border-radius: 10px;
}

.services-list .icon {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.services-list .icon>img {
  height: 40px;
}

.services-list h3 {
  position: relative;
  width: 100%;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.services-list h3 a {
  color: inherit;
}

.services-list p {
  position: relative;
  width: 100%;
  color: #656565;
  font-size: 15px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.services-list .services-img {
  position: relative;
  width: 100%;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
}

.services-list .services-img img {
  position: relative;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  transition: all 0.5s;
}

.services-list .srv-btn-box {
  position: absolute;
  right: 10px;
  top: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.services-list .srv-btn-box .srv-btn {
  position: relative;
  width: 35px;
  height: 35px;
  background-color: #ea2229;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.services-list:hover {
  background: #c40e20;
  background: linear-gradient(0deg,
      rgb(196, 14, 32) 0%,
      rgba(196, 14, 32, 0.25) 100%);
}

.services-list:hover .srv-btn-box {
  opacity: 1;
  visibility: visible;
}

.services-list:hover p {
  display: none;
}

.services-list:hover .services-img {
  height: 200px;
}

.services-list:hover .services-img img {
  transform: scale(1.1);
}

/*##### Services css end ####*/
/*#### why choose css start ####*/
.why-choose-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
  background-color: #f8f5f2;
}

.why-choose-right-img {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}

#why-choose-slider .why-choose-sld-items {
  position: relative;
  padding: 0px 10px;
}

.why-choose-wrap {
  position: relative;
  width: 100%;
}

.why-choose-wrap .count {
  position: relative;
  width: 100%;
  font-size: 35px;
  font-weight: 600;
  color: #202020;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.why-choose-wrap .count::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20%;
  height: 2px;
  background-color: #ea2229;
  transition: all 0.5s;
}

.why-choose-wrap h4 {
  position: relative;
  width: 100%;
  color: #202020;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.why-choose-wrap p {
  position: relative;
  width: 100%;
  color: #656565;
  font-size: 15px;
  margin-bottom: 10px;
}

.why-choose-wrap:hover .count::before {
  width: 100%;
}

/*#### why choose css end ####*/
/*#### contact css start ####*/
.contact-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
  overflow: hidden;
}

.contact-left-wrap {
  position: relative;
  width: 100%;
}

.contact-left-wrap .contact-info-list {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.contact-left-wrap .contact-info-list .icon {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: #f8f5f2;
  color: #ea2229;
  font-size: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-left-wrap .contact-info-list .info {
  position: relative;
  width: calc(100% - 50px);
  padding-left: 10px;
}

.contact-left-wrap .contact-info-list .info h5 {
  position: relative;
  width: 100%;
  color: #202020;
  font-size: 14px;
  margin-bottom: 5px;
}

.contact-left-wrap .contact-info-list .info h4 {
  position: relative;
  width: 100%;
  font-size: 20px;
  color: #202020;
  font-weight: 600;
  margin-bottom: 0px;
}

.contact-left-wrap .contact-info-list .info h4 span {
  color: #ea2229;
  font-size: 16px;
  font-weight: 400;
}

.contact-left-wrap .contact-info-list .info h4 a {
  color: inherit;
}

.contact-info-wrap {
  position: relative;
  width: 100%;
  background-color: #f8f5f2;
  padding: 30px 30px;
  border-radius: 15px;
  z-index: 1;
}

.contact-info-wrap .title {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}

.contact-info-wrap .title h3 {
  position: relative;
  width: 100%;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-info-wrap .title p {
  position: relative;
  width: 100%;
  color: #656565;
  font-size: 15px;
  margin-bottom: 10px;
}

.contact-info-wrap .form-group {
  position: relative;
  width: 100%;
}

.contact-info-wrap .form-group .form-control,
.contact-info-wrap .form-group .form-select {
  padding: 14px 10px;
  background-color: transparent;
  border: 1px solid #c9c9c9;
  border-radius: 10px;
  box-shadow: none;
  outline: none;
  transition: all 0.5s;
}

.contact-info-wrap .form-group .form-control:focus,
.contact-info-wrap .form-group .form-select:focus {
  border-color: #202020;
}

.contact-wrapper .contact-right-img {
  position: absolute;
  right: -2%;
  bottom: 0;
  height: 80%;
  width: auto;
}

.contact-wrapper .contact-right-img img {
  height: 100%;
}

/*#### contact css end ####*/
/*#### Faq css start ####*/
.faq-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
  background-color: #202020;
}

.faq-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 350px;
  height: 450px;
  background-image: url(../images/faq-right-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.faq-left-img {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.faq-left-img img {
  position: relative;
  width: 100%;
}

.faq-middle-content {
  position: relative;
  width: 100%;
}

.faq-middle-content .common-title h3 {
  color: #fff;
}

/**/
.faq-wrap {
  position: relative;
  width: 100%;
  z-index: 1;
}

.faq-wrap .accordion-item {
  position: relative;
  width: 100%;
  margin-bottom: 0px;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #3c3c3c;
  border-radius: 0;
}

.faq-wrap .accordion-item .accordion-body {
  padding-left: 0;
}

.faq-wrap .accordion-item .accordion-body p {
  position: relative;
  color: #979797;
  font-size: 15px;
  margin-bottom: 15px;
}

.faq-wrapper .accordion-button {
  position: relative;
  background-color: transparent;
  color: #fff;
  font-size: 18px;
  box-shadow: none;
  padding: 20px 0px;
  padding-right: 42px;
  padding-left: 0px;
  font-weight: 300;
}

.faq-wrapper .accordion-button::after {
  content: "\f061";
  font-family: "fontawesome";
  background-color: transparent;
  color: #bababa;
  width: 40px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-image: none;
  transform: rotate(-45deg);
}

.faq-wrapper .accordion-button:not(.collapsed)::after {
  content: "\f061";
  transform: rotate(45deg);
  font-family: "fontawesome";
  color: #ea2229;
}

.faq-wrapper .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #ea2229;
}

/**/
/*#### Faq css end ####*/
/*#### reviews section css start ####*/
.reviews-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
  background-color: #f8f5f2;
}

/*#### reviews section css end ####*/
/*#### blog css start ####*/
.blog-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.blog-list {
  position: relative;
  width: 100%;
}

.blog-list .blog-img {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-list .blog-img img {
  position: relative;
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: all 0.5s;
}

.blog-list .blog-content {
  position: relative;
  width: 100%;
  padding-top: 15px;
}

.blog-list .blog-content h6 {
  position: relative;
  width: 100%;
  color: #656565;
  font-size: 14px;
  padding-left: 20px;
  margin-bottom: 15px;
}

.blog-list .blog-content h6::before {
  content: "\f111";
  position: absolute;
  left: 0;
  top: 1px;
  font-family: "fontawesome";
  font-size: 10px;
  color: #323232;
}

.blog-list .blog-content h4 {
  position: relative;
  width: 100%;
  color: #202020;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 43px;
}

.blog-list .blog-content h4 a {
  color: inherit;
}

.blog-list .blog-content .read-more {
  position: relative;
  width: 100%;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.blog-list .blog-content .read-more::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 2px;
  background-color: #ea2229;
  transition: all 0.5s;
}

.blog-list .blog-content .read-more .read-more-btn {
  padding: 0;
  color: #ea2229;
  font-size: 16px;
  font-weight: 400;
}

.blog-list:hover .blog-img img {
  transform: scale(1.1);
}

.blog-list:hover .read-more::before {
  width: 100%;
}

/*#### blog css end ####*/
/*#### Footer css start ####*/
.footer-wrapper {
  position: relative;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.96);
  background-image: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-wrapper::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0px;
  width: 500px;
  height: 470px;
  background-image: url(../images/footer-right-shape.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.footer-left-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 60px 20px 40px 20px;
  background-color: #161111;
}

.footer-left-wrap .footer-logo {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}

.footer-left-wrap p {
  position: relative;
  width: 100%;
  color: #656565;
  font-size: 14px;
}

.footer-social {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}

.footer-social h4 {
  position: relative;
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-social ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0;
}

.footer-social ul li {
  position: relative;
}

.footer-social ul li a {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background-color: transparent;
  border: 1px solid #2b2b2b;
  color: #ea2229;
  color: #ea2229;
  border-radius: 50%;
  font-size: 14px;
  transition: all 0.5s;
}

.footer-social ul li a:hover {
  background-color: #ea2229;
  border-color: #ea2229;
  color: #fff;
}

.sponsor-logo {
  position: relative;
  width: 100%;
  text-align: center;
}

.footer-right-wrap {
  position: relative;
  width: 100%;
  padding-top: 60px;
}

/*#### newsletter css start ####*/
.newsletter-main-wrap .left-title {
  position: relative;
  width: 100%;
}

.newsletter-main-wrap .left-title h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 25px;
  margin-bottom: 0px;
}

.newsletter-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0px 0px;
  border: 0px solid #e6e6e6;
  background-color: #fff;
  border-radius: 5px;
}

.newsletter-wrap .newsletter-input {
  position: relative;
  width: calc(100% - 60px);
  padding-right: 10px;
  padding-left: 10px;
}

.newsletter-wrap .newsletter-input .form-control {
  position: relative;
  width: 100%;
  border: 0px;
  color: #738a97;
  font-size: 14px;
}

.newsletter-wrap .newsletter-input .form-control:focus {
  outline: none;
  box-shadow: none;
}

.newsletter-wrap .newsletter-btn {
  position: relative;
  width: 60px;
  text-align: right;
}

.newsletter-wrap .newsletter-btn .btn {
  width: 100%;
  font-size: 18px;
  padding: 10px 12px;
  border-radius: 5px;
  background-color: #ea2229;
  color: #fff;
}

.newsletter-check {
  position: relative;
}

.newsletter-check .form-check-label {
  color: #6e6e6e;
  font-size: 14px;
}

/*#### newsletter css end ###*/
.footer-line {
  position: relative;
  width: 100%;
}

.footer-line hr {
  color: #e0e0e0;
}

.footer-inner-wrap {
  position: relative;
  width: 100%;
}

.footer-inner-wrap h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-inner-wrap p {
  position: relative;
  width: 100%;
  color: #70737a;
  font-size: 15px;
  margin-bottom: 10px;
}

.footer-inner-wrap p a {
  color: inherit;
}

.footer-inner-wrap h6 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 18px;
}

.footer-inner-wrap h6 a {
  color: inherit;
}

.footer-menu {
  position: relative;
  width: 100%;
}

.footer-menu ul {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.footer-menu ul li {
  position: relative;
  width: 100%;
  padding: 5px 0px;
}

.footer-menu ul li a {
  position: relative;
  font-size: 15px;
  color: #9a9a9a;
  transition: all 0.5s;
}

.footer-menu ul li a:hover {
  color: #ea2229;
}

.footer-menu ul li.active a {
  color: #ea2229;
}

.footer-menu.column2 ul li {
  width: 50%;
}

.footer-copyright {
  position: relative;
  width: 100%;
  padding: 10px 0px;
}

.footer-copyright p {
  position: relative;
  width: 100%;
  color: #777777;
  font-size: 14px;
  margin-bottom: 0;
}

/*#### Footer css end ####*/
/*#### Inner banner css start ####*/
.inner-banner-wrapper {
  position: relative;
  width: 100%;
}

.inner-banner-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.15) 50%,
      rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.inner-banner-wrapper>img {
  position: relative;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 500px;
}

.inner-banner-wrapper .inner-banner-content {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.inner-banner-wrapper .inner-banner-content h1 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 50px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.inner-banner-wrapper .inner-banner-content h1 strong {
  color: #ea2229;
  font-family: "Playfair Display", serif;
}

.inner-banner-wrapper .inner-banner-content p {
  position: relative;
  width: 100%;
  color: #fff;
}

.inner-banner-wrapper .banner-breadcrumb-wrap {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 5%;
  z-index: 1;
}

.inner-banner-wrapper .banner-breadcrumb-wrap .breadcrumb {
  position: relative;
  margin-bottom: 0;
}

.inner-banner-wrapper .banner-breadcrumb-wrap .breadcrumb li {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.inner-banner-wrapper .banner-breadcrumb-wrap .breadcrumb li a {
  position: relative;
  color: #ea2229;
  font-size: 16px;
  font-weight: 600;
}

.inner-banner-wrapper .banner-breadcrumb-wrap .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  content: "\f111";
  font-family: "fontawesome";
  font-size: 7px;
  margin-top: 7px;
  color: #ea2229;
}

/*#### Inner banner css end ####*/
/*#### Contact us css start ######*/
.contact-us-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.contact-info-left-wrap {
  position: relative;
  width: 100%;
  padding: 40px 40px;
  background-color: #f8f5f2;
  border-radius: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-info-left-wrap .contactus-info-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.contact-info-left-wrap .contactus-info-wrap .icon {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: #ea2229;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.contact-info-left-wrap .contactus-info-wrap .info {
  position: relative;
  width: calc(100% - 50px);
  padding-left: 15px;
}

.contact-info-left-wrap .contactus-info-wrap .info h6 {
  position: relative;
  width: 100%;
  color: #656565;
  font-size: 16px;
  margin-bottom: 5px;
}

.contact-info-left-wrap .contactus-info-wrap .info h5 {
  position: relative;
  width: 100%;
  color: #202020;
  font-size: 18px;
  font-weight: 600;
  word-break: break-word;
}

.contact-info-left-wrap .contactus-info-wrap .info h5 a {
  color: #202020;
}

.contact-form-right-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px 30px;
  background-color: #202020;
  border: 1px solid #2f302c;
  border-radius: 15px;
}

.contact-form-right-wrap .title {
  position: relative;
  width: 100%;
}

.contact-form-right-wrap .title h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-form-right-wrap .title p {
  position: relative;
  width: 100%;
  color: #656565;
  font-size: 15px;
  margin-bottom: 10px;
}

.contact-form-right-wrap .form-group {
  position: relative;
  width: 100%;
}

.contact-form-right-wrap .form-group .form-control,
.contact-form-right-wrap .form-group .form-select {
  position: relative;
  width: 100%;
  border: 1px solid #5b5b5b;
  padding: 12px 12px;
  background-color: #2d2d2d;
  color: #fff;
  transition: all 0.5s;
}

.contact-form-right-wrap .form-group .form-control::-moz-placeholder,
.contact-form-right-wrap .form-group .form-select::-moz-placeholder {
  color: #fff;
}

.contact-form-right-wrap .form-group .form-control::placeholder,
.contact-form-right-wrap .form-group .form-select::placeholder {
  color: #fff;
}

.contact-form-right-wrap .form-group .form-control:focus,
.contact-form-right-wrap .form-group .form-select:focus {
  outline: none;
  box-shadow: none;
  border-color: #faaa37;
}

.contact-form-right-wrap .wpcf7 form .wpcf7-response-output {
  color: #fff;
}

.contact-map-wrap {
  position: relative;
  width: 100%;
}

.contact-map-wrap iframe {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 15px;
}

/*#### Contact us css end ######*/
/*#### About us page css start ####*/
.about-us-top-wrapper {
  position: relative;
  width: 100%;
  background-image: url(../images/services-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0px;
}

.about-us-top-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 32, 32, 0.88);
}

.about-us-top-wrapper .common-title h3 {
  color: #fff;
}

.about-us-top-wrapper .common-title p {
  color: #d9d9d9;
  margin-bottom: 25px;
}

.about-cloud-based-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.about-cloud-left-img {
  position: relative;
  width: 100%;
  border: 10px solid #fff;
  box-shadow: 0px 0px 12px 5px rgba(0, 0, 0, 0.11);
  border-radius: 15px;
}

.about-cloud-left-img img {
  position: relative;
  width: 100%;
  border-radius: 15px;
}

.about-cloud-right-content {
  position: relative;
  width: 100%;
}

.about-cloud-right-content h3 {
  position: relative;
  width: 100%;
  color: #202020;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-cloud-right-content h3 strong {
  color: #ea2229;
}

.about-cloud-right-content p {
  position: relative;
  width: 100%;
  color: #656565;
  font-size: 15px;
  margin-bottom: 15px;
}

/*expert team css start*/
.our-expert-team-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
  background-image: url(../images/our-expert-team-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.our-expert-team-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.86);
}

.our-expert-team-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 40px;
  background: #e90000;
  background: linear-gradient(90deg,
      rgba(233, 0, 0, 0.7) 0%,
      rgba(153, 2, 0, 0.7) 99%);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 10px;
}

.our-expert-team-wrap .team-img {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
}

.our-expert-team-wrap .team-img img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: top;
}

.our-expert-team-wrap .team-content {
  position: relative;
  width: calc(100% - 250px);
  padding-left: 20px;
}

.our-expert-team-wrap .team-content h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.our-expert-team-wrap .team-content p {
  position: relative;
  width: 100%;
  color: #dddddd;
  font-size: 15px;
  margin-bottom: 15px;
}

.why-choose-us-wrapper {
  position: relative;
  width: 100%;
  background-color: #f8f5f2;
  padding: 60px 0px;
}

.why-choose-us-left-wrap {
  position: sticky;
  left: 0;
  top: 0;
}

.why-choose-left-img {
  position: relative;
  width: 100%;
  border: 10px solid #fff;
  box-shadow: 0px 0px 12px 5px rgba(0, 0, 0, 0.11);
  border-radius: 15px;
}

.why-choose-left-img img {
  position: relative;
  width: 100%;
  border-radius: 15px;
}

.why-choose-right-wrap {
  position: relative;
  width: 100%;
}

.why-choose-list {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 20px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}

.why-choose-list::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #ea2229;
  transition: all 0.5s;
}

.why-choose-list .count {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: #ea2229;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.why-choose-list .choose-content {
  position: relative;
  width: calc(100% - 60px);
  padding-left: 15px;
}

.why-choose-list .choose-content h4 {
  position: relative;
  width: 100%;
  color: #202020;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.why-choose-list .choose-content p {
  position: relative;
  width: 100%;
  color: #656565;
  font-size: 15px;
  margin-bottom: 5px;
}

.why-choose-list:hover::before {
  width: 100%;
}

/**/
.about-bottom-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.about-bottom-imgbox {
  position: relative;
  width: 100%;
  border: 10px solid #fff;
  box-shadow: 0px 0px 12px 5px rgba(0, 0, 0, 0.11);
  border-radius: 15px;
}

.about-bottom-imgbox img {
  position: relative;
  width: 100%;
  border-radius: 15px;
}

.about-btm-content {
  position: relative;
  width: 100%;
}

.about-btm-content h3 {
  position: relative;
  width: 100%;
  color: #202020;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-btm-content h3 strong {
  color: #ea2229;
  font-weight: inherit;
}

.about-btm-content p {
  position: relative;
  width: 100%;
  color: #656565;
  font-size: 15px;
  margin-bottom: 15px;
}

/*#### About us page css end ####*/
/*###### services details page css start #####*/
.innerBanner {
  height: 400px;
  overflow: hidden;
}

.innerBanner .banner-left-content {
  height: auto;
}

/* =================================
   Service
   ================================= */
.inner-page {
  font-family: "Inter", sans-serif;
  color: #222;
  overflow: hidden;
}

/* spacing for every section */
.inner-page section,
.inner-page .yellow-bg,
.inner-page .gray-bg {
  padding: 60px 0;
  position: relative;
}

@media(max-width:991px) {

  .inner-page section,
  .inner-page .yellow-bg,
  .inner-page .gray-bg {
    padding: 40px 0;
  }
}

.inner-page>.container:first-child {
  padding: 100px 0;
  position: relative;
}

.inner-page>.container:first-child::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.95)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?q=80&w=1920");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* titles */
.abt-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
}

.abt-title strong {
  color: #ea2229;
}

/* text */
.ab-inner-text {
  font-size: 16.5px;
  line-height: 1.9;
  color: #000;
}

.ab-inner ul {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.ab-inner ul li {
  padding-left: 30px;
  margin-bottom: 12px;
  position: relative;
  font-weight: 500;
}

.ab-inner ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #ea2229;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  top: 27px;
}

.ab-iner-img img {
  width: 100%;
  border-radius: 18px;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.12),
    0 5px 10px rgba(0, 0, 0, 0.06);
  transition: 0.4s;
}

.ab-iner-img img:hover {
  transform: translateY(-8px);
}

.yellow-bg {
  background: linear-gradient(135deg, #fff7f7, #ffffff);
}

.yellow-bg .ab-inner-text {
  background: #fff;
  padding: 50px;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.section,
.impeccable,
.benefits {
  background: #ffffff;
}

.impeccable {
  background: #f8f9fb;
}

.benefits ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.benefits ul li {
  background: #fff;
  padding: 20px 22px;
  border-radius: 14px;
  font-weight: 500;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.benefits ul li:hover {
  background: #ea2229;
  color: #fff;
  transform: translateY(-5px);
}

.gray-bg {
  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1920");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  padding: 90px 40px;
  overflow: auto !important;
}

.gray-bg h4 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.gray-bg p {
  color: #ddd !important;
  max-width: 900px;
  margin: auto;
  line-height: 1.9;
}

@media (max-width: 991px) {
  .abt-title {
    font-size: 30px;
  }

  .benefits ul {
    grid-template-columns: 1fr;
  }

  .yellow-bg .ab-inner-text {
    padding: 30px;
  }
}

/* ===========================
   PARALLAX BASE STYLE
   =========================== */
.yellow-bg,
.impeccable,
.benefits,
.gray-bg {
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.yellow-bg {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.92)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=1920");
}

.impeccable {
  background-image:
    linear-gradient(rgb(248, 249, 251), rgba(248, 249, 251, 0.5)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1920");
}

.benefits {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.1)),
    url("https://images.unsplash.com/photo-1553729784-e91953dec042?q=80&w=1920");
}

.gray-bg {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0 Хол?q=80&w=1920");
}

@media (max-width: 991px) {

  .yellow-bg,
  .impeccable,
  .benefits,
  .gray-bg {
    background-attachment: scroll;
  }
}

.section-divider-bottom,
.section-divider-top {
  position: relative;
}

.wave-divider {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 90px;
  display: block;
}

.section-divider-bottom .wave-divider {
  bottom: -1px;
}

.section-divider-top .wave-divider.top {
  top: -1px;
  transform: rotate(180deg);
}

.yellow-bg .wave-divider path,
.benefits .wave-divider path {
  fill: #ffffff;
}

.impeccable .wave-divider path {
  fill: #f8f9fb;
}

.gray-bg .wave-divider path {
  fill: #242729;
}

.bsSec .ab-inner ul li::before {
  top: 7px;
}

.gray-bg {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(135deg, #242729, #1b1d20);
}

.gray-bg .container {
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 60px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.gray-bg h4 {
  color: #fff;
}

.gray-bg {
  position: relative;
  padding: 160px 0;
  color: #fff;
  background:
    linear-gradient(rgba(20, 22, 24, 0.85), rgba(20, 22, 24, 0.9)),
    url("https://images.unsplash.com/photo-1521790797524-b2497295b8a0?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.gray-bg h4 {
  font-size: 35px;
  font-weight: 700;
}

.benefits .ab-iner-img {
  height: 100%;
}

.benefits .ab-iner-img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*#### ###*/
/*# sourceMappingURL=style.css.map */

/*#### Plans fees section css start ####*/
.plans-fees-wrapper {
  position: relative;
  width: 100%;
  padding: 85px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fff5f5 100%);
  overflow: hidden;
}

.plans-fees-wrapper::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  top: 40px;
  background: rgba(234, 34, 41, 0.08);
  border-radius: 50%;
}

.plans-fees-wrapper::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -110px;
  bottom: 35px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
}

.plans-fees-wrapper .container {
  position: relative;
  z-index: 1;
}

.plans-fees-heading {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin-bottom: 38px;
}

.plans-fees-heading span {
  display: inline-flex;
  color: #ea2229;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.plans-fees-heading h2 {
  color: #202020;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.plans-fees-heading h2 strong {
  color: #ea2229;
  font-family: "Playfair Display", serif;
}

.plans-fees-heading p {
  color: #656565;
  font-size: 16px;
  max-width: 690px;
  margin-bottom: 0;
}

.plans-fees-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.plan-fee-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px 24px 28px;
  color: #fff;
  background: linear-gradient(145deg, #202020 0%, #000000 100%);
  border-radius: 14px;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: all 0.35s;
}

.plan-fee-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 130px;
  height: 130px;
  background: rgba(234, 34, 41, 0.22);
  border-radius: 0 0 0 100%;
}

.plan-fee-card::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 54px;
  height: 4px;
  background: #ea2229;
  border-radius: 0 0 8px 8px;
}

.plan-fee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
}

.plan-fee-card.featured {
  background: linear-gradient(145deg, #ea2229 0%, #9f1015 100%);
}

.plan-fee-card-head,
.plan-fee-card ul,
.plan-fee-link {
  position: relative;
  z-index: 1;
}

.plan-fee-card h3 {
  color: #fff;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 10px;
}

.plan-fee-card-head p {
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
  margin-bottom: 2px;
}

.plan-fee-card-head p strong {
  font-weight: 800;
}

.plan-fee-card-head span {
  display: inline-flex;
  color: #ffdadc;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 22px;
}

.plan-fee-card ul {
  flex: 1;
  margin: 0 0 28px;
}

.plan-fee-card ul li {
  position: relative;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  padding-left: 24px;
  margin-bottom: 12px;
}

.plan-fee-card ul li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 8px;
  width: 11px;
  height: 11px;
  background: #ea2229;
  transform: rotate(45deg);
  border-radius: 2px;
}

.plan-fee-card.featured ul li::before {
  background: #fff;
}

.plan-fee-link {
  align-self: flex-start;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 1px 1px 0 #ea2229;
  padding-bottom: 4px;
}

.plan-fee-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ea2229;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.35s;
}

.plan-fee-link:hover {
  color: #fff;
}

.plan-fee-link:hover::after {
  transform: scaleX(1);
}

@media (max-width: 1199px) {
  .plan-fee-card {
    padding: 30px 20px 26px;
  }

  .plan-fee-card ul li {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .plans-fees-wrapper {
    padding: 65px 0;
  }

  .plans-fees-heading h2 {
    font-size: 32px;
  }

  .plans-fees-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .plans-fees-wrapper {
    padding: 50px 0;
  }

  .plans-fees-heading {
    margin-bottom: 28px;
  }

  .plans-fees-heading h2 {
    font-size: 26px;
  }

  .plan-fee-card h3 {
    font-size: 24px;
  }

  .plan-fee-card-head p,
  .plan-fee-card ul li,
  .plan-fee-link {
    font-size: 15px;
  }
}

/*#### Plans fees section css end ####*/

/*#### Plans inner banner content css start ####*/
.inner-banner-wrapper .inner-banner-kicker {
  display: inline-flex;
  color: #fff;
  background: #ea2229;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.inner-banner-wrapper .inner-banner-content p {
  max-width: 590px;
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.inner-banner-points {
  display: flex;
  flex-direction: column;
  /* flex-wrap: wrap; */
  gap: 10px 16px;
  margin-bottom: 24px;
}

.inner-banner-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.inner-banner-points span i {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ea2229;
  background: #fff;
  border-radius: 50%;
  font-size: 12px;
}

.inner-banner-wrapper .inner-banner-btn {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

@media (max-width: 767px) {
  .inner-banner-wrapper .inner-banner-content p {
    font-size: 15px;
  }

  .inner-banner-points {
    display: none;
  }
}

/*#### Plans inner banner content css end ####*/

.inner-banner-wrapper .inner-banner-content h1 strong {
  color: #ea2229;
  font-family: "Playfair Display", serif;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.88);
}

/*#### Partners page section css start ####*/
.partners-section-wrapper {
  position: relative;
  width: 100%;
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fff6f6 100%);
  overflow: hidden;
}

.partners-section-wrapper::before {
  content: "";
  position: absolute;
  top: 70px;
  right: -90px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(234, 34, 41, 0.08);
}

.partners-section-wrapper::after {
  content: "";
  position: absolute;
  left: -110px;
  bottom: 110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
}

.partners-section-wrapper .container {
  position: relative;
  z-index: 1;
}

.partners-section-title span {
  display: inline-flex;
  color: #ea2229;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.partners-section-title h2 {
  color: #202020;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 0;
}

.partners-section-intro {
  position: relative;
  padding-left: 24px;
  border-left: 4px solid #ea2229;
}

.partners-section-intro p {
  color: #656565;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 0;
}

.partners-about-box {
  position: relative;
  padding: 34px 36px;
  margin: 30px 0 42px;
  background: #fff;
  border: 1px solid rgba(234, 34, 41, 0.14);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
}

.partners-about-box p {
  color: #656565;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 13px;
}

.partners-about-box p:last-child {
  margin-bottom: 0;
}

.partners-about-box a {
  color: #ea2229;
  font-weight: 800;
}

.partners-grid-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.partners-grid-title h3 {
  position: relative;
  color: #202020;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 12px;
}

.partners-grid-title h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 76px;
  height: 4px;
  background: #ea2229;
  border-radius: 10px;
  transform: translateX(-50%);
}

.partners-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.partner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-height: 100%;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: all 0.35s;
}

.partner-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #ea2229;
}

.partner-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.12);
  border-color: rgba(234, 34, 41, 0.35);
}

.partner-logo {
  width: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #928484;
  border: 1px solid rgba(234, 34, 41, 0.12);
  border-radius: 12px;
}

.partner-logo img {
  max-width: 280px;
  max-height: 98px;
  -o-object-fit: contain;
  object-fit: contain;
}

.partner-card-content h4 {
  color: #202020;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  transition: all 0.35s;
}

.partner-card-content p {
  color: #656565;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.partner-card-content span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ea2229;
  font-size: 15px;
  font-weight: 800;
}

.partner-card-content span i {
  transition: all 0.35s;
}

.partner-card:hover .partner-card-content h4 {
  color: #ea2229;
}

.partner-card:hover .partner-card-content span i {
  transform: translateX(5px);
}

.partners-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding: 36px;
  color: #fff;
  background: linear-gradient(135deg, #202020 0%, #000000 100%);
  border-radius: 16px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
}

.partners-cta span {
  display: inline-flex;
  color: #ea2229;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.partners-cta h3 {
  color: #fff;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 800;
  max-width: 720px;
  margin-bottom: 0;
}

.partners-cta .common-btn1 {
  flex: 0 0 auto;
}

@media (max-width: 1199px) {
  .partners-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .partners-section-wrapper {
    padding: 65px 0;
  }

  .partners-section-title h2 {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .partners-section-intro {
    padding-left: 18px;
  }

  .partners-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .partners-card-grid {
    grid-template-columns: 1fr;
  }

  .partners-about-box,
  .partners-cta {
    padding: 26px 22px;
  }

  .partner-card {
    padding: 24px 20px;
  }
}

@media (max-width: 575px) {
  .partners-section-wrapper {
    padding: 50px 0;
  }

  .partners-section-title h2 {
    font-size: 27px;
  }

  .partners-grid-title h3 {
    font-size: 24px;
  }

  .partners-cta h3 {
    font-size: 23px;
  }
}

/*#### Partners page section css end ####*/
/*#### blog css start ####*/
.blog-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.blog-list {
  position: relative;
  width: 100%;
}

.blog-list .blog-img {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-list .blog-img img {
  position: relative;
  width: 100%;
  transition: all 0.5s;
}

.blog-list .blog-content {
  position: relative;
  width: 100%;
  padding-top: 15px;
}

.blog-list .blog-content h6 {
  position: relative;
  width: 100%;
  color: #656565;
  font-size: 14px;
  padding-left: 20px;
  margin-bottom: 15px;
}

.blog-list .blog-content h6::before {
  content: "\f111";
  position: absolute;
  left: 0;
  top: 1px;
  font-family: "fontawesome";
  font-size: 10px;
  color: #323232;
}

.blog-list .blog-content h4 {
  position: relative;
  width: 100%;
  color: #202020;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-list .blog-content h4 a {
  color: inherit;
}

.blog-list .blog-content .read-more {
  position: relative;
  width: 100%;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.blog-list .blog-content .read-more::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 2px;
  background-color: #ea2229;
  transition: all 0.5s;
}

.blog-list .blog-content .read-more .read-more-btn {
  padding: 0;
  color: #ea2229;
  font-size: 16px;
  font-weight: 400;
}

.blog-list:hover .blog-img img {
  transform: scale(1.1);
}

.blog-list:hover .read-more::before {
  width: 100%;
}

/*  */

.pagination-wrap {
  position: relative;
  width: 100%;
}

.pagination-wrap .pagination {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin-bottom: 0;
}

.pagination-wrap .pagination .page-item {
  position: relative;
}

.pagination-wrap .pagination .page-item .page-numbers {
  position: relative;
  padding: 5px 10px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  color: #000;
  height: 40px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 3px;
}

.pagination-wrap .pagination .page-item .page-numbers.current {
  background-color: #ea2229;
  color: #fff;
}

.pagination-wrap .pagination .page-item .page-numbers.dots {
  background-color: transparent;
}

@media(max-width:575px) {
  .pagination-wrap .pagination {
    gap: 5px 5px;
  }

  .pagination-wrap .pagination .page-item .page-numbers {
    padding: 5px 5px;
    font-size: 13px;
    height: 34px;
  }
}

/*#### blog css end ####*/
/*#### Blog details css start ####*/
.blog-details-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.blog-details-content {
  position: relative;
  width: 100%;
}

.blog-details-content .blog-details-img {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
}

.blog-details-content .blog-details-img img {
  position: relative;
  width: 100%;
}

.blog-details-content .blog-details-meta {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 18px;
}

.blog-details-content .blog-details-meta span {
  position: relative;
  color: #656565;
  font-size: 15px;
}

.blog-details-content .blog-details-meta span i {
  color: #ea2229;
  margin-right: 6px;
}

.blog-details-content h2 {
  position: relative;
  width: 100%;
  color: #202020;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
}

.blog-details-content h3 {
  position: relative;
  width: 100%;
  color: #202020;
  font-size: 26px;
  font-weight: 700;
  margin: 28px 0px 12px;
}

.blog-details-content p {
  position: relative;
  width: 100%;
  color: #656565;
  font-size: 16px;
  margin-bottom: 18px;
}

.blog-details-content blockquote {
  position: relative;
  width: 100%;
  background-color: #f8f5f2;
  border-left: 4px solid #ea2229;
  border-radius: 8px;
  color: #202020;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin: 28px 0px;
  padding: 25px 30px;
}

.blog-details-content>ul {
  position: relative;
  width: 100%;
  margin-bottom: 22px;
  padding-left: 0px;
}

.blog-details-content>ul li {
  position: relative;
  color: #656565;
  font-size: 16px;
  margin-bottom: 10px;
  padding-left: 28px;
}

.blog-details-content>ul li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 1px;
  color: #ea2229;
  font-family: "fontawesome";
}

.blog-details-tags {
  position: relative;
  width: 100%;
  border-top: 1px solid #e0e0e0;
  padding-top: 25px;
  margin-top: 30px;
}

.blog-details-tags h4 {
  position: relative;
  color: #202020;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.blog-details-tags ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0px;
}

.blog-details-tags ul li a {
  position: relative;
  display: inline-flex;
  color: #202020;
  background-color: #f8f5f2;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  font-size: 14px;
  padding: 8px 16px;
  transition: all 0.5s;
}

.blog-details-tags ul li a:hover {
  background-color: #ea2229;
  border-color: #ea2229;
  color: #fff;
}

.blog-details-share {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.blog-details-share span {
  color: #202020;
  font-size: 18px;
  font-weight: 700;
}

.blog-details-share ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0px;
}

.blog-details-share ul li a {
  position: relative;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background-color: #f8f5f2;
  border-radius: 50%;
  color: #ea2229;
  transition: all 0.5s;
}

.blog-details-share ul li a:hover {
  background-color: #ea2229;
  color: #fff;
}

.blog-sidebar {
  position: sticky;
  top: 20px;
  width: 100%;
}

.blog-sidebar-widget {
  position: relative;
  width: 100%;
  background-color: #f8f5f2;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 24px;
}

.blog-sidebar-widget h3 {
  position: relative;
  color: #202020;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
}

.blog-sidebar-widget h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 2px;
  background-color: #ea2229;
}

.recent-post-list {
  position: relative;
  width: 100%;
}

.recent-post-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #202020;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.recent-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.recent-post-item img {
  width: 82px;
  height: 72px;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
}

.recent-post-item span {
  color: #202020;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  transition: all 0.5s;
}

.recent-post-item span small {
  display: block;
  color: #656565;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 5px;
}

.recent-post-item:hover span {
  color: #ea2229;
}

.blog-category-list {
  position: relative;
  width: 100%;
  margin-bottom: 0px;
}

.blog-category-list li {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}

.blog-category-list li:last-child {
  margin-bottom: 0px;
}

.blog-category-list li a {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #202020;
  background-color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 14px;
  transition: all 0.5s;
}

.blog-category-list li a span {
  color: #656565;
  transition: all 0.5s;
}

.blog-category-list li a:hover {
  background-color: #ea2229;
  color: #fff;
}

.blog-category-list li a:hover span {
  color: #fff;
}

.blog-sidebar-cta {
  background-color: #202020;
}

.blog-sidebar-cta h3,
.blog-sidebar-cta p {
  color: #fff;
}

.blog-sidebar-cta p {
  font-size: 15px;
  margin-bottom: 20px;
}

/*#### Blog details css end ####*/
/*#### Useful links css start ####*/
.useful-links-wrapper {
  position: relative;
  width: 100%;
  padding: 70px 0px;
  background-color: #fff;
  overflow: hidden;
}

.useful-links-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 250px;
  background-color: #f8f5f2;
  z-index: 0;
}

.useful-links-wrapper .container {
  position: relative;
  z-index: 1;
}

.useful-links-title {
  margin-bottom: 0px;
}

.useful-links-title h3 {
  margin-bottom: 18px;
}

.useful-links-title p {
  max-width: 760px;
  margin: 0px auto;
}

.useful-links-grid {
  margin-top: 38px;
}

.useful-link-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 150px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0px 14px 30px 0px rgba(0, 0, 0, 0.08);
  color: #202020;
  padding: 24px 52px 24px 24px;
  overflow: hidden;
  transition: all 0.5s;
}

.useful-link-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #ea2229;
  transition: all 0.5s;
}

.useful-link-card .useful-link-icon {
  position: relative;
  display: inline-flex;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  background-color: #f8f5f2;
  border-radius: 50%;
  color: #ea2229;
  font-size: 22px;
  transition: all 0.5s;
}

.useful-link-card .useful-link-content {
  position: relative;
  display: block;
  padding-right: 0px;
}

.useful-link-card .useful-link-content strong {
  display: block;
  color: #202020;
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  transition: all 0.5s;
}

.useful-link-card .useful-link-content small {
  display: block;
  color: #656565;
  font-size: 15px;
  line-height: 1.55;
  transition: all 0.5s;
}

.useful-link-card .useful-link-arrow {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #ea2229;
  font-size: 16px;
  transition: all 0.5s;
}

.useful-link-card:hover {
  background-color: #ea2229;
  border-color: #ea2229;
  box-shadow: 0px 18px 35px 0px rgba(234, 34, 41, 0.25);
  transform: translateY(-5px);
}

.useful-link-card:hover::before {
  background-color: #202020;
}

.useful-link-card:hover .useful-link-icon {
  background-color: #fff;
  color: #ea2229;
}

.useful-link-card:hover .useful-link-content strong,
.useful-link-card:hover .useful-link-content small,
.useful-link-card:hover .useful-link-arrow {
  color: #fff;
}

@media (max-width: 767px) {
  .useful-links-wrapper {
    padding: 50px 0px;
  }

  .useful-links-wrapper::before {
    height: 330px;
  }

  .useful-links-grid {
    margin-top: 28px;
  }

  .useful-link-card {
    min-height: auto;
    padding: 20px 46px 20px 20px;
  }

  .useful-link-card .useful-link-content strong {
    font-size: 16px;
  }

  .useful-link-card .useful-link-content small {
    font-size: 14px;
  }
}

/*#### Useful links css end ####*/

/*#### Services details page css start #####*/
.services-details-wrapper {
  position: relative;
  width: 100%;
  overflow: unset;
}

.services-details-wrapper .ab-iner-img {
  position: sticky;
  top: 0;
  width: 100%;
}

.services-details-list-section {
  position: relative;
  width: 100%;
}

.services-details-list-section.servicesbg1 {
  background-color: #f8f5f2;
}

.services-dtls-left-img {
  position: sticky;
  top: 0;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), 0 5px 10px rgba(0, 0, 0, 0.06);
}

.services-dtls-left-img img {
  position: relative;
  width: 100%;
}

.services-dtls-right-content {
  position: relative;
  width: 100%;
}

.services-dtls-right-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #202020;
}

.services-dtls-right-content p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #464646;
  line-height: 1.6;
}

.services-dtls-right-content h4 {
  position: relative;
  width: 100%;
  color: #ea2229;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.services-dtls-right-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #202020;
}

.services-dtls-right-content ul {
  position: relative;
  width: 100%;
  padding-left: 22px;
}

.services-dtls-right-content ul li {
  position: relative;
  width: 100%;
  color: #464646;
  font-size: 16px;
  margin-bottom: 10px;
}

.services-dtls-right-content ul li::before {
  content: "\f058";
  position: absolute;
  left: -22px;
  color: #ea2229;
  font-family: "fontawesome";
  top: 0;
  font-size: 14px;
}

.our-process-section {
  position: relative;
  width: 100%;
  background-color: #fff;
}

/*#### Services details page css end #####*/

/* 404 Page css start */

.common-section404 {
  padding: 40px 0px;
  position: relative;
  overflow: hidden;
}

.section-404 {
  text-align: center;
}

.section-404 .error {
  font-size: 150px;
  color: #ca432c;
  text-shadow:
    1px 1px 1px #ca432c,
    2px 2px 1px #ca432c,
    3px 3px 1px #ca432c,
    4px 4px 1px #ca432c,
    5px 5px 1px #ca432c,
    6px 6px 1px #ca432c,
    7px 7px 1px #ca432c,
    8px 8px 1px #ca432c,
    25px 25px 8px rgba(0, 0, 0, 0.1);
}

.section-404 .page {
  margin: 2rem 0;
  font-size: 20px;
  font-weight: 600;
  color: #444;
}

/* 404 Page css end */

/* cms content */
.cms-content {
  position: relative;
  width: 100%;
}

.cms-content h2 {
  position: relative;
  width: 100%;
  color: #202020;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 20px;
}

.cms-content h3 {
  position: relative;
  width: 100%;
  color: #202020;
  font-size: 30px;
  margin-bottom: 15px;
}

.cms-content h4 {
  position: relative;
  width: 100%;
  color: #202020;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cms-content h5 {
  position: relative;
  width: 100%;
  color: #ea2229;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cms-content p {
  position: relative;
  width: 100%;
  color: #656565;
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 15px;
}

.cms-content ul {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.cms-content ul li {
  position: relative;
  width: 100%;
  padding-left: 20px;
  font-size: 16px;
  color: #656565;
  margin-bottom: 8px;
}

.cms-content ul li:before {
  content: "\f111";
  font-family: fontawesome;
  font-size: 10px;
  position: absolute;
  left: 0px;
  top: 4px;
  color: #ea2229;
}

/* cms content */