@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary-color: #f56b0c;
  /* Define the root color variable */
  --p-color: #333330;
  --bg-color: #4b187a;
  --white-color: #fff;
  --title-color: #000;
}

html {
  scroll-behavior: smooth
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  padding: 0px;
  margin: 0px;
}

h2 {
  font-size: 30px;
  line-height: 48px;
}

body {
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #000;
  font-family: "Inter", sans-serif;
  overflow-x: clip;
  max-width: 100vw
}

a {
  text-decoration: none;
}

.topbar {
  padding: 5px 0px 5px;
  background: #fff;

}

p {
  color: var(--p-color);
}

.fa-phone {
  transform: rotate(90deg);
}

.topbar ul {
  justify-content: end;
  margin-bottom: 0px;
  display: flex;
  gap: 15px;
  padding: 0px;
  line-height: normal;
  color: var(--white-color);
}

.topbar ul li i {
  margin-right: 10px;
}

.topbar ul li a {
  color: var(--white-color);
}

.topbar ul li {
  list-style: none;
}

.logo img {
  height: 40px;
}

/* animation menu hamburger */
.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

.menu-btn .menu-btn__lines, .menu-btn .menu-btn__lines::before, .menu-btn .menu-btn__lines::after {
  width: 1.5rem;
  height: 0.1rem;
  background: var(--title-color);
  transition: all 0.4s ease-in-out;
}

.menu-btn .menu-btn__lines::before, .menu-btn .menu-btn__lines::after {
  content: "";
  position: absolute;
}

.menu-btn .menu-btn__lines::before {
  transform: translateY(-0.5rem);
}

.menu-btn .menu-btn__lines::after {
  transform: translateY(0.5rem);
}

.menu-btn.open .menu-btn__lines {
  transform: translateX(1rem);
  background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: var(--title-color);
}

.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: var(--title-color);
}

ul.menu-items li:last-child ul.dropdown-menu {
  right: 0px;
  left: auto;
}

ul.menu-items li:last-child ul.dropdown-menu ul.dropdown-menu.menu-left {
  right: auto;
  left: -100%;
}

.expand-btn:after {
  position: absolute;
  top: 52%;
  right: 3px;
  opacity: 0.75;
  transform: translateY(-50%) rotate(0);
  transition: 0.25s;
  content: "\f107";
  font-family: Font Awesome\ 5 Free;
  font-weight: 900;
  border: 0px;
}

.expand-btn.open {
  color: var(--primary-color);
}

.expand-btn.open:after {
  transform: translateY(-50%) rotate(180deg);
}

/* Header */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white-color);
}

.navbar.sticky {
  position: sticky;
  z-index: 999;
  top: -1px;
}

.navbar .logo {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.navbar .menu-items {
  display: flex;
  align-items: center;
}

.navbar .menu-items::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  background-color: #222;
}

.navbar .menu-items::-webkit-scrollbar {
  width: 6px;
  background-color: #222;
}

.navbar .menu-items::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  background-color: var(--white-color);
}

.navbar .menu-items li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown {
  position: relative;
}

.navbar .menu-right {
  top: 0;
  left: 100%;
}

.navbar .menu-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-left: 5px;
  padding-right: 15px;
  font-size: 14px;
  transition: 0.25s;
  font-weight: 500;
}

.navbar .menu-item:hover {
  color: var(--primary-color)
}

.navbar ul li {
  list-style: none;
  transition: 0.3s ease;
}

.navbar ul li .arrow {
  transition: all 0.3s ease-out;
}

.navbar ul li a {
  position: relative;
  text-decoration: none;
  color: #000;
}

.navbar .mega-menu .content {
  display: flex;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  background: #171b27;
  -webkit-box-shadow: 0 20px 50px 0 #000;
  box-shadow: 0 20px 50px 0 #000;
}

.navbar .category .content .col .img-wrapper {
  margin: 1rem 0;
}

.navbar .blog .content {
  grid-template-columns: repeat(1, 1fr);
}

.navbar .blog .content .col .img-wrapper {
  margin-bottom: 1rem;
}

.navbar .blog .content .col .menu-title {
  font-weight: normal;
}

.navbar .blog .content .col .menu-title a {
  transition: 0.25s;
}

.navbar .blog .content .col .menu-title a:hover {
  color: #ff5722;
}

.navbar .content .col {
  display: flex;
  flex-direction: column;
}

.navbar .content .col .img-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 20vw;
  overflow: hidden;
}

.navbar .content .col .img-wrapper:hover img {
  transform: scale(1.1);
}

.navbar .content .col .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.navbar .content .col img {
  width: 100%;
  max-width: 100%;
  transition: transform 0.3s ease-in-out;
}

.navbar .content .col .menu-title {
  color: var(--white-color);
  font-size: 1.125rem;
  line-height: 1.125rem;
  border-left: 2px solid #ff5722;
  padding-left: 0.625rem;
}



.navbar .content .col p {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  font-size: 0.813rem;
  line-height: 1.6rem;
  color: var(--white-color);
}

.navbar .content .col .mega-links {
  padding-left: 1rem;
  border-left: 1px solid #3c3c3c;
}


.navbar .content .col .mega-links li {
  margin: 1rem 0;
}

.navbar .content .col .mega-links li a {
  padding: 0;
}

.navbar .dropdown-menu a {
  padding: 8px 12px;
  border-bottom: 1px solid #f2f2f2;
}

/* edn header */
/* button start*/
.btn-check:focus+.btn, .btn:focus {
  outline: 0;
  box-shadow: none;
}

.btn svg {
  margin-right: 5px;
}

.btn {
  border-radius: 4px;
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 28px;
  font-size: 14px;
  background-size: 300%;
  transition: all 0.6s;
  overflow: hidden;
  font-weight: 500;
  gap: 5px;
}

.btn svg {
  width: 20px;
  height: 20px;
}

.btn:hover {
  color: #000;
  background-position: 100%;
}

.cta-btn-group .btn.blue:hover svg path {
  stroke: #000;
  fill: none;
}

.cta-btn-group .btn.outling-btn:hover {
  background-image: linear-gradient(160deg, #f56b0c 50%, #ffffff 50%);
}

.cta-btn-group .btn.outling-btn:hover svg path {}

.btn:hover svg path {
  fill: #000;
}

.black {
  color: var(--title-color);
  background-image: linear-gradient(90deg, white 50%, black 50%);
}

.green {
  color: green;
  background-image: linear-gradient(-120deg, green 50%, white 50%);
}

.orange {
  color: orange;
  background-image: linear-gradient(120deg, white 50%, orange 50%);
}

.inner-content-all .btn:hover {
  color: #000;
}

.blue {
  color: var(--white-color);
  background-image: linear-gradient(160deg, #f56b0c 50%, #ffffff 50%);
  border-radius: 40px;
  border: 1px solid var(--primary-color)
}

.inner-content-all .blue {
  color: var(--white-color);
  background-image: linear-gradient(160deg, #f56b0c 50%, #ffffff 50%);
  border-radius: 40px;
  border: 1px solid var(--primary-color)
}

.outling-btn {
  color: var(--primary-color);
  background-image: linear-gradient(160deg, #fff 50%, #ffffff 50%);
  border-radius: 40px;
  border: 1px solid var(--primary-color)
}

.pink {
  color: pink;
  background-image: linear-gradient(20deg, white 50%, pink 50%);
}

/* slider section */
.slider_sec-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

section.slider_sec .container .row {
  height: 100%;
}

section.slider_sec .container .col-md-5 {
  height: 100%;
}

section.slider_sec .container {
  position: relative;
  height: 100%;
}


.sliderraduis-bg-outer:after {
  background-image: url('../images/Polygon5.png');
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 101%;
  height: 100%;
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
section.slider_sec .btn svg path{
       color: #000;
    fill: #000;
}
section.slider_sec .btn {
  padding: 8px 50px;
background-image:linear-gradient(160deg, #fff 50%, #ffffff 50%);
    border: 0px solid var(--primary-color);
    color: #000;
}

.sliderraduis-bg-outer {
  height: 100%;
  background-image: url('../images/Polygon5.png');
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  width: 660px;
  position: relative;
  padding-right: 50px;
}

.colg-right video {
  width: calc(100% + 100px);
  height: 100%;
  object-fit: fill;
  margin-left: -100px;

}

.colg-right img {
  width: calc(100% + 100px);
  height: 100%;
  object-fit: cover;
  margin-left: -100px;
  max-width: unset;
}

.colg-right {
  position: relative;
  max-width: 100%;
  margin-right: -2px;
}

.slider_sec::before {
  background-color: var(--bg-color);
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 40%;
  height: 100%;
  z-index: 1;
}

.slider_sec {
  overflow: hidden;
  position: relative;
}

.slider_sec h1 {
  font-size: 35px;
  color: var(--white-color);
  border-bottom: 1px solid var(--white-color);
  padding-bottom: 10px;
  display: inline-block;
  margin-bottom: 20px;
}

.slider_sec p {
  color: var(--white-color);
  font-weight: 400;
  font-size: 14px
}

.slider_banner {
  margin-right: -300px;
}

/* ---------------------what_you_need-------------------------- */
.what_you_need {
  padding: 50px 0px 30px;
}

.testimonials-section {
  padding: 50px 0px 50px;

}

.fastest_growing {
  padding: 30px 0px 50px;

}

.location_across {
  padding: 30px 0px 50px;
}

.what_you_need_inner {
  background-image: url('../images/why-bg.png');
  background-image: cover !important;
  background-repeat: no-repeat;
  padding: 0px;
  border-radius: 10px;
  background-color: #fff;
  position: relative;
}

/*.what_you_need_inner::after {*/
/*  background-color: #5A9CA4;*/
/*  opacity: .3;*/
/*  content: "";*/
/*  height: 102%;*/
/*  width: 100%;*/
/*  top: 0px;*/
/*  position: absolute;*/
/*  left: 0px;*/
/*  z-index: -1;*/
/*  border-radius: 10px;*/
/*}*/

/*.what_you_need_inner .section-title {*/
/*  color: var(--white-color);*/
/*}*/

.section-title {
  font-size: 30px;
  text-align: center;
  color: var(--title-color);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: capitalize;
}

.need_box:hover {
  background-color: #f3feff;
  border: 2px solid var(--primary-color);

}

.need_box {
  background-color: var(--white-color);
  text-align: center;
  border-radius: 10px;
  padding: 10px;
  height: 100%;
  border: 2px solid var(--bg-color);
  cursor: pointer;
}

.need_box p {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
  color: #333330;
}

.need_box img {
  width: 62px;
  height: 62px;
}

/* ---------------------fastest-growing-------------------------- */

.growing_box {
  text-align: center;
  padding: 15px;
  border-width: 0px 0px 5px 5px;
  border-color: #fff;
  border-style: solid;
  border-radius: 10px;
}

.growing_box:hover {
  border-color: var(--bg-color);
}

.growing_box img {
  height: 100px;
  width: auto;
}

.growing_box h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0px;
}

.growing_box p {
  color: #333333;
}

/* ---------------------badge-------------------------- */
.approved_badge {
  /* background-color: #e5c8ff; */
  padding: 0px 0 50px;
}

.circle_main {
  gap: 30px;
}

/* ---------------------location-------------------------- */


.location_box .location_img::after {
  background: rgba(255, 255, 255, .3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all .4s linear;
}

.location_box:hover .location_img::after {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all .4s linear;
}

.location_box .location_img {
  overflow: hidden;
  position: relative;
}

.location_box .location_img img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: all .4s ease-in-out;
}

.location_box:hover .location_img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.location_box {
  background: #FFFFFF;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.13);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  border: 1px solid #fff;
}

.location_box:hover {
  border: 1px solid var(--primary-color);
}

.location_content {
  padding: 15px 15px 20px;
  text-align: center;
}

.location_content h3 {
  margin-bottom: 0px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}

.location_content a {
  padding-bottom: 2px;
  color: #4b187a;
  font-weight: 500;
  border-bottom: 1px solid #4b187a;
}

.location_content:hover a {
  border-bottom: 1px solid #4b187a;
}

.location_content:hover a {
  color: #00C1D4;
  border-bottom: 1px solid #00C1D4;
}

.location_content:hover a path {
  fill: #00C1D4;
}

/* what-we-offer */
.what-we-box {
  background: #fff;
  border: 1px solid var(--white-color);
  box-shadow: 0px 0px 24px rgba(187, 187, 187, 0.18);
  border-radius: 10px;
  padding: 12px 18px;
  text-align: center;
  height: 100%;
}

.what-we-box:hover {
  border: 1px solid var(--primary-color);
  background: #F2FAFA;
}

.what-we-box img {
  height: 70px;
  width: auto;
}

.what-we-box h6 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #000000;
  margin-top: 10px;
  margin-bottom: 0px;
}


.what-we-offer {
  /*background-color: #e5c8ff;*/
  padding: 30px 0px 20px;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}

/* why-choose-us */
.why-chooseuse-content {
  padding: 20px 15px 15px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.why-chooseuse-content h6 {
  margin-bottom: 8px;
  font-weight: bold;
}

.why-chooseuse .img-fluid {
  object-fit: cover;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.cta-btn-group .btn {
  padding: 8px 50px;
}

.cta-btn-group {
  justify-content: center;
  display: flex;
  gap: 15px;
}

.lets-care-hc {
  /*background-color: #e5c8ff;*/
  padding: 50px 3% 50px 3%;
}

.box-faq-add h6::before {
  background-image: url('../images/right-arrow1.png');
  content: "";
  background-position: top left;
  background-size: 21px 21px;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0px;
  background-repeat: no-repeat;
}

.box-faq-add h6 {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
  font-weight: bold;
}

.left-img-add h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 34px;
  text-transform: capitalize;
  color: #000000;
  margin-top: 10px;
}

.lets-care-hc p {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}

.left-img-add h6 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 35px;
  text-transform: capitalize;
  color: #000000;
}

.testimonials-section .owl-dots {
  text-align: center;

}

.testimonial-box .img-section-content i {
  color: #FFC107;
}

.testimonial-box .img-section-content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  transition: all 0.6s;
  margin-bottom: 0px;

  color: #000000;
}

.testimonial-box .img-section-testi h5 {
  font-weight: 600;
  font-size: 15px;
  line-height: 25px;
  text-align: center;
  color: #222222;
  margin-bottom: 0px;
}

.testimonial-box .img-section-testi p {
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  transition: all 0.6s;
  text-align: center;
  color: #666666;
  margin-bottom: 0px;
}

.img-section-testi img {
  height: 110px;
  width: 110px !important;
  border: 3px solid #f56b0c;
  border-radius: 100px;
  margin-bottom: 10px;
  object-fit: cover;
  transition: all 0.6s;

}

.img-section-testi {
  width: 110px;
  transition: all 0.6s;

}

.testimonial-box {
  background: #FFFFFF;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  gap: 20px;
  transition: all 0.6s;
  min-height: 235px;
  align-items: center;
}

.testimonial-box:hover .img-section-testi p,
.testimonial-box:hover .img-section-testi h5,
.testimonial-box:hover .img-section-content i,
.testimonial-box:hover .img-section-content p {
  color: #fff;
}


.testimonial-box:hover .img-section-testi img {
  border: 3px solid #fff;
}

.testimonial-box:hover {
  background: #f56b0c;

}

.img-section-content {
  width: calc(100% - 120px);
}

.testimonials-section .owl-carousel .owl-stage-outer {
  padding: 20px;
}

.testimonials-section .owl-stage {
  left: -20px;
}

/* .testimonials-section .owl-dots.disabled {
  display: block;
} */
.testimonials-section button.owl-dot span {
  width: 8px;
  height: 8px;
  margin: 2px;
  background: #D9D9D9;
  border-radius: 100px;
  display: inline-block;
}

.testimonials-section button.owl-dot.active span {
  background: var(--primary-color);
}

.instagram-section {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.instagram-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  width: calc(25% - 8px);
}

.instagram-item:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.instagram-item img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  object-fit: cover;
  display: block;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: all .4s ease-in-out;
}

.instagram-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-item:hover .overlay {
  opacity: 1;
}

.instagram-item .overlay i {
  color: #fff;
  font-size: 2rem;
}

.intagratitle {
  text-align: center;
}

.intagratitle a {
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

.instagram-care-hc {
  padding: 50px 0px;
  background: #e5c8ff;
}

.blog-outer {
  padding: 40px 0px;
}

.blog-outer h5 {
  font-weight: 700;
  font-size: 16px;
  line-height: 25px;
  color: #061C3D;
  margin-bottom: 5px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
}

.blog-outer .location_content p {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
  font-size: 14px;
}

.blog-outer .location_content {
  text-align: left;
}

/* footer */
footer {
  background: #4b187a;
  padding: 130px 0px 0px;
}

.footerphone .phone {
  max-width: 10%;
}

.footerphone h6 {
  font-size: 16px;
  color: #fefefe;
  line-height: normal;
  margin-bottom: -5px;
  font-weight: bold;
}

.footerphone {
  padding-bottom: 50px;
  text-align: center;
}

span.footer-no a {
  font-size: 45px;
  font-weight: bold;
  color: var(--white-color);

}

footer h2.footer-title::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: #373e4c;
  bottom: 0;
  position: absolute;
  margin-bottom: 1px;
}

footer h2.footer-title {
  color: #fefefe;
  font-size: 22px;
  display: block;
  position: relative;
}

h2.footer-title::after {
    content: "";
    display: block;
    background-color: #f56b0c;
    height: 2px;
    width: 100px;
    bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
}

footer ul li,
footer ul li a {
  text-decoration: none;
  color: #fefefe;
  font-size: 15px;
}

footer ul li a:hover {
  color: var(--primary-color);
}

footer ul li {
  display: block;
  padding: 5px 0;
}

footer ul {
  margin-top: 20px;
}

li.socilmedias {
  display: flex;
  gap: 10px;
}

.address-links li {
  display: flex;
  gap: 10px;
}

.address-links li a {
  display: flex;
  gap: 10px;
}

.footer-bottom p {
  font-size: 15px;
  line-height: 24px;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #fff;
  margin-top: 35px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-bottom .links {
  text-decoration: none;
  color: #fefefe;
  float: right;

}

.footer-bottom .links a {
  padding: 0 8px 0 5px;
  border-right: 2px solid #fff;
  color: #fff;
}

.copyright {
  float: right !important;
  margin-top: 15px !important;
  text-align: right;
}

.footer-bottom .links a:last-child {
  border: 0;
  padding-right: 0;
}

#return-to-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  color: var(--primary-color);
  background: white;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  z-index: 999;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  border: 1px solid var(--primary-color);
}

#return-to-top:hover {
  color: #fff;
  background: #f56b0c;
}

section.contactus-care-hc {
  padding: 50px 0px;
}

.contact-forms {
  background: #FFFFFF;
  box-shadow: 0px 16px 72px rgba(6, 28, 61, 0.08);
  border-radius: 15px;
  padding: 30px;
}

.contact-forms .btn {
  padding: 8px 30px;
}

textarea.form-control {
  height: 70px;
}

.form-control {
  font-size: 14px;
  appearance: auto;
  height: 40px;
  padding: 8px 12px;
  background: #FFFFFF;
  border: 1px solid #E6E8EC;
  border-radius: 5px;
}

.form-control:focus {
  color: var(--title-color);
  background-color: #fff;
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: unset;
}

label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px !important;
}

/* .mordal */
.modal-backdrop.show {
  opacity: .8;
}

.custome-modals .modal-header button.btn-close {
  background-image: none;
  padding: 0px;
  width: auto;
  height: auto;
  margin: 0px;
  text-align: right;
  opacity: 1;
}

.btn-close:focus {
  box-shadow: none;
}

.custome-modals .modal-header svg {
  width: 30px;
  height: auto;
}

.custome-modals .modal-content {
  background: #F0FAFA;
  border-radius: 15px;
}

.custome-modals .modal-body .btn.btn-lg {
  padding: 8px 30px;
  margin-top: 10px;
}

.custome-modals .modal-body {
  padding-bottom: 20px;
}

.custome-modals .modal-header {
  justify-content: end;
  padding-top: 5px;
  padding-right: 10px;
  border-bottom: 0px;
  padding-bottom: 0px;
}

.modal-btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stepwizard-step p {
  margin-top: 10px;
}

.stepwizard-row {
  display: flex;
  text-align: center;
  justify-content: space-between;
}

.stepwizard {
  display: table;
  width: 100%;
  position: relative;
}

.stepwizard-step button[disabled] {
  opacity: 1 !important;
  filter: alpha(opacity=100) !important;
}

.stepwizard-row:before {
  top: 14px;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 95%;
  height: 1px;
  left: 3%;
  z-index: 0;
  border-top: 1px dashed #000;
}

.stepwizard-step {
  display: flex;
  text-align: center;
  position: relative;
  align-items: center;
  flex-direction: column;
}

.btn-circle {
  width: 25px;
  height: 25px;
  text-align: center;
  padding: 6px 0;
  font-size: 12px;
  line-height: 1.428571429;
  border-radius: 15px;
}

.btn.btn-default.btn-circle::before {
  width: 32px;
  height: 32px;
  line-height: 32px;
  border: 1px dashed #000;
  content: "";
  position: absolute;
  border-radius: 100px;
  left: -4px;
  top: -4px;
}

.stepwizard-step p {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0px;
}

.btn.btn-default.btn-circle {
  width: 25px;
  height: 25px;
  line-height: 25px !important;
  padding: 0px;
  text-align: center;
  border-radius: 100px;
  font-family: 'Inter';
  font-style: normal;
  position: relative;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: #000;
  display: block;
  overflow: unset;
  margin-left: 4px;
  background: #fff;
  border: 1px solid #000;
}

.btn.btn-default.btn-circle.btn-primary::before {
  border: 1px dashed #f56b0c;
}

.stepwizard-step .btn.btn-default.btn-circle.btn-primary~p {
  color: #f56b0c;
}

.btn.btn-default.btn-circle.btn-primary {
  background: #f56b0c;
  border-color: #f56b0c;
  color: #fff;
}

.setup-content .form-check-input {
  width: 18px;
  height: 18px;
  background-color: #fff;
  filter: none;
}

.custome-modals h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 10px;
  color: #000000;
}

.form-check-input:checked {
  background-color: #f56b0c;
  border-color: #f56b0c;
}

.form-check-input:focus {
  box-shadow: none;
}

.setup-content .form-check-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  vertical-align: text-top;
  color: #000000;
  padding-left: 5px;
}

.div-thankyou {
  text-align: center;
}

.div-thankyou img {
  height: 80px;
  width: auto;
}

.div-thankyou h6 {
  font-weight: bold;
  font-size: 22px;
  line-height: 45px;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 0px;
}

.div-thankyou p {
  margin-bottom: 0px;
}

.div-thankyou a {
  font-weight: bold;
  font-size: 25px;
  line-height: 45px;
  text-align: center;
  text-transform: capitalize;
  color: var(--primary-color);
}

img.review-imgesa {
  height: 100px;
  margin: auto;
}

.newletter-footertop {
  background: var(--primary-color);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: -80px;
}
/*.newletter-footertop .section-title{*/
/*  color: #000000!important;*/
/*}*/
.inpuserach {
  background: #FFFFFF;
  border: 1px solid #4b187a;
  border-radius: 100px;
  padding: 5px 5px 5px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inpuserach button.submitbtn {
  background: #4b187a;
  border-radius: 1000px;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: #FFFFFF;
  border-color: #4b187a;
  padding: 10px 20px;
  border: 1px solid;
}

.inpuserach button.submitbtn:hover {
  background: #fff;
  color: #4b187a;
}

.inpuserach-inner i.far.fa-envelope {
  position: absolute;
  color: #6C6C6C;
}

.inpuserach-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.inpuserach-inner input {
  width: 100%;
  height: 100%;
  border: 0px;
  padding-left: 18px;
  font-size: 14px;
}

:focus-visible {
  outline: -webkit-focus-ring-color auto 0px;
}

.inner-content-all {
  padding: 40px 0px;
}

.inner-content-all h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 5px;
  margin-top: 10px;
  line-height: 28px;
}

.inner-content-all p a,
.inner-content-all a {
  color: #f56b0c;
}

.inner-content-all p {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #4C4C4C;
}

.inner-content-all ul ul {
  margin-top: 5px;
  margin-bottom: 0px;
}

.accordion-item ul {
  padding-left: 20px;
}

.inner-content-all ul {
  padding-left: 20px;
  margin: 0px 0px 10px;
}

.accordion-item li .inner-content-all li {
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #4C4C4C;
}

.accordion-item a {
  color: #f56b0c;

}


.inner-content-all p~ul {
  margin-top: -6px;
}

.classs-btns-div a:hover {
  color: #323238;
  background: #fff;
}

.classs-btns-div a {
  font-weight: 600;
  font-size: 16px;
  line-height: 38px;
  text-align: center;
  text-transform: capitalize;
  color: #FFFFFF;
  background: #323238;
  border: 1px solid#323238;
  padding: 4px 25px;
  border-radius: 230px;
}

.classs-btns-div {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}


.acc_outer .accordion-button {
  font-size: 14px;
  font-weight: bold;
  border: none;
  padding: 15px 20px !important;
}

.acc_outer .accordion-item {
  margin-bottom: 20px !important;
  border: none;
  border: 1px solid #A3A3A3;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-header {
  margin-bottom: 0;
}

.acc_outer .accordion-button {
  font-size: 14px;
  font-weight: bold;
  border: none;
  padding: 14px 20px !important;
  line-height: normal;
}

.accordion-button:not(.collapsed) {
  color: #f56b0c !important;
  background-color: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: all 0.5s;
  border-radius: 100%;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.accordion-button::after {
  transition: all 0.5s;
}

.acc_outer .accordion-button:focus {
  background-color: transparent;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}
img.hoverblack {
  display: none;
}
.cta-btn-group .btn.outling-btn:hover img.hoverblack {
  display: inline-block;
}
.cta-btn-group .btn.outling-btn:hover img.hoverblue {
  display: none;
}
.cta-btn-group .btn img{
  height: 25px;
  margin-right: 5px;
}
.cta-btn-group .btn:hover img.hoverblack {
  display: inline-block;
}
.cta-btn-group .btn:hover img.hoverblue {
  display: none;
}
.btn.outling-btn:hover img.hoverblack {
  display: inline-block;
}
 .btn.outling-btn:hover img.hoverblue {
  display: none;
}
.btn img{
  height: 25px;
  margin-right: 5px;
}
 .btn:hover img.hoverblack {
  display: inline-block;
}
 .btn:hover img.hoverblue {
  display: none;
}

header.navbar .custom-logo-link  img {
    height: 45px;
    width: auto;
}