:root {
  --padding-top: 80px;
  --padding-bottom: 80px;

  --orange-color: #C05C30;
  --green-color: #146A3E;
  --blue-color: #114981;
  --white-color: #fff;
  --black-color: #000;
  --light-gray-color: #f5f5f5;
  --text-color: #333;
  /* --gradient-color:linear-gradient(90deg, hsla(149, 68%, 25%, 1) 0%, hsla(210, 77%, 29%, 1) 100%); */
  --gradient-color: linear-gradient(90deg, hsla(210, 77%, 29%, 1) 0%, hsla(149, 68%, 25%, 1) 100%);
}
html{
  overflow-x: hidden;
}

*,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
}

.container-main {
  max-width: 1320px;
  margin: 0 auto;
}


body {
  /*font-family: "Open Sans", sans-serif !important;*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif !important;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-header {
  padding: 25px 0px;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(35, 41, 81, 0.1);
}

.main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 10;
}

.mob-header {
  display: none;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  max-width: 200px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-main {
  background: var(--blue-color);
  padding: 4px 0px;
}

.top-bar-left ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar-left ul li {
  font-size: 14px;
  line-height: 1;
  color: var(--white-color);
  font-weight: 400;
}

.top-bar-left ul li a {
  color: var(--white-color);
}

.top-bar-left ul li i {
  text-align: center;
  color: var(--white-color);
  font-size: 14px;
  margin-right: 5px;
}

.social-media-icon {
  display: flex;
  gap: 15px;
}

.social-media-icon i {
  color: var(--white-color);
  font-size: 14px;
  margin-right: 5px;
}

.header-links {
  display: flex;
  justify-content: space-between;
  /* margin-top: 12px; */
}

.header-links ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-links ul li {
  color: var(--blue-color);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
}

.header-links ul li.active a,
.header-links ul li:hover a {
  color: var(--orange-color);
}

.header-links ul li a {
  color: var(--blue-color);
}

.quote-btn a,
.home-banner-content a,
.submit-btn input {
  font-size: 16px;
  height: 55px;
  width: max-content;
  padding: 0px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  background-color: var(--orange-color);
  position: relative;
  z-index: 9;
  border-radius: 6px;
}

.quote-btn a:hover,
.submit-btn input:hover {
  background-color: var(--green-color);
}


.home-banner-main,
.home-banner-slider {
  position: relative;
}

.home-banner-bg {
  height: 100vh;
  position: relative;
}

.home-banner-bg::before {
  position: absolute;
  content: "";
  background-color: var(--black-color);
  width: 100%;
  height: 100%;
  opacity: 0.3;
  top: 0;
  left: 0;
}

.home-banner-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.home-banner-info .container-main {
  height: 100%;
}

.home-banner-content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 800px;
}

.home-banner-content h1 {
  font-size: 55px;
  line-height: 62px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.home-banner-content p {
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  color: var(--white-color);
  margin-bottom: 30px;
}

.btn-flex {
  display: flex;
  gap: 10px;
}

.home-banner-content a.read-more-btn {
  background-color: var(--orange-color);
}

.home-banner-content a:hover {
  background-color: var(--green-color);
}

.home-btn-flex {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 1;
  padding: 0px 40px;
}

.home-btn-flex button {
  height: 55px;
  width: 55px;
  background: rgba(255, 255, 255, 0.2) !important;
  opacity: 1;
  border-radius: 30px;
  border: unset;
}

.home-btn-flex button:hover {
  background: var(--orange-color) !important;
}

.home-btn-flex img {
  width: 20px !important;
  height: 20px !important;
  filter: invert(1);
}


.home-about-us-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
}

.home-about-us-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.home-about-us-left,
.home-about-us-right {
  width: 50%;
}

.home-about-us-left {
  height: 550px;
}

.home-about-us-left img {
  border-radius: 10px;
}

.home-about-us-right {
  padding-left: 40px;
}

.aura-small-heading h4 {
  font-size: 20px;
  color: var(--green-color);
  font-weight: 700;
  margin-bottom: 10px;
}

.aura-large-heading h1 {
  font-size: 34px;
  color: var(--orange-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.home-about-content p {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 10px;
}


.home-about-content ul li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 12px;
}

.home-about-content ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  color: var(--orange-color);
  font-weight: bold;
}

.moving-slider-main {
  background: var(--gradient-color);
  padding-top: 20px;
  padding-bottom: 20px;
}

.moving-slider .item {
  display: flex;
  align-items: center;
  gap: 12px; 
  transition: transform 0.3s ease;
  justify-content: space-around;
}



.moving-slider-bg {
  height: 60px;
  width: 60px;
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.moving-slider-bg img {
  height: 23px;
  width: 27px !important;
}

.moving-slider-content h3 {
  font-size: 22px;
  color: var(--white-color);
  font-weight: 600;
  white-space: nowrap;
  margin: 0;
}


.home-our-services-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  background-color: var(--light-gray-color);
}

.our-service-headings {
  max-width: 600px;
  margin: 0 auto;
}

.our-services-small-heading h4 {
  text-align: center;
}

.our-services-large-heading h1 {
  text-align: center;
  font-size: 40px;
}

.home-our-services-flex {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}

.home-our-services-block {
  width: 33.33%;
  padding: 15px;
  border-radius: 10px;
}

.home-our-services-block-inner {
  height: 100%;
  background-color: var(--white-color);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.home-our-services-block-bg {
  height: 260px;
}

.home-our-services-block-bg img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.home-our-services-block-content {
  padding: 15px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}


.home-our-services-block-content h4 {
  font-size: 26px;
  margin-bottom: 15px;
  color: var(--black-color);
  font-weight: 700;
}

.home-our-services-block-content p {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: 500;
  min-height: 110px;
}

.read-more-btn a {
  display: inline-block;
  color: var(--orange-color);
  font-size: 16px;
  font-weight: 500;
}

.read-more-btn a i {
  margin-left: 5px;
}

.home-why-choose-us-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  background: var(--gradient-color);
}

.home-why-choose-us-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.home-why-choose-us-left,
.home-why-choose-us-right {
  width: 50%;
}

.home-why-choose-us-right {
  padding-left: 40px;
}

.home-why-choose-us-left {
  height: 550px;
}

.home-why-choose-us-left img {
  border-radius: 10px;
}

.why-choose-small-heading h4,
.why-choose-large-heading h1 {
  color: var(--white-color);
}

.why-choose-us-content-flex {
  display: flex;
  flex-wrap: wrap;
}

.why-choose-us-content ul {
  padding-top: 30px;
}

.why-choose-us-content-block {
  width: 50%;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 40px;
}

.why-choose-us-content-block h3 {
  font-size: 20px;
  color: var(--white-color);
  line-height: 1.6;
  font-weight: 600;
}

.why-choose-us-content-block p {
  font-size: 16px;
  color: var(--white-color);
  line-height: 1.6;
  /* font-weight: 500; */
}

/* .why-choose-us-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--white-color);
  line-height: 1.6;
}

.why-choose-us-content ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--white-color);
  font-weight: bold;
} */



.home-contact-us,
.testimonails {
  position: relative;
}

.home-contact-us-flex-left,
.testimonails-flex-left {
  width: 50%;
  position: relative;
  z-index: 1;
  height: 750px;
}

.home-contact-us-flex-right,
.testimonails-flex-right {
  width: 100%;
  position: absolute;
  top: 0;
  height: 100%;
  background-color: var(--light-gray-color);
}

.home-contact-us-flex-right .container-main,
.testimonails-flex-right .container-main {
  height: 100%;
  display: flex;
  justify-content: flex-end;
}

.home-contact-us-content,
.testimonials-content {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 50%;
  padding-left: 80px;
}

.form-inner {
  padding: 10px 00px 0px;
}

.submit-btn input {
  border: unset;
}

.form-flex {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
  padding-top: 20px;
}

.form-field {
  width: 50%;
  padding: 10px;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-size: 16px;
  height: 55px;
  line-height: 45px;
  width: 100%;
  border: 1px solid #ececec;
  padding: 0px 15px;
  color: var(--text-color);
  outline: none;
  border-radius: 10px;
}

.form-field.full {
  width: 100%;
}

.form-field textarea {
  padding: 15px;
  height: 155px;
}

.submit-btn {
  margin-top: 20px;
}

.our-blog-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
}

.our-blog-content p {
  min-height: unset;
  color: var(--blue-color);
}

.our-blog-content h4 a {
  color: var(--black-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.our-blog-read-more a {
  margin-top: 15px;
}

.testimonails-flex-right {
  background-color: var(--blue-color);
  padding-left: 100px;
}

.testimonials-block-icon {
  max-width: 45px;
}

.testimonials-block-icon img {
  filter: invert(1);
}

.testimonails-flex-left {
  height: 550px;
}

.testimonails-block-content {
  margin-top: 40px;
}

.testimonails-block-content p {
  font-size: 28px;
  color: var(--white-color);
  font-weight: 600;
}

.testimonails-block-content h4 {
  font-size: 20px;
  color: var(--white-color);
  font-weight: 500;
  margin-top: 30px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 40px !important;
}

.faqs-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
}

.faqs-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.faqs-left {
  width: 40%;
}

.faqs-right {
  width: 60%;
}

.faqs-small-heading h4 {
  font-size: 20px;
}

.faqs-large-heading h1 {
  font-size: 54px;
  margin-top: 40px;
}

.faqs-right-accordion .accordion-item {
  background-color: unset;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  /* margin-bottom: 20px; */
  /* border-bottom: 1px solid #e6e6e67d; */
}

.accordion-item {
  border: 1px solid rgba(0, 0, 0, .125);
}

.faqs-right-accordion .accordion-item:first-of-type {
  border: unset;
  border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.faqs-right-accordion .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: unset;
  border-top-right-radius: unset;
  padding: 15px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--black-color);
}

.faqs-right-accordion .accordion-button {
  padding: 15px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--black-color);
}

.faqs-right-accordion .accordion-body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  /* margin-bottom: 10px; */
}

.faqs-right-accordion .accordion-body {
  /* background-color: #F8F8F8; */
  padding: 20px;
}

.faqs-right-accordion .accordion-button:not(.collapsed)::after {
  background-image: url(../images/down_arrow.webp);
  filter: invert(1);
}

.faqs-right-accordion .accordion-button::after {
  background-image: url(../images/down_arrow.webp);
  filter: invert(1);
}

.accordion-button:not(.collapsed) {
  background-color: unset;
  box-shadow: unset;
}

.accordion-button:focus {
  box-shadow: unset;
  border-color: unset !important;
}

.faqs-right-accordion .accordion-item:first-of-type .accordion-button {
  border-top: unset !important;
}



/* footer */

.footer-cover {
  position: relative;
}

.footer-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(252, 252, 252, 0.7);
  z-index: 1;
}

.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-main {
  position: relative;
  z-index: 1;
  padding: 80px 0 0px;
  height: auto;
  width: 100%;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  padding-bottom: 50px;
}


.footer-logo {
  max-width: 180px;
  margin-bottom: 10px;
}

.footer-block p {
  font-size: 16px;
  line-height: 26px;
  color: var(--black-color);
  margin-top: 15px;
  max-width: 350px;
}

.social-icons {
  display: flex;
  gap: 25px;
  margin-top: 30px;
}

.social-icons i {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  /* width: 45px; */
  line-height: 45px;
  background-color: transparent;
  font-size: 22px;
  color: var(--orange-color);
}

.footer-block h6 {
  font-weight: 700;
  font-size: 22px;
  color: var(--black-color);
  margin-bottom: 10px;
  position: relative;
}

.footer-block ul li {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--black-color);
  transition: all 0.35s;
  padding-top: 13px;
}

.footer-block ul li a {
  color: var(--black-color);
  position: relative;
}

.footer-block ul li a:hover {
  color: var(--orange-color);
}

.footer-block.add ul li {
  padding-left: 0;
  display: flex;
  align-items: center;
}



.footer-block.add ul li i {
  margin-right: 10px;
  background-color: unset;
  width: unset;
  display: unset;
  color: var(--orange-color);
  line-height: unset;
  border-radius: unset;
  height: unset;
  align-items: unset;
  justify-content: unset;
  font-size: 20px;
}

.footer-block ul li span {
  font-weight: 700;
  font-size: 16px;
  color: var(--black-color);
  text-transform: uppercase;
  margin-right: 7px;
}

.footer-block.add ul li:first-child {
  align-items: flex-start;
}

.footer-copyright-main {
  padding: 25px 0;
  border-top: 1px solid #2a28285c;
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright-text p,
.footer-copy-right-links p {
  font-size: 16px;
  line-height: 26px;
  color: var(--black-color);
  font-weight: 500;
}

.footer-copy-right-links a {
  color: var(--orange-color);
}






/* our plans */

.our-plans-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
}

.our-plans-flex {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}

.our-plans-block {
  width: 33.33%;
  padding: 15px;
  position: relative;
}

.our-plans-block-inner {
  height: 100%;
  border-radius: 10px;
  position: relative;
}

.our-plans-block-inner::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(1, 30, 62, 0) 0%, rgba(2, 30, 61, 0) 0%, rgb(30 52 77) 100%, rgb(32 47 65) 100%);
  pointer-events: none;
  /* opacity: 0; */
  /* transition: opacity 0.5s ease; */
  /* z-index: 1;  */
}

/* .our-plans-block-inner:hover::before {
  opacity: 1;
} */

.our-plans-block-inner img {
  border-radius: 10px;
  height: 350px;
}

.our-plan-block-info {
  width: 100%;
  position: absolute;
  bottom: 0;
  padding-left: 30px;
  padding-bottom: 30px;
  padding-right: 30px;
}

.our-plan-block-info h3 {
  font-size: 24px;
  line-height: 28px;
  color: var(--white-color);
  font-weight: bold;
  /* max-width: 200px; */
  /* padding-bottom: 10px; */
}

.our-plan-block-info p {
  font-size: 14px;
  line-height: 26px;
  color: var(--white-color);
  font-weight: 300;
  max-width: 230px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all .5s ease;
}


.our-plan-block-info ul {
  list-style: none;
  margin: 20px 0 0;
  max-width: 300px;
  max-height: 0;
  opacity: 0;
  transition: all .5s ease;
}

.our-plans-block:hover .our-plan-block-info ul {
  max-height: 180px;
  opacity: 1;
  transition: all .5s ease;
}


.our-plan-block-info ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--white-color);
  font-weight: 500;
}

.our-plan-block-info ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--white-color);
  border-radius: 50%;
}

.home-banner-content a {
  background-color: var(--blue-color);
}

.home-banner-content a:hover {
  background-color: var(--orange-color);
}



/* breadcrumbs */
.breadcrumbs-main {
  position: relative;
  background: var(--gradient-color);
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
}

.breadcrumbs {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 40px;
}

.breadcrumbs h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--white-color);
  text-align: center;
}


/* contact us page */

.contact-details-main {
  background-color: #f8f8f8;
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
}

.contact-details-flex {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.contact-details-block {
  width: 33.33%;
  padding: 15px;
}

.contact-details-block img {
  width: 50px;
  height: 50px;
  display: flex;
  margin: 0 auto;
  margin-bottom: 10px;
}

.contact-details-block h3 {
  text-align: center;
  color: var(--black-color);
  margin-bottom: 5px;
  font-size: 30px;
}

.contact-details-block p {
  text-align: center;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.contact-details-block p a {
  color: var(--text-color);
}

.contact-details-block p a:hover {
  color: var(--orange-color);
}

.contact-us-page-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
}

.contact-us-page-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.contact-us-page-left,
.contact-us-page-right {
  width: 50%;
}

.contact-us-page-right {
  padding-left: 70px;
}

.contact-us-page-left {
  height: 550px;
}


/* blog detail */

.blog-detail-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
}

.blog-detail-page {
  background: var(--white-color);
  /* padding: 30px; */
}

.blog-detail-page-flex {
  display: flex;
  flex-wrap: wrap;
}

.blog-detail-left {
  width: 70%;
  padding-right: 40px;
}

.blog-detail-right {
  width: 30%;
}

.blog-main-image {
  margin-bottom: 10px;
}

.blog-main-image img {
  height: 500px;
  width: 100%;
  border-radius: 8px;
}

.blog-date h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--orange-color);
}

.blog-detail-content p {
  margin-bottom: 15px;
  color: var(--text-color);
}

.blog-tips-section {
  margin-top: 25px;
}

.tips-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-color);
}

.tips-list {
  padding-left: 20px;
  color: var(--text-color);
  line-height: 1.8;
}

.tips-list li {
  list-style-type: disc;
  margin-bottom: 10px;
}

.latest-blog-block {
  padding: 15px;
  margin-top: 10px;
}

.latest-blog-flex {
  display: flex;
  flex-wrap: wrap;
}

.latest-blog-left {
  width: 40%;
  padding-right: 20px;
}

.latest-blog-right {
  width: 60%;
}

.latest-blog-left img {
  width: 100%;
  max-width: 200px;
}

.latest-blog-heading {
  margin-bottom: 5px;
}

.blog-detail-right-heading h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--black-color);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.latest-blog-heading a h4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-transform: capitalize;
  margin-top: -5px;
  margin-bottom: 5px;
  color: var(--text-color);
}

.latest-blog-date i {
  color: var(--orange-color);
}



/* Why Aura */
.home-stats {
  background: var(--gradient-color);
  padding: 30px 0;
}

.home-stats-flex {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.home-stats-block {
  width: 33.33%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-stats-block img {
  width: 60px;
  height: 60px;
  float: left;
  padding-right: 12px;
  object-fit: scale-down;
  filter: invert(1);
}

.stats-info {
  float: left;
}

.stats-info h4 {
  font-size: 36px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  position: relative;
}

.stats-info p {
  font-size: 16px;
  color: #fff;
  line-height: 1.688;
}

.stats-info h4::before {
  position: absolute;
  content: "+";
  font-size: 36px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  right: -27px;
}

.vision-mission-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
}

.vision-mission-flex {
  display: flex;
  flex-wrap: wrap;
}

.vision-mission-block {
  width: 33.33%;
  padding: 25px;
}

.vision-mission-img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background: var(--gradient-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.vision-mission-img img {
  height: 35px;
  width: 35px;
  filter: invert(1);
}

.vision-mission-content {
  margin-top: 20px;
}

.vision-mission-content h4 {
  font-size: 22px;
  color: var(--black-color);
  text-align: center;
  font-weight: 700;
}

.vision-mission-content p {
  font-size: 16px;
  color: var(--text-color);
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
}

.vision-mission-block-inner {
  background-color: #f5f5f5;
  border-radius: 12px;
  padding: 25px;
  height:100%;
}

.latest-technology-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  background-color: var(--light-gray-color);
}

.latest-technology-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.latest-technology-left,
.latest-technology-right {
  width: 50%;
}

.latest-technology-left {
  height: 500px;
}

.latest-technology-left img {

  border-radius: 12px;
}

.latest-technology-right {
  padding-right: 40px;
}

.latest-technology-content-flex .latest-technology h3,
.why-choose-us-page-block h3 {
  color: var(--black-color);
}

.latest-technology-content-flex .latest-technology p,
.why-choose-us-page-block p {
  color: var(--text-color);
}

.why-aur-faqs-accordian {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 40px;
}

.why-aur-faqs-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
}

.why-aur-faqs-accordian .accordion-item,
.why-aur-faqs-accordian .accordion-item:first-of-type {
  border: 1px solid #ddd;
  margin-bottom: 20px;
  padding: 10px;
}

.why-choose-us-page {
  background: unset;
}

.why-choose-us-page-small-heading h4 {
  color: var(--green-color);
}

.why-choose-us-page-large-heading h1 {
  color: var(--orange-color);
}

.latest-technology-flex {
  flex-flow: row-reverse;
}


/* company */

.existing-verticals-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  background-color: var(--light-gray-color);
}

.existing-verticles-flex-one {
  display: flex;
  align-items: center;
}

.existing-verticles-left-one {
  width: 30%;
  height: 200px;
}

.existing-verticles-left-one img {
  border-radius: 12px;
}

.existing-verticles-right-one {
  width: 70%;
  padding-left: 30px;
}

.existing-verticles-right-one h3,
.existing-verticles-left-two h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--black-color);
}

.existing-verticles-right-one p,
.existing-verticles-left-two p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-color);
}
.existing-verticles-flex-two{
  display: flex;
  flex-wrap: wrap;
  padding-top: 40px;
  padding-bottom: 40px;
  align-items: center;
}

.existing-verticles-left-two {
  width: 70%;
  padding-right: 30px;
}
.existing-verticles-right-two {
  width: 30%;
  height: 200px;
}
.existing-verticles-right-two img{
  border-radius: 12px;
  
}
.existing-verticals-headings{
  padding-bottom: 60px;
}

.blog-page-flex{
  margin-top: 0px;
}