@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap");
/*@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300;0,500;0,600;0,700;1,400&family=Roboto:wght@500;700&display=swap');*/

:root {
  --primary-text-color: #ffd574;
  --secondary-text-color: #ffffff;
  --primary-bg-color: #f5b82b;
  --secondary-bg-color: #292d33;
  --head-font-style: "Poppins", sans-serif;
  /* --head-font-style:'Figtree', sans-serif;*/
}
body {
  font-family: var(--head-font-style) !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.f-600 {
  font-weight: 600;
}
.w-80 {
  width: 80% !important;
}
.color-orange {
  color: var(--primary-bg-color);
}
.fs-18 {
  font-size: 20px;
}
.full-page {
  margin-top: 55px; /* min-height: calc(100vh - 80px); */
}
.icon-sze{
  max-width: 40% !important;
}
.our-card{
    border-bottom: 6px solid #f2ba30 !important;
    transform: translateY(-5px);
}
.btn-style {
  border: none;
  background-color: #f5b82c;
  padding: 0.5em 3em;
  color: #131313;
  font-weight: 700;
  border-radius: 30px;
  font-size: 18px;
}
.btn-style2 {
  border: none;
  background-color: var(--secondary-bg-color);
  padding: 0.5em 3em;
  color: #fff;
  font-weight: 700;
  border-radius: 30px;
  font-size: 18px;
}
.nav-link {
  color: var(--secondary-bg-color) !important;
  font-weight: 600;
}
.nav-link:hover {
  color: var(--primary-bg-color) !important;
  font-weight: 600;
}
.navbar-brand > img {
  width: 170px;
  height: unset;
}
.section-6,
.v-search {
  background-color: var(--primary-bg-color);
}
.v-search > span {
  color: var(--secondary-text-color);
}
.v-search > div {
  word-spacing: 2px;
}
.card-gradient {
  background: linear-gradient(
    to right,
    #f4b72a8f 2%,
    #f3b62a3b 15%,
    transparent,
    transparent,
    aliceblue
  );
  border-inline-end: 5px solid #ffff26;
}
.grid-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 290px));
  place-items: center;
  place-content: center;
  gap: 3em;
  justify-items: end;
}
.box {
  border-radius: 5px;
  border: 1px solid #dcdcdc;
  padding-block: 2em;
  text-align: center;
}
.box:hover {
  transform: translateY(-10px);
  transition: 0.3s ease-in-out;
  box-shadow: 0 5px 0 var(--primary-bg-color);
}
/* Style for Carosuel starts */
.owl-carousel .card {
  height: 280px;
}
.carousel-wrap {
  margin: auto;
  padding: 0 2%;
  position: relative;
}
.owl-carousel .item {
  position: relative;
  z-index: 100;
  --webkit-backface-visibility: hidden;
}
.owl-nav > button {
  margin-top: -26px;
  position: absolute;
  top: 50%;
  color: #cdcbcd !important;
}
.owl-nav i {
  font-size: 30px;
}
.owl-nav .owl-prev {
  left: -30px;
}
.owl-nav .owl-next {
  right: -30px;
}
/* Style for Carosuel ends */
.accordion-button:not(.collapsed) {
  color: black !important;
  font-weight: 700;
  background-color: #ffffff !important;
  box-shadow: none !important;
}
.accordion-button:focus {
  z-index: 3 !important;
  border-color: #f1d182 !important;
  outline: 0 !important;
  box-shadow: none !important;
}
.form-inline .form-group {
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle;
}
img.card-img-top {
  height: 190px;
}
footer {
  background: #5e60612e;
}

.animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}
.num {
  border-radius: 50%;
  margin-right: 1em;
  background-image: linear-gradient(315deg, #eaf818 0%, #f6fc9c 74%);
  background: linear-gradient(106deg, rgba(245,184,43,1) 0%, rgba(255,223,155,1) 100%);
  height: 40px;
  display: inline-grid;
  padding-inline: 1em;
  align-items: center;
  justify-content: center;
}
.linkstyle:hover .num {
  transition: background 0.4s ease-in-out;
  background: white !important;
  color: #131313;
  border: 2px solid #f7be3c;
}
.linkstyle {
  color: #212529;
  transition: background 0.4s ease-in-out;
}
.linkstyle:hover {
  color: white;
  width: 100%;
  display: inline-grid;
  border-radius: 26px;
  background: linear-gradient(106deg, rgba(245,184,43,1) 0%, rgba(255,223,155,1) 100%);
}

.bl-style{
  border: 1px solid #f5b82b;
  border-left: 5px solid #f5b82c;
  padding-block: 4em;
  padding-left: 2em;
  border-radius: 5px;
  height: 200px;
}

.font-size {
  font-size: clamp(0.2rem, -0.875rem + 8.333333vw, 1.9rem);
}