* {
  margin: 0;
  padding: 0;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  /* height: 100%; */
  width: 100%;
  overflow-x: hidden !important;
}

.red-color-text{
  color: #c7000b;
}
.mtp-30{
  margin-top: 30px;
}

html {
  font-family: 'Inter', sans-serif !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  background: #fff;
  color: #252525;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/*header*/
.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  /* padding: 15px; */
  /* new */
  /* background: #f7f6f4; */
  /* box-shadow: 0 0px 1rem rgb(0 0 0 / 50%); */
}

.header-main {
  /* background-color: #ffffff; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0;
  border-radius: 4px;
}


.animate-img:hover{
   transform: scale(1.2);
}

.uk-navbar-right {
  margin-right: -12px;
}


.logo img {
  width: 160px;
  /* height:82px; */
}

@media(max-width: 991px) {
  .uk-logo img {
    width: 260px;
    /* height:82px; */
  }
}

canvas,
img,
video {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

.header .nav-menu {
  padding: 0 15px;
}

.header .menu>.menu-item {
  display: inline-block;
  margin-left: 5px;
  position: relative;
  margin-bottom: 0px;
}

.header .menu .menu-item a {
  display: block;
  padding: 8px 10px;
  font-size: 16px;
  color: #000;
  text-transform: capitalize;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  min-height: 40px;
}

.header .plus-cls {

  display: inline-block;
  position: relative;

  display: flex;

}

.header .plus-cls::after {
  content: "+";
  position: absolute;
  top: 50%;
  padding-left: 5px;
  right: 0px;
  font-weight: 600;
  left: 100%;
  font-size: 16px;
  color: #fff;
  transform: translate(-50%, -50%);

}

.btn-active .plus-cls::after {
  color: #153380 !important;
}

.header .menu-item:hover>.plus-cls::after {
  content: "-";
  color: #153380;
  /* transform: translate(-50%,-50%) rotate(-90deg); */
}

.header .menu>.menu-item>a .plus:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.header .menu>.menu-item>.sub-menu {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  min-width: 220px;
  position: absolute;
  left: 0;
  top: 80px;
  background-color: #ffffff;
  padding: 10px 0;
  text-decoration: none;
  /* border-top: 3px solid #e91e63; */
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 5;
  visibility: hidden;
}

.header .logo-dark,
.scrolling-active .logo-white {
  display: none;
}

.scrolling-active .logo-dark {
  display: block;
}

.scrolling-active {
  background: #fff;
  position: fixed;
  transition: .3s;
  padding: 0px;
  background-repeat: no-repeat;
  color: #000 !important;
  box-shadow: 0 0px 1rem rgb(0 0 0 / 50%);
}

.scrolling-active.header .menu .menu-item a {
  color: #000;
}

.header .menu>.menu-item>.sub-menu>.menu-item>a:hover,
.header .menu>.menu-item:hover>a {
  color: #153380;
}

.scrolling-active .menu-item .plus-cls::after {
  color: #000;
}

.scrolling-active .menu>.menu-item>.sub-menu>.menu-item>a:hover,
.scrolling-active .menu>.menu-item:hover>a {
  color: #153380;
}



@media(min-width: 992px) {
  .header .menu>.menu-item-has-children:hover>.sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header .menu>.menu-item-has-children:hover>a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

.header .menu>.menu-item>.sub-menu>.menu-item {
  display: block;
}

.header .menu>.menu-item>.sub-menu>.menu-item>a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  transition: all 0.3s ease;
  text-transform: capitalize;
  text-decoration: none;
}

.header .open-nav-menu {
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header .open-nav-menu span {
  display: block;
  height: 3px;
  width: 24px;
  background-color: #fff;
  position: relative;
}

.scrolling-active .open-nav-menu span {
  background-color: #000;
}

.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-sizing: border-box;
}

.scrolling-active .open-nav-menu span:before,
.scrolling-active .open-nav-menu span:after {
  background-color: #000;
}

.header .open-nav-menu span:before {
  top: -7px;
}

.header .open-nav-menu span:after {
  top: 7px;
}

.header .close-nav-menu {
  height: 40px;
  width: 40px;
  /* background-color: #ffffff; */
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.header .close-nav-menu .fa-times {
  /* width: 16px; */
  color: #999 !important;
}

.header .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

/* responsive */

@media(max-width: 991px) {
  .header .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }

  .header .nav-menu {
    position: fixed;
    right: -280px;
    visibility: hidden;
    width: 280px;
    height: 100%;
    top: 0;
    overflow-y: auto;
    background-color: #222222;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
  }

  .header .plus-cls {

    display: inline-block;
    position: relative;
    display: flex;

  }

  .header .plus-cls::after {
    content: "+";
    position: relative;
    /* position: absolute; */
    top: 35%;
    padding-left: 5px;

    font-weight: 600;
    /* left: 100%; */
    left: 0px;
    font-size: 16px;
    color: #fff;
    transform: translate(-50%, 0%);

  }

  .btn-active .plus-cls::after {
    color: #153380 !important;
  }

  .header .menu-item:hover>.plus-cls::after {
    content: "-";
    color: #153380;
    /* transform: translate(-50%,-50%) rotate(-90deg); */
  }

  .header .nav-menu.open {
    visibility: visible;
    right: 0px;
  }

  .header .menu>.menu-item {
    display: block;
    margin: 0;
  }

  .header .menu>.menu-item-has-children>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header .menu>.menu-item>a {
    color: #ffffff;
    padding: 12px 15px;
    border-bottom: 1px solid rgb(122, 122, 122);
  }

  .header .menu>.menu-item:first-child>a {
    border-top: 1px solid rgb(122, 122, 122);
  }

  .header .menu>.menu-item>a .plus:before,
  .header .menu>.menu-item>a .plus:after {
    background-color: #ffffff;
  }

  .header .menu>.menu-item-has-children.active>a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .header .menu>.menu-item>.sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top: 0px;
    max-height: 0;
    overflow: hidden;
  }

  .p-10-15 {
    padding: 10px 15px;
  }

  .header .menu>.menu-item>.sub-menu>.menu-item>a {
    padding: 12px 45px;
    color: #ffffff;
    border-bottom: 1px solid rgb(122, 122, 122);
  }

  .header .close-nav-menu,
  .header .open-nav-menu {
    display: flex;
  }
}

.uk-button:not(:disabled) {
  cursor: pointer;
}

.uk-button-primary {
  background-color: #4caf50;
  color: #fff !important;
  border: 1px solid transparent;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px !important;
  padding: 10px 20px !important;
  border-radius: 10px;
}


.uk-btn {
  font-size: 18px !important;
  line-height: 16px !important;
  text-align: right !important;
  font-weight: 500 !important;
  padding: 0.375rem 0.95rem !important;
}

.uk-btn span {
  font-size: 13px;
  display: block;
  margin-bottom: 0px;
  line-height: 14px;
}



.header .btncls a:hover {
  color: #fff !important;
}

.btn-active>a,
.scrolling-active .btn-active>a {
  color: gray !important;
}

.scrolling-active .menu>.btncls>.uk-button-primary {
  color: #fff !important;
}

.btncls a {
  text-transform: uppercase !important;
  text-decoration: none;
}

.header .ul {
  margin-bottom: 0px !important;
}

.logo-name {
  color: #000;
  font-size: 32px;

  text-transform: capitalize;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.header .menu .menu-item a:hover {
  background-color: #dfdddd;
  color: #000;
  border-radius: 5px;
}

/* header ends */


/* Hero starts */
.hero {
  min-height: 100vh;
  position: relative;
}

.hero .carousel-item {
  width: 100%;
  height: 650px;
  
}

.hero .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carouse-hidden{
  overflow: hidden;
}

.carousel-item  .img-overlay{
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), black);
  transition: transform .2s;
}

/* .carousel-item  .img-overlay:hover{
  background: linear-gradient(180deg, rgba(207, 202, 202, 0), rgb(87, 86, 86));
  transform: scale(1.5);
} */

.hero .carousel-indicators button {
  width: 5px;
  height: 50px;
  background: #f5f5f5;
  /* background: #ffc107;; */
  /* border-radius: 50%; */
  margin-top: 10px;
  margin-bottom: 10px;
  opacity: 1;
  display: block !important;
}

.hero .carousel-indicators {
  flex-direction: column;
  right: 0px;
  bottom: auto;
  top: 50%;
  left: auto;
  margin: 20px;
  transform: translate(0, -50%);
}

.hero .carousel-indicators button.active {
  width: 5px !important;
  height: 60px !important;
  /* border-radius: 50% !important; */
  border-top: none !important;
  border-bottom: none !important;
  opacity: 1;

  /* margin-top: 10px; */
  background: #0a58ca;
}




.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  background: #fff !important;
  opacity: 1 !important;
  border-radius: 50%;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 50px !important;
  height: 50px !important;
}


.hero .carousel-control-prev-icon::after {
  font: var(--fa-font-solid);
  content: "\f053";
  position: absolute;
  color: #000;
  top: 50%;
  font-size: 22px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero .carousel-control-next-icon::after {
  font: var(--fa-font-solid);
  content: "\f054";
  position: absolute;
  color: #000;
  font-size: 22px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 1 !important;

}

.hero .carousel-control-prev-icon:hover,
.hero .carousel-control-next-icon:hover {
  background: rgb(248, 247, 247) !important;
  /* color: #fff !important; */
}


.hero-heading h1 {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  line-height: 1.2em;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-heading p {
  color: rgb(122, 122, 122);
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  font-weight: normal;
  line-height: 1.5em;
}

.ps-60 {
  padding-left: 100px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-60 {
  margin-bottom: 60px;
}

.av-icon i {
  font-size: 28px;
  color: #bbbfc7;
  margin-bottom: 10px;
  margin-top: 10px;
}

.slider-1-desc h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.2em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e1e2f;
}


.slider-1-desc p {
  color: #bbbfc7;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  margin-bottom: 0px;
}

.slider-1-bx {
  border-radius: 10px;
  border: .2px solid rgb(238, 236, 236);
  /* box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px; */
  overflow: hidden;
}

.slider-1-img {
  width: 100%;
  height: 210px;
  overflow: hidden;
  padding: 15px 20px;
  background: linear-gradient(#cfd4f7, #fbfafc);

}

.bg-1 {
  background: linear-gradient(#C9E7F3, #fbfafc);
}

.bg-2 {
  background: linear-gradient(#E2E5F8, #fbfafc);
}

.bg-3 {
  background: linear-gradient(#D7F0CB, #fbfafc);
}

.pad-2 {
  padding: 13px;
}

/* .slider-1-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

} */


.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  background: #fff !important;

  border-radius: 50%;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 40px !important;
  height: 40px !important;
}

.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 40%;
  left: 10px;
  transform: translate(-50%, -50%);
}

.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 40%;
  right: 10px;
  transform: translate(50%, -50%);
}

.owl-carousel {
  position: relative;
}


.main-title h1 {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  line-height: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
}

.main-title-2 h2 {
  font-family: 'Inter', sans-serif;
  /* font-size: 32px; */
  line-height: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
}

.main-title-2 h1 span {
  position: relative;
}

.main-title h1 span {
  position: relative;
}

/* .main-title h1 span::after {
  content: ' ';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%, 0);
  
  width: 70%;
  height: 3px;
  background: #0071b3;
} */
/* .main-title-2 h1 span::after {
  content: ' ';
  position: absolute;
  bottom: -20px;
  left: 0%;
  transform: translate(0, 0);
  
  width: 70%;
  height: 3px;
  background: skyblue;
} */


.way-img {
  width: 100%;
  height: 250px;
}

.way-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.way-desc h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  line-height: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
}

.way-desc p {
  color: rgb(122, 122, 122);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5em;
  margin-bottom: 0px;
}

.main-title-2 p {
  color: rgb(122, 122, 122);
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem; 
  line-height: 1.5em;
  margin-bottom: 0px;
  font-weight: normal;
}

.mb-50 {
  margin-bottom: 50px;
}
.py-40{
  padding-top: 50px;
  padding-bottom: 140px;
}
/* new */
.py-60 {
  /* padding-top: 10px; */
  padding-bottom: 80px;
}

.text-voil span svg {
  width: 36px;
  height: 36px;
}

@media(max-width: 991px) {
  .hero .carousel-item {
    height: 40vh !important;
  }

  .hero-heading h1 {
    font-size: 30px;
  }

  .slider-1-img {
    height: 260px;
  }

  .hero .py-60 {
    padding-top: 60px;
    padding-bottom: 0px;
  }

  .ps-60 {
    padding-left: 80px;
  }

  .scrolling-active.header .menu .menu-item a {
    color: #fff;
  }

  .email-input {
    width: 100% !important;
  }
}

@media(max-width: 767px) {
  .ps-60 {
    padding-left: 20px;
  }

  .text-voil span svg {
    width: 26px;
    height: 26px;
  }

  .whatsapp img {
    height: 44px;
  }

}

/* Hero ends */




/* slider-2 starts */
.slider-2-desc h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
}


.slider-2-desc p {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .86rem;
  font-weight: 400;
  line-height: 1.5em;
  margin-bottom: 0px;
}

.slider-2-img {
  width: 100%;
  height: 270px;
  overflow: hidden;
}

.slider-2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.slider-2-bx {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.slider-2-desc {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 2;
}

.slider-2.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translate(-50%, -50%);
}

.slider-2.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(50%, -50%);
}


.slider-2-bx {
  position: relative;
}

.overlay {
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), black);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.img-overlay {
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .3));
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.carousel-caption {
  position: relative;
  z-index: 2;
  
}

.slider-2 .item {
  padding: 10px;
}

/* slider-2 ends */



.email-input {
  margin: 0rem 1.2rem 0rem 0rem;
  padding: 15px;
  box-sizing: border-box;
  width: 100%;
  font-size: 17px;
  border: 1px solid #aaaaaa;
  border-radius: 10px;
  width: 380px;
}

.mail-box {
  max-width: 900px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 1.4rem !important;
  border-radius: 15px;
  position: absolute;
  bottom: 5%;
  z-index: 2;
  left: 100px;

  /* transform: translate(-30%, 20%); */
}

.email-btn {
  width: 180px;
  /* background-color: rgb(25, 135, 84); */
  background: #198754;
  color: #fff;
  border: none;
  border-radius: 10px;
  transition: .3s all ease-in-out;
}

.email-btn:hover {
  background: #0c492d;
}

/* Tabs starts here */
.rad-15 {
  border-radius: 15px;
}

.tab-bx {
  height: 100%;
  border: .2px solid #f8f8f8;
  transition: all .3s ease-in-out;
  /* box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px; */
}

.tab-bx:hover {
  box-shadow: rgb(60 64 67 / 5%) 0px 1px 2px 0px, rgb(60 64 67 / 10%) 0px 2px 6px 2px;
}

.bg-gr {
  background: #f7f7f7;
}

.tab-title h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  line-height: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.tab-title h6 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.2em;
  font-weight: 500;
  margin-bottom: 0px;
  color: #000;
  padding-top: 5px;
}


.tab-title p {

  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  margin-bottom: 0px;
  color: #7a7a7a;
}

.tab-areas .nav-pills .nav-link {
  color: #000;
  font-weight: 500 !important;
}

.tab-areas .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: #000 !important;
}

.tab-areas .nav-pills .nav-link.active:hover,
.nav-pills .show>.nav-link:hover {
  color: #fff;
  background-color: rgb(31, 30, 30) !important;
}

.filter-btn {
  display: none;
}

.view-all:hover {
  cursor: pointer;
}

/* new */
.light-bckg {
  background: #f9f9f9;
  /* box-shadow: 0 0px 1rem rgb(0 0 0 / 20%); */
}

.service-icon span {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  /* background: #d8ece3; */
  display: inline-block;
  /* margin: 15px auto; */
  /* color: #01579b; */
  font-size: 16px;
  line-height: 40px;
  margin-bottom: 20px;
  text-align: center;
  /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px; */
}

.new-way-sec .filter-btn:nth-child(1) .service-icon span {
  background: #d8ece3;
  color: #01579b;
}

.new-way-sec .filter-btn:nth-child(2) .service-icon span {
  background: rgba(253, 126, 20, 0.1) !important;
  color: rgb(253, 126, 20) !important;
}

.new-way-sec .filter-btn:nth-child(3) .service-icon span {
  background: rgb(21, 115, 71, .1) !important;
  color: rgb(21, 115, 71) !important;
}

.new-way-sec .filter-btn:nth-child(4) .service-icon span {
  background: rgba(23, 162, 184, 0.1) !important;
  color: rgb(23, 162, 184) !important;
}

.new-way-sec .filter-btn:nth-child(5) .service-icon span {
  background: rgb(220, 53, 69, .1) !important;
  color: rgb(220, 53, 69) !important;
}

.new-way-sec .filter-btn:nth-child(6) .service-icon span {
  background: rgb(102, 16, 242, .1) !important;
  color: rgb(102, 16, 242) !important;
}

.new-way-sec .filter-btn:nth-child(7) .service-icon span {
  background: rgb(0, 0, 0, .1) !important;
  color: rgb(0, 0, 0) !important;
}

.new-way-sec .filter-btn:nth-child(8) .service-icon span {
  background: rgb(222, 92, 157, .1) !important;
  color: rgb(222, 92, 157) !important;
}

.new-way-sec .filter-btn:nth-child(9) .service-icon span {
  background: rgb(255, 205, 57, .1) !important;
  color: rgb(255, 205, 57) !important;
}

.new-way-sec .filter-btn:nth-child(10) .service-icon span {
  background: rgb(222, 92, 157, .1) !important;
  color: rgb(222, 92, 157) !important;
}

.new-way-sec .filter-btn:nth-child(11) .service-icon span {
  background: rgb(111, 66, 193, .1) !important;
  color: rgb(111, 66, 193) !important;
}

.new-way-sec .filter-btn:nth-child(12) .service-icon span {
  background: rgb(13, 110, 253, .1) !important;
  color: rgb(13, 110, 253) !important;
}

.service-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  line-height: 1.5em;
  font-weight: 500;
  margin-bottom: 8px;
  color: #000;
}

.services-area .view-all .service-pad .service-text h4 {
  font-size: 1.25rem;
}

.services-area .view-all .service-pad .right {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: #01579b;
  display: inline-block;
  /* margin: 15px auto; */
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 20px;
  text-align: center;
}

.services-area .view-all .service-pad {
  background: #dadfdd;
}

.services-area .shadow {
  transition: .3s all ease-in-out;
  box-shadow: rgb(0 0 0 / 05%) 0px 0.5rem 1rem !important;
}

.services-area .shadow:hover {

  box-shadow: rgb(0 0 0 / 15%) 0px 0.5rem 1rem !important;
}

.service-text p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5em;
  margin-bottom: 0px;
  color: #7a7a7a;
}

.service-pad {
  padding: 40px 30px;
  background: #fff;
}

.bg-blue {
  background: #f5f5f5;
  color: #01579b;
}

.bg-blue .service-text h4 {
  color: #01579b;
  font-weight: 600;
}

.py-80 {
  padding: 80px 0px;
}

.large-img {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}

.large-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.position-rel {
  position: relative;
}

.small-img {
  position: absolute;
  left: -45px;
  bottom: -25px;
}

.small-img img {
  width: 300px;
  border-radius: 15px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.choose-icon span {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f5f5f5 !important;
  display: inline-block;
  text-align: center;
  color: #157347 !important;
  font-size: 24px;
  line-height: 60px;
  transition: .3s all ease-in-out;
  box-shadow: rgba(60, 64, 67, 0.05) 0px 1px 2px 0px, rgba(60, 64, 67, 0.1) 0px 2px 6px 2px;
}

.choose-icon span:hover {
  box-shadow: rgba(60, 64, 67, 0.25) 0px 1px 2px 0px, rgba(60, 64, 67, 0.1) 0px 2px 6px 2px;
  background: #fff !important;
}

/* tabs eends here */


/* Recovery area starts */
.recovery-bx {
  background: #E0F6E2;
  padding: 15px 20px 20px 20px;
  border-radius: 15px;
  height: 100%;
  position: relative;
  min-height: 270px;
}

/* .recovery-bx:hover{
  box-shadow: rgba(60, 64, 67, 0.25) 0px 1px 2px 0px, rgba(60, 64, 67, 0.1) 0px 2px 6px 2px;
} */

.recovery-area .col-2:not(:first-child) .recovery-bx::before {
  content: " ";
  position: absolute;
  left: 0px;
  top: 30px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left-color: #fff;
}

.recovery-area .col-2:not(:last-child) .recovery-bx::after {
  content: " ";
  position: absolute;
  right: -20px;
  top: 30px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left-color: #E0F6E2;
}

.recovery-area .col-2:nth-child(2) .recovery-bx::after,
.recovery-area .col-2:nth-child(4) .recovery-bx::after {
  border-left-color: #e6eefa;
}

.recovery-title h5 {
  font-family: 'Inter', sans-serif;

  font-size: 1.15rem;
  line-height: 1.2em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.av-icon h4 {
  font-family: 'Inter', sans-serif;

  font-size: 1.05rem;
  line-height: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.recovery-title p {

  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  margin-bottom: 0px;
  color: #7a7a7a;
}

.av-txt p {

  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5em;
  margin-bottom: 0px;
  color: #7a7a7a;
}

.recovery-bx .icn {
  font-size: 42px;
  color: #5184f1;
  line-height: 48px;
}

.recovery-bx .num {
  font-size: 58px;
  font-weight: 500;
  line-height: 1.5em;
  margin-top: -15px;
  margin-bottom: 0px;
  color: #dfdede;
}

.recovery-area .col-2 {
  width: 20% !important;
  padding: 12px !important;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-70 {
  margin-bottom: 60px;
}

.bg-light-blue {
  background: #e6eefa;
}


/* Recovery area ends */



/* top tab starts */

.top-tab .nav .text-voil {
  width: 16.66% !important;
  height: 120px;
  border-radius: 0px !important;
  border: .2px solid rgb(240, 238, 238);
  color: #000;
  transition: all .3s ease-in-out;
}

.top-tab .nav .text-voil span i {
  font-size: 38px;
  margin-bottom: 10px;
  color: #000;
  position: relative;
}

.top-tab .nav .text-voil.active {
  background: #f5f5f5 !important;
  color: #000;
  position: relative;
}

.top-tab .nav .text-voil:hover {
  background: #f5f5f5 !important;
}

.top-tab .nav .text-voil:not(:last-child).active::after {
  content: ' ';
  height: 3px;
  background: #0071b3 !important;
  position: absolute;
  width: 100%;
  bottom: 0px;
  left: 0px;
}

/* #01579b */
/* #1565c0 */
/* #9fa8da */
.whatsapp {
  background: #f5f5f5 !important;
  color: #157347 !important;
}



.top-tab .nav .text-voil h6 {

  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 400;
  line-height: 1.5em;
  margin-bottom: 0px;
  color: #7a7a7a;
  text-transform: uppercase;
}

.whatsapp i,
.whatsapp h6 {
  color: rgb(21, 115, 71) !important;
}

.pt-80 {
  padding-top: 80px;
}
.mt-30 {
  margin-top: 30px;
}


@media(max-width: 991px) {

  .top-tab .nav .text-voil {
    /* width: 33.333% !important; */
    width: 30% !important;
    margin: 3px;
    padding: 2px;

  }

  .top-tab .nav .text-voil {
    /* width: 16.66% !important; */
    height: 100px;
  }

  .mail-box {
    max-width: 100%;
    background: rgb(255, 255, 255);
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
    padding: 15px;
    border-radius: 15px;
    position: relative;
    bottom: 20%;
    z-index: 2;
    margin: 15px;
    margin-bottom: 60px;
    left: 0px;
    /* left: 100px; */
  }

  .email-input {
    padding: 12px;
  }

  .email-btn {
    height: 50px;
  }

  .recovery-area .col-2 {
    width: 33.33% !important;
  }
}

@media(max-width: 767px) {

  .top-tab .nav .text-voil span i {
    font-size: 22px;
  }

  .top-tab .nav .text-voil h6 {


    font-size: 11px;

    line-height: 1.2em;

  }

  .recovery-area .col-2 {
    width: 50% !important;
  }

  .small-img {
    position: absolute;
    left: -5px;
    bottom: -25px;
  }

}

/* .top-tab .nav button:last-child{
  width: 20% !important;
} */

/* top tab ends */


/* footer starts */
footer {
  position: relative;
}

.footer-top-radius {
  height: 80px;
  left: 0;
  overflow: hidden;
  position: relative;
  /* position: absolute; */
  right: 0;
  top: 0;
  width: 100%;
}

.client-logo {
  background: #eff0f2;
  width: 100%;
  padding-bottom: 30px;
  /* box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px; */
}

.footer-top-radius::after {
  content: '';
  left: -50%;
  right: -50%;
  height: 700px;
  z-index: 1;
  top: 0;
  position: absolute;
  border-radius: 50% 50% 0 0;
  box-shadow: 0 0 110px 110px #fff;
}

.client-title {
  font-size: 1.15rem;
  color: #141414;
  width: 100%;
  text-align: center;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  /* margin-top: 65px; */
}
.client-logo-partner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.client-logo-partner .logos-img {
  width: 100%;
  height: 70px;
  
}

.client-logo-partner .logos-img img {
  width: 100%;
  height: 80%;
  object-fit: contain;
  margin: 0px 5px;
}


/* 
.client-logo-slider.owl-carousel .owl-nav button.owl-prev,
.client-logo-slider.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  background: #fff !important;

  border-radius: 50%;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 10px;
  width: 40px !important;
  height: 40px !important;
} */

/* .client-logo-slider.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: auto;
  bottom: -80%;
  left: 46%;
  transform: translate(-50%, 50%);
}

.client-logo-slider.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: auto;
  bottom: -80%;
  right: 42%;
  transform: translate(-50%, 50%);
}

.owl-carousel {
  position: relative;
} */

.main-title-3 p {
  color: rgb(122, 122, 122);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5em;
  margin-bottom: 0px;
}

.main-title-3 h2 {
  font-family: Gordita, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif;
  /* font-size: 32px; */
  line-height: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
}

/* new  */

.get-started {
  /* background: #614092; */
  /* background: rgb(219 213 213); */
  margin: 20px 0;
}

.contact-us-btn button {
  padding: 10px 20px;
  /* background: #000; */
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.5em;
  border-radius: 10px;
  text-decoration: none;
}

.contact-us-btn a:hover {
  color: #fff;
}

/* new */

.footer-middle {
  background: #edeef3;
  box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
}

.footer-text p{
  font-size: 15px;
}

.footer-bottom {
  background: #87868b;
}

.foot-logos img {
  margin: 10px 10px;
 
}

.footer-social a {
  width: 50px;
  height: 50px;
  display: inline-block;
  line-height: 50px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  font-size: 28px;
  color: #24283f;
}

.bottom-2 span {
  color: #fff;
  font-size: 14px;
}

.bottom-1 {
  color: #fff;
}

.bottom-1 a {
  color: #fff;
  text-decoration: none;
  margin: 0px 10px;
}

@media(max-width: 767px) {
  .footer-top-radius {
    height: 50px;
    margin-bottom: 30px;
  }
}

/* fotter ends */




/* modal starts*/
.modal-header .close {
  font-size: 36px;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0.01) !important;
  background-clip: padding-box;
  border: transparent !important;
  border-radius: 0.3rem;
  outline: 0;
}

.modal1 {
  background-image: url(../Images/bg-2.jpg) !important;
}

.modal2 {
  background-image: url(../Images/bg-1.jpg) !important;
}

.modal3 {
  background-image: url(../Images/bg-3.jpg) !important;
  background-position: center !important;
  background-size: cover;
}


.btn-close {
  box-sizing: content-box;
  width: 1em !important;
  height: 1em !important;
  padding: 0.1em 0.1em !important;
  color: #fff !important;
  font-size: 60px !important;
  background: rgba(0, 0, 0, 0.01) !important;
  box-shadow: 0 0 0 0 !important;


}

.modal-header {

  border-bottom: 0px solid rgba(0, 0, 0, 0.01) !important;

}

.img-centered {
  margin: 0 auto;
}

/* .fltt{
  color: #fff;
  
} */
.modal-body {
  padding: 30px 0px !important;
}

.list-inline {
  padding-left: 0;
  /* margin-left: -5px; */
  list-style: none;
}

.list-inline>li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
  color: #fff;
}

.list-inline li a {

  color: #fcda16;
  text-decoration: none;
}

.modal-body .item-details {
  margin: 30px 0;
}

.btn-default {
  color: #333 !important;
  background-color: #fff !important;
  border-color: #ccc !important;
}

.btn-default:hover {
  color: #333 !important;
  /* background-color: #fff !important; */
  /* border-color: #ccc !important; */
}



.fltt {
  overflow: hidden;
  /* height: 400px; */
  padding: 10px;
  width: 100%;
  background: #FFF;
  border-radius: 5px;
}

.fltt img {
  object-fit: cover;
  height: 400px;
}

.modal1 {
  background: rgb(0, 0, 0, .7) !important;
}

.modal-body .modal-input {
  width: 100%;
  height: 50px;
  padding: 10px 30px;
  border-radius: 10px;
  border: .5px solid rgb(25, 25, 25, .3);
}

.subscribe-btn {
  /* width: 205px; */
  background-color: #F54748;
  color: #fff;
  font-size: 14px;
  height: 50px;
  margin-left: 5px;
  /* line-height: 50px; */
  vertical-align: middle;
  padding: 12px 30px;
  border-radius: 25px;
  border: none;
  border: .5px solid #F54748;
  transition: .2s;
}


.subscribe-btn:hover {
  /* width: 205px; */
  background-color: #FFF;
  color: #F54748;

  border: .5px solid #F54748;
}

.login-head h3 {
  color: #191919;
  font-weight: 600;
  font-size: 23px;
  margin-bottom: 0px;
}

.login-head a {
  font-size: 14px;
  color: #F54748;
  text-decoration: none;
  font-weight: 400;
}

.line-divider {
  margin: 15px 0px;
  height: 3px;
  background-color: #191919;
  width: 40px;
}

.banner-boxes {
  max-width: 360px;
  padding-left: 10px;
}

.brdr {
  border-right: 1px solid#fff;
  border-top: 1px solid#fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  padding-top: 10px;
}

.brdr:first-child {
  border-left: 1px solid#fff;

}

.banner-box-1 h6 {
  color: #fff;
  font-size: 14px;

}

.banner-box-1 h6 span {
  color: #fff;
  font-size: 12px;

}

.banner-box-1 p {
  color: #fff;
  font-size: 12px;
  margin-bottom: 0px;
}

.px-50 {
  padding: 50px 100px !important;
}

.facebook-icon-span {
  width: 22px;
  margin-right: 14px;
  height: auto;
  display: inline-block;
}

.facebook-icon-span img {
  width: 100%;
  height: 100%;
}

.facebook-btn {
  background: #fff;
  color: #253B7C;
  border-radius: 7px;
  padding: 12px 10px;
  display: inline-block;
  width: 100%;
  /* padding-left: 50px; */
  font-size: 14px;
  border: 1px solid #B0B0B0;
  font-family: 'Samsung Sharp Sans Bold', sans-serif !important;
  text-align: start;
}

.login-link {
  text-decoration: underline !important;
  color: rgba(37, 59, 124, 1);
}

.login-link:hover {
  text-decoration: underline !important;
  color: rgba(37, 59, 124, .9);
}

.already-ac {
  font-size: 14px;
}

.small-verify {
  font-size: 10px;
}

.form-check-input:checked {
  background-color: #253B7C !important;
  border-color: #253B7C !important;
}

.point {
  cursor: pointer;
}

.underline-black {
  text-decoration: underline;
}


.sbmt-btn {
  width: 100px;
  height: 50px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 10px;
}

/* modal ends */

@media(max-width: 767px) {
  .client-logo-slider.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: auto;
    bottom: -80%;
    left: 36%;
    transform: translate(-50%, 50%);
  }

  .client-logo-slider.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: auto;
    bottom: -80%;
    right: 32%;
    transform: translate(-50%, 50%);
  }
}

/* Banner starts */

.banner {
  min-height: 70vh;
  position: relative;
  background: url("../Images/pexels-fauxels-3183185.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover
}

.banner-outsourcing {
  min-height: 70vh;
  position: relative;
  background: url("../Images/outsource-banner.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover
}

.banner-ourteam {
  min-height: 70vh;
  position: relative;
  background: url("../Images/ourteam.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover
}

.product-banner{
  min-height: 70vh;
  position: relative;
  background: url("../Images/our-product.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover
}
.service-banner{
  min-height: 70vh;
  position: relative;
  background: url("../Images/our-service.png");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover
}

#banner-animate{
  transition: all 1s;
  display: block;      
  transform: scale(1);
  
}
#banner-animate:hover{
transform: scale(1.1);
transition: all 1s;
}



.view-more-AI-banner{
  height: 500px;
  background: url("../Images/ai-product-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.view-more-software-banner{
  height: 500px;
  background: url("../Images/software-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.view-more-security-banner{
  height: 500px;
  background: url("../Images/it-security-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.view-more-transformation-banner{
  height: 500px;
  background: url("../Images/digital-transformation-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.view-more-cloud-banner{
  height: 500px;
  background: url("../Images/cloud-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.view-more-application-banner{
  height: 500px;
  background: url("../Images/application-product-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.inventory-overlay{
  z-index: 1;
  background: linear-gradient(180deg, rgba(43, 42, 42, 0), rgb(53, 53, 53));
  position: absolute;
  width: 353px;
  height: 40%;
  
}
.view-more-card{
  /* min-height: 60vh; */
  width: 80%;  
  position: relative;
  z-index: 1;  
  position: absolute;
  height: 200px;
  background-color: #3fd3f8;  
  margin-top: 300px;
  padding-top: 10px;
}
.view-more-section{
  background-color: #f9f9f9;;
  /* min-height: 60vh; */
  padding: 50px 90px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  
}
.view-more-section h5{
  color: #000;  
}
.view-more-section h1{
  color: #000;
  margin-top: 30px;
  font-size: 55px;
  font-weight: 700;
}
.view-more-section p{
  color: #000;
  margin-top: 40px;
  
}
.view-more-text{
  margin-top: 200px;
}
.view-more-list li{
  margin-top: 10px;
}


#grow-animate{  
  position: relative;
  margin: auto;
    
}
#grow-animate img{
    transition: all 1s;
    display: block;      
    transform: scale(1);    
}
#grow-animate:hover{
  transform: scale(1.1);
  transition: all 1s;
}

.banner-hidden{
  overflow: hidden;
}

.banner-overlay {
  z-index: 1;
  background: linear-gradient(180deg, rgba(53, 53, 53, 0), rgb(37, 37, 37));
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.banner-heading {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.banner-heading h1 {

  color: #c7000b;
  font-family: 'Inter', sans-serif;
  font-size: 54px;
  line-height: 1.2em;
  font-weight: 700;
  margin-bottom: 20px;

}

.banner-heading p {

  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.8em;
  font-weight: 100; 

}

/* Banner ends */

/* software area starts */
.left-side {
  float: left;
  padding-right: 30px;
  padding-left: 30px;

}

.left-side li {
  text-align: left;
  padding-left: 50px;
}

.software ul li {
  width: 100%;
  margin-bottom: 20px;
  border: #ddd solid 1px;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  font-size: 1.15rem;
  color: #000;
  font-weight: 500;
  line-height: 22px;
  height: 70px;
}

.software ul li i {
  position: absolute;
  z-index: 1;
  top: 0;
  background: #f5f5f5;
  width: 68px;
  height: 68px;

  text-align: center;
  line-height: 60px;
  border: #ddd solid 1px;
  border-radius: 50%;
}

.test.red {
  background: rgba(214, 41, 62, 0.1) !important;
  color: rgba(214, 41, 62) !important;
}

.test.orange {
  background: rgba(253, 126, 20, .1) !important;
  color: rgba(253, 126, 20) !important;
}

.test.purple {
  background: rgb(102, 16, 242, .1) !important;
  color: rgb(102, 16, 242) !important;
}

.test.green {
  background: rgb(21, 115, 71, .1) !important;
  color: rgb(21, 115, 71) !important;
}

.test.blue {
  background: rgba(23, 162, 184, 0.1) !important;
  color: rgb(23, 162, 184) !important;
}

.test.yellow {
  background: rgb(255, 205, 57, .1) !important;
  color: rgb(255, 205, 57) !important;
}

.software ul.left-side li i {
  left: -32px;
}


.software ul.left-side li {
  border-left: none;
}

.software ul.right-side li {
  border-right: none;
}

/* .software ul li span{
  margin-left: 10px;
  text-align: left;
} */

.software ul li .text {
  width: 100%;
  font-size: 0.9rem;
  color: #7a7a7a;
  font-weight: 500;
  line-height: 22px;
  font-family: 'Inter', sans-serif;
  
}

.software li {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
}

.software ul li a {
  text-decoration: none;
}

.right-side {
  float: right;
  padding-right: 30px;
  padding-left: 30px;

}

.right-side li {
  text-align: right;
  padding-right: 50px;
}

.software ul.right-side li i {
  right: -32px;
}

.start-btn {
  width: 180px;
  background: #146C43;
  color: #fff;
  border: none;
  border-radius: 10px;
  line-height: 60px;
  height: 60px;
  font-weight: 500;
  transition: .3s all ease-in-out;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.start-btn:hover {
  background: #0c492d;
  color: #fff;
}

@media(max-width: 991px) {
  .left-side {
    padding-right: 0px;
    float: unset;
    margin: 0px auto;
    max-width: 500px;
  }

  .right-side {
    padding-left: 0px;
    float: unset;
    margin: 0px auto;
    max-width: 500px;
  }
}

/* software area ends */


/* cards area starts */

.middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card-bx {
  cursor: pointer;
  width: 100%;
  height: 300px;
  position: relative;
}

.front,
.back {
  width: 100%;
  height: 300px;
  overflow: hidden;
  backface-visibility: hidden;
  position: absolute;
  transition: transform .6s linear;
}

.front img {
  height: 100%;
}

.front {
  transform: perspective(600px) rotateY(0deg);
}

.back {
  background: #f5f5f5;
  transform: perspective(600px) rotateY(180deg);
}

.back-content {
  /* color: #2c3e50; */
  text-align: center;
  width: 100%;
}

.sm {
  margin: 20px 0;
}

.sm a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  color: #2c3e50;
  font-size: 18px;
  transition: 0.4s;
  border-radius: 50%
}

.sm a:hover {
  background: #2c3e50;
  color: white;
}

.card-bx:hover>.front {
  transform: perspective(600px) rotateY(-180deg);
}

.card-bx:hover>.back {
  transform: perspective(600px) rotateY(0deg);
}

.card-img-head {
  position: absolute;
  top: 50%;
  z-index: 2;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card-img-head h5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  line-height: 1.2em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.front-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.front-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.back-content p {

  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.5em;
  margin-bottom: 0px;
  color: #7a7a7a;
}

.back-content h2 {
  font-family: 'Inter', sans-serif;

  font-size: 1.25rem;
  line-height: 1.2em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.front-overlay {
  z-index: 1;
  background: rgb(0, 0, 0, .3);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* cards area ends */


/* mobile tabs start */
.mobile-tabs ul li.left-tab {
  padding-right: 210px;
}

.mobile-tabs ul li {
  width: 50%;
  float: left;
  position: relative;
  margin-bottom: 0;
}

.mobile-tabs ul {
  margin: 0;
  padding: 0 !important;
  list-style: none;
}

.mobile-tabs ul {
  width: 100%;
  margin-top: 60px;
}

.mobile-content-bx {
  width: 100%;
  float: left;
  padding: 20px;
  position: relative;
  min-height: 124px;
  border: 2px solid transparent;
}

.mobile-tabs ul li.active .mobile-content-bx {
  border: 2px solid #c7000b !important;
  border-radius: 4px;
}

ul li.left-tab .mobile-details {
  padding-right: 70px;
  text-align: right;
}

.mobile-content-bx .mobile-details {
  width: 100%;
  float: left;
}


.mobile-tabs ul li.left-tab.active .mobile-content-bx:before {
  position: absolute;
  content: "";
  right: -30px;
  top: 50%;
  border: #c7000b 14px solid;
  z-index: 1;
  border-right: 14px solid transparent;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.mobile-tabs ul li.left-tab.active .mobile-content-bx:after {
  position: absolute;
  content: "";
  right: -28px;
  top: 50%;
  border: #ffff 14px solid;
  z-index: 1;
  border-right: 14px solid transparent;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 1;
}

ul li.left-tab .mobile-icon {
  right: 20px;
}

.mobile-content-bx .mobile-icon {
  position: absolute;
  top: 35px;
}

.mobile-tabs ul li.right-tab {
  padding-left: 210px;
}

ul li.right-tab .mobile-icon {
  left: 20px;
}

.mobile-content-bx .mobile-icon {
  position: absolute;
  top: 25px;
}

ul li.right-tab .mobile-details {
  padding-left: 70px;
  text-align: left;
}

.mobile-tabs ul li.right-tab.active .mobile-content-bx:before {
  position: absolute;
  content: "";
  left: -30px;
  top: 50%;
  border: #c7000b 14px solid;
  z-index: 1;
  border-left: 14px solid transparent;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.mobile-tabs ul li.right-tab.active .mobile-content-bx:after {
  position: absolute;
  content: "";
  left: -28px;
  top: 50%;
  border: #fff 14px solid;
  z-index: 1;
  border-left: 14px solid transparent;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 1;
}

.mobile-tabs .tab-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 322px;
  height: 635px;
  background: url(../Images/iphone-14.png) no-repeat top center;
  background-size: contain;
  margin: 0 auto;
  padding: 70px 45px 0 45px;
}

.mobile-tabs {
  position: relative;
}

.mobile-inner-content .blue-icon {
  width: 100%;
  text-align: center;
  float: middle;
  margin-bottom: 12px;
}

.mobile-inner-content .blue-icon img {
  width: 80px !important;
  display: inline-block !important;
}

.mobile-inner-content .blue-title {
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  /* color: #2b8bce; */
  color: #c7000b;
  line-height: 24px;
  float: left;
}

.mobile-inner-content .brd-title h6 {
  width: 100%;
  float: left;
  margin: 10px 0;
  padding: 0 0 5px 0;
  border-bottom: #9c9b9b solid 1px;
  font-size: 16px;
  font-weight: 700;
  color: #141414;
}

.mobile-inner-content ul li {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #666;
  line-height: 22px;
  font-family: 'Inter', sans-serif;
}

.mobile-details h6 {
  font-family: 'Inter', sans-serif;

  font-size: 1.25rem;
  line-height: 1.2em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.mobile-details p {

  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.5em;
  margin-bottom: 0px;
  color: #7a7a7a;
}

.side-tabs .side-btn {
  width: 100% !important;
  height: auto;
  display: block;
  margin-bottom: 5px;
  border: none;
  background: none;
  border-radius: 10px;
}

.side-tabs .side-btn .way-desc p {
  font-size: .9rem;
}

.side-btn h6 {
  font-family: 'Inter', sans-serif;

  font-size: 1.05rem;
  line-height: 1.2em;
  font-weight: 600;
  margin-bottom: 0px;
  color: #000;
}

.side-tabs .side-btn.active .way-desc p {
  color: #f5f5f5 !important;

}

.side-tabs .side-btn.active {
  background: #157347 !important;
  color: #fff !important;
}

.side-tabs .side-btn.active .choose-icon span {
  color: #157347 !important;
  background: #fff !important;
}

.side-btn.active h6 {
  color: #f5f5f5 !important;
}

.w-carousel {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  width: 322px;
  height: 635px;
  background: url(../Images/iphone-14.png) no-repeat top center;
  background-size: contain;
  margin: 0 auto;
  padding: 70px 45px 0 45px;
}

.w-carousel .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 60%;
  left: -70px;
  transform: translate(-50%, -50%);
}

.w-carousel .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 60%;
  right: -70px;
  transform: translate(50%, -50%);
}

@media(max-width: 400px) {
  .w-carousel .owl-carousel .owl-nav button.owl-prev {

    left: -50px;

  }

  .w-carousel .owl-carousel .owl-nav button.owl-next {

    right: -50px;

  }
}

@media(min-width: 992px) {
  .mobile-tabs-mob {
    display: none !important;
  }

  .mobile-tabs {
    display: block !important;
  }

}

@media(max-width: 991px) {
  .mobile-tabs-mob {
    display: block !important;
  }

  .mobile-tabs {
    display: none !important;
  }


}

@media(max-width: 991px) {
  .card-img-head {
    left: 55%;

  }

}

/* mobile tabs ends */

/* contact us starts */
.call-box {
  border-radius: 15px;
  height: 100%;
}

.call-icon span {
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3.2rem;
  text-align: center;
  font-size: 1.2rem;
  background: rgba(23, 162, 184, .1);
  border-radius: 50%;
  color: rgba(23, 162, 184);
  display: inline-block;
}

.choose-icon-blue span {
  background: rgba(23, 162, 184, .1) !important;
  color: rgba(23, 162, 184) !important;
}

.call-head h4 {
  font-family: 'Inter', sans-serif;

  font-size: 1.25rem;
  line-height: 1.2em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.call-head p {

  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.5em;
  margin-bottom: 15px;
  color: #7a7a7a;
}

.call-numbers a {

  font-family: 'Inter', sans-serif;
  font-weight: 500;

  text-decoration: none;
  display: inline-block;
  padding: 5px 10px;
  font-size: 16px;
  border-radius: 5px;
  margin: 0px 4px;
}

.call-numbers .num1 {
  color: #000;
  /* background-color: rgba(81, 67, 217, 0.1); */
}

.call-numbers .num2 {
  color: #0b0a12;
  /* background-color: #f5f5f6; */
}

.icon-red span,
.choose-icon-red span {
  background: rgba(214, 41, 62, 0.1) !important;
  color: rgba(214, 41, 62) !important;
}

.call-email a {
  color: #000 !important;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.call-whatsapp a {
  color: #000 !important;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.icon-yellow span,
.choose-icon-yellow span {
  background: rgba(253, 126, 20, .1) !important;
  color: rgba(253, 126, 20) !important;
}

.icon-green span {
  background: rgb(21, 115, 71, .1);
  color: rgb(21, 115, 71);
}

.contact-socials a {
  width: 36px;
  height: 36px;
  border-radius: 5px;

  display: inline-block;
  line-height: 36px;
}

.contact-socials .fb {
  background-color: #5d82d1;
  color: #fff;
}

.contact-socials .ig {
  background: #c22b72;
  color: #fff;
}

.contact-socials .tw {
  background-color: #40bff5;
  color: #fff;
}

.contact-socials .in {
  background-color: #238cc8;
  color: #fff;
}

.contact-form {
  background: rgba(245, 245, 246);
  border-radius: 15px;
  position: relative;
}

.form-control:focus {
  color: #0b0a12;
  background-color: #fff;
  border-color: rgba(81, 67, 217, 0.7) !important;
  outline: 0;
  /* -webkit-box-shadow: 0 0 0 0 rgba(var(--bs-primary), 0.25); */
  box-shadow: 0 0 0 0 rgba(#5143d9, 0.25);
  box-shadow: none !important;
}

.map {
  border-radius: 15px;
  overflow: hidden;
  height: 350px;
}

/* contact us ends */

/* career page starts */
.demand-btn {
  height: 150px;
  /* background: #f3f4f6 !important; */
  width: 19%;
  margin-right: 10px;
  position: relative;
  transition: all .3s ease-in-out !important;
}

.demand-btn h6 {
  text-align: start;
  margin-bottom: 5px;
  color: #000;
  font-size: 1.15rem;
  line-height: 1.2em;
  font-weight: 600;
  z-index: 3;
}

.demand-btn p {
  text-align: start;
  margin-bottom: 0px;
  z-index: 3;
  font-size: .95rem;
  font-weight: 500;
  /* line-height: 1.5em; */


  color: #7a7a7a;
}

.small-icon {
  position: absolute;
  top: 15px;
  right: 15px;
}

.small-icon svg {
  height: 30px;
  color: #0C222C;
  transition: right .3s ease-in !important;
}

.demand-btn.active h6,
.demand-btn.active p {
  color: #fff;
}

.demand-btn.active .small-icon {
  position: absolute;
  /* background: #0C222C; */
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 0;
}

.demand-btn:hover {
  background: #E8EAEA !important;
}

.demand-btn.active {
  background: #0C222C !important;
  border-radius: 5px !important;
}

.demand-btn.active .small-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100px;
  color: #7a7a7a;
}

.up-ar {
  background: #E8EAEA !important;
}

.up-ar svg {
  width: 40px;
  color: #0C222C;
}

.list-box {
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  transition: all .3s ease-in-out;
}

.list-icon {
  background: #f1f1f1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  margin-bottom: 5px;
}

.list-date p {
  font-size: .85rem;
  font-weight: 500;
  line-height: 1.5em;
  margin-bottom: 15px;
  color: #7a7a7a;
}

.list-icon img {
  width: 30px;
}

.list-title h6 {
  font-size: .9rem;
  line-height: 1.2em;
  font-weight: 600;
  margin-bottom: 5px;
}

.list-main-title h4 {
  margin-bottom: 8px;
  color: #000;
  font-size: 1.25rem;
  line-height: 1.2em;
  font-weight: 600;
}

.bottom-li-title p {
  margin-bottom: 20px;

  font-size: .85rem;
  /* font-weight: 400; */
  line-height: 1.5em;

  color: #7a7a7a;
}

.bottom-li-title h5 {
  font-size: 1.05rem;
  line-height: 1.2em;
  font-weight: 500 !important;
  margin-bottom: 10px;
}

.list-main-title span {

  border-radius: 50px;
  font-size: .75rem;
  font-weight: 500;
  padding: 2px 10px;
  margin-bottom: 30px;
  display: inline-block;
}

.list-main-title .red-txt {
  background: rgba(214, 41, 62, 0.1) !important;
  color: rgba(214, 41, 62) !important;
}

.list-main-title .green-txt {
  background: rgb(21, 115, 71, .1);
  color: rgb(21, 115, 71);
}

.bottom-li-btn a {
  width: 46%;
  border: .5px solid #0C222C;
  color: #0C222C;
  display: inline-block;
  border-radius: 5px;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
  line-height: 35px;
  height: 40px;
  font-size: .85rem;
}

.bottom-li-btn .btm-btn-2 {
  color: #fff;
  background: #0C222C;
}

.list-box:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  cursor: pointer;
}

.fastrack-bx {
  padding: 20px 30px;
}

.fastrack-img {

  height: 280px;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}

.fastrack-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-icon .lower-span {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: #f5f5f5 !important;
  display: inline-block;
  text-align: center;

  margin-bottom: -34px;
  transition: .3s all ease-in-out;
  /* box-shadow: rgba(60, 64, 67, 0.05) 0px 1px 2px 0px, rgba(60, 64, 67, 0.1) 0px 2px 6px 2px; */
}

.career-icon .career-icon-1 {
  color: #0C222C !important;
  font-size: 24px;
  bottom: -14px;
  display: inline-block;
  position: relative;
  /* line-height: 60px; */
}

.career-icon .career-icon-1 svg {
  height: 32px;
}

@media(max-width: 991px) {
  .demand-btn {
    width: 31%;
  }

}

@media(max-width: 767px) {
  .large-img {
    height: 180px;
  }

  .small-img img {
    width: 160px;
  }

  .main-title-2 p {
    font-size: 0.95rem !important;
  }

  .choose-icon span {
    width: 50px;
    height: 50px;
    border-radius: 50%;

    font-size: 24px;
    line-height: 50px;
  }

  .service-pad {
    padding: 20px 20px;
  }

  .service-text h4 {

    font-size: 1.05rem;
  }

  .recovery-title h5 {

    font-size: 1.05rem;
  }

  .recovery-title p {

    font-size: .95rem;
  }

  .way-desc p {
    font-size: 0.95rem !important;
  }

  .recovery-bx {
    min-height: auto;
  }

  .mb-50 {
    margin-bottom: 40px;
  }

  .why-choose.pt-80 {
    padding-top: 30px
  }

  .demand-btn {
    height: 120px;
    width: 30%;
    margin: 5px;
    padding: 0.5rem .5rem !important;
  }

  .demand-btn p {
    line-height: 1em;
    font-size: .75rem;
  }

  .up-ar svg {
    width: 20px;
  }

  .demand-btn h6 {

    font-size: 1.05rem;
    line-height: 1em;

  }

  .small-icon svg {
    height: 20px;
  }
}
@media(max-width: 1222px) {
  .view-more-section{  
    padding: 30px 60px;
  }
}

@media(max-width: 1080px) {

.view-more-card{
  width: 85%; 
}

.view-more-section{  
  padding: 30px 60px;
}

}

@media(max-width: 991px) {
  

  .view-more-section{
    padding: 40px 60px;
  }
  .view-more-card{
    width: 85%; 
  }
  .view-more-text{
  margin-top: 200px;
  }

}

@media(max-width: 997px) {
  .view-more-section{
    padding: 40px 60px;
  }
  
  .view-more-section h1{    
    font-size: 50px;
    font-weight: 700;
  }
  .view-more-section p{      
    margin-top: 30px;    
  }
  .view-more-text{
    margin-top: 200px;
  }
  }

@media(max-width: 767px) {
.view-more-section{      
  padding: 60px 45px;
  
}

.view-more-section h1{
  
  font-size: 40px;
  font-weight: 600;
}
.view-more-section p{      
  margin-top: 30px;
  
}
.view-more-text{
  margin-top: 150px;
}
}

@media(max-width: 730px) {
  .view-more-section{  
    padding: 20px 40px;
  }
  .view-more-card{
    width: 90%; 
  }
  .view-more-text{
  margin-top: 150px;
  }
}

@media(max-width: 698px) {
  .view-more-section{  
    padding: 20px 40px;
  }
  .view-more-card{
    width: 90%; 
  }
  .view-more-text{
  margin-top: 120px;
  }
}

@media(max-width: 560px) {
  .view-more-section{  
    padding: 15px 20px;
  }
  .view-more-card{
    width: 100%; 
  }
  .view-more-text{
  margin-top: 120px;
  }
  }

@media(max-width: 598px) {
  .view-more-section{      
    padding: 60px 40px;
    
  }
  
  .view-more-section h1{
    
    font-size: 35px;
    font-weight: 600;
  }
  .view-more-section p{      
    margin-top: 30px;
    
  }
  .view-more-text{
    margin-top: 120px;
  }
  }

  @media(max-width: 490px) {

  .view-more-section{  
  padding: 15px 10px;
  }

  .view-more-card{
    width: 100%; 
  }

  .view-more-text{
  margin-top: 150px;
  }

  
}

@media(max-width: 420px) {

  .view-more-section{  
  padding: 15px 15px;
  }

  .view-more-text{
  margin-top: 150px;
  }

}

@media(max-width: 350px) {

  .view-more-section{  
  padding: 15px 10px;
  }

  .view-more-text{
  margin-top: 150px;
  }

}

@media(max-width: 325px) {

  .view-more-section{  
  padding: 15px 10px;
  }

  .view-more-text{
  margin-top: 150px;
  }

}



.mobile-inner-content ul li:nth-child(1) .fa-circle {
  color: #0071b3;
}

.mobile-inner-content ul li:nth-child(2) .fa-circle {
  color: rgb(21, 115, 71)
}

.mobile-inner-content ul li:nth-child(3) .fa-circle {
  color: rgba(253, 126, 20)
}

.mobile-inner-content ul li:nth-child(4) .fa-circle {
  color: rgb(21, 115, 71)
}

.mobile-inner-content ul li:nth-child(5) .fa-circle {
  color: rgb(21, 115, 71)
}

.mobile-inner-content ul li:nth-child(6) .fa-circle {
  color: rgb(102, 16, 242)
}

/* career page ends */

/* products page starts */
.offers-bx {
  width: 100%;
}

.offers-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.offers-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offers-txt {
  background: #fff;
  border-radius: 16px;
  margin-top: -70px;
  z-index: 5;
  position: relative;
}

.offers-txt h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.2em;
  font-weight: 700;
  margin-bottom: 5px;
}

.offers-carousel .item {
  padding: 25px 15px;
}

.offers-txt p {
  color: rgb(122, 122, 122);
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  line-height: 1.5em;
  margin-bottom: 10px;

}

.offers-txt a {
  /* width: 180px; */
  /* background-color: rgb(25, 135, 84); */
  background: #157347;
  color: #fff;
  padding: 5px 20px;
  border: none;
  font-size: .8rem;
  line-height: 1.5rem;
  border-radius: 10px;
  transition: .3s all ease-in-out;
  display: inline-block;
  text-decoration: none;
}

.offers-txt a:hover {
  
  background: #fff;
  color: #c7000b;
  border: 2px solid #157347;

}

.offers-carousel.owl-carousel .owl-nav.disabled {
  display: block;
}

.offers-carousel.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 40%;
  left: 25px;
  transform: translate(-50%, -50%);
}

.offers-carousel.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 40%;
  right: 0px;
  transform: translate(50%, -50%);
}

.view-more-services{
  background-color: #faf6f6;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 12px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.visits-bx {
  background: rgba(81, 67, 217, .1);
  border-radius: 16px;
}

.products-num h1 {
  font-family: 'Inter', sans-serif;
  font-size: 1.9rem;
  /* line-height: 1.2em; */
  font-weight: 700;
  margin-bottom: 5px;
}

.products-head p {
  color: rgb(122, 122, 122);
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5em;
  margin-bottom: 10px;
}

.visits-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 16px;
}

.visits-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visits-list ul, .facility-list ul {
  padding-left: 0px;
  list-style: none;
}

.visits-list ul li {
  color: rgb(122, 122, 122);
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5em;
  margin-bottom: 20px;
}

.facility-list ul li{
  color: rgb(122, 122, 122);
  font-family: 'Inter', sans-serif;
  font-size: 1.0rem;
  font-weight: 400;
  line-height: 1.5em;
  margin-bottom: 10px;
}
.facility-list ul li i{
  color: rgba(81,67, 217);
  /* color: #c7000b; */
  margin-right: 5px;
}
.visits-list ul li svg {
  margin-right: 15px;
  width: 16px;
  height: 16px;
}

.visits-list ul li:nth-child(1) svg {
  color: rgba(23, 162, 184);
}

.visits-list ul li:nth-child(2) svg {
  color: rgba(247, 195, 46);
}

.visits-list ul li:nth-child(3) svg {
  color: rgba(12, 188, 135);
}

.visits-list ul li:nth-child(4) svg {
  color: rgba(214, 41, 62);
}

.visits-list ul li:nth-child(5) svg {
  color: rgba(253, 126, 20);
}
.facility-img{
  width: 100%;
  height: 340px;
  overflow: hidden;
  border-radius: 15px;
}
.facility-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facility-txt p {
  color: rgb(122, 122, 122);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.5em;
  margin-bottom: 10px;
}
.facility-txt h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  /* line-height: 1.2em; */
  font-weight: 700;
  margin-bottom: 5px;
}

.facility-carousel.owl-carousel .owl-nav button.owl-prev,
.facility-carousel.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  backdrop-filter: blur(3px);
  background: rgba(0, 0, 0, 0.4) !important;
color: #fff;
  border-radius: 50%;
  position: relative;
  
  width: 50px !important;
  height: 50px !important;
}
.facility-carousel.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(-50%, -50%);
}

.facility-carousel.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(50%, -50%);
}
    /* faq starts */
    .accordion-button:not(.collapsed){
      background:#198754 !important;
      color: #fff !important;
  }
  .accordion-button:not(.collapsed)::after {
      background-image: url(../Images/download.svg) !important;
  }
  
  .accordion-item{
      box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  }
  .accordion-button{
    
      background: #fff !important;
      outline: 0!important;
      font-weight: 600;
      font-size: 18px;
      font-weight: 600;
      color: #000 !important;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      text-decoration: none;
      border: none !important;
  }
  .accordion-button:focus {
      
      box-shadow: none !important;
  }
  .card-body{
      border-top: 1px solid #e9e9e9;
      font-size: 16px;
      padding: 30px 40px 30px 20px;
      font-family: 'Inter', sans-serif;
      color: #7a7a7a;

  }
  .accordion-button::after {
      flex-shrink: 0;
      width: 1.2rem !important;
      height: 1.2rem !important;
      margin-left: auto;
      content: "";
      background-image: url(../Images/download2.svg) !important;
  }



/* products page ends */