* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Archivo', sans-serif;
}

*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}

*::selection {
  background-color: var(--primary);
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/**********************************************
   Start Global Style
**********************************************/
p {
  font-size: 15px;
  color: #8F8F9D;
  line-height: 1.8rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

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

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #000;
}

.scroll-top-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-image: -webkit-gradient(linear, left top, right top, from(var(--primary)), color-stop(var(--secondary)), to(var(--primary)));
  background-image: linear-gradient(to right, var(--primary), var(--secondary), var(--primary));
  text-align: center;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 1000;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn img {
  width: 25px;
  -webkit-filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
          filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.scroll-top-btn:hover img {
  -webkit-animation: floating-y .5s infinite alternate;
          animation: floating-y .5s infinite alternate;
}

.container,
.container-fluid {
  position: relative;
  z-index: 5;
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes tilt-in-bottom-1 {
  0% {
    -webkit-transform: rotateY(30deg) translateY(300px) skewY(-30deg);
            transform: rotateY(30deg) translateY(300px) skewY(-30deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0deg) translateY(0) skewY(0deg);
            transform: rotateY(0deg) translateY(0) skewY(0deg);
    opacity: 1;
  }
}

@keyframes tilt-in-bottom-1 {
  0% {
    -webkit-transform: rotateY(30deg) translateY(300px) skewY(-30deg);
            transform: rotateY(30deg) translateY(300px) skewY(-30deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0deg) translateY(0) skewY(0deg);
            transform: rotateY(0deg) translateY(0) skewY(0deg);
    opacity: 1;
  }
}

.tilt-in-bottom-1 {
  -webkit-animation: tilt-in-bottom-1 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: tilt-in-bottom-1 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes puff-in-center {
  0% {
    -webkit-transform: scale(2);
            transform: scale(2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes puff-in-center {
  0% {
    -webkit-transform: scale(2);
            transform: scale(2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.puff-in-center {
  -webkit-animation: puff-in-center 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
          animation: puff-in-center 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navbar.home-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

.navbar .logo {
  width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar .nav-link {
  color: #DDC0FF;
  margin: 0 10px;
  font-size: 17px;
}

.navbar .nav-link.active {
  color: #eee;
  font-weight: bold;
}

.navbar .link-butn {
  padding: .5rem 1.5rem;
  text-transform: capitalize;
  font-weight: 500;
  color: #DDC0FF;
  border: 1px solid #DDC0FF;
  display: block;
}

.navbar .link-butn:hover {
  color: #eee;
  border: 1px solid var(--secondary);
  background-color: var(--secondary);
}

.navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navbar .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after, .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

.footer {
  position: relative;
  padding: 70px 0 0 0;
  background-color: #FAFBFF;
}

.footer .content {
  margin-bottom: 45px;
}

.footer .content .logo {
  width: 115px;
  -webkit-filter: invert(15%) sepia(5%) saturate(12%) hue-rotate(342deg) brightness(7%) contrast(85%);
          filter: invert(15%) sepia(5%) saturate(12%) hue-rotate(342deg) brightness(7%) contrast(85%);
  margin-bottom: 15px;
}

.footer .content .det {
  margin-bottom: 0;
  padding: 0 20px 0 0;
}

.footer .content .title {
  font-weight: bold;
  color: #2E2F38;
  margin-bottom: 1.5rem;
}

.footer .content .links a {
  display: block;
  margin: 15px 0;
  font-weight: 500;
  font-size: 13px;
  color: #666;
}

.footer .content .links a:hover {
  color: var(--primary);
}

.footer .copyright {
  padding: 15px 0;
  border-top: 1px solid #ddd;
  text-align: center;
  font-weight: 600;
}

.footer .copyright a {
  color: #A4228B;
}

.footer .copyright a:hover {
  color: var(--primary);
}

/**********************************************
    Start Public Classes
**********************************************/
.blue {
  color: #697AFF;
}

.sec-title {
  font-weight: 400;
  color: #3D3F4F;
}

.container,
.container-fluid {
  position: relative;
  z-index: 5;
}

.main-butn {
  padding: .7rem 2rem;
  position: relative;
  color: #fff;
  border-radius: 5px;
  overflow: hidden;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--secondary);
  font-size: 15px;
  font-weight: bold;
}

.main-butn::after, .main-butn::before {
  content: '';
  background-image: -webkit-gradient(linear, left top, right top, from(#A833AC), to(#F35866));
  background-image: linear-gradient(to right, #A833AC, #F35866);
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  right: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.main-butn::before {
  top: 0;
}

.main-butn::after {
  bottom: 0;
}

.main-butn span {
  position: relative;
  z-index: 1;
}

.main-butn:hover span {
  color: #fff;
}

.main-butn:hover::before {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.main-butn:hover::after {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.canter-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/**********************************************
    Start Edit Home Page 
**********************************************/
header {
  position: relative;
  background-color: #FAFBFF;
  padding: 180px 0 230px 0;
}

header .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

header .text-box .title {
  color: #fff;
  font-weight: 300;
  font-size: calc(35px + 1.5vw);
  line-height: 1.3;
}

header .text-box .det {
  color: #D5AFFF;
  font-size: 17px;
}

.industry-sec {
  position: relative;
  padding: 70px 0;
  background-color: #FAFBFF;
}

.industry-sec .ind_card {
  position: relative;
  padding: 35px;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 15px 0 #eee;
          box-shadow: 0 0 15px 0 #eee;
  margin-bottom: 20px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.industry-sec .ind_card .img {
  width: 50px;
  height: 50px;
  display: block;
}

.industry-sec .ind_card .content {
  margin-top: 20px;
}

.industry-sec .ind_card .content .title {
  color: #3D3F4F;
}

.industry-sec .ind_card .content .p {
  margin-bottom: 0;
  line-height: 1.8;
}

.industry-sec .ind_card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 0 45px 0 #eee;
          box-shadow: 0 0 45px 0 #eee;
}

.industry-sec .ind_card:hover .img {
  -webkit-animation: swing .7s both;
          animation: swing .7s both;
}

.services-sec {
  position: relative;
  padding: 70px 0;
  background-color: #FAFBFF;
  overflow: hidden;
}

.services-sec .sec-title {
  color: #fff;
}

.services-sec .serv_card {
  position: relative;
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px 0 #eee;
          box-shadow: 0 0 10px 0 #eee;
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 25px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.services-sec .serv_card .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 0 25px 0 #ccc;
          box-shadow: 0 0 25px 0 #ccc;
}

.services-sec .serv_card .icon .img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.services-sec .serv_card .content {
  width: calc(100% - 100px);
  -webkit-padding-start: 30px;
          padding-inline-start: 30px;
}

.services-sec .serv_card .content .title {
  color: #3D3F4F;
  font-size: 1.1rem;
  font-weight: bold;
}

.services-sec .serv_card .content .p {
  margin-bottom: 0;
  font-size: 14px;
}

.services-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 250px;
  background-image: -webkit-gradient(linear, left top, right top, from(var(--primary)), color-stop(var(--secondary)), to(var(--primary)));
  background-image: linear-gradient(to right, var(--primary), var(--secondary), var(--primary));
  display: block;
}

.case-study {
  position: relative;
  padding: 70px 0;
  background-color: #FAFBFF;
}

.case-study .case_card {
  position: relative;
  border-radius: 10px;
  border: 1px solid #eee;
  margin-bottom: 35px;
}

.case-study .case_card .img-box {
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}

.case-study .case_card .img-box .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.case-study .case_card .card-body .title {
  color: #3D3F4F;
}

.case-study .case_card .card-body .p {
  font-size: 13px;
}

.case-study .case_card .card-body .link-butn {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  color: #666;
  font-weight: bold;
}

.case-study .case_card .card-body .link-butn i {
  margin: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.case-study .case_card .card-body .link-butn::after {
  content: '';
  width: calc(100% - 20px);
  height: 1px;
  display: block;
  background-color: var(--primary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.case-study .case_card .card-body .link-butn:hover {
  color: var(--primary);
}

.case-study .case_card .card-body .link-butn:hover::after {
  width: 0%;
}

.case-study .case_card .card-body .link-butn:hover i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.case-study .case_card:hover {
  -webkit-box-shadow: 0 0 25px 0 #eee;
          box-shadow: 0 0 25px 0 #eee;
}

.case-study .case_card:hover .main-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.feedback-sec {
  padding: 20px 0;
  position: relative;
  background-color: #FAFBFF;
  height: 600px;
  overflow: hidden;
}

.feedback-sec .feedback_card {
  -webkit-box-shadow: 0 0 15px 0 #ddd;
          box-shadow: 0 0 15px 0 #ddd;
  background-color: #fff;
  padding: 30px;
}

.feedback-sec .feedback_card .card_t {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.feedback-sec .feedback_card .card_t .avatar {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.feedback-sec .feedback_card .card_t .profile-data {
  width: calc(100% - 60px);
  -webkit-padding-start: 10px;
          padding-inline-start: 10px;
}

.feedback-sec .feedback_card .card_t .profile-data .mail {
  font-size: 12px;
  font-weight: 600;
  color: #666;
}

.feedback-sec .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 600px;
}

.feedback-sec .swiper-button-next,
.feedback-sec .swiper-button-prev {
  width: 45px;
  height: 45px;
  background-image: none !important;
  border-radius: 50%;
  border: 1px solid #ddd;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  top: unset;
  bottom: 0;
  border-radius: 50%;
}

.feedback-sec .swiper-button-next::before,
.feedback-sec .swiper-button-prev::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 45px;
  color: #ccc;
  font-size: 20px;
}

.feedback-sec .swiper-button-next:hover,
.feedback-sec .swiper-button-prev:hover {
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
}

.feedback-sec .swiper-button-next:hover::before,
.feedback-sec .swiper-button-prev:hover::before {
  color: #fff;
}

.feedback-sec .swiper-button-next {
  right: 44%;
}

.feedback-sec .swiper-button-next::before {
  content: '\f061';
}

.feedback-sec .swiper-button-prev {
  left: 44%;
}

.feedback-sec .swiper-button-prev::before {
  content: '\f060';
}
/*# sourceMappingURL=style.css.map */