::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ddd;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #c2c2c2;
}

body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
div,
span,
a,
li,
ul,
ol,
select,
input,
textarea,
button {
  font-family: "Poppins", sans-serif;
}

select:focus,
input:focus,
textarea:focus,
button:focus {
  box-shadow: 0px 0px 0px 0px transparent !important;
}

a {
  text-decoration: none !important;
}

.background-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.scroll-margin-top {
  scroll-margin-top: 50px;
}

#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 20px;
  background-color: #202327;
  color: #fff;
  font-size: 24px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  z-index: 99;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
}

.close-button {
  font-size: 10px;
  height: 10px !important;
  width: 10px !important;
  position: absolute;
  top: 25px;
  right: 30px;
  background-color: #fff !important;
  border-radius: 50% !important;
}

.bg-overlay {
  position: relative;
}

.bg-overlay::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 25px;
}

.min-h-370 {
  min-height: 370px;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 320px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  border-radius: 15px;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

.flip-card:focus {
  outline: 0;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flip-card-front {
  background: #fff;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  padding: 10px 30px;
  border-radius: 15px;
}

.flip-card-back {
  background: #eaeaea;
  transform: rotateY(180deg);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  padding: 10px 30px;
  border-radius: 15px;
}

#home,
#about-us,
#services,
#testimonial,
#contact-us {
  scroll-margin-top: 100px
}

label.error {
  color: red;
  margin-top: 10px;
  font-size: 14px;
}

#popupSuccessMessage,
#successMessage {
  display: none;
  text-align: center;
  background: #0ed016;
  padding: 10px;
  color: #fff;
  font-size: 18px;
  margin-top: 20px;
  border-radius: 150px;
}

.min-h-95vh {
  min-height: 95vh;
}