/* define css variables and default elements css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif !important;
}

:root {
  --txtColor: #000;
  --txtColor1: #fff;
  --bgColor: #000;
  --bgColor2: #fff;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  overflow-x: hidden !important;
}

/* common loader css */
.loader {
  width: 100%;
  text-align: center;
}

.loader img {
  height: 100px;
}

/* header and navbar css */
header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1.2rem 9% !important;
}

.navbar-brand {
  font-size: 2.2rem;
  color: var(--txtColor) !important;
  font-weight: 900;
  position: relative;
}

.navbar-dark .navbar-toggler {
  padding: 0px !important;
}

.header_bars {
  width: 25px;
  height: 0.2rem;
  background-color: #000;
  margin: 6px 0;
}

.navbar-nav {
  margin-left: 4rem;
}

.navbar-nav .nav-item {
  padding: 0 15px;
}

.navbar-nav .nav-link {
  text-decoration: none !important;
  font-size: 16px;
  color: gray !important;
}

.navbar-nav .nav-link:hover {
  color: var(--txtColor) !important;
  transition: all 0.2s linear;
}

.top_tool_bar {
  height: 540px;
  overflow-x: hidden;
  overflow-y: auto;
  left: -50px;
  font-size: 14px;
  border: none;
  background: #f8f9fa;
  /* box-shadow: 0 1px 1px 0 #bdcad2; */
  top: 50px !important;
}

.dropdown-menu.show {
  padding: 3.5rem;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 5rem;
  row-gap: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

/* pageheaderBg and pageheading(h1,h2) css */
.pageHeaderBg {
  background-position: center;
  background-size: cover;
  margin-bottom: 30vh;
  padding: 15px 0;
}

.pageHeading h1 {
  font-size: 27px;
  font-weight: 600;
  color: #000;
}

/* serachSection and serachBox css */
#containerWd {
  max-width: 100%;
  width: 700px !important;
  padding: 0px;
}

.serachSection {
  height: 50px;
  position: relative;
}

.serachSection .serachBox .txtBox {
  height: 70px;
  border: solid 1px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 0;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
  color: var(--txtColor);
  text-indent: 15px;
  outline: none;
  position: relative;
}

.serachSection .serachBox .letter-close-button {
  position: absolute;
  right: 220px;
  top: 24px;
  font-size: 18px;
  cursor: pointer;
  display: none;
}

.serachSection .serachBox .close_ltr_icon {
  display: block;
}

/* txtBox animation css */
.txtBox~.focus-border:before,
.txtBox~.focus-border:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #000;
  transition: .5s;
  transition-delay: 0.2s;
  z-index: 9;
}

.txtBox~.focus-border:after {
  top: auto;
  bottom: 0;
  right: auto;
  left: 0;
  transition-delay: 0.6s;
}

.txtBox:focus~.focus-border:before,
.txtBox:focus~.focus-border:after,
.has-content.txtBox~.focus-border:before,
.has-content.txtBox~.focus-border:after {
  width: 100%;
  transition: .5s;
  transition-delay: 0.6s;
}

.txtBox:focus~.focus-border:after,
.has-content.txtBox~.focus-border:after {
  transition-delay: 0.2s;
}

.txtBox:focus~.focus-border i:before,
.txtBox:focus~.focus-border i:after,
.has-content.txtBox~.focus-border i:before,
.has-content.txtBox~.focus-border i:after {
  height: 100%;
  transition: 0.2s;
}

.txtBox:focus~.focus-border i:after,
.has-conten.txtBox~.focus-border i:after {
  transition-delay: 0.4s;
}

.txtBox~.focus-border i:before,
.txtBox~.focus-border i:after {

  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background-color: #000;
  transition: .5s;
}

.txtBox~.focus-border i:after {

  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
  transition-delay: 0.4s;
}

.txtBox::placeholder {
  color: var(--txtColor);
  opacity: 0.5;
  font-weight: 500 !important;
  text-transform: capitalize;
}

/* close animation css */

.serachSection .serachBox .serachBtn {
  border-radius: 0px;
  background-color: #000 !important;
  background: url(/assets/images/search.svg) no-repeat center center;
  background-size: 35px 35px;
  height: 70px;
  width: 59px;
  border: none;
  position: absolute;
  top: 0px;
  right: 0px;
  outline: none;
}

.serachSection .serachBox .select_dropDown2 {
  height: 69px;
  position: absolute;
  top: 0px;
  font-size: 15px;
  width: 142px;
  overflow: hidden;
  object-fit: cover;
  right: 69px;
  border-bottom: 0 !important;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: white;
  border-left: 1px solid rgba(0, 0, 0, 0.11);
  border-top: 1px solid rgba(0, 0, 0, 0.11);
}

.serachSection .serachBox .select_dropDown2:focus {
  outline: none;
}

.serachSection .serachBox .advancedFilter .filterButton {
  background: #f8f9fa;
  box-shadow: 0 0 2px #343a4063;
  width: 210px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  padding: 12px;
  text-align: left;
  color: #1c1107;
  font-size: 13px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  outline: none;
}

.serachSection .serachBox .advancedFilter .angle-arrow2 {
  background: url(/assets/images/angle-arrow-down.svg) no-repeat;
  background-size: contain;
  object-fit: cover;
  width: 10px;
  height: 10px;
  font-weight: 900;
  position: absolute;
  top: 19px;
  right: 9px;
  margin: -3px 0;
  cursor: pointer;
  /* z-index: 9999; */
}


.hide {
  visibility: hidden;
}

.fillterWrapper {
  display: none;
}

.startsWith,
.mustInclude,
.endsWith,
.exculdeWith,
.inculdeWith,
.wordLength {
  position: relative;
}

.actives {
  z-index: 999;
  top: 90px;
  background: #fff;
  box-shadow: 0 0 5px rgb(0 0 0 / 40%);
  padding: 15px 15px;
  border-radius: 15px;
  height: auto;
  position: absolute;
  right: -16px;
  margin: 1rem 0;
  flex-direction: column;
  width: 240px;
  display: inline-flex !important;
  gap: 5px;
}

.fillterWrapper label {
  margin: 0;
  text-indent: 5px;
}

.fillterWrapper input {
  border-radius: 10px;
  border: solid 1px rgba(0, 0, 0, 0.11);
  background-color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  width: 100%;
  outline: none;
  box-shadow: none;
}

.fillterWrapper .filter-tooltip {
  /* opacity: .5; */
  position: absolute;
  top: 20px;
  right: 10px;
  font-size: 15px;
  cursor: pointer;
}


.filter-tooltip::after,
.filter-tooltip::before {
  left: 25%;
  opacity: 0;
  position: absolute;
  z-index: -100;

}

.filter-tooltip:focus::after,
.filter-tooltip:focus::before,
.filter-tooltip:hover::after,
.filter-tooltip:hover::before {
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 100
}

.filter-tooltip::before {
  border-style: solid;
  border-width: 1em .75em 0 .75em;
  border-color: #3e474f transparent transparent transparent;
  transition: 0 !important;
  bottom: 100%;
  content: '';
  margin-left: -.5em;
  transform: scale(.6) translateY(-90%);
  font-size: 12px;
  top: -10px;
}

.filter-tooltip:focus::before,
.filter-tooltip:hover::before {
  transition: all .65s cubic-bezier(.84, -.18, .31, 1.26) .2s
}

.filter-tooltip::after {
  font-size: 10px;
  text-align: center;
  background: #000;
  border-radius: .25em;
  bottom: 120%;
  color: #edeff0;
  content: attr(data-tip);
  margin-left: -4em;
  padding: 0.5rem;
  transition: all .65s cubic-bezier(.84, -.18, .31, 1.26);
  transform: scale(.6) translateY(50%);
  width: 150px;
}

.filter-tooltip:focus::after,
.filter-tooltip:hover::after {
  transition: all .65s cubic-bezier(.84, -.18, .31, 1.26)
}

/* Feature highlightes section css */
.feature,
.faqs {
  padding: 15px;
  background-color: #b641da;
  margin-top: 5rem;
  color: white;
  text-align: center;
  width: 100%;
}

.feature,
.faqs .title {
  text-indent: 10px;
  font-size: 25px;
  font-weight: 900;
}

.features_data .card-body>.card-title {
  transition: all 0.5s ease;
  font-size: 1.5rem;
  line-height: 25px;
  color: #000;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 5px;
}

.features_data .card-body:hover i {
  transform: scale(1.2);
  transition: all 0.5s linear;
}

.features_data .card-body:hover .card-text {
  transition: all 0.5s linear;
  color: #6c757d !important;
}

.features_data .card-body:hover {
  border-radius: 10px;
  transition: all 0.5s ease;
  background-color: #f7f7f7;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* How to section css */
.how-to-section {
  padding: 90px 0;
}

.how-to-section .how-to-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.how-to-section .how-to-leftimg {
  height: 180px;
  width: 300px;
}

.how-to-section .how-to-title {
  line-height: 30px;
  font-weight: 600;
  margin: 0;
  padding-bottom: 12px;
}

.how-to-section .how-to-list {
  margin: 0;
  padding: 6px 0;
  list-style: none;
  text-align: left;
}

.how-to-section .how-to-list-item {
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  padding: 6px 0;
}

.how-to-section .how-to-list-item span {
  line-height: 24px;
  font-size: 16px;
  font-weight: 600;
  min-width: 24px;
}

/* FAQ's section css */
.faqList-container {
  margin-top: 50px;
  margin-bottom: 120px;
}

.faqList-container .meduim-text2 {
  margin: 0 0 25px;
  font-size: 20px;
  font-weight: 600;
  color: #11304e;
  position: relative;
  padding-right: 30px;
  line-height: 1.4;
  cursor: pointer;
  padding-left: 48px;
}

.faqList-container .meduim-text {
  font-size: 14px;
  padding-left: 48px;
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
  color: #536571;
  margin: 0 0 25px;
  height: auto;
  overflow: hidden;
}

/* Rating tool css */
.rating-tool {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0px 20px 0px;
  border-top: 1px solid rgb(221, 221, 221);
  border-bottom: 1px solid rgb(221, 221, 221);
  margin-bottom: 60px;
  position: relative;
  top: 30px;
}

.rating-tool #rating-img {
  height: 1px;
  width: 1px;
  filter: brightness(100);
}

.rating-tool .rating-text {
  font-size: 17px;
  font-weight: 700;
  color: rgb(33, 33, 33);
  padding: 6px;
}

.rating-tool .rating-stars {
  color: #9d9d9d !important;
  display: flex;
  align-items: center;
}

.rating-tool .rating-stars i {
  padding: 5px;
  font-size: 17px;
}

.rating-tool .rating-value {
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  color: rgb(33, 33, 33);
  padding: 6px;
}

/* social icons css  */
.social-icons {
  position: fixed;
  right: 0;
  top: 35%;
  width: 47px;
  height: 174px;
  display: flex;
  font-size: 16px;
  color: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  background: #fff;
  box-shadow: 0 0 20px -7px #191a1a9e;
  line-height: 30px;
}

.social-icons a {
  color: #000 !important;
  padding: 4px 0;
}

.social-icon {
  margin: 0 !important;
  color: gray;
  font-size: 1.6rem;
}

.social-icon:hover {
  color: black;
}

/* recent and related posts on home page css */
.related_post_heading {
  width: 100%;
  font-size: 46px;
  text-align: center;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.24;
  letter-spacing: normal;
  color: #11304e;
  margin-bottom: 45px;
  padding-top: 75px;
  display: inline-block;
}

.card-footer {
  border: none;
}

.wrapfooter {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.wrapfooter img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.wrapfooter .author-meta {
  flex: 1 1 auto;
  padding: 0 15px;
}

.wrapfooter .author-meta a {
  font-size: 15px;
  color: #000;
  text-transform: capitalize;
}

/* Footer section css */
.footer-section {
  padding: 50px 0px;
  background-color: #f8f9fa;
  margin-top: 3rem;
}

.footer-section .txt-primary {
  color: #000;
  font-size: 16px;
  text-decoration: none !important;
}

.footer-section .txt-secondary {
  color: gray;
  font-size: 15px;
  text-decoration: none !important;
  margin: 2rem 0px;
}

.footer-section .txt-secondary:hover {
  color: #000;
}

.footer-logo-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: #000;
  font-weight: 900;
}

.footer_hr {
  width: 50px;
  margin: 2rem auto;
  border: 2px solid #000;
}

.footer-social-list .list-inline {
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.footer-social-list ul li a i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  vertical-align: middle;
  font-size: 18px;
  background: #000;
  color: transparent;
  transition: all 0.3s ease-in;
}

.footer-section .copyright-text {
  font-size: 18px;
}

.footer-section .drop-down-btn {
  cursor: pointer;
  outline: 0px;
  border: 0px;
  width: auto;
  overflow: visible;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  background-color: transparent;
  transition: background-color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgb(26, 26, 26);
}

.footer-section .drop-down-btn svg {
  height: 22px;
}

.footer-section .language-drop-down-menu {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-section .language-drop-down-item {
  width: 50%;
  padding: 10px 12px 1px 1px;
  text-align: center;
  font-size: 15px;
  margin-bottom: 0;
  list-style: none;
}

.footer-section .language-drop-down-item a {
  justify-content: space-between;
  display: flex;
  width: 100%;
  align-items: center;
  padding: 9px 9px;
  color: #11304e;
  border-bottom: 1px solid rgb(224, 224, 224);
}

.footer-section .language-drop-down-item a:hover {
  background: rgb(238, 238, 238);
  border-radius: 3px;
}

.footer-section .language-drop-down-item a i {
  margin: 0;
}

.footer-section .language-drop-down-menu .active-lang {
  background: rgb(238, 238, 238);
  border-radius: 3px;
}

.footer-section .modal .modal-title {
  font-size: 2.28rem;
}

.footer-section .modal .close {
  font-size: 3rem;
}

@media (max-width: 768px) {

  /* navbar ||| pageheading || searchsection css for mobile */
  .navbar {
    padding: 1.2rem 15px !important;
  }

  .pageHeaderBg {
    background: unset;
  }

  .pageHeading h1 {
    font-size: 2rem;
  }

  .pageHeading>h2 {
    font-size: 1.4rem;
  }

  #containerWd {
    width: 100% !important;
    padding: 0px 15px;
  }

  .serachSection .serachBox .txtBox {
    height: 50px !important;
  }

  .serachSection .serachBox .letter-close-button {
    right: 45%;
    top: 17px;
    font-size: 15px;
  }

  .serachSection .serachBox .serachBtn {
    height: 50px !important;
    width: 40px !important;
  }

  .serachSection .serachBox .select_dropDown2 {
    height: 50px;
    width: 30%;
    right: 40px;
    padding: 9.5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  }

  .wrapper_dropDown {
    align-items: flex-end;
    flex-direction: column;
    gap: 0 !important;
  }

  .actives {
    top: 102px;
    right: -5px;
  }

  /* Feature Highlights ||  How to || Faq css for mobile */
  .features_data .card-body {
    border-radius: 10px;
    background-color: #fff;
    box-shadow: unset;
    margin: 20px 0;
  }

  .faqList-container .meduim-text,
  .faqList-container .meduim-text2 {
    padding-left: 0px;
    text-align: center;
  }

  .how-to-section .how-to-leftimg {
    margin-bottom: 24px;
  }

  /* rating and social media  share icons css for mobile */
  .rating-tool .rating-text,
  .rating-tool .rating-value {
    font-size: 12px;
  }

  .social-icons {
    position: static;
    width: 100%;
    font-size: 16px;
    gap: 50px;
    flex-direction: row;
    z-index: 999;
    box-shadow: unset;
    border-top: 1px solid rgb(221, 221, 221);
    border-bottom: 1px solid rgb(221, 221, 221);
    height: auto;
    padding: 20px;

  }

  .share-icon {
    width: 14px;
  }

  .share-this {
    font-weight: 900;
    font-size: 14px;
    display: block !important;
    color: #000;
    text-align: center;
  }


  /* footer css for mobile */
  .footer-section .language-drop-down-item {
    width: 100% !important;
  }

  .footer-section .txt-secondary {
    text-align: center;
  }
}

@media (max-width: 992px) {
  .navbar-nav {
    margin-left: 0rem;
  }

  .navbar-nav .nav-item {
    padding: 0px !important;
  }

  .dropdown-menu.show {
    display: block;
    padding: 15px;
  }
}