.logo {
  max-width: 100px;
}

/* Form Section */
.description {
  font-size: 0.875rem;
  color: #697077;
}

.contact-form-title {
  font-size: 0.8rem;
}

.form-outline .form-label {
  font-size: 0.75rem;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.25rem var(--primary-color);
}

.bottom .container {
  padding-left: 0;
}

.btn[type="submit"] {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
}

.btn[type="submit"]:hover {
  background-color: var(--hover-color);
  scale: 1.1;
  box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.25);
}

.btn[type="submit"]:active {
  background-color: var(--second-color);
  border-color: var(--second-color);
  scale: 1.05;
  box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.25);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  appearance: textfield;
}

/* Our Customer Section */
.customers-container .customers-bx .customer {
  min-width: 18.75rem;
}

/* COMPANY OVERVIEW SECTION */

.company-overview,
.how-we-build-your-success,
.faq {
  padding: 5rem 0;
}

.company-overview-container,
.faq-container {
  width: 100%;
}

.company-overview .secondary-heading span,
.faq .secondary-heading span {
  color: var(--primary-color);
}

.accordion-item p {
  margin-bottom: 0;
}

.Aim-of-serving p:nth-child(1) {
  margin-bottom: 1rem;
}

.Aim-of-serving ul {
  margin-top: 0.5rem;
}

.collapse {
  visibility: visible !important;
}

.accordion-button {
  font-family: "Poppins", sans-serif;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: unset;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem var(--second-color);
}

.show-card {
  width: 23rem;
}

.show-card .img {
  overflow: hidden;
  border-radius: 1rem;
}

.show-card .img img {
  object-fit: cover;
  transition: 0.3s ease;
}

.show-card:hover .img img {
  transform: scale(1.05);
}

.show-card .text-bx p:nth-child(1) {
  color: var(--primary-color);
}

.show-card .text-bx h2 {
  font-size: 1.5rem;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  color: var(--main-text-color);
}

.show-card .text-bx p:not(:first-child) {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.show-card .text-bx p:not(:first-child),
.show-card .text-bx h2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.show-card .public-btn {
  padding: 0.625rem 1.25rem;
  margin: 1.5rem 0 0;
  max-width: 15rem;
}

.show-card .public-btn:hover {
  scale: 1;
}

@media (max-width: 1360px) {
  body,
  html {
    font-size: 14px;
  }
}

/* LOADING PAGE */
.loading {
  width: 100vw;
  height: 100vh;
  z-index: 99999999999;
  background: linear-gradient(45deg, var(--second-color) -100%, #ffffff);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  transition: 0.3s ease;
}

.loading.close {
  left: -100%;
}

.loading-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.loading .img {
  max-width: 125px;
  animation-name: bounceBall;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
}

.loading .img svg {
  width: 125px;
}

.loading-container .shadow {
  animation-name: bounceShadow;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  background: var(--dark);
  filter: blur(2px);
  border-radius: 50%;
  height: 0.375rem;
  transform: translateY(73px);
  width: 7rem;
}

body.load {
  overflow: hidden;
}

@keyframes bounceBall {
  0% {
    transform: translateY(-60px) scale(1, 1);
  }
  15% {
    transform: translateY(-56px) scale(1, 1);
  }
  45% {
    transform: translateY(60px) scale(1, 1);
  }
  50% {
    transform: translateY(63.5px) scale(1, 0.92);
  }
  55% {
    transform: translateY(60px) scale(1, 0.95);
  }
  85% {
    transform: translateY(-56px) scale(1, 1);
  }
  95% {
    transform: translateY(-60px) scale(1, 1);
  }
  100% {
    transform: translateY(-60px) scale(1, 1);
  }
}

@keyframes bounceShadow {
  0% {
    filter: blur(3px);
    opacity: 0.6;
    transform: translateY(73px) scale(0.5, 0.5);
  }
  45% {
    filter: blur(1px);
    opacity: 0.9;
    transform: translateY(73px) scale(1, 1);
  }
  55% {
    filter: blur(1px);
    opacity: 0.9;
    transform: translateY(73px) scale(1, 1);
  }
  100% {
    filter: blur(3px);
    opacity: 0.6;
    transform: translateY(73px) scale(0.5, 0.5);
  }
}
