@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

body{
  font-family: "Poppins", sans-serif !important;
  font-weight: 400;
  background-color: #fff;
  margin: 0;
}

.footer{
  position:static
}

nav{
  height: 77px;
  background:linear-gradient(45deg, #A453E3, #5C24D3);
  display: flex;
  align-items: center;
}

nav div{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  height: 77px;
  width: 100%;
  font-size: 14px;
  background:linear-gradient(to right, #F5F3FF, #EFEDFF);
  font-weight: bold;
}

nav > div .logo{
  max-width: 118px;
  width: 100%;
  margin-right: 10px;
}

nav > div b{
  margin-right: 10px;
}

.mw-custom{
  max-width: 90%;
  margin: 0 auto;
  width: 100%;
}

.search-box{
  background:linear-gradient(45deg, #A453E3, #5C24D3);
  height: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.search-box > div{
  max-width: 590px;
  width: 100%;
}

.search-input-container{
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 2rem;
}

.search-input-container div{
  position: relative;
  width: 100%;
}

.search-input-container input{
  background-color: #fff;
  height: 48px;
  width: 100%;
  border-radius: 30px;
  background-color: #fff;
  border: 1px solid #fff;
  outline: none;
  font-size: 16px;
  padding: 0 2rem;
}

/* .search-input-container input:focus + .suggestion{
  display: block;
} */

.closeSuggestion{
  border: none;
  background: transparent;
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 26px;
  display: none;
}

.suggestion{
  position:absolute !important;
  width:100%;
  padding: 1.5rem;
  top: 60px;
  border-radius: 7px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,.25);
  z-index: 100;
  display: none;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  height: 350px;
  overflow: auto;
}

.suggestion h5{
  display: none;
}

#keywords a{
  width: 100%;
  display: block;
  padding: 10px;
  color: #414141;
  text-decoration: none;
  transition: 0.3s;
  margin: 0 !important;
}

#keywords a:hover{
  color: #9E3CEB;
}

.mobileTitle{
  display: none;
}

.mobileSearch{
  display: none;
}

.back-btn{
  display: none;
}

input::placeholder{
  color: #999999;
}

.search-title{
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  font-family: "Poppins", sans-serif !important;
}

.search-btn{
  width: 60px;
  height: 37px;
  background: #9E3CEB;
  position:absolute;
  right: 10px;
  top:5px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.article-content{
  padding: 3rem;
}

.accordion {
  background-color: #FAFAFA;
  color: #444;
  cursor: pointer;
  padding: 15px 0;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-weight: bold;
  font-size: 16px;
  transition: 0.4s;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  text-transform: capitalize;
}

.accordion p{
  margin: 0;
}

a.disabled{
  pointer-events: none;
}

/* .active, .accordion:hover {
  background-color: #ccc;
} */

.accordion img{
  transform: rotate(180deg);
  transition: 0.3s;
}

.accordion.active img{
  transform: rotate(0deg);
}

.panel {
  padding: 0 18px;
  background-color:transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  font-size: 14px;
  padding-left: 15px;
  /* border-bottom:1px solid #999999; */
}

.panel div{
  color: #999999;
  text-decoration: none;
  margin-bottom: 15px;
}

.panel div a{
  color: #999999;
  text-decoration: none;
  text-transform: capitalize;
  font-weight: 600;
}

.panel div a.active{
  color: #9E3CEB;
}

.category-list{
  background-color: #FAFAFA;
  min-height: 70vh;
  height: 100%;
}

.category-list > div{
  max-width: 320px;
  margin:0 auto;
  padding: 2rem;
}

.article-content #subCategoryContainer a{
  width: 100%;
  padding: 15px 10px;
  font-weight: 500;
  border-bottom: 1px solid #e1e1e1;
  display: inline-block;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  text-transform: capitalize;
  background:#fff;
  transition: 0.3s;
}

.article-content #subCategoryContainer a:hover{
  color: #9E3CEB;
}

.article-content #subCategoryContainer a:first-child{
  border-top: 1px solid #e1e1e1;
}

.article-content > h5{
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.btn-row{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.comment-title{
  font-weight: bold;
  font-size: 18px;
}

.like-dislike{
  padding: 0 3rem;
}

.like-dislike > div{
  border-top: 1px solid #999999;
  padding: 1.5rem 0;
}

.like-dislike a{
  background: #FAFAFA;
  border-radius: 30px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #0B132A;
  font-weight: 500;
  transition: 0.3s;
}

.like-dislike a svg{
  margin-right: 10px;
}

.like-dislike a svg path{
  fill: #999999;
}

.like-dislike a.dislike.active{
  background: #FF0000;
  color: #fff;
}

.like-dislike a.like.active{
  background: #2ADA9A;
  color: #fff;
}

.like-dislike a.active svg path{
  fill: #fff;
}

.checkmark__circle{
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards
}
.checkmark{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 4;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 2% auto;box-shadow: inset 0px 0px 0px #7ac142;animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both
}
.checkmark__check{transform-origin: 50% 50%;stroke-dasharray: 48;stroke-dashoffset: 48;animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards}@keyframes stroke{100%{stroke-dashoffset: 0}}@keyframes scale{0%, 100%{transform: none}50%{transform: scale3d(1.1, 1.1, 1)}}@keyframes fill{100%{box-shadow: inset 0px 0px 0px 30px #7ac142}}

.form-check{
  margin: 10px 0px;
  font-size: 16px;
}

.form-check .form-check-input{
  margin-right: 15px;
  transition: 0.3s;
}

.form-check-input:checked{
  background-color: #9E3CEB;
  border-color: #9E3CEB;
}

.form-group{
  margin-top: 1rem;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus{
  background:#5C24D3;
  border: #5C24D3;
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus{
  background:#999999;
  border: #999999;
}

footer{
  position:static !important;
  padding:0px !important;
  text-align: center;
}

footer .top{
  background: #F6F6F6;
  width: 100%;
  padding: 3.5rem 2rem;
}

footer .top h5{
  font-size: 18px;
  font-weight: bold;
  font-family: "Poppins", sans-serif !important;
  margin-bottom: 2rem;
}

footer .top a{
  color: #9962D2;
  text-decoration: underline !important;
}

footer .top > div{
  display: flex;
  justify-content: center;
  gap: 20px;
}

.faq-content .row{
  margin:0 !important
}

.contact-section > div{
  display: flex;
  align-items: center;
  background:#fff;
  border-radius: 5px;
  max-width: 368px;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 5px;
}

.contact-section > div > div{
  margin-right: 10px;
}

.contact-section > div h5,
.contact-section > div p{
  font-size: 14px;
  text-align: left;
  margin: 0;
  color: #414141;
}

.contact-section > div h5{
  margin-bottom: 5px;
  font-weight: 700;
}

footer .bottom{
  padding: 2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .bottom > div{
  display: flex;
  font-size: 14px;
  font-weight: 700;
  color: #252F40;
}

footer .bottom .social-group{
  display: flex;
  align-self: center;
  gap: 20px;
  margin-left: 20px;
}

.copyright{
  color: #999999 !important;
  font-weight: 500 !important;
  font-size: 14px;
}

.pagination{
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pagination a{
  font-size: 16px;
  color: #999999;
  transition: 0.3s;
  padding: 0 10px;
}

.pagination a.active,
.pagination a:hover{
  color: #9E3CEB;
  font-weight: 500;
}

.hide{
  display: none;
}

.social-group a i{
  font-size: 16px;
  color: #252F40;
  transition: 0.3s;
}

.social-group a:hover i{
  color: #9E3CEB;
}

.posRel{
  position: relative;
}

@media (max-width:900px){
  .back-btn{
    margin-right: 20px;
  }

  .search-box{
    padding: 0 1.5rem;
  }

  .category-list > div{
    max-width: 100%;
    padding: 1rem;
  }

  .category-list{
    min-height: 50vh;
  }

  .article-content{
    padding: 2rem 1rem;
    min-height: 60vh;
  }

  .show-content{
    display: none;
  }

  .like-dislike{
    padding: 0 1rem;
  }

  .sidebar{
    padding: 0 !important;
  }
  
  .logo-container{
    font-size: 12px;
    font-weight: 500;
  }

  .search-title{
    font-size: 18px;
  }

  nav > div .logo{
    width: 90px;
  }

  nav,
  nav div{
    height: 60px;
  }

  .search-box{
    height: 150px;
  }

  .pagination{
    justify-content: center;
  }
}

@media (max-width:550px){
  .suggestion{
    position: fixed !important;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    max-height: 100vh;
  }

  .search-input-container{
    margin-top: 1.5rem;
  }

  .closeSuggestion{
    display: block;
  }

  .suggestion h5{
    margin: 0;
    font-weight: bold;
    display: block;
  }

  .mobileSearch{
    border-bottom: 1px solid #999999;
    padding: 15px 0;
    display: block;
  }

  .mobileTitle{
    display: block;
    font-size: 18px;
    margin-top: 20px;
  }

  #mobileSearch{
   background-color: #f9f9f9;
   border-radius: 5px; 
   padding: 0 1rem;
  }

  #keywords{
    margin-top: 1rem;
  }

  #keywords a{
    border-bottom: 1px solid #e5e5e5;
  }

  #keywords a:first-child{
    border-top: 1px solid #e5e5e5;
  }

  #keywords a.disabled{
    border:none !important
  }

  .article-content > h5{
    font-size: 18px;
  }

  .article-content #subCategoryContainer a{
    font-size: 14px;
    padding: 10px;
  }

  footer .top > div{
    display: block;
  }

  footer .top{
    padding: 2rem 1rem;
  }

  .contact-section > div{
    min-width: 100%;
  }

  .contact-section > div:first-child{
    margin-bottom: 15px;
  }

  .contact-section > div h5{
    font-size: 12px;
  }

  .contact-section > div h5, .contact-section > div p{
    font-size: 12px;
  }

  .contact-section > div > div{
    margin-right: 20px;
  }
  
  footer .bottom{
    display: block;
    text-align: center;
  }

  footer .bottom > div{
    font-size: 12px;
    justify-content: center;
  }

  footer .bottom > div:first-child{
    margin-bottom: 15px;
  }

  footer .bottom > div > div{
    font-size: 14px;
  }
}