@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) !important; 
}

.fs-18 {
  font-size: 20px;
}

.full-page {
  margin-top: 55px;
  /* min-height: calc(100vh - 80px); */
}

.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;
}
.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;
}

.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;
}
.link-hov:hover{
  color: orange !important;
}
.section-6,
.v-search {
  background-color: var(--primary-bg-color);
}

.v-search>span {
  color: var(--secondary-text-color);
}

.v-search>div {
  word-spacing: 2px;
}



.full-page {
  margin-top: 55px;
  /* min-height: calc(100vh - 80px); */
}











footer {
  background: #5e60612e;
}

.accordion-item {
  margin-bottom: 1em;
}

.accordion-item:not(:first-of-type) {
  border-top: 1px solid rgba(0, 0, 0, .125);
}

.animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}



@media (prefers-reduced-motion) {
  .hidden {
    transition: none;
  }
}
