/*breadcrumb section css*/
.breadcrumb-list {
  font-size: 15px;
  line-height: normal;
  margin: 5px -15px 10px;
  text-align: center;
}

.breadcrumb-list li {
  position: relative;
  padding: 0;
  display: inline-block;
  text-transform: capitalize;
}

.breadcrumb-content li+li::before {
  content: "\f4f9";
  font-family: "tabler-icons" !important;
  padding-right: 3px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
}

.breadcrumb-section {
  width: 100%;
  position: relative;
  z-index: 2;
  height: auto;
  display: block;
  background-size: 100%;
  background-color: var(--bs-secondary);
}


.breadcrumb-section:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4960a3;
  opacity: 0.7;
  z-index: -1;
  transition: var(--bs-transition);
  -webkit-transition: var(--bs-transition);
  -moz-transition: var(--bs-transition);
  -ms-transition: var(--bs-transition);
  -o-transition: var(--bs-transition);
}

.candidate_card .view-profile_btn .btn{
  width: max-content;
}

.candidate_card .candidate_info li{
  margin-bottom: 6px;
  margin-right: 15px;
}

@media (max-width: 576px) {

  .candidate_card .candidate_innerbox{
    flex-wrap: wrap;
  }

  .candidate_card .candidate_content{
    flex-wrap: wrap;
  }

}




/* Job Post CSS */
/* .job_card .view-profile_btn .btn{
  width: max-content;
}

.job_card .job_list li{
  margin-bottom: 6px;
  margin-right: 15px
}

.job_card .job_logo{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  min-width: 55px;
  height: 55px;
  background: #f6f9fb;
  border-radius: 0.4rem;
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.job_card .job_logo img{
  max-width: 40px;
  height: auto;
}

.job_card .job_vacancy .evacancy-badge{
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0px;
  color: #2a3547;
  border-radius: 7px;
}

.job_innerbox ul.job_list{
  display: grid;
  grid-template-columns: repeat(2, auto);
  margin-bottom: 20px;
}

.job_innerbox .view-profile_btn{
  display: flex;
  align-items: center;
  gap: 15px;
}


.job_card .job_heading{
  gap: 20px;
} 


@media (max-width: 576px) {

  .job_card .job_innerbox{
    flex-wrap: wrap;
  }

  .job_card .job_content{
    flex-wrap: wrap;
  }

  .job_innerbox ul.job_list{
    display: grid;
    grid-template-columns: repeat(1, 0.5fr);
  }
  
  .job_innerbox .view-profile_btn{
    flex-wrap: wrap;
  }

} */


/*LANDING PAGE CSS START================================

======================================================*/

.rounded-full {
  border-radius: 9999px;
}

img, video {
    max-width: 100%;
    height: auto;
}

img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
}

.mouse-canvas{
  background-color: transparent !important;
  pointer-events: none;
  position: fixed;
  top: 0px;
  z-index: 9999999999999;
  height: 100%;
  max-height: 100vh;
  width: 100%;
  max-width: 100vw;
}

.theme-content h1.title{
  color: rgb(93 135 255);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.theme-content h2.sub-title{
  color: rgb(14 25 30 / 1);
  line-height: 45px;
  font-weight: 900;
  margin-top: 18px;
  font-size: 1.875rem;
}

.theme-content p.dec-text{
  color: rgb(91 91 91 / 1);
  font-size: 1.125rem;
  line-height: 1.75rem;
  max-width: 545px;
  margin-top: 1.75rem;
}

.padding-top{
  padding-top: 60px;
}

.defoult-bg{
  background: rgba(0246, 249, 252, 1);
}

.padding-bottom{
  padding-bottom: 60px;
}

.hero-section {
  padding-top: 60px;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-btn{
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 125px;
  border: 2px solid rgb(93 135 255 / 1);
  background-color: transparent;
  font-size: 16px;
  font-weight: 700;
  line-height: 15px;
  color: #fff;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  margin: auto;
  text-transform: capitalize;
  padding: 18px 38px;
}

.page-btn::after {
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  height: 100%;
  width: 100%;
  background-color: rgb(93 135 255 / 1);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  content: '';
  transition-duration: 300ms;
}

.page-btn::before {
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  height: 100%;
  width: 100%;
  background-color: rgb(93 135 255 / 0.5);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  content: '';
  transition-delay: 200ms;
  transition-duration: 300ms;
}

.page-btn i{
  font-size: 20px;
}

.page-btn span{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.page-btn:hover {
  color: #000;
}

.page-btn:hover::before {
    content: '';
    top: -100%;
}

.page-btn:hover::after {
    content: '';
    top: -100%;
}

.navbar .page-btn, .offcanvas-body .navbar-nav .page-btn{
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
}



.hero-content h1,
.hero-content h2 {
  --tw-text-opacity: 1;
  color: rgb(14 25 30 / var(--tw-text-opacity));
  font-size: 36px;
  line-height: 40px;
}

.hero-content p {
  color: rgb(91 91 91 / 1);
  line-height: 30px;
  margin-bottom: 1.75rem;
  font-size: 22px;
}

.hero-circle {
  padding-top: 90px;
}

.hero-circle .circle-box {
  z-index: 0;
  width: 80vw;
  height: 80vw;
  max-width: 1100px;
  max-height: 1100px;
  top: 86px;
  aspect-ratio: 1 / 1;
}

.hero-circle .circle-box:nth-child(2) {
  --tw-rotate: 45deg;
  transform: translate(0, 0) rotate(45deg) skewX(0) skewY(0) scaleX(1) scaleY(1);
  border-color: transparent !important;
}

.hero-circle .circle-box .hero-bgshap {
  position: relative;
  --tw-bg-opacity: 1;
  background-color: #5d87ff;
  border: 12px solid #ffffff;
  aspect-ratio: 1 / 1;
  max-width: 607px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.hero-circle .circle-box .hero-bgshap:before{
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 100%;
  content: '';
  border: 1px solid #012878;
}

.hero-circle .hero-fremcircle {
  animation: fRotate 50s linear infinite;
}

.hero-circle .frem-icon img {
  animation: fRotate-reverse 50s linear infinite;
  width: 48px;
}

.hero-circle .frem-icon:first-child {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-circle .frem-icon:nth-child(2) {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

.hero-circle .frem-icon:nth-child(3) {
  bottom: 0;
  right: 50%;
  transform: translate(50%, 50%);
}

.hero-circle .frem-icon:nth-child(4) {
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
}

.hero-circle .frem-icon:nth-child(5) {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-circle .frem-icon:nth-child(6) {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

.hero-circle .frem-icon:nth-child(7) {
  bottom: 0;
  right: 50%;
  transform: translate(50%, 50%);
}

.hero-circle .frem-icon:nth-child(8) {
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
}

@keyframes fRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes fRotate-reverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

.hero-circle .chowkidar-img {
  width: 200px;
  z-index: 10;
/*  border-bottom: 1px solid #5d87ff;*/
}


.wrapper-video {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0px 0px 60px 0px #0000000D;
  border: 1px solid rgb(245 245 245 / 1);
}


/*future section css*/
.future-item{
  overflow: hidden;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0px 0px 60px 0px #0000000D;
  border: 1px solid rgb(245 245 245 / 1);
  position: relative;
  border-radius: 20px;
}

.future-item:before, .future-item:after {
  display: block;
  content: '';
  position: absolute;
  width: 0px;
  height: 0px;
  border-width: 0;
  border-style: solid;
  border-color: inherit;
  z-index: 1;
  -webkit-transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
  border-color: #5d87ff;
  background-color: #5d87ff;
}

.future-item:before {
  right: 0;
  bottom: 0;
}

.future-item:after {
  top: 0;
  left: 0;
}

.future-item:hover:before, .future-item:focus-within:before, .future-item:hover:after, .future-item:focus-within:after {
    width: 100%;
    height: 100%;
}

.future-item .future-inner{
  padding: 30px;
  background-color: rgb(255 255 255 / 1);
  border-radius: 18px;
  margin: 1px;
  z-index: 10;
  position: relative;
}

.future-item .future-shap{
  position: absolute;
  z-index: -1;
  top: 30px;
  right: 0px;
}

.future-item .future-iconbox{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  min-width: 100px;
  background-color: #f4f4f4;
  border-radius: 100%;
  margin-bottom: 15px;
}

.future-item .future-icon{
  width: 60px;
  height: 60px;
  aspect-ratio: 1 / 1;
}

.future-item h1{
  color: rgb(14 25 30 / 1);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 10px;
}
.future-item p{
  color: rgb(91 91 91 / 1);
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 10px;
}

.future-item a.more-btn{
  color: #5d87ff;
  font-weight: 700;
  font-size: 1rem;
    line-height: 1.5rem;
    gap: 0.625rem;
    align-items: center;
    width: fit-content;
    height: fit-content;
    display: flex;
    position: relative;

}

.future-item a.more-btn::before{
  content: '';
  position: absolute;
  display: block;
  width: 0%;
  height: 100%;
  transform-origin: right;
  border-bottom: 1px solid;
  border-color: #5d87ff;
  transition: all 300ms cubic-bezier(0, 0, 0.2, 1);
}

.future-item a.more-btn:hover::before{
  width: 100%;
  transform-origin: left;
  border-bottom-width: 1px;
  border-color: #5d87ff;
  transition: all 300ms cubic-bezier(0, 0, 0.2, 1);
  transform: translate(1, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

.future-item a.more-btn i{
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
  display: block;
  vertical-align: middle;
  font-size: 20px;

}

/*about section start*/

.about-left{
  background-color: #fff !important;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  width: 100%;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0px 0px 60px 0px #0000000D;
  border: 1px solid rgb(245 245 245 / 1);
}

.about-right-box{
  padding-top: 4rem;
}

.about-right-box ul{
  color: rgb(14 25 30 / 1);
  line-height: 30px;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.about-right-box ul li{
  height: fit-content;
}

.about-right-box ul li i{
  color: #FC0012;
  font-size: 16px;
}


/*FAQ section start*/

.faq-right .accordion-flush {
  box-shadow: none;
  background: transparent;
  border: none!important;
}

.faq-right .accordion-flush .accordion-item:not(:last-child) {
  margin-bottom: 25px;
}

.faq-right .accordion-flush .accordion-item .accordion-header .accordion-button{
  background-color: rgb(228 235 255) !important;
  padding: 1.25rem;
  border: 2px solid rgb(14 25 30 / 1);
  border-radius: 10px;
  align-items: center;
  display: flex;
  height: fit-content;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: rgb(14 25 30 / 1);
  flex: 1 1 0%;
}

.faq-right .accordion-flush .accordion-item {
  border: 0;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0px 0px 60px 0px #0000000D;
  background-color: rgb(255 255 255 / 1);
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.faq-right .accordion-flush .accordion-item .accordion-body{
  padding: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: rgb(91 91 91 / 1);
  background-color: rgb(255 255 255 / 1);
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.faq-right .accordion-flush .accordion-button::after {
  content: "\eb0b";
  font-family: "tabler-icons" !important;
  background-color: #5d87ff;
  color: #fff;
  padding: 10px;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: none !important;
}

.faq-right .accordion-flush .accordion-button:not(.collapsed)::after {
  content: "\eaf2";
  transform: none;
}
/* FAQ section end*/

/* Mobile screen section start*/

.mobilescreen-section .mobile-view{
  width: 100%;
  height: auto;
  display: flex;
}

.mobilescreen-section .mobile-view img{
    position: relative;
    max-width: 500px;
    margin: auto;
    width: 100%;
    height: auto;
    -webkit-animation: jumpping 5s infinite linear;
    animation: jumpping 5s infinite linear;
}


@-webkit-keyframes jumpping {
  0%,100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  40% {
    -webkit-transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0));
    transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0))
  }
}

@keyframes jumpping {
  0%,100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  40% {
    -webkit-transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0));
    transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0))
  }
}




/* Mobile screen section end*/

/* Work section start*/

.work-section .theme-content{
  text-align: center;
  margin-bottom: 60px;
}

.work-section .theme-content p.dec-text {
   max-width: 100%; 
}

.work-item{
  position: relative;
  border-radius: 20px;
  text-align: center;
}


.work-item .work-inner{
  padding-top: 30px;
  border-radius: 18px;
  z-index: 10;
  position: relative;
}

.work-item .work-number{
  position: absolute;
  z-index: -1;
  line-height: 170px;
  left: 0;
  top: unset;
  bottom: 0px;
  right: 0;
  font-size: 170px;
  color: #f4f7ff;
  font-weight: 600;
}

.work-item .work-icon{
  position: relative;
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 80px;
  margin: auto;
  aspect-ratio: 1 / 1;
  margin-bottom: 30px;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0px 0px 60px 0px #0000000D;
  border: 1px solid rgb(245 245 245 / 1);
}

.work-item .work-icon img{
  width: 80px;
  height: 80px;
}

.work-item .work-icon i{
  position: absolute;
  height: 25px;
  width: 25px;
  display: inline-block;
  background: #5d87ff;
  color: #ffffff;
  line-height: 25px;
  border-radius: 50%;
  top: 8px;
  right: 8px;
  font-size: 16px;
}

.work-item h1{
  color: rgb(14 25 30 / 1);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 1.25rem;
}
.work-item p{
  color: rgb(91 91 91 / 1);
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 0;
}

/* Work section end*/

/* Service section start*/

.service-section .theme-content{
  text-align: center;
  margin-bottom: 60px;
}

.service-section .theme-content p.dec-text {
   max-width: 100%; 
}

.service-item{
  overflow: hidden;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0px 0px 60px 0px #0000000D;
  border: 1px solid rgb(245 245 245 / 1);
  position: relative;
  border-radius: 20px;
}

.service-item .service-inner{
  padding: 30px;
  background-color: rgb(255 255 255 / 1);
  border-radius: 18px;
  margin: 1px;
  z-index: 10;
  position: relative;
}

.service-item .service-shap {
  position: absolute;
  z-index: -1;
  top: 30px;
  right: 0px;
}

.service-item .service-inner .service-heading{
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-item .service-inner .service-heading{
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.service-item .service-inner .service-heading div{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  min-width: 100px;
  background-color: #f4f4f4;
  border-radius: 100%;
}

.service-item .service-inner .service-heading div img{
  width: 60px;
  height: 60px;
}

.service-item .service-inner .service-heading h4{
  color: rgb(14 25 30 / 1);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 0;
}

.service-item .service-inner .sirvice-dec{
  color: rgb(91 91 91 / 1);
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 0;
}

.service-item:before, .service-item:after {
  display: block;
  content: '';
  position: absolute;
  width: 0px;
  height: 0px;
  border-width: 0;
  border-style: solid;
  border-color: inherit;
  z-index: 1;
  -webkit-transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
  border-color: #5d87ff;
  background-color: #5d87ff;
}

.service-item:before {
  right: 0;
  bottom: 0;
}

.service-item:after {
  top: 0;
  left: 0;
}

.service-item:hover:before, .service-item:focus-within:before, .service-item:hover:after, .service-item:focus-within:after {
    width: 100%;
    height: 100%;
}





/* Service section end*/

/*contact section start*/
.contact-section .contact-box{
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0px 0px 60px 0px #0000000D;
  border-radius: 20px;
  margin-top: 60px;
  padding: 40px;
}

.contact-section .theme-content{
  text-align: center;
  margin-bottom: 60px;
}

.contact-section .theme-content p.dec-text {
   max-width: 100%; 
}

.contact-section .contact-img {
  background-color: #e4ebff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-section  .contact-form{
  padding: 10px 10px;
}

.contact-section .contact-form .form-control{
  border-width: 2px;
  padding: 18px 16px;
  border-radius: 20px;
  font-size: 18px;
}

.contact-section .contact-form .form-control::placeholder{
  font-size: 18px;
  line-height: 0;
}

.contact-section .contact-form .form-control[type=text],
.contact-section .contact-form .form-control[type=email],
.contact-section .contact-form .form-control[type=password]{
  font-size: 18px;
  line-height: 0;
}

.contact-section .contact-form .page-btn{
  padding: 18px 16px;
  width: 100%;
}

/*contact section end*/

/*testimonials section start*/

.review-section{
position: relative;
}

.review-section .review-card .auother-content img{
  width: 40px;
  height: 40px;
}

.review-section .theme-content{
  text-align: center;
  margin-bottom: 60px;
}

.review-section .theme-content p.dec-text {
   max-width: 100%; 
}
/*testimonials section end*/


/*footer start*/

.footer-section{
  position: relative;
  padding-top: 2.5rem;
  width: 100%;
  background-color: rgb(14 25 30 / 1);

}

.footer-text .logo img {
  width: 200px;
  height: auto;
}
.footer-text p.text {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-top: 25px;
  /*margin-bottom: 25px;*/
  margin-bottom: 0;
}


.footer-title {
  font-weight: 700;
  color: rgb(255 255 255 / 1);
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 35px;
}

.social-link{
    display: flex;
    align-items: center;
    gap: 20px;
    display: none!important;
}

.social-link a{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5d87ff;
  border: 2px solid #5d87ff;
  border-radius: 5px;
  overflow: hidden;
  width: 36px;
  height: 36px;
  background: #e4ebff;
  font-size: 18px;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link a i{
    z-index: 1;
}

.social-link a::before{
    content:'';
    transition-duration: 300ms;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #5d87ff;
    transform-origin: right;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    position: absolute;
    transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(0) scaleY(1);
}

.social-link a:hover::before{
  transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
  transform-origin: left;
}

.social-link a:hover{
  color: #fff;
}

.footer-categories ul {
  margin-bottom: 0;
}

.footer-categories ul li:first-child a{
  padding-top: 0;

}

.footer-categories ul li a{
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  gap: 0.25rem;
  align-items: center;
  display: flex;

}

.footer-categories ul li a i{
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(0, 0.7rem) rotate(-90deg) skewX(0) skewY(0) scaleX(1) scaleY(0);
  transform-origin: top;

}

.footer-categories ul li a span{
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-1.4rem, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

.footer-categories ul li a:hover {
  color: #5d87ff;
}

.footer-categories ul li a:hover i{
  transform: translate(-0.7rem, 0.7rem) rotate(-90deg) skewX(0) skewY(0) scaleX(1) scaleY(1.25);
}

.footer-categories ul li a:hover span{
  transform: translate(0.25rem, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

.footer-contact  ul{
    margin-bottom: 0;
}

.footer-contact  ul li:not(:first-child){
 margin-top: 20px;
}

.footer-contact  ul li a{
  display: flex;
  align-items: flex-start;
  color: #fff;
  gap: 20px;
}

.footer-contact  ul li a i{
  font-size: 20px;
  color: #5d87ff;
}

.footer-contact  ul li a div h2{
  color: rgb(255 255 255 / 0.7);
  font-size: 1.125rem;
  line-height: 18px;
  padding-bottom: 0.5rem;
}

.footer-contact  ul li a div p{
  font-size: 1rem;
  line-height: 1.75rem;
  color: #fff;
  margin-bottom: 0;
}

/*.play-store a{
  display: inline-block;
  padding: 2px 10px;
  background-color: #e4ebff;
  border: 2px solid #5d87ff;
  border-radius: 10px;
}*/

.play-store a{
  display: inline-block;
  
}

.play-store a img{
  width: 225px;
  height: auto;
}

.footer-copyright .copyright-text{
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #fff;
}

.footer-copyright .copyright-text a{
  color: #5d87ff;
}

.footer-copyright .copyright-container ul{
  text-align: right !important;
  margin-bottom: 0;
}

.footer-copyright .copyright-container ul li{
  display: inline-block;
  margin-left: 10px;
}


.footer-copyright{
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 80px;
  border-top: 1px solid rgb(26 36 41 / 1);
}

.copyright-container ul li a{
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.75rem;
  transition:all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-copyright .copyright-container ul li:first-child a{
  border-right: 2px solid rgb(98 98 98);
  padding-right: 10px; 
}

.copyright-container ul li a:hover{
  color: #5d87ff;
}

/*responsive css*/
/*sm-----*/
@media (min-width: 640px) {
  .hero-circle .frem-icon img {
    width: 100%;
  }

  .hero-circle .chowkidar-img {
    width: 300px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 3.75rem;
    line-height: 1;
  }

  .theme-content h2.sub-title{
    font-size: 40px;
  }

}

/*md-----*/
@media (min-width: 768px) {
  .about-section .row{
    flex-wrap: nowrap!important;
  }

  .about-section .row:not(:last-child){
    margin-bottom: 120px;
  }

  .about-right-box {
    padding-top: 0rem;
  }

  .work-section .work-item:after {
    content: "";
    position: absolute;
    top: 0;
    right: -120px;
    width: 192px;
    height: 104px;
  }

}

/*lg------*/
@media (min-width: 1024px) {
  .hero-content h1,
  .hero-content h2 {
    font-size: 70px;
    line-height: 75px;
    margin-bottom: 20px;
  }

  .hero-circle .circle-box {
    width: 90vw;
    height: 90vw;
  }

  .hero-circle .circle-box .hero-bgshap {
    width: 70vw;
  }

  .hero-circle .chowkidar-img {
    width: 472px;
  }

  .padding-top{
    padding-top: 100px;
  }

  .padding-bottom{
    padding-bottom: 100px;
  }

  .mouse-canvas{
    display: block;
  }

  .footer-section{
    padding-top: 90px;
  }

  .work-section .col:nth-child(even) .work-item:after {
    transform: rotate(-50deg);
    top: -110px;
    right: -95px;
  }

  .work-section .col:last-child .work-item:after {
    display: none;
  }

  .work-section .col:nth-child(even) {
    margin-top: 8.25rem;
  }

}

/*xl-----*/

@media (max-width: 1399px) {
  .wrapper-video iframe{
    height: 503px;
  }
}

@media (max-width: 1299px) {
  .wrapper-video iframe{
    height: 418px;
  }
}

/*@media (max-width: 1024px) {
  .wrapper-video iframe{
    height: 420px;
  }
}*/

@media (max-width: 991px) {

  .work-section .col:nth-child(even) .work-item:after {
    display: none;
  }

  .work-section .work-item:after {
    top: -15px;
    right: -111px;
    transform: rotate(-22deg);
  }

  .wrapper-video iframe{
    height: 376px;
  }

}


@media (max-width: 767px) {
  .colorder-md-1{
    order: 1!important;
  }

  .wrapper-video.domo-contect::before,.wrapper-video.domo-contect::after {
    display: none;
  }

  .wrapper-video iframe{
    height: 272px;
  }

}

@media (max-width: 425px) {
  .wrapper-video iframe{
    height: 208px;
  }

}

@media (max-width: 375px) {
  .wrapper-video iframe{
    height: 180px;
  }

}


/*LANDING PAGE CSS END================================

======================================================*/

.feature-detail h2{
  color: rgb(14 25 30 / 1);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.5rem;
  margin-bottom: 0px;
}

.feature-detail h4{
  color: rgb(14 25 30 / 1);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2.5rem;
  margin-bottom: 10px;
}

.feature-detail h5{
  color: rgb(14 25 30 / 1);
  font-weight: 600;
  font-size: 18px;
  line-height: 2rem;
  margin-bottom: 10px;
}

.feature-detail ul li{
  color: #5a6a85;
  font-size: 1.125rem;
  line-height: 1.75rem;
}


.feature-detail p{
  color: rgb(91 91 91 / 1);
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 10px;
}


/*===== Scrolling Up =====*/

.scrollingUp {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background-color: #5d87ff;
    color: #fff;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    transition: .9s;
    border-radius: 40px;
    font-size: 25px;
    border: none;
    overflow: hidden;
    z-index: 5;
    text-decoration: none;
    visibility: hidden;
    opacity: 0;
}

.scrollingUp.is-active {
  visibility: visible;
  opacity: 1;
}

.header {
  position: relative;
  width: 100%;
  top: unset;
  left: unset;
  z-index: 99;
  background-color: var(--bs-white);
  transition: unset;
  animation: unset;
}
.header.fixed-header {
  position: relative;
  top: unset;
  left: unset;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 9px 17.5px;
}

.is-sticky-menu {
  position: fixed!important;
  top: -1px!important;
  left: 0!important;
  right: 0!important;
  width: 100%;
  background: #fff;
  z-index: 999;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  -webkit-animation: 1s ease-in-out 0s normal none 1 running fadeInDown;
  animation: 1s ease-in-out 0s normal none 1 running fadeInDown;
}