/* -------------------Global Styling-------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: inter;
  src: url(../../assets/fonts/inter.ttf);
}
@font-face {
  font-family: sen;
  src: url(../../assets/fonts/sen.ttf);
}
body {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  font-family: inter;
  color: #6D6E76;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  font-family: sen !important;
}

input:focus,
button:focus {
  box-shadow: none !important;
  outline: none !important;
}

.btn-more {
  background-color: #FFD050;
  font-family: sen;
  font-size: 18px;
  font-weight: 700;
  line-height: 56px;
  height: 56px;
  padding: 0 30px;
  text-transform: capitalize;
  border: none;
  transition: all 0.3s ease;
}
.btn-more:hover, .btn-more:active {
  background-color: #e3b945;
}

.blog-contents .sub-title {
  font-family: inter;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #232536;
}
.blog-contents .title {
  color: #232536;
  font-family: sen !important;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
}
@media (max-width: 768px) {
  .blog-contents .title {
    font-size: 24px;
    line-height: 34px;
  }
}
.blog-contents .author {
  font-size: 14px !important;
  color: #232536;
  margin-top: 20px;
}
.blog-contents .author span {
  color: #592EA9;
  font-weight: 500;
}
.blog-contents .description {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .blog-contents .description {
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
  }
}

.blog-img {
  max-width: 500px;
}
.blog-img img {
  height: 360px;
  width: 100%;
}
@media (max-width: 992px) {
  .blog-img img {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .blog-img {
    max-width: 100%;
  }
}

/* -------------------End Global Styling-------------------- */
/* ---------------------Header Styling---------------------- */
header nav {
  background-color: #232536;
}
header nav .btn-subscribe {
  height: 56px;
  width: 180px;
  background-color: #ffffff;
  font-family: sen;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  transition: all 0.3s ease;
  border: none;
}
header nav .btn-subscribe:hover {
  background-color: #FFD050;
}
@media (max-width: 992px) {
  header nav .btn-subscribe {
    margin-top: 15px;
  }
}
@media (max-width: 992px) {
  header nav .navbar-nav {
    border-top: 1px solid #6D6E76;
    margin-top: 10px;
  }
}
header nav .nav-item .nav-link {
  color: #ffffff !important;
  font-family: inter !important;
  font-weight: 400 !important;
  padding: 0 15px !important;
}
header nav .nav-item .nav-link.active, header nav .nav-item .nav-link:hover {
  color: #FFD050 !important;
}
@media (max-width: 992px) {
  header nav .nav-item .nav-link {
    padding: 15px 0 !important;
  }
}

/* -------------------End Header Styling-------------------- */
/* ------------------Feature Post Styling------------------- */
.feature-post-section {
  padding: 100px 0;
  background-color: #F4F0F8;
}
@media (max-width: 768px) {
  .feature-post-section {
    padding: 60px 0;
  }
}
.feature-post-section .blog-img {
  max-width: 500px;
}
.feature-post-section .blog-img img {
  height: 360px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .feature-post-section .blog-img img {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .feature-post-section .blog-img {
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .feature-post-section .order {
    order: 2;
  }
}

/* ---------------End Feature Post Styling---------------- */
/* ---------------------All Post Styling------------------- */
.all-post {
  padding: 70px 0;
}
@media (max-width: 992px) {
  .all-post {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .all-post {
    padding: 30px 0 60px;
  }
}
.all-post .blog-contents {
  cursor: pointer;
}
.all-post .blog-contents .description {
  margin-bottom: unset;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .all-post .blog-contents .description {
    text-align: justify;
    font-size: 14px;
  }
}
.all-post .blog-contents .sub-title {
  color: #592EA9 !important;
  font-weight: 600;
}
@media (max-width: 768px) {
  .all-post .blog-contents .sub-title {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.all-post .blog-img {
  cursor: pointer;
}
.all-post .blog-img img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.all-post .section-title {
  font-family: sen;
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: -2px;
  color: #232536;
  padding: 15px 0;
  border-bottom: 1px solid rgba(109, 110, 118, 0.3215686275);
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .all-post .section-title {
    font-size: 28px;
    line-height: 36px;
  }
}

/* ------------------End All Post Styling--------------------- */
/* ---------------------Pagination Styling---------------------- */
.pagination {
  justify-content: center;
  margin-top: 15px;
}
.pagination li {
  font-weight: 700;
  font-size: 28px;
  margin: 0 10px;
  cursor: pointer;
  user-select: none;
}
.pagination li.active {
  color: #232536;
}
@media (max-width: 768px) {
  .pagination li {
    font-size: 20px;
  }
}

/* ---------------------End Pagination Styling------------------- */
/* ---------------------All Category Styling--------------------- */
.all-category {
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .all-category {
    padding-bottom: 60px;
  }
}
.all-category h2 {
  font-family: sen;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  color: #232536;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .all-category h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
.all-category .category {
  border: 1px solid rgba(109, 110, 118, 0.3882352941);
  padding: 30px;
}
@media (max-width: 992px) {
  .all-category .category {
    margin-bottom: 30px;
  }
}
.all-category .category img {
  background-color: #FBF6EA;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 15px;
  object-fit: contain;
  padding: 10px;
}
.all-category .category h3 {
  font-family: sen;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  color: #232536;
  margin-bottom: 10px;
}
.all-category .category p {
  font-family: inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #6D6E76;
  margin-bottom: 0;
}

/* -------------------End All Category Styling------------------- */
/* ---------------------All Category Styling--------------------- */
.newsletter {
  text-align: center;
  padding: 100px 0;
}
@media (max-width: 768px) {
  .newsletter {
    padding: 0 0 60px 0;
  }
}
.newsletter .title {
  font-family: sen;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -2px;
  color: #232536;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .newsletter .title {
    font-size: 24px;
    line-height: 34px;
  }
}
.newsletter .para {
  margin-bottom: 20px;
  width: 400px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .newsletter .para {
    font-size: 14px;
    width: 100%;
  }
}

/* ---------------------End Newsletter Styling--------------------- */
/* -------------------------Footer Styling------------------------- */
footer {
  background-color: #232536;
  padding: 100px 0 70px;
}
@media (max-width: 768px) {
  footer {
    padding: 30px 0 40px;
  }
}
footer .footer-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: flex-end;
}
footer .footer-nav li a {
  text-decoration: none;
  display: block;
  color: #ffffff;
  transition: all 0.3s ease;
}
footer .footer-nav li a:hover {
  color: #FFD050;
}
@media (max-width: 768px) {
  footer .footer-nav {
    display: none;
  }
}
@media (max-width: 768px) {
  footer .logo {
    display: none;
  }
}
footer .footer-inner {
  padding: 60px 30px;
  background-color: #2E3040;
  margin: 40px 0;
  align-items: center;
}
@media (max-width: 768px) {
  footer .footer-inner {
    padding: 30px 10px;
  }
}
footer .footer-inner .email-field {
  border-radius: unset;
  font-size: 16px;
}
footer .footer-inner h3 {
  font-family: sen;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -2px;
  color: #ffffff;
}
@media (max-width: 768px) {
  footer .footer-inner h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 15px;
    letter-spacing: unset;
  }
}
@media (max-width: 768px) {
  footer .footer-inner .btn-more {
    font-size: 14px;
    line-height: 40px;
    height: 40px;
    padding: 0 10px;
  }
}
footer address p {
  font-family: inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
}
footer .socials {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  footer .socials {
    justify-content: flex-start;
    margin-top: 1px;
  }
}
footer .socials a i {
  color: #6D6E76;
  font-size: 20px;
}

/* -----------------------End Footer Styling----------------------- */
/* ----------------------Category Page Styling---------------------- */
/* ----------------------Page Header Styling------------------------ */
.page-header {
  background-color: #F4F0F8;
  padding: 100px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .page-header {
    padding: 50px 0;
  }
}
.page-header h1 {
  font-family: sen;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  color: #232536;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 36px;
  }
}
.page-header p {
  font-size: 16px;
  color: #6D6E76;
  line-height: 26px;
  max-width: 500px;
  margin: auto;
  margin-bottom: 30px;
}
.page-header ul {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.page-header ul li {
  list-style: none;
}
.page-header ul li a {
  font-family: inter;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 3px;
  color: #232536;
  text-transform: uppercase;
  display: block;
  text-decoration: none;
}

/* --------------------End Page Header Styling---------------------- */
/* --------------------Category Content Styling---------------------- */
.category-blog-section {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .category-blog-section {
    padding: 70px 0 50px;
  }
}
.category-blog-section .blog-img {
  max-width: 100%;
}
.category-blog-section .blog-img img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.category-blog-section .blog-contents {
  padding-right: 30px;
}
.category-blog-section .blog-contents .title {
  color: #232536;
}
.category-blog-section .blog-contents .sub-title {
  color: #592EA9;
}
.category-blog-section .category-sidebar .sidebar-title {
  font-family: sen;
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
  color: #232536;
}
@media (max-width: 768px) {
  .category-blog-section .category-sidebar .sidebar-title {
    font-size: 28px;
  }
}
.category-blog-section .category-sidebar ul li {
  border: 1px solid #6D6E76;
  margin-bottom: 25px;
  padding: 20px;
  display: flex;
  align-items: center;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.category-blog-section .category-sidebar ul li img {
  background-color: #FBF6EA;
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: 5px;
  margin-right: 15px;
}
.category-blog-section .category-sidebar ul li span {
  font-family: sen;
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  color: #232536;
}
@media (max-width: 768px) {
  .category-blog-section .category-sidebar ul li span {
    font-size: 24px;
  }
}
.category-blog-section .category-sidebar ul li.active, .category-blog-section .category-sidebar ul li:hover {
  background-color: #FFD050;
  border: 1px solid #FFD050;
}
.category-blog-section .category-sidebar .tags {
  display: flex;
  flex-wrap: wrap;
}
.category-blog-section .category-sidebar .tags span {
  border: 1px solid #6D6E76;
  font-size: 14px;
  font-family: sen;
  font-weight: 700;
  line-height: 32px;
  padding: 6px 25px;
  border-radius: 30px;
  display: inline-block;
  margin: 8px;
}

/* --------------------Category Content Styling---------------------- */
/* --------------------End Category Page Styling--------------------- */
/* --------------------Blog Details Page Styling--------------------- */
.blog-details .blog-headings {
  padding: 100px 0 60px;
}
@media (max-width: 768px) {
  .blog-details .blog-headings {
    padding: 60px 0 30px;
  }
}
.blog-details .blog-headings .writer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog-details .blog-headings .writer-info img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.blog-details .blog-headings .writer-info .text h3 {
  font-family: sen;
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  color: #592EA9;
}
.blog-details .blog-headings .writer-info .text p {
  font-family: inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #6D6E76;
}
.blog-details .blog-headings .blog-title {
  font-family: sen;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  color: #232536;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .blog-details .blog-headings .blog-title {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 20px;
  }
}
.blog-details .blog-headings .category span {
  font-family: sen;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: #232536;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .blog-details .blog-headings .category span {
    font-size: 16px;
  }
}
.blog-details .blog-des-img {
  width: 100%;
  height: 550px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .blog-details .blog-des-img {
    margin-bottom: 30px;
    height: 300px;
  }
}
.blog-details .blog-des-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-details .blog-contents h3 {
  font-family: sen;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  color: #232536;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .blog-details .blog-contents h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 10px;
  }
}
.blog-details .blog-contents p {
  font-family: inter;
  font-size: #6D6E76;
  font-weight: 400;
  line-height: 28px;
  text-align: justify;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .blog-details .blog-contents p {
    font-size: 14px;
  }
}
.blog-details .blog-contents ul li {
  color: #232536;
  font-size: 24px;
  font-family: sen;
  font-weight: bold;
  line-height: 32px;
}
@media (max-width: 768px) {
  .blog-details .blog-contents ul li {
    font-size: 18px;
    line-height: 28px;
  }
}
.blog-details .related-posts {
  padding-top: 100px;
  border-bottom: 1px solid #6D6E76;
  padding-bottom: 60px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .blog-details .related-posts {
    padding-top: 50px;
  }
}
.blog-details .related-posts h2 {
  font-family: sen;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  color: #232536;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .blog-details .related-posts h2 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 30px;
  }
}
.blog-details .related-posts img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .blog-details .related-posts img {
    height: 250px;
    margin-bottom: 20px;
  }
}
.blog-details .related-posts small {
  font-family: inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #6D6E76;
}
.blog-details .related-posts small span {
  color: #592EA9;
}
.blog-details .related-posts .title {
  margin-top: 15px;
  font-family: sen;
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  color: #232536;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .blog-details .related-posts .title {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 15px;
  }
}
.blog-details .related-posts .des {
  text-align: justify;
  font-size: 16px;
}
@media (max-width: 768px) {
  .blog-details .related-posts .des {
    font-size: 14px;
  }
}

/* ------------------End Blog Details Page Styling------------------- */
/* ------------------App Section Styling------------------- */
.appSection {
  background-color: #f5f5f5;
  padding: 60px 0;
}
@media (max-width: 768px) {
  .appSection {
    display: none;
  }
}
@media (max-width: 992px) {
  .appSection {
    padding: 100px 0;
  }
}
.appSection .app-contents .section-title {
  font-family: sen;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  color: #232536;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .appSection .app-contents .section-title {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 38px;
  }
}
.appSection .app-contents p {
  margin-bottom: 50px;
  line-height: 32px;
}
@media (max-width: 992px) {
  .appSection .app-contents p {
    font-size: 14px;
    text-align: justify;
    line-height: 26px;
    margin-bottom: 30px;
  }
}
.appSection .app-contents img {
  width: 200px;
  object-fit: contain;
  cursor: pointer;
  transition: all 0.3s ease;
}
.appSection .app-contents img:hover {
  transform: scale(1.01);
}
@media (max-width: 992px) {
  .appSection .app-contents img {
    width: 150px;
  }
}
.appSection .appImg {
  width: 70%;
  margin-left: auto;
  display: block;
}
@media (max-width: 992px) {
  .appSection .appImg {
    width: 90%;
  }
}

/* ------------------End App Section Styling------------------- */
/* ------------------Add Post Form Styling------------------- */
.add-post-section {
  padding: 60px 0;
}
.add-post-section form {
  padding: 30px;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.add-post-section label {
  margin-bottom: 0;
  color: #232536;
  font-family: sen;
  font-size: 18px;
}
.add-post-section .form-control {
  font-family: sen;
  font-size: 16px;
  outline: none;
  min-height: 45px;
  border-radius: unset;
}
.add-post-section .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #FFD050;
}
.add-post-section .btn-more {
  height: 48px;
  line-height: 48px;
}

/* --------------End Add Post Form Styling------------------- */

/*# sourceMappingURL=style.css.map */
