* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-size: 17px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

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

.theme-color{
  color: #144154;
}

/* width */
::-webkit-scrollbar {
  width: 0px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  background-color: #144154 !important;
}


/* Header */
.web-btn.btn {
    font-size: 16px;
    font-weight: 500;
    background-color: #144154;
    color: #fff;
    transition: 0.4s;
    padding: 10px 28px;
    border-radius: 50px;
}

.btn.web-btn:hover {
  background-color: #8dc63e !important;
  color: #fff !important;
}

.nav-link {
  font-weight: 500 !important;
  margin: 0;
  border-radius: 0px !important;
  padding: 25px 12px !important;
  font-size: 16px !important;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff !important;
}

.enquiry-btn {
  position: fixed;
  right: 20px;
  top: 40%;
  z-index: 111111111;
  transform: rotate(-90deg);
  transform-origin: right;
  transition: 0.4s;
}

/* banner section  */
.heading {
  font-weight: 700;
}

.banner {
  position: relative;
  background-color: #dce8ee;
}

h1{
  font-weight: 700 !important;
}

.start-btn {
  padding: 10px 30px;
  background-color: #144154;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  transition: 0.5s;
}

/* Counter section */
.counter {
  position: relative;
  padding: 10px 0;
  background: linear-gradient(45deg, #144154, #8dc63e);
  color: #fff;
}

.item i {
  display: block;
}

.number {
  display: inline;
}

.number~span {
  font-size: 45px;
}

.item {
  text-align: center;
}

.item:hover {
  box-shadow: none;
}

.counter-div img {
  max-width: 100%;
}

.item p {
  font-size: 20px;
  font-weight: 500;
}

.item .number {
  font-size: 45px;
  font-weight: 600;
}

.item i {
  font-size: 50px;
  color: var(--secondary-color);
}

.item p {
  margin-bottom: 0;
}

/* About Section  */
.about-us {
  padding: 50px 0;
}

.about-point {
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 15px #cfcfcf;
}

.about-point-wrap {
  padding: 0 !important;
}

.mission {
  position: relative;
  background-image: url("../images/mission.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
  color: #fff;
}

.mission::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #07164ec4;
}

/* Service Section  */
.service {
  position: relative;
  z-index: 1;
  padding-top: 60px;
}

.service-wrapper {
    position: relative;
    transition: ease 0.5s;
    padding: 24px;
    height: 100%;
    background: #ffffff;
    box-shadow: 0 0 10px #cdcdcd;
    border-radius: 10px;
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #74a72e;
  display: inline-block;
  margin: auto;
  padding: 13px;
}

.service-icon img {
  filter: brightness(11111);
}

/* Features Section */
.features {
  background-color: #ffffff;
  padding: 50px 0;
}

@media only screen and (min-width: 992px) {
  .features-image{
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    height: 500px;
  }
}

.feature-wrapper {
    position: relative;
    border-radius: 10px;
    margin: 14px 0 0;
    transition: 0.4s;
}

.feature-wrapper:hover {
  transform: translateX(10px);
}

/* Business Steps Section  */
.step-icon {
  width: 64px;
  margin-bottom: 15px;
}

.step-wrapper:hover .step-icon::before {
  border: 2px dashed #e87c19;
  animation: rotate 4s linear infinite;
}

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

  100% {
    transform: rotate(360deg);
  }
}

.step-wrapper {
  position: relative;
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 15px;
}

.step-wrapper p {
  margin: 0;
}

/* platforms section  */
.platforms {
  padding: 50px 0;
}

.platform-wrapper {
  border-image-slice: 1;
  position: relative;
  padding: 20px 25px;
  background: #fff;
  box-shadow: 0 0 10px #ddd;
  color: #0c0c0c;
  border-radius: 10px;
  height: 100%;
  transition: ease-out 0.4s;
}
.platform-btn{
  position: absolute;
  right: 25px;
  bottom: 20px;
}

.platform-wrapper p {
  margin: 0;
}

.platform-wrapper:hover {
  transform: translateY(-10px);
}

.platform-wrapper img {
  border-radius: 10px;
}

/* footer section  */
.footer {
  padding: 40px 0;
  background-color: #f7f7f7;
}

.social-icons a {
  margin: 0 5px;
  font-size: 20px;
  width: 40px;
  height: 40px;
  text-decoration: none;
  background-color: #144154;
  display: inline-flex;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  transition: ease-out 0.3s;
}

.social-icons a:hover {
  transform: translateY(5px);
  color: #ffffff;
  background-color: #8dc63e;
}

.page-links a {
  text-decoration: none;
  display: block;
  transition: 0.4s;
  color: #000;
}

.page-links a:hover {
  color: #32038a;
}

.call a {
  text-decoration: none;
  font-size: 18px;
  color: #000;
}

.cpoyright p a {
  color: #000;
  text-decoration: none;
}

.cpoyright.py-2 {
  background: #144154;
  color: #ffffff;
}


/* dropdown  */
.nav-link {
  position: relative;
}

.nav-link>a {
  color: #231f20;
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-link>a>i {
  margin-left: .2rem;
}

.dropdown {
  position: absolute !important;
  top: 100%;
  left: 0;
  width: 10rem;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: .5s;
  z-index: 11;
  background-color: #fff;
}

.dropdown ul {
  position: relative;
  padding: 0;
}

.dropdown ul li {
  list-style: none;
}

.dropdown-link>a {
  color: #231f20;
  display: flex;
  text-decoration: none;
  padding: .5rem 1rem;
  font-size: .9rem;
  align-items: center;
  justify-content: space-between;
  transition: .3s;
}

.dropdown-link:hover>a {
  background-color: #ebebeb;
}

.dropdown-link:not(:nth-last-child(2)) {
  border-bottom: 1px solid var(--clr-light);
}

.dropdown-link i {
  transform: rotate(-90deg);
}


.dropdown-link:first-child:hover~.arrow {
  background-color: var(--clr-dropdown);
}

.dropdown-link {
  position: relative;
}

.dropdown.second {
  top: 0;
  left: 100%;
  padding-left: .8rem;
  cursor: pointer;
  transform: translateX(10px);
}

.dropdown.second .arrow {
  top: 10px;
  left: -5.5px;
}

.nav-link:hover>.dropdown,
.dropdown-link:hover>.dropdown {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}