/*==== Google Fonts(urbanist || Poppins || pt-sans ) :: Start ====*/
@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&display=swap");
/*==== Google Fonts(urbanist || Poppins ) :: End ====*/

/*==== Default Style :: Start ====*/
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

:root {
  --primary: #61a745;
  --secondary: #252c32;
  --white: #fff;
  --base-transition: all 0.3s ease-in-out;
}

body {
  font-family: "Kumbh Sans", sans-serif;
  background-color: var(--white);
  color: var(--secondary);
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none !important;
}

.section-padding-x {
  padding-left: 16px;
  padding-right: 16px;
}

.close-sidebar-btn {
  position: absolute;
  right: 16px;
}
.close-sidebar-btn svg {
  fill: #fff;
}
.header.show {
  left: 0;
}
.no-scroll {
  overflow: hidden;
}

.site-top {
  display: none;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary);
  padding: 8px 16px;
  color: var(--white);
  font-family: "Kumbh Sans";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 164%; /* 22.96px */
}
.site-top-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  row-gap: 6px;
}
.site-top-left svg {
  /* width: 11px; */
  width: 14px;
}
.site-top-left .box {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}
.site-top-right {
  background: rgba(0, 0, 0, 0.1);
  padding: 12px 30px;
  display: none;
  align-items: center;
  gap: 20px;
}

/* header design start */
.header {
  position: absolute;

  padding-top: 12px;
  padding-bottom: 12px;

  top: 0;
  z-index: 100;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  width: 320px;
  height: 100vh;
  background-color: var(--secondary);
  transition: left 0.3s ease;
  left: -320px;
}
.header .navs {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  flex-grow: 1;
  padding-top: 60px;
  overflow-y: auto;
  width: 100%;
}
.header .navs .item {
  color: var(--white);
  font-family: "Kumbh Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 132%; /* 21.12px */
  letter-spacing: -0.32px;
  transition: var(--base-transition);
}
.header .navs .active-item {
  color: var(--primary);
}
.header .navs .item:hover {
  color: var(--primary);
}
.header .header-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

#profile-btn {
  cursor: pointer;
}

.search-container {
  border: none;
  padding: 0;
  border-radius: 4px;
  transition: var(--base-transition);
}
.search-container.active {
  padding: 4px 12px 8px 12px;
  border: 1px solid var(--secondary);
}
.search-container input {
  width: 0;
  opacity: 0;
  border: none;
  outline: none;
  transition: width 0.5s ease, opacity 0.5s ease;
}
.search-container.active input {
  width: 150px;
  opacity: 1;
  color: var(--secondary);
}
#search-icon {
  cursor: pointer;
}
.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}
.mobile-header .mobile-logo img {
  width: 60px;
}
.mobile-header svg {
  stroke: var(--secondary);
}
.common-banner {
  padding-top: 40px;
  padding-top: 40px;
  height: 360px;
  background-image: url("../../images/banner1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-title {
  color: var(--white);
  font-family: "Kumbh Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 132%;
  letter-spacing: -0.8px;
}
.banner-text {
  color: var(--white);
  font-family: "Kumbh Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 164%; /* 29.52px */
  margin-top: 16px;
  margin-bottom: 24px;
}
.common-btn {
  border-radius: 4px;
  background: var(--primary);
  padding: 8px 16px;
  color: var(--white);
  font-family: "Kumbh Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 164%; /* 32.8px */
  text-transform: capitalize;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* header design end */

/* main-content-padding */
.main-content-padding-y {
  padding-top: 30px;
  padding-bottom: 30px;
}

.custom-navigation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.custom-navigation a {
  color: var(--secondary);
  font-family: "Kumbh Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 132%; /* 21.12px */
  letter-spacing: -0.32px;
}
.custom-navigation .active {
  font-weight: 400;
}
.custom-navigation span {
  color: #ccc;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 70px;
}
.pagination-container .page-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ebecef;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.pagination-container .active-page {
  background-color: var(--primary);
  color: var(--white);
}

/* faq section */
.faq-section-title {
  color: var(--secondary);
  font-family: "Kumbh Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 132%;
  letter-spacing: -0.32px;
  margin-bottom: 20px;
}

.faq-section .accordion-item {
  border: none;
  box-shadow: none;
}

.faq-section .accordion-button {
  border: none;
  box-shadow: none;
  background-color: transparent;
  color: var(--Text-Primary, #252c32);
  font-family: "Kumbh Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 132%; /* 21.12px */
  letter-spacing: -0.16px;
  padding: 12px 8px;
  font-size: 14px;
}
.faq-section .accordion {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: var(--primary);
  color: var(--secondary);
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-body {
  border: none;
  box-shadow: none;
}

.footer {
  padding-top: 57px;
  padding-bottom: 47px;
  background: #1c2126;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer-logo img {
  width: 126px;
}
.footer-left {
  width: 100%;
}
.footer-left-bottom {
  margin-top: 30px;
}
.footer-left-text {
  color: var(--white, #fff);
  font-family: "Kumbh Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 164%;
}
.footer-socials {
  margin-top: 33px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-right {
  padding-top: 30px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  row-gap: 40px;
}
.footer-title {
  color: var(--white);
  font-family: "Kumbh Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 132%;
  letter-spacing: -0.16px;
}
.footer-items {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-items a {
  color: var(--white);
  font-family: "Kumbh Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 164%; /* 22.96px */
  transition: var(--base-transition);
  display: inline-block !important;
}
.footer-items a:hover {
  border-bottom: 1px solid var(--white);
}

.copyright {
  padding: 16px;
  background: #000;
  color: var(--white);
  text-align: center;
  font-family: "Kumbh Sans";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 164%; /* 26.24px */
}

@media screen and (min-width: 450px) {
  .footer-right {
    padding-top: 30px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    row-gap: 40px;
  }
}

@media (min-width: 650px) {
  .footer-right {
    padding-top: 30px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    row-gap: 40px;
  }
  .site-top-left .box {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .site-top-left svg {
    width: 16px;
  }
  .site-top {
    padding: 14px 20px;
  }
  .section-padding-x {
    padding-left: 20px;
    padding-right: 20px;
  }
  .common-banner {
    height: 400px;
  }
  .site-top-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 34px;
  }
  .faq-section-title {
    color: var(--secondary);
    font-family: "Kumbh Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 132%;
    letter-spacing: -0.32px;
    margin-bottom: 30px;
  }
}
@media (min-width: 991px) {
  .footer-logo img {
    width: 166px;
  }
  .main-content-padding-y {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .site-top {
    padding: 14px 30px;
    font-size: 14px;
  }
  .section-padding-x {
    padding-left: 30px;
    padding-right: 30px;
  }
  .banner-title {
    font-size: 40px;
  }
  .common-banner {
    height: 560px;
  }
}
@media (min-width: 1300px) {
  .footer-site-location {
    display: none !important;
  }
  .site-top-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 34px;
    row-gap: 6px;
  }
  .site-top-left svg {
    width: 14px;
  }
  .site-top-left .box {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
  }
  .header {
    display: flex;
    position: static;
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: auto;
    background-color: #fff;
  }
  .mobile-header {
    display: none;
  }
  .copyright {
    font-size: 16px;
  }
  .footer-left {
    width: 35%;
  }
  .footer-left-bottom {
    margin-top: 100px;
  }
  .footer-right {
    padding-top: 120px;
    width: 65%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 37px;
  }
  .footer {
    padding-top: 57px;
    padding-bottom: 47px;
    background: #1c2126;
    color: var(--white);
    display: flex;
    flex-direction: row;
    gap: 60px;
  }
  .footer-left-text {
    font-size: 16px;
  }
  .footer-logo img {
    width: 206px;
  }
  .faq-section .accordion-button {
    padding: 16px 16px;
    font-size: 18px;
  }
  .faq-section .accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .faq-section-title {
    color: var(--secondary);
    font-family: "Kumbh Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 132%;
    letter-spacing: -0.32px;
    margin-bottom: 40px;
  }
  .main-content-padding-y {
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .site-top {
    display: flex;
  }
  .sign-in-nav {
    display: none;
  }
  .header .navs {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    flex-grow: 0;
    padding-top: 0;
    overflow-y: hidden;
    width: auto;
  }
  .header .navs .item {
    color: var(--secondary);
  }
  .site-top {
    padding: 14px 40px;
  }
  .section-padding-x {
    padding-left: 40px;
    padding-right: 40px;
  }
  .banner-title {
    font-size: 60px;
  }
  .banner-text {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .common-btn {
    padding: 12px 24px;
    font-size: 16px;
  }
  .common-banner {
    height: 660px;
  }
  .site-top-right {
    display: flex;
  }
  .header .header-actions {
    display: flex;
  }
}

@media (min-width: 1700px) {
  .footer {
    padding-top: 57px;
    padding-bottom: 47px;
    background: #1c2126;
    color: var(--white);
    display: flex;
    gap: 130px;
  }
  .main-content-padding-y {
    padding-top: 50px;
    padding-bottom: 150px;
  }
  .site-top {
    padding: 14px 318px;
  }
  .section-padding-x {
    padding-left: 296px;
    padding-right: 296px;
  }
  .banner-title {
    font-size: 80px;
  }
  .banner-text {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .common-btn {
    padding: 15px 30px;
    font-size: 20px;
  }
  .common-banner {
    height: 760px;
  }
}
