@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville&family=PT+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Work+Sans:wght@400;500;600;700&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Work Sans';
}

html {
  font-size: 87.5%;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  color: #fff;
  background-color: #1a1e33;
}

a:hover {
  opacity: 1;
  cursor: pointer;
  color: #ffa000;
  transition: all 0.1s ease-in-out;
}

/* Navbar */
#nav,
#nav-main-section,
#nav-menu-section-btn,
#nav-main-section-logo,
#nav-search-section,
#nav-search-section-btn,
#nav-search-searchbox-section-btn {
  display: flex;
  align-items: center;
}

#nav {
  position: fixed;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 3;
  height: 5rem;
  width: 100%;
  padding: 0 1.2rem;
  color: #fff;
  overflow: hidden;
  background-color: #131625;
  box-shadow: 0.5rem 0.5rem 1rem #131625;
}

#nav-menu-section-checkbox,
#nav-search-section-checkbox {
  display: none;
}

#nav-menu-section-btn,
#nav-search-section-btn,
#nav-search-searchbox-section-input,
#nav-search-searchbox-section-btn {
  border: solid 0.1rem #ffa000;
  transition: all 0.4s ease-in-out;
}

#nav-menu-section-btn,
#nav-search-section-btn,
#nav-search-searchbox-section-btn {
  width: fit-content;
}

.nav-btn-logo,
#nav-main-logo-section-logo {
  font-size: 1.47rem;
  color: #ffa000;
}

.nav-btn-logo:hover {
  cursor: pointer;
}

#nav-menu-section-menu {
  min-width: 100%;
  list-style-type: none;
}

#nav-main-section-title {
  font-size: 2.2rem;
  font-weight: 500;
  margin-left: 0.7rem;
}

#nav-menu-section {
  display: block;
  position: fixed;
  top: 0%;
  left: -100%;
  width: 280px;
  z-index: 1;
  height: 100vh;
  text-align: left;
  align-items: left;
  padding: 1.2rem;
  transition: all 0.8s ease;
  font-size: 2rem;
  background-color: #131625;
}

#nav-menu-section-menu sup {
  font-size: .9rem;
}

#nav-menu-section-title {
  display: none;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.nav-menu-section-menu-divider {
  height: 1px;
  background-color: #fff;
}

.nav-menu-section-menu-item {
  margin-bottom: 0.9rem;
}

.nav-menu-section-menu-item:last-child {
  margin-bottom: 0;
}

.nav-menu-section-menu-item-link {
  text-decoration: none;
  letter-spacing: 0.06rem;
  color: #fff;
  transition: all 0.3s ease-in-out;
  font-size: 1.3rem;
}

.nav-menu-section-menu-item-link-active,
.nav-menu-section-menu-item-link:hover {
  color: #ffa000;
  font-size: 1.6rem;
}

.nav-menu-section-menu-item-link-active {
  font-size: 1.8rem;
}

#nav-main-logo-section {
  position: relative;
  left: -5.16rem;
}

#nav-search-searchbox-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem;
  position: fixed;
  z-index: 1;
  top: calc(-100% - 5rem);
  left: 0%;
  width: 100%;
  transition: all 0.8s ease;
  background-color: #131625;
}

#nav-search-searchbox-section-input {
  width: calc(100% - 45px);
  padding: 0.4rem;
  font-size: 1.2rem;
}

#nav-search-searchbox-section-input:focus {
  outline: none;
  border: none;
}

#nav-search-searchbox-section-btn-logo {
  padding: 0.4rem;
  font-size: 1.4rem;
}

/* Some IMP classes */
.blur-effect {
  pointer-events: none;
  filter: blur(1rem);
  -webkit-filter: blur(1rem);
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.ul-25,
.ul-50,
.ul-75,
.ul-100 {
  min-height: 0.211rem;
  max-height: 0.211rem;
  border-radius: 0.1rem;
  background-color: #fff;
}

.ul-25 {
  width: 25%;
}

.ul-50 {
  width: 50%;
}

.ul-75 {
  width: 75%;
}

.ul-100 {
  width: 100%;
}

.vl-25,
.vl-50,
.vl-75,
.vl-100 {
  min-width: 0.411rem;
  max-width: 0.411rem;
  border-radius: 0.2rem;
  background-color: #fff;
}

.vl-25 {
  height: 25vmin;
}

.vl-50 {
  height: 50vmin;
}

.vl-75 {
  height: 75vmin;
}

.vl-100 {
  height: 100vmin;
}

.bg-white {
  background-color: #fff !important;
}

.bg-black {
  background-color: #000 !important;
}

.bg-red {
  background-color: #f00 !important;
}

.bg-blue {
  background-color: #00f !important;
}

.bg-green {
  background-color: #0f0 !important;
}

.bg-warning {
  background-color: #ff8083 !important;
}

.bg-info {
  background-color: #8083ff !important;
}

.bg-success {
  background-color: #80ff83 !important;
}

.bg-kesari {
  background-color: #ffa000 !important;
}

.bg-ltheme {
  background-color: #1a1e33 !important;
}

.bg-dtheme {
  background-color: #131625 !important;
}

/* Main */
main {
  margin: 5rem 0 0 0;
  padding: 2.3rem 1rem;
  width: 100%;
}

#dialog {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  width: 35rem;
  height: fit-content;
  max-height: 80vh;
  margin: auto;
  color: #fff;
  z-index: 3;
  padding: 1.2rem 0;
  border-radius: 2rem;
  overflow: hidden;
  background-color: #131625;
  box-shadow: 0 0 1.4rem 0.7rem #000;
}

#dialog-title {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 1rem;
  text-transform: capitalize;
}

#dialog-content-section {
  align-items: center;
  background-color: #1a1e33;
  width: 100%;
  height: 100%;
  margin: 0.8rem;
  padding: 0.9rem 1.8rem;
  overflow-y: scroll;
  word-wrap: break-word;
}

.dialog-content-section-item-link:hover {
  color: #ffa000;
  cursor: pointer;
}

#dialog-btn-close {
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

#dialog-btn-close:hover {
  cursor: pointer;
  color: #ffa000;
  font-size: 1.5rem;
}

#showPathViewContainer {
  position: relative;
  top: 5rem;
  width: 100%;
  padding: 0.8rem;
  display: flex;
  align-items: center;
  overflow-x: scroll;
  border: solid 0.5rem #131625;
  border-radius: 0.2rem;
  background-color: #1a1e33;
}

.homePath {
  font-size: 1.2rem;
  padding: 0.4rem;
  color: #ffa000;
}

.pathContent {
  text-wrap: nowrap;
  color: #f1f1f1;
  text-decoration: none;
  padding: 0.4rem;
  font-size: 0.9rem;
  font-weight: lighter;
  letter-spacing: 0.117rem;
  word-spacing: 0.2rem;
}

.pathDivider {
  font-size: 1rem;
  font-weight: bolder;
  color: #f1f1f1;
}

#matchedSearchContainer {
  position: absolute;
  display: none;
  align-items: center;
  flex-direction: column;
  gap: 3rem;
  top: 10rem;
  width: 100%;
  max-height: 50vh;
  padding: 3rem;
  z-index: 1;
  pointer-events: auto !important;
  filter: blur(0) !important;
  -webkit-filter: blur(0) !important;
}

.matchedContainer {
  width: 100%;
  max-width: 35rem;
  color: #f1f1f1;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  word-wrap: break-word;
  background-color: #131625;
  border-radius: 0.8rem;
  border: solid 0.3rem #ffa000;
}

.fade {
  opacity: 0;
  transform: scale(0.95);
  animation: animateSearch 0.6s ease-in-out forwards;
}

@keyframes animateSearch {
  0% {
    opacity: 0;
    filter: blur(0.5px);
    -webkit-filter: blur(0.5px);
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    -webkit-filter: blur(0);
    transform: scale(1);
  }
}

.matchedContainer a:hover {
  background-color: transparent;
}

.matchedContainer img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
}

.matchedContainer div {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
}

.matchedContainer div div {
  padding: 0;
}

.matchedTitle {
  font-size: 1.178rem;
}

#blog-body {
  width: 100%;
  margin: 2rem 0;
}

.blog-heading {
  width: fit-content;
  margin: auto;
}

#blogs-container {
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 1.7rem;
}

.blog {
  width: 40%;
  padding: 0.8rem;
  color: #f1f1f1;
  text-decoration: none;
  border-radius: 0.8rem;
  background-color: #131625;
  box-shadow: 0 .8rem 1rem #000;

  @media screen and (max-width: 668px) {
    & {
      width: 100%;
    }
  }
}

.blog-photo {
  width: 100%;
  height: 12rem;
}

.blog-header {
  display: flex;
  align-items: center;
  justify-content: safe;
  gap: 0.9rem;
}

.blog-img {
  width: 5rem;
  height: 5rem;
  border: solid 0.4rem #111323;
  border-radius: 50%;
}

.blog-details {
  display: flex;
  flex-direction: column;
  gap: 0.212rem;
}

/* Foot */
footer,
#foot,
.fcf-body {
  border-radius: 1.6rem 1.6rem 0 0;
}

#foot {
  height: fit-content;
  width: 100%;
  background-color: #131625;
  box-shadow: 0 -.5rem 1rem #000;
  transition: all 0.8s ease;
}

#fcf-form {
  display: block;
}

.fcf-body {
  margin: 0;
  font-family: -apple-system, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #f1f1f1;
  text-align: left;
  background-color: #131625;
  padding: 30px;
  padding-bottom: 10px;
  max-width: 100%;
}

.fcf-h3 {
  font-size: 1.8rem;
  width: fit-content;
}

.fcf-form-group {
  margin-bottom: 1rem;
}

.fcf-input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.fcf-form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #f1f1f1;
  background-color: #1a1e33;
  background-clip: padding-box;
  border: none;
  outline: none;
  border-radius: 0.25rem;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

.fcf-form-control:focus {
  border: 2px solid #ffa000;
}

select.fcf-form-control[size],
select.fcf-form-control[multiple] {
  height: auto;
}

textarea.fcf-form-control {
  font-family: -apple-system, Arial, sans-serif;
  height: auto;
  resize: none;
}

label.fcf-label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.fcf-credit {
  padding-top: 10px;
  font-size: 0.9rem;
  color: #1f1f1f;
}

.fcf-credit a {
  color: #1f1f1f;
  text-decoration: underline;
}

.fcf-credit a:hover {
  color: #1f1f1f;
  text-decoration: underline;
}

.fcf-btn {
  display: inline-block;
  font-weight: 400;
  color: #f1f1f1;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 2px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .fcf-btn {
    transition: none;
  }
}

.fcf-btn:hover {
  color: #212529;
  text-decoration: none;
}

.fcf-btn:focus,
.fcf-btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.fcf-btn-primary {
  color: #fff;
  background-color: #1a1e33;
  border-color: #ffa000;
}

.fcf-btn-primary:hover {
  color: #fff;
  background-color: #1a1a33;
  border-color: #ffa000;
}

.fcf-btn-primary:focus,
.fcf-btn-primary.focus {
  color: #fff;
  background-color: #1a1e33;
  border-color: #ffa000;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.fcf-btn-lg,
.fcf-btn-group-lg>.fcf-btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.fcf-btn-block {
  display: block;
  width: 100%;
}

.fcf-btn-block+.fcf-btn-block {
  margin-top: 0.5rem;
}

input[type="submit"].fcf-btn-block,
input[type="reset"].fcf-btn-block,
input[type="button"].fcf-btn-block {
  width: 100%;
}

#foot-content-group-container {
  width: 100%;
  display: none;
  align-items: center;
  justify-content: space-evenly;
  gap: 1.8rem;
  /* padding: 0.89rem; */
}

.foot-content-group {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.2rem;
}

.foot-content-group-title {
  font-size: 1.2rem;
  color: #f0f0f0;
  width: fit-content;
}

.foot-content-group-content-container {
  padding: 0 1rem;
}

.foot-content-group-content-items {
  color: #b0b0b0;
  line-height: 1.987rem;
}

#foot-contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  width: 100%;
  
  @media screen and (max-width: 1200px) {
    & {
      flex-direction: column;
    }
  }
}

.foot-contact-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
}

.foot-contact-group-title {
  width: fit-content;
  font-size: 1.4rem;
  font-weight: 600;
}

.foot-contact-group-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.foot-contact-online-logos {
  color: #ffa000;
  font-size: 2rem;
}

.foot-contact-offline {
  color: #ffa000;
}

/**/
/* #author { */
/*   width: 100%; */
/*   display: flex; */
/*   align-items: center; */
/*   justify-content: center; */
/*   gap: 1.66rem; */
/* } */
/**/
/* #author-logo { */
/*   width: 8rem; */
/*   height: 8rem; */
/*   border-radius: 50%; */
/*   border: solid 0.4rem #1a1e33; */
/* } */
/**/
/* #author-name { */
/*   font-size: 1.867rem; */
/*   font-weight: 500; */
/*   color: #ffa000; */
/*   display: flex; */
/*   flex-direction: column; */
/* } */
/**/
/* #author-name span::before { */
/*   content: open-quote; */
/* } */
/**/
/* #author-msg { */
/*   font-size: 1rem; */
/*   font-weight: normal; */
/*   color: #fff; */
/*   font-style: italic; */
/* } */

#author-details-body,
#designer-details-body {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  gap: 1.66rem;
}

#author-logo {
  min-width: 10rem;
  min-height: 10rem;
  max-width: 10rem;
  max-height: 10rem;
  border-radius: 50%;
  border: solid 0.4rem #111323;
}

#designer-logo {
  min-width: 8rem;
  min-height: 8rem;
  max-width: 8rem;
  max-height: 8rem;
  border-radius: 50%;
  border: solid 0.4rem #eb8c00;
}

#author-details-header,
#designer-details-header {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

#author-name,
#designer-name {
  font-size: 1.4rem;
  color: #ffa000;
}

#author-name {
  font-size: 1.8rem;
}

#author-quotes p,
#designer-quotes p {
  font-style: italic;
}

#foot-about-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.foot-about-group {
  width: 100%;
}

.foot-about-titles {
  font-size: 1.4rem;
  font-weight: 600;
  width: fit-content;
}

.foot-about-contents {
  letter-spacing: 0.123rem;
  word-spacing: 0.3rem;
}

#foot-copyright-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  width: 100%;
  padding: 1.3rem;
  text-align: center;
  background-color: #131625;
}

#foot-copyright-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.03rem;
}

#foot-copyright-logo {
  font-size: 2rem;
}

#foot-designer-section-title a {
  color: #ffa000;
}

@media (max-width: 668px) {
  html {
    font-size: 90%;
  }

  /* Navbar */
  #nav-main-section-title {
    display: none;
  }

  #nav-menu-section-btn {
    position: static;
    left: calc(208px + 3rem);
    transition: all .3s ease;
    z-index: 2;
  }

  #nav-menu-section-title {
    display: block;
  }

  #nav-main-logo-section {
    position: static;
  } 

  .nav-menu-section-menu-divider {
    height: 0.2px;
    background-color: #fff;
  }

  /* Dialog */
  #dialog {
    width: min(80%, 30rem);
  }
}
