/* @font-face{
    font-family: "CUSTOM";
    src: url("../assets/fonts/Bookmania-SemiBold.otf") format("truetype");
    font-weight: 500;
  } */
/* @font-face{
    font-family: "CUSTOM";
    src: url("../assets/fonts/Bookmania-Bold.otf") format("truetype");
    font-weight: 700;
  } */

.font-1 {
  /* font-family: 'Piazzolla', serif; */
  /* font-family: 'Lora', serif; */
  /* font-family: 'Cormorant', serif; */
  /* font-family: 'Noto Serif SC', serif; */
  /* font-family: 'Cormorant Garamond', serif; */
  /* font-family: 'EB Garamond', serif; */
  /* font-family: 'Crimson Pro', serif; */
   font-family: 'Poppins', sans-serif;
   font-weight: 18px;
    
  /* font-family: 'CUSTOM', serif; */
  /* font-family: 'Libre Baskerville', serif; */
}



@media (max-width: 767.98px) {
  .button-center-small {
    width: 90vw;
  }
}

.font-big-number {
  font-size: 7rem;
  color: #cdeee9;
  position: absolute;
  top: -90px;
  left: 18px;
}

.btn.btn-primary:active,
.btn.btn-primary:hover,
.btn.btn-primary:focus {
  /* background-color: #00aa90 !important; */
}

.border-radius-big {
  border-radius: 0.85rem;
}

.border-radius-large {
  border-radius: 1.85rem;
}

@media (max-width: 576px) {
  .border-radius-large {
    border-radius: 0rem !important;
  }
}

.mt--3 {
  margin-top: -30px;
}
@media (min-width: 576px) {
  .mt-lg--10 {
    margin-top: -100px;
  }
}
@media (max-width: 576px) {
  .mt-sm--10 {
    margin-top: -100px !important;
  }
}

.text-sm {
  font-size: 0.8rem;
}

/* @media (max-width: 2000px) {
    .bg-line{
        background: none;
    }

    
} */
@media (max-width: 576px) {
  .bg-line {
    background: none !important;
  }
}

.path {
  animation: dash 25s linear;
  animation-iteration-count: infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: 1000;
  }
}

.bg-turquise {
  background-color: #d7eaea;
}

@media (min-width: 576px) {
  .bg-lg-only {
    background-image: url(./assets/img/uncode/line-2.svg);
    background-size: cover;
  }
}
@media (max-width: 576px) {
  .bg-lg-only {
    background-image: none;
    background-size: 0%;
  }
}

html {
  scroll-behavior: smooth;
}

/* .form-group.required .control-label:after {
    content:"*";
    color:red;
  }

.control-label-required:after {
    content:"*";
    color:red;
} */

.header-selected {
  background-image: url(../assets/img/fbc/Rectangle\ 63.png);
  background-position: 0% 70%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.button-bg {
  background-image: url(../assets/img/fbc/Rectangle\ 63.png);
  background-position: 0% 100%;
  background-size: 30% 100%;
  background-repeat: no-repeat;
  padding: 10px;
}

@media (max-width: 576px) {
  .container,
  .container-fluid,
  .container-sm,
  .container-md,
  .container-xl {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    /* max-width: none; */
  }
}

.btn-secondary > .collapsed{
  font-size: 100px;
}

#accordion > .btn-secondary {
  

}
.btn-primary.collapsed{
  background: #fff;
  color: #004dbf;
}

.z-index-100 {
  z-index:100
}

/* BG Animations */
.area{
  background: #4e54c8;
  background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);
}

.circles{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.circles li{
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  animation: animate 25s linear infinite;
  bottom: -150px;

}

.circles li:nth-child(1){
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}


.circles li:nth-child(2){
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3){
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles li:nth-child(4){
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5){
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles li:nth-child(6){
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles li:nth-child(7){
  left: 35%;
  width: 100px;
  height: 100px;
  animation-delay: 7s;
}

.circles li:nth-child(8){
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9){
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10){
  left: 85%;
  width: 100px;
  height: 100px;
  animation-delay: 0s;
  animation-duration: 11s;
}



@keyframes animate {

  0%{
      transform: translateY(0) rotate(0deg);
      opacity: 1;
      border-radius: 0;
  }

  100%{
      transform: translateY(-1000px) rotate(720deg);
      opacity: 0;
      border-radius: 50%;
  }

}

.text-heading {
  font-size: 3rem !important; 
}

@media (max-width: 576px) {
  .text-heading {
    font-size: 2rem !important;
  }
}


/* BG Animations - end */
.bg-darker {
  background-color: #242424 !important;
}

.text-yellow-secondary {
  color: #F5DA61 !important;
}

.border-radius-50 {
  border-radius: 50px;
}

.splide__pagination--custom li {
  margin-bottom:10px !important;
}

@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
      max-width: 1440px;
  }
}

.bg-yellow-light{
  background-color: #FEFCF4 !important;
}

.shadow-none{
  box-shadow: none !important;
}

.navbar .dropdown-menu {
  top: 100% !important;
}

@media (max-width: 576px) {
  .no-border-rounded-sm{
    border-radius: 0px !important;
  }
}

.no-border-rounded{
  border-radius: 0px !important;
}

.border-rounded-sm {
  border-radius: 16px;
}

@media (max-width: 576px) {
  .text-center-sm{
    text-align: center !important;
  }
}

.cta-button{
   background-color: #F5DA61;
   border-radius: 999px;
   padding: 6px 18px;
   font-family: 'Poppins', sans-serif;
   font-weight: 500;
   font-size: 16px;
   text-decoration: none;  
}

.cta {
   background-color: var(--primary);
   color: white;
  text-align: center;
}
            
.cta h2{
  color:#F5DA61;
  font-size:36px;
} 
            
.cta p {
  color: white;
}

@media (max-width: 991.98px) {
 .testimonial-content {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  }
}

.custom-heading {
  font-size: 16px;
}

@media (min-width: 768px) {
 .custom-heading {
  font-size: 24px;
  }
}


/* footer */
@media (max-width: 600px) {
  .footer-wrapper {
      display: flex !important;
      flex-direction: row !important;
      justify-content: space-between !important;
      align-items: flex-start !important;
      flex-wrap: nowrap !important;
      gap: 0 !important;
      padding: 0 !important;
      margin: 0 !important;
      text-align: left !important;
      width: 100%;
  }

  .footer-wrapper > div {
      padding: 0 4px !important;
      margin: 0 !important;
      min-width: auto !important;
      flex: 1;
  }

  .footer-wrapper p,
  .footer-wrapper p a {
      font-size: 8px !important;
      margin: 2px 0 !important;
      line-height: 1.6;
  }

  .footer-wrapper > div > p {
      font-size: 8px !important;
      font-weight: 600;
      margin-bottom: 4px !important;
  }

  .logo-container {
  flex: 0 0 100px !important;
  padding: 0 !important;
  margin: 0 !important;
}


  .logo-container img {
      height: 30px !important;
  }

  .company-footer div {
      font-size: 10px !important;
      padding: 10px 0 !important;
      margin-top: 20px !important;
  }
}
