@import url("https://fonts.googleapis.com/css2?family=Artifika&family=Courgette&family=DM+Sans:wght@400;500;700&family=Josefin+Slab:wght@300;400;500;600;700&family=Jost:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200&family=Karla:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&family=Poppins:wght@400;500;600&family=Raleway:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
}

h2,
h3,
h4 {
  font-size: 25px !important;
  color: #292764;
}

body {
  font-family: "Poppins", sans-serif !important;
  font-weight: 500;
}

::-moz-selection {
  background-color: #47c6e8;
  color: #fff;
}

::selection {
  background-color: #47c6e8;
  color: #fff;
}

.primary-btn {
  float: left;
  background: #292764;
  padding: 10px 25px;
  color: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: unset;
}
.primary-btn:hover {
  background: #47c6e8;
  outline-offset: 5px;
  outline: 2px solid #47c6e8;
  color: #fff;
}

.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999 !important;
  padding: 0;
  box-shadow: 0px 0px 5px gainsboro;
  width: 100%;
  background-color: rgba(245, 237, 220, 0.8980392157) !important;
  background: linear-gradient(90deg, rgb(208, 242, 113) 0%, rgba(255, 255, 255, 0.596) 0%);
  animation-name: example;
  animation-duration: 1s;
  transition: top 500ms ease-in;
  box-shadow: 0px 0px 5px gainsboro;
}

@keyframes example {
  0% {
    top: -100px;
  }
  100% {
    top: 0px;
  }
}
.mobile-nav {
  display: none !important;
}

.Navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.Navbar .logo img {
  height: 90px;
}
.Navbar ul {
  list-style: none;
}
.Navbar ul li {
  display: inline-block;
  padding: 20px 15px;
  position: relative;
}
.Navbar ul li a {
  color: #000 !important;
  position: relative;
}
.Navbar ul li a::before {
  content: "";
  position: absolute;
  background: #292764;
  display: block;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  transition: transform 0.3s ease;
  transform: scaleX(0);
}
.Navbar ul li a:hover::before {
  width: 100%;
  transform: scaleX(1);
  color: #292764;
}
.Navbar ul li .dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 60px;
  width: 200px;
  display: none;
  z-index: 999 !important;
  padding: 0;
  margin: 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  animation: rotateMenu 400ms ease-in-out;
  transform-origin: top center;
}
@keyframes rotateMenu {
  0% {
    transform: rotateX(-90deg);
  }
  70% {
    transform: rotateX(15deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
.Navbar ul li .dropdown li {
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid rgba(165, 159, 159, 0.5490196078);
}
.Navbar ul li .dropdown li:hover {
  background-color: #292764;
}
.Navbar ul li .dropdown li:hover a {
  color: #fff !important;
}
.Navbar ul li:hover .dropdown {
  display: block !important;
}

.carousel-caption {
  display: flex;
  align-items: start;
  justify-content: start;
  height: 60vh;
}
.carousel-caption h1,
.carousel-caption p {
  text-align: start;
}
.carousel-caption .banner-btn {
  float: left;
  background: #292764;
  padding: 15px 25px;
  color: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: unset;
}
.carousel-caption .banner-btn:hover {
  background: #47c6e8;
  outline-offset: 5px;
  outline: 2px solid #47c6e8;
}

.about-text h2 {
  border-bottom: 2px solid #292764;
  display: inline-block;
}
.about-text p {
  line-height: 30px;
}

.sec-bg {
  background-color: #292764;
}

.box-card {
  position: relative;
  background-color: #fff;
  border: 3px solid #47c6e8;
  padding: 15px;
  min-height: 470px;
}
.box-card:hover {
  background: #47c6e8;
  color: #fff;
}
.box-card img {
  height: 50px;
  margin-bottom: 15px;
}
.box-card .box-text ul li {
  margin: 10px 0;
}
.box-card .arrow-icon {
  background: #f1f1f1;
  padding: 10px;
  font-size: 20px;
  border-radius: 5px;
  position: absolute;
  bottom: 10px;
}

.services-btn {
  display: block;
  position: relative;
  max-width: 262px;
  background-color: #f2f8f9;
  border-radius: 4px;
  padding: 32px 24px;
  z-index: 0;
  overflow: hidden;
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
  color: #000;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.services-btn:hover {
  color: #fff;
}
.services-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: #47c6e8;
  height: 50px;
  width: 50px;
  border-radius: 42px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}
.services-btn:hover:before {
  transform: scale(21);
}

.database-text h2 {
  color: #fff;
}
.database-text p {
  color: #fff;
}

.bottom-sec {
  background: url("../images/services-img.jpg") center no-repeat;
  width: 100%;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5882352941);
}
.bottom-sec h2 {
  text-align: center;
}
.bottom-sec .digital-text {
  background-color: rgba(241, 241, 241, 0.7137254902);
  padding: 20px;
}

.footer-bg {
  background: url("../images/about-thumb-2.jpg") center no-repeat;
  width: 100%;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(114, 209, 238, 0.9607843137);
}
.footer-bg .footer-logo img {
  height: 90px;
  margin-bottom: 20px;
}
.footer-bg .footer-content {
  margin: 0 auto;
}
.footer-bg .footer-content h3 {
  font-size: 25px !important;
  margin: 20px 0;
}
.footer-bg .footer-content ul {
  list-style: none;
  padding: 0;
}
.footer-bg .footer-content ul li {
  display: flex;
  align-items: center;
  color: #000;
  margin-bottom: 15px;
  gap: 10px;
}
.footer-bg .footer-content ul li i {
  font-size: 20px;
}
.footer-bg .footer-content ul li a {
  color: #000;
}
.footer-bg .footer-content .footer-icons i {
  font-size: 20px;
  margin-right: 10px;
  color: #000;
}

.copy-right {
  text-align: center;
  padding: 10px;
}
.copy-right a {
  color: #000;
}

.about-banner {
  background: url("../images/banner.jpg") center no-repeat;
  width: 100%;
  height: 60vh;
  background-size: cover;
}
.about-banner .banner-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
  color: #fff;
}

.about__text {
  background-color: #f1f1f1;
  padding: 20px;
  border-left: 3px solid #292764;
}
.about__text h2 {
  color: #292764;
}

.our-goal__text {
  background-color: #f1f1f1;
  padding: 20px;
  border-right: 4px solid #47c6e8;
}
.our-goal__text h2 {
  color: #292764;
}

.about-sec {
  background: url("../images/about-thumb-2.jpg") center no-repeat;
  width: 100%;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(241, 241, 241, 0.4745098039);
}

.box {
  box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
  min-height: 160px;
  transition: all 0.3s ease-in-out;
}
.box:hover {
  transform: translateY(-5%);
  background-color: #47c6e8;
  color: #fff;
}
.box h5 {
  font-size: 18px;
}
.box .box-img img {
  height: 60px;
  margin-bottom: 15px;
}

.services__bg {
  background: url("../images/services-bg.jpg") center no-repeat;
  width: 100%;
  height: 110vh;
  background-size: cover;
}

.services__list {
  background-color: #f1f1f1;
  padding: 10px;
  margin-bottom: 20px;
  position: relative;
}
.services__list::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  width: 100%;
  left: 0;
  background-color: #292764;
  height: 3px;
  transform: scaleX(1);
  transition: all 0.3s ease-in-out;
}
.services__list:hover::before {
  width: 100%;
  transform: scaleX(0);
}
.services__list h5 {
  font-size: 18px;
}
.services__list .services-icon {
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.services__list .services-icon i {
  font-size: 25px;
}

.services__list:hover .services-icon {
  transform: scale(1.4);
}

.card img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.Industries-text {
  text-align: justify;
}

.button-wrap-title h3 {
  color: #fff;
  text-align: center;
  padding-bottom: 30px;
}

a.button {
  display: block;
  background-color: #47c6e8;
  color: #fff;
  text-align: center;
  text-decoration: none;
  margin: 15px;
  padding: 10px;
}

a.active {
  background-color: #fff;
  color: #47c6e8;
}

.content {
  color: #fff;
  margin-top: 20px;
}

div[class*=content-] {
  display: none;
}

div.active {
  display: block;
}

.services__btn {
  background-color: #f2f8f9;
  border-radius: 4px;
  padding: 20px;
  color: #000;
  display: inline-block;
  margin: 0 auto;
  display: table;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  margin-top: 20px;
}
.services__btn i {
  font-size: 20px;
  padding-right: 10px;
}
.services__btn a {
  font-size: 16px;
  text-align: center;
}

.reseller__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.reseller__list li {
  display: flex;
  color: #fff;
  margin-bottom: 10px;
  gap: 10px;
}
.reseller__list li i {
  color: #fff;
}

.contact-info {
  margin-top: 40px;
}
.contact-info ul {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}
.contact-info ul li {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-info ul li a {
  color: #000;
  font-size: 18px;
}
.contact-info ul li i {
  font-size: 25px;
  color: #292764;
}

.contact-bg {
  background-color: #f1f1f1;
}
.contact-bg .contact-form {
  background-color: #fff;
  padding: 25px 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 80%;
  margin: 0 auto;
  border-radius: 10px;
}
.contact-bg .contact-form .form-title {
  text-align: center;
  padding-bottom: 30px;
}
.contact-bg .contact-form .form-group input {
  border: none;
  border-bottom: 1px solid rgba(148, 140, 140, 0.7450980392);
  border-radius: 0;
}
.contact-bg .contact-form .submit-btn {
  padding: 10px 100px;
  background-color: #292764;
  color: #fff;
  border: none;
  border-radius: 30px;
  display: table;
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */