body {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}
:root {
    --lt-pink: #ff3131;
    --lt-yellow: #fdeb3f;
    --llt-yellow: #fff272;
}
.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  
.lt-pink-c {
    color: #ff3131;
}
.lt-yellow {
    color: #fdeb3f;
}
.llt-yellow {
    color: #fff272;
}
.lt-pink-bg {
    background-color: #ff3131;
}
.lt-yellow-bg {
    background-color: #fdeb3f;
}
.llt-yellow-bg {
    background-color: #fff272;
}
.main-header {
    background: #f8f4e5;
}
.bg-primary-cust {
  background: #cdebf3 !important;
}
.bg-green-cust {
  background: #e1fbd9 !important;
}
.bg-purple-cust {
  background: #f0e3f7 !important;
}
.h3 {
    font-size: 40px;
    font-weight: 600;
}
.font-1 {
  font-size: 1.2rem;
  font-weight: 500;
}
.h5 {
    font-size: 18px;
    font-weight: 600;
    color: #666666;
}
.base-py-80 {
    padding: 80px 0;
}
.base-pt-80 {
    padding-top: 80px;
}
.base-pb-80 {
    padding-bottom: 80px;
}
.c-container {
    max-width: 1360px;
    margin: auto;
    padding: 0 15px;
}
.fs-15 {
  font-size: 15px;
}
.fs-14 {
  font-size: 14px;
}
.fs-13 {
  font-size: 13px;
}
.create-btn {
    background-color: white;
    border: solid 1px var(--lt-pink);
    border-radius: 6px;
    padding: 5px 20px;
    text-decoration: none;
    color: var(--lt-pink);
    margin-right: 1rem;
    transition: 0.4s;
}
.create-btn:hover {
    transition: 0.4s;
    background-color: var(--lt-pink);
    color: #fff;
}
.sign-in-btn {
    background-color: var(--lt-pink);
    border: solid 1px var(--lt-pink);
    border-radius: 6px;
    padding: 5px 20px;
    text-decoration: none;
    color: #fff;
}
.sign-in-btn:hover {
    transition: 0.4s;
    background-color: #fff;
    color: var(--lt-pink);
}
.nav-link {
    font-size: 16px;
    padding: 0rem .8rem !important;
    font-weight: 500;
}
.nav-link:hover {
    cursor: pointer;
    color: var(--lt-pink);
}
.maintain-card {
    background-color: white;
    box-shadow: 0 5px 12px #00000030;
    border-radius: 10px;
    padding: 25px;
    min-height: 350px;
    margin-bottom: 10px;
}
.discover-card {
  background-color: var(--llt-yellow);
  padding: 40px;
  border-radius: 30px;

}
.benifits-card {
  background-color: white;
    box-shadow: 0 5px 12px #00000030;
    border-radius: 10px;
    padding: 25px;
    min-height: 350px;
    margin-bottom: 10px;
}
.view-all-btn {
  background-color: var(--lt-yellow);
  border: solid 1px var(--lt-yellow);
  padding: 10px 25px;
  border-radius: 30px;
  color: #232323;
  text-decoration: none;
  font-weight: 400;
  transition: 0.4s;
}
.view-all-btn:hover {
  background-color: var(--llt-yellow);
  border: solid 1px var(--lt-yellow);
  transition: 0.4s;
  box-shadow: 0 5px 10px #00000030;
}
.view-all-btn i {
  font-weight: 700;
  -webkit-text-stroke-width: 1px;
}
.video-card {
  padding: 10px;
  background-color: white;
  box-shadow: 0 5px 12px #00000030;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: all 0.5s;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}
.accordion-button::after {
  transition: all 0.5s;
}

.enqey-form-sectio {
  background: rgb(239,239,239);
  background: linear-gradient(0deg, rgba(239,239,239,1) 0%, rgba(239,239,239,1) 50%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%);
}
.form-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  border:solid 1px #eee;
  box-shadow: 0 8px 16px #00000030;
}
.c-form-control {
  border: solid #ddd 1px;
  border-radius: 30px;
  padding: 14px 20px;
  box-shadow: 0 5px 10px #00000010;
  width: 100%;
}
.submit-btn {
  background-color: #f7f7f7;
  border: solid #ddd 1px;
  border-radius: 30px;
  padding: 14px 20px;
  box-shadow: 0 5px 10px #00000010;
  color: var(--lt-pink);
  width: 80%;
  transition: 0.4s;
  font-size: 17px;
}
.submit-btn:hover {
  background-color: var(--lt-pink);
  color: #fff;
  transition: 0.4s;
}
.socil-icons a img {
  transition: 0.5s;
}
.socil-icons a img:hover {
  transition: 0.5s;
  transform: scale(1.1);
}

.footer {
  background-color: #060606;
  border-radius: 20% 20% 0 0;
}
.subcrib-form-control {
  border: solid var(--lt-pink) 1px;
  border-radius: 30px;
  padding: 14px 20px;
  box-shadow: 0 5px 10px #ffffff10;
  width: 100%;
}
.Subscribe-btn {
  background-color: var(--lt-pink);
  border: 0;
  border-radius: 30px;
  padding: 10px 30px;
  color: #fff;
  position: absolute;
  right: 18px;
  top: 5px;
}
.c-border-bottom {
  border-bottom: solid 1px #353535;
  width: 100%;
  display: block;
}
.footer-link {
  list-style-type: none;
  padding: 0;
}
.footer-link li a {
  text-decoration: none;
  color: white;
}
.footer-link li a:hover {
  color: var(--llt-yellow);
  transition: 0.4s;
  margin-left: -5px;
}
@media (max-width:768px){
  .footer {
    background-color: #060606;
    border-radius: 15px 15px 0 0!important;
  }
  .contact-addr {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 50px 0 50px;
  }
  .contact-icon {
    margin-top: 3rem!important;
}
}
@media (min-width: 992px) and (max-width:1280px) {
  .nav-link {
    font-size: 13px;
    padding: 0rem .5rem !important;
    font-weight: 500;
}
.create-btn {
  background-color: white;
  border: solid 1px var(--lt-pink);
  border-radius: 6px;
  padding: 5px 10px;
  text-decoration: none;
  color: var(--lt-pink);
  margin-right: 1rem;
  transition: 0.4s;
}
}

.benefits-card {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 6px 12px #00000010;
  padding: 25px 20px 0;
  min-height: 330px;
}
.benefits-card h4 {
  margin-top: 19px;
  font-size: 20px;
}
.benefits-card p {
  color: #666;
  font-size: 15px;
  padding: 0 25px;
  text-align: justify;
}
.benefit-icon {
  background-color: var(--lt-yellow);
  height: 60px;
  width: 60px;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
  box-shadow: 0 3px 10px #fff41680;
  margin-bottom: 1rem;
  margin: 0 auto;
}
.benefit-icon i {
  font-size: 33px;
  color: var(--lt-pink);
}
.contact-addr {
  margin-top: -100px;
  margin-bottom: 90px;
  padding: 150px 0 50px;
}
@media(max-width: 768px){
  .benefits-card {
    border-radius: 10px;
    padding: 20px 10px;
    min-height: 330px;
  }
  .benefits-card p {
    padding: 0 5px;

}
}
.contact-icon {
  background-color: white;
  height: 80px;
  width: 80px;
  border-radius: 80px;
  font-size: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--lt-pink);
  margin: 0 auto;
  box-shadow: 0 6px 12px #00000010;
}


.pricing-tab .nav-link {
  font-size: 16px;
  padding: 1rem 2.8rem !important;
  font-weight: 500;
}
.pricing-tab .nav-tabs .nav-link.active {
  background-color: #f8f9fa;
}
.active-link {
  color: var(--lt-pink);
}
.text-justify {
  text-align: justify;
}
.register-btn {
  border: solid 1px var(--lt-pink);
  padding: 10px 40px;
  border-radius: 8px;
  color: var(--lt-pink);
  background-color: white;
  transition: 0.3s;
}
.register-btn:hover {
  background-color: var(--lt-pink);
  color: white;
  transition: 0.4s;
}
.currency-sym {
  color: #888;
  font-family: 'Courier New', Courier, monospace;
  font-size: 20px;
  font-weight: 600;
  line-height: 0;
}