/* Main */

:root {
  --yellow: #F5C32C;
  --orange: #FCA61F;
  --black: #1b1b1d;
  --header-black: #000000;
  --gray: #788097;
  --blueCard: #DDF8FE;
  --purple: rgb(171, 119, 204);
  --boxShadow: 0px 19px 60px rgb(0 0 0 / 8%);
  --orangeCard: rgba(252, 166, 31, 0.45);
  --smboxShadow: -79px 51px 60px rgba(0, 0, 0, 0.08);
  --baloo-2: 'Baloo 2', cursive;
  --golos: 'Golos Text', sans-serif;
  --maven: 'Maven Pro', sans-serif;
  --montserrat: 'Montserrat Alternates', sans-serif;
  --pontano: 'Pontano Sans', sans-serif;
  --ubuntu: 'Ubuntu', sans-serif;
  --diphylleia: 'Diphylleia', serif;
  --alegreya: 'Alegreya Sans', sans-serif;
}

* {
  font-family: var(--golos);
  line-height: 20px;
}

img {
  -webkit-tap-highlight-color: transparent !important;
}

body {
  margin: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent !important;
}

.bp-blog-body span, .bp-blog-body em {
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

strong {
  line-height: inherit;
}

ul,
li {
  list-style-type: none;
}

.btn {
  cursor: pointer;
}

.space {
  height: 30px;
}

.h-input {
  display: none;
}

.to-top {
  position: fixed;
  bottom: 100px;
  right: 40px;
  background-color: #cf5d00;
  padding: 10px 15px 5px;
  border: 1px solid #ccc;
}




.App {
  overflow: hidden;
  color: var(--black);
  height: 40rem;
  background-position: center;
  background-size: cover;
  position: relative;
}

.body {
  color: var(--black);
  width: 100%;
  overflow: hidden;
}



.App::before {
  content: '';
  background-color: var(--header-black);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
  opacity: 0.9;
}

.button {
  border-radius: 2px;
  border: 2px solid var(--orange);
  width: max-content;
  color: var(--orange);
  font-size: 16px;
  padding: 11px 26px;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.button::before {
  color: var(--orange);
  background-color: var(--orange);
  cursor: auto;
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: 0.3s ease-in-out;
}

.button:hover {
  color: white;
  border: 2px solid var(--orange);
}

.button:hover::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
}

.button-w {
  border-radius: 2px;
  border: 2px solid #fff;
  width: max-content;
  color: #fff;
  font-size: 16px;
  padding: 11px 26px;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.button-w::before {
  color: #fff;
  background-color: #fff;
  cursor: pointer;
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: 0.6s ease-in-out;
}

.button-w:hover {
  color: var(--black);
  border: 2px solid #fff;
}

.button-w:hover::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
}

.button-b {
  border-radius: 0px;
  width: max-content;
  color: var(--black);
  background: transparent;
  position: relative;
  cursor: pointer;
}

.button-b::before {
  color: #fff;
  background-color: var(--black);
  cursor: pointer;
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: 0.6s ease-in-out;
}

.button-b:hover {
  color: #fff;
}

.button-b:hover::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.ql-editor {
  min-height: 275px;
  max-height: 275px;
  font-family: var(--golos);
  font-weight: 300;
  font-size: 1.1em;
}

.ql-bubble {
  border: 1px solid #ccc;
}

.ql-hidden {
  display: none !important;
}









/* ---- Pagination ----- */

.pagi-ul {
  padding-left: 0;
  width: fit-content;
  margin: 3rem auto 5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.page-btn {
  padding: 0.7rem 0.8rem;
  width: fit-content;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
}

.page-num {
  padding: 0.7rem 0.8rem;
  width: fit-content;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e63600;
  color: #fff;
  background-color: #cf5d00;
  transition: all 0.3s ease;
}







/* ------- Spinner ------- */

.spinner {
  --d: 24.6px;
  width: 4.5px;
  height: 4.5px;
  margin: 1rem auto 3rem;
  border-radius: 50%;
  color: var(--black);
  box-shadow: calc(1*var(--d))      calc(0*var(--d))     0 0,
         calc(0.707*var(--d))  calc(0.707*var(--d)) 0 1.1px,
         calc(0*var(--d))      calc(1*var(--d))     0 2.2px,
         calc(-0.707*var(--d)) calc(0.707*var(--d)) 0 3.4px,
         calc(-1*var(--d))     calc(0*var(--d))     0 4.5px,
         calc(-0.707*var(--d)) calc(-0.707*var(--d)) 0 5.6px,
         calc(0*var(--d))      calc(-1*var(--d))    0 6.7px;
  animation: spinner-a90wxe 1s infinite steps(8);
}

@keyframes spinner-a90wxe {
  100% {
     transform: rotate(1turn);
  }
}








/* ScrollBar */

::-webkit-scrollbar {
  width: 5px;
  height: 2px;
  display: block;
}

/* Track */
::-webkit-scrollbar-track {
  background: #1b1b1d;
  opacity: 0.9;


}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #F5C32C;
  border-radius: 3px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}





/* Header */

.nav {
  position: relative;
  width: -webkit-fill-available;
  background-color: transparent;
  z-index: 10000;
}

.menu-bar {
  display: none;
}

.mobile {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 100;
  padding-top: 0.5rem;
  background-color: #fff;
  transition: all 0.3s linear;
  overflow: hidden;
  user-select: none !important;
  display: none;
}

.mob-close {
  display: flex;
  justify-content: space-between;
  padding-right: 1rem;
  padding-left: 1rem;
  height: 6vh;
  align-items: center;
}

.logo-sm {
  height: 100%;
}

.logo-sm-img {
  height: 100%;
  width: auto;
  outline: none;
  user-select: none;
}

.mob-menu {
  height: auto;
  max-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile ul {
  padding-left: 0;
  width: 288px;
}

.mobile ul li {
  padding: 20px 20px;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  gap: 1rem;
  outline: none;
  user-select: none;
}

.bold {
  font-weight: 500;
}

.mobile ul li span {
  font-weight: 600 !important;
  color: var(--orange);
}

.mobile ul li a {
  text-decoration: none;
  color: var(--black);
}

.sub {
  margin-top: -1rem;
  margin-bottom: 1rem;
  transition: all 0.3s linear;
  overflow: hidden;
}

.sub li {
  padding: 7px 20px !important;
  text-transform: capitalize !important;
}

.mob-socials {
  padding: 0 20px 5rem;
  max-width: 250px;
  overflow: hidden;
}

.mob-socials ul {
  width: 100%;
  display: flex;
  gap: 1rem;
}

.mob-socials ul li {
  font-size: 24px !important;
  padding: 0 !important;
}

.mob-socials ul a {
  text-decoration: none !important;
  color: var(--black);
}

.n-wrapper {
  padding: 1rem 3.5rem 0.5rem;
  height: 10vh;
  display: flex;
  justify-content: space-between;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.n-wrapper::before {
  content: '';
  position: absolute;
  background-color: transparent;
  opacity: 0.9;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.n-left {
  flex: 1;
  align-items: center;
  display: flex;
  gap: 2rem;
  z-index: 10;
}

.n-name {
  width: 250px;
  font-size: 30px;
  font-weight: bold;
  z-index: 10;
  user-select: none;
  outline: none;
}

.n-name img {
  width: 100%;
  height: auto;
  margin-top: -0.5rem;
}

.n-right {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  z-index: 10;
}

.n-list {
  flex: 10;
}

.n-list>ul {
  display: flex;
  gap: 2rem;
  margin-right: 4rem;
  font-size: 16px;
}

.n-list>ul>li:hover,
.n-list>ul>li>a:hover {
  cursor: pointer;
  outline: none;
  user-select: none;
}

.n-list>ul>li>a {
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.n-list ul li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 40px;
}

.n-list ul li::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -1px;
  background-color: #fff;
  opacity: 0;
  transition: all 0.3s linear;
}

.n-list ul li:hover::before {
  opacity: 1;
}

.n-button {
  flex: 2;
}

.n-button span {
  z-index: 1;
}

.n-button i {
  display: none;
}





/* Admin Header */

.n-wrapper-h {
  padding: 1rem 3.5rem 0.5rem;
  height: 10vh;
  display: flex;
  justify-content: space-between;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.n-wrapper-h::before {
  content: '';
  position: absolute;
  background-color: var(--header-black);
  opacity: 0.9;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}





/* Footer */


.footer-con {
  background-color: var(--black);
  padding-bottom: 8rem;
}

.fcd {
  width: 90%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid #ccc;
}

.fcd-left {
  width: 65%;
  display: flex;
  justify-content: space-between;
}

.fcd-left-l {
  width: 45%;
}

.fcdll-header {
  width: 12rem;
}

.fcdll-img {
  width: 100%;
  height: auto;
  margin-top: -0.5rem;
}

.fcdll-body {
  color: #fff;
  font-size: 12px;
  margin: -2rem 0 5rem;
}

.f-socials {
  color: #fff;
}

.f-socials-h {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.f-socials-b ul {
  display: flex;
  gap: 1rem;
  padding: 0;
}

.f-socials-b ul a li {
  color: #fff;
  text-decoration: none;
  font-size: 25px;
}

.f-socials-b ul a li:hover {
  color: var(--orange);
  transform: scale(1.2);
}

.fcd-left-r {
  color: #fff;
  display: flex;
  width: 45%;
  justify-content: space-between;
  margin-top: 5rem;
}

.fcdlr-left-header {
  margin-bottom: 2rem;
}

.fcdlr-left-body {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.link-sm {
  color: #fff;
  text-decoration: none;
}

.footer-services {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
  padding: 10px 10px;
  width: fit-content;
}

.footer-services-txt {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  z-index: 2;
}

.fs-arrow {
  font-size: 20px !important;
  z-index: 2;
}

.button-w-sm {
  border: 1px solid #fff;
  border-radius: 2px;
  width: max-content;
  color: #fff;
  font-size: 16px;
  padding: 11px 26px;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.button-w-sm::before {
  color: #fff;
  background-color: #fff;
  cursor: pointer;
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition: 0.4s ease-in-out;
}

.button-w-sm:hover {
  color: var(--black);
  border: 1px solid #fff;
}

.button-w-sm:hover::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
}

.fcd-right {
  color: #fff;
  margin-top: 5rem;
  width: 30%;
}

.f-nwsl-hh {
  font-size: 15px;
  margin-top: 2rem;
}

.nwsl {
  font-size: 15px;
}

.f-name {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.1rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.f-txt {
  width: 4rem;
}

.f-name input {
  padding: 5px 10px;
  font-size: 15px;
  outline: none;
}

.submit {
  border: none;
  padding: 8px 20px;
  font-size: 15px;
  background-color: var(--orange);
  font-weight: 500;
  transition: 0.3s linear;
  cursor: pointer;
}

.submit:hover {
  box-shadow: 0px 0px 10px -1px var(--orange);
}

.copy {
  color: #fff;
  width: fit-content;
  margin: 1rem auto;
}



/* HomePage */

.mpt {
  margin-top: -100px;
  position: relative;
  height: 35rem;
}

.mpt::before {
  content: '';
  background-image: url('/static/images/blog-home.png');
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.mpt::after {
  content: '';
  background-color: #da4f04d0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.mpt-txt {
  font-size: 75px;
  padding: 200px 40px 40px;
  line-height: 80px;
  font-weight: 700;
  letter-spacing: -3px;
  width: 1000px;
  margin: 0px auto 0;
  color: #fff;
  position: relative;
  z-index: 10;
}

.mpt-desc {
  position: relative;
  z-index: 10;
  width: 1000px;
  margin: 0 auto 0;
  font-family: var(--diphylleia);
  color: #fff;
  font-style: italic;
  font-size: 26px;
  line-height: 30px;
}





/* Category Menu */

.c-menu {
  height: 10vh;
  background-color: #ccc;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.c-menu-con {
  width: fit-content;
  margin: 0 auto;
}

.mobile-cmc {
  display: none;
}

.cmc {
  display: flex;
  gap: 5rem;
  flex-wrap: wrap;
  align-items: center;
}

.cmc-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.cmc-ul {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 0;
}

.cmc-ul li a {
  text-transform: uppercase;
  letter-spacing: -1px;
  font-weight: 500;
  color: #474747;
}

.cmc-ul .dot {
  width: 5px;
  height: 5px;
  border-radius: 2.5px;
  background-color: #788097;
}

.dot:hover {
  color: #788097;
}

.cmc-ul li:hover {
  color: #cf5d00;
  cursor: pointer;
}

.search-form {
  outline: none;
  user-select: none;
  padding: 5px 10px;
  font-size: 14px;
  border: 1px solid rgb(179, 179, 179);
  background-color: rgb(235, 235, 235);
}

.btn-search {
  border: none;
  background-color: #FCA61F;
  height: 32px;
  padding: 0 10px;
}

.btn-search:hover {
  cursor: pointer;
}




/* Blogs List */

.bl-con {
  display: grid;
  gap: 2rem;
  grid-template-columns: auto auto auto auto;
  width: 1230px;
  margin: 5rem auto 0rem;
}



.lazzy {
  width: 100%;
  height: 300px;
  flex-wrap: wrap;
  align-items: center;
}

.lazzy img {
  width: 200px;
  height: auto;
  margin: 0rem auto;
  filter: blur(5px);
  animation: zoomInOut 2s linear infinite alternate;
}



/* Animation */

@keyframes zoomInOut {
  0% {
    transform: scale(1); /* Initial size */
  }
  50% {
    transform: scale(1.2); /* Zoom in */
  }
  100% {
    transform: scale(1); /* Zoom out */
  }
}

/* Animation */







.post-listing-item {
  width: 100%;
  height: auto;
  box-shadow: 0 5px 20px 2px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.post-listing-item:first-child {
  grid-column-start: 1;
  grid-column-end: 2;
}

.post-details {
  padding: 35px 15px 0px;
}

.post-cat {
  color: #dd6401;
  text-transform: uppercase;
  letter-spacing: -1px;
  font-weight: 500;
  font-size: 14px;
}

.post-date {
  text-transform: uppercase;
  color: #8a8a8a;
  font-weight: 500;
  letter-spacing: -1px;
  font-size: 14px;
}

.post-title {
  color: #313131;
  font-size: 25px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -1px;
  text-transform: uppercase;
  overflow: hidden;
  width: 100%;
  height: 140px;
}

.post-author {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: -1px;
  display: flex;
  gap: 0.2rem;
}

.span-txt {
  color: #8a8a8a;
  font-weight: 500;
}

.span-name {
  color: #dd6401;
  font-weight: 500;
}

.post-desc {
  font-size: 22px;
  font-style: italic;
  height: 136px;
  margin: 1rem 0;
}

.post-desc p {
  line-height: 27px;
  font-family: var(--diphylleia);
  max-height: 0;
  margin: 0;
}

.post-img {
  width: 100%;
  height: 160px;
  background-position: center;
  background-size: cover;
}

.more-btn-con {
  width: fit-content;
  margin: 4rem auto 5rem;
}

.btn-more {
  border: none;
  background-color: #dd6401;
  color: #fff;
  padding: 10px 15px 12px;
  font-size: 16px;
  border-radius: 2px;
  outline: none;
  user-select: none;
}

.btn-more:hover {
  background-color: #cf5d00;
  cursor: pointer;
}




/* BlogPage */

.b-page-b {
  position: relative;
}

.b-page-b::before {
  content: '';
  background-color: var(--black);
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  top: -100px;
}

.bp-top {
  margin-top: 0px;
  margin-bottom: 2rem;
  position: relative;
  height: fit-content;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.bp-top::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.bp-top::after {
  content: '';
  background-color: #2c2c2cd2;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.bp-cat {
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 1rem;
  text-transform: capitalize;
  color: rgb(221, 221, 221);
}

.bp-top-text {
  font-size: 75px;
  padding: 100px 40px 40px;
  line-height: 80px;
  font-weight: 700;
  letter-spacing: -3px;
  width: 1100px;
  margin: 0px auto 0;
  color: #fff;
  position: relative;
  z-index: 10;
}

.bp-top-text h1 {
  font-size: 75px;
  line-height: 80px;
  font-weight: 700;
  letter-spacing: -3px;
}

.bp-auth {
  font-size: 18px;
  text-transform: uppercase;
  margin: 2rem 0 5rem;
  letter-spacing: 0;
  font-weight: 600;
  font-style: italic;
  color: rgb(221, 221, 221);
}

.bp-body-con {
  width: 100%;
}

.bp-body {
  position: relative;
  display: flex;
  gap: 5.5rem;
  width: 1140px;
  height: fit-content;
  margin: 4rem auto;
}

.bp-soc {
  visibility: visible;
}

.bp-soc ul {
  padding: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.bp-soc ul a {
  color: var(--black);
  font-size: 20px;
  border: 1px solid var(--black);
  border-radius: 3px;
  width: 40px;
  height: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.bp-soc ul a:hover {
  background-color: #dd6401;
  color: #fff;
  border-color: #dd6401;
}

.bp-blog {
  width: 900px;
  margin: 0;
}

.bp-blog-body {
  margin-top: 1rem;
}

.bp-blog-body p {
  margin: 0;
  line-height: 1.5;
  width: 100%;
  overflow-x: hidden;
}

.bp-blog-body p img {
  width: 100%;
  height: auto;
}

.bp-blog-body h2,
.bp-blog-body h3,
.bp-blog-body h4,
.bp-blog-body h5,
.bp-blog-body h6 {
  margin-bottom: 0.5rem;
  font-family: var(--alegreya);
  font-weight: 800;
  line-height: 1.2;
}

.bp-blog-body h2 span,
.bp-blog-body h3 span,
.bp-blog-body h4 span,
.bp-blog-body h5 span,
.bp-blog-body h6 span {
  font-family: var(--alegreya);
  font-weight: 800;
  line-height: 1.2;
}

.bp-blog-body h1 {
  font-size: 45px;
  margin-bottom: 0.9rem;
  font-family: var(--alegreya);
  font-weight: 800;
}

.bp-blog-body h2 {
  font-size: 38px;
}

.bp-blog-body h3 {
  font-size: 32px;
  margin-top: 1rem;
}

.bp-blog-body h4 {
  font-size: 27px;
  margin-top: 0.8rem;
}

.bp-blog-body h5 {
  font-size: 17px;
  margin-top: 0.6rem;
}

.bp-blog-body h6 {
  font-size: 14px;
  margin-top: 0.4rem;
}

.bp-blog-body blockquote {
  font-family: var(--diphylleia);
  font-style: italic;
  color: #575454;
  font-weight: 500;
}

.bp-blog-body ol li {
  list-style-type: decimal;
}

.bp-blog-body ul li {
  list-style-type: disc;
}

.bp-blog-body a {
  border-bottom: 2px solid #FCA61F;
}

.bp-blog-body pre {
  font-family: monospace;
  font-size: 16px;
  background-color: rgb(219, 219, 219);
  padding: 3px 8px;
  border-radius: 2px;
}

.blog-page-category {
  margin-top: 2rem;
  margin-right: 1rem;
  background-color: transparent;
  border: 1px solid #ccc;
  padding: 5px 10px;
  border-radius: 2px;
}

.ab-auth {
  margin: 6rem 0 5rem;
}

.aba-title {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.aba-details {
  margin-top: 2rem;
  display: flex;
  gap: 3rem;
}

.aba-img {
  min-width: 150px;
  max-width: 150px;
  height: 150px;
  position: relative;
}

.aba-img::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border: 2px solid #cf5d00;
  top: -7px;
  left: -7px;
  border-radius: 80px;
}

.aba-img img {
  width: 100%;
  height: 100%;
  border-radius: 100px;
}

.aba-desc {
  width: -webkit-fill-available;
}

.aba-name {
  font-size: 43px;
  font-weight: 700;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  letter-spacing: -3px;
  color: #8a8a8a;
  margin-top: 0.3rem;
  margin-bottom: 1.3rem;
  text-transform: capitalize;
}

.aba-abt {
  font-family: var(--diphylleia);
  font-size: 20px;
  font-style: italic;
  line-height: 25px;
}






/* Category */

.category-main {
  margin-top: 50px;
  margin-bottom: 60px;
}

.category-main-header {
  word-spacing: 3px;
}

.category-con {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.create-category-input {
  padding: 10px;
  width: 280px;
  outline: none;
  border: 1px solid #ccc;
  font-family: var(--golos);
  font-weight: 300;
  font-size: 1.05em;
}

.category-upload-txt {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.category-upload-txt-sm {
  font-size: 0.8em;
}

.category-upload {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.category-editor {
  width: 65%;
}

.category-editor textarea {
  width: -webkit-fill-available;
  padding: 10px;
  font-size: 16px;
  outline: none;
  border-color: #ccc;
}

.category-create-btn {
  margin-top: 40px;
  margin-bottom: 10px;
  height: 40px;
}

.show-category {
  margin-top: 50px;
}

.show-category-title {
  margin-bottom: 10px;
}

.btn-edit-category {
  color: #253137;
}

.btn-edit-category-pg {
  color: #253137;
  margin: 30px 4rem 0;
  font-size: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  height: 30px;
  width: fit-content;
}

.btn-edit-category-pg i {
  height: fit-content;
  padding-top: 3px;
}

.show-category-btn-con {
  border: 1px solid #004c6d;
  background-color: #fff;
  margin: 10px 20px 10px 0;
  padding: 10px 20px;
  font-family: var(--golos);
  font-size: 1.1em;
  font-weight: 200;
}

.show-category-btn {
  border: none;
  background-color: #fff;
  margin: 0px 0px 0px 10px;
  padding: 5px 0px;
  font-family: var(--golos);
  font-size: 1.1em;
  font-weight: 300;
}

.show-category-btn:hover {
  opacity: 0.9;
}



.cat-top {
  margin-top: 0px;
  position: relative;
  height: fit-content;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.cat-top::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.cat-top::after {
  content: '';
  background-color: #2c2c2cd2;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.cat-top-text {
  font-size: 75px;
  padding: 210px 40px 80px;
  line-height: 80px;
  font-weight: 700;
  letter-spacing: -3px;
  width: 1100px;
  margin: -100px auto 0;
  color: #fff;
  position: relative;
  z-index: 10;
}

.cat-top-text h1 {
  font-size: 75px;
  line-height: 80px;
  font-weight: 700;
  letter-spacing: -3px;
}

.cat-rm {
  font-family: var(--alegreya);
  font-weight: 800;
  font-style: italic;
  font-size: 26px;
  color: rgb(202, 202, 202);
  letter-spacing: 0px;
  word-spacing: 3px;
}

.cat-nm {
  display: flex;
}

.cat-bd {
  font-family: var(--alegreya);
  font-weight: 400;
  font-style: italic;
  font-size: 28px;
  color: #fff;
  letter-spacing: -1px;
  line-height: 34px;
  word-spacing: 3px;
}






/* BlogCreate */

.blog-create-row {
  margin-top: 50px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.blog-col {
  width: 65%;
  font-family: var(--golos);
  height: auto;
}

.create-blog-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.create-blog-title-label {
  margin-bottom: 5px;
}

.create-blog-title-input {
  padding: 10px;
  outline: none;
  border: 1px solid #ccc;
  font-family: var(--golos);
  font-weight: 300;
  font-size: 1.05em;
}

.form-group {
  height: 342px;
  min-height: 342px;
  max-height: 342px;
}

.html-editor {
  border-color: #ccc;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
  padding: 10px;
  user-select: auto;
  outline: none;
}

.blog-create-btn {
  margin-top: 20px;
  margin-bottom: 40px;
  height: 40px;
  display: flex;
  justify-content: space-between;
}

.toggle {
  width: fit-content;
}

.btn-toggle {
  font-family: var(--golos);
  font-size: 1em;
  font-weight: 500;
  border: none;
  color: #fff;
  background-color: #0070a0;
  padding: 10px 20px;
}

.btn-toggle:hover {
  border: 1px solid #001f2c;
}

.create-blog-actions {
  width: 30%;
  min-height: auto;
  margin-bottom: 80px;
}

.create-blog-actions-upload {
  margin-bottom: 30px;
}

.upload-title {
  font-weight: 500;
}

.im-txt {
  display: flex;
  justify-content: flex-start;
}

.upload-txt {
  max-width: 150px;
}

.upload-input {
  margin-top: 20px;
  font-family: var(--golos);
}

.img-preview-div {
  width: 120px;
  height: 80px;
  border: 1px dashed #dadada;
}

.img-preview {
  width: 100%;
  height: 100%;
}

.scroll-sm {
  margin: 0;
  padding: 0;
}

.form-check-label {
  padding-left: 6px;
}






/* BlogRead */

.blog-read-top {
  margin-top: 50px;
}

.blog-read-main {
  display: flex;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 30px;
}

.blog-read-img-div {
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  height: 160px;
  margin-right: 25px;
}

.blog-read-img {
  width: 100%;
  height: 100%;
}

.blog-read-header {
  font-size: 1.1em;
  font-weight: 400;
  color: #333131;
  font-family: var(--golos);
}

.blog-read-author-time {
  font-size: 0.7em;
  font-family: var(--golos);
  font-weight: 300;
  margin-top: 7px;
  display: flex;
  justify-content: flex-start;
  color: rgb(121, 121, 121);
}

.blog-read-author-time .dot {
  padding: 0 5px;
}

.blog-read-excerpt {
  font-size: 1em;
  font-family: var(--golos);
  font-weight: 300;
}

.blog-read-excerpt p {
  padding-bottom: 0;
  margin-bottom: 15px;
}

.blog-read-actions {
  margin-left: 0;
  margin-top: 0px;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  width: fit-content;
}

.blog-read-actions-btn {
  border: none;
  background-color: #fff;
}

.btn-feature {
  font-size: 1.2em;
  background-color: transparent;
  color: #494949;
  padding: 0 10px;
}

.btn-feature:hover {
  transform: scale(1.15);
}

.btn-featured {
  font-size: 1.2em;
  background-color: transparent;
  color: #aeea00;
  padding: 0 10px;
}

.btn-featured:hover {
  transform: scale(1.15);
}

.btn-delete {
  font-size: 1.2em;
  background-color: transparent;
  color: #494949;
  padding: 0 10px;
}

.btn-delete:hover {
  transform: scale(1.15);
}

.btn-edit {
  color: #494949;
  padding: 1px 10px;
  font-size: 1.2em;
  background-color: transparent;
}

.btn-edit:hover {
  transform: scale(1.15);
}





/* Admin Settings */

.set-img {
  margin: 2rem 0 2rem;
}

.set-name {
  margin-top: 2rem;
  width: 300px;
}







/* Signin */

.alert {
  margin-bottom: 1rem;
}

.signin-main {
  width: fit-content;
  margin: 6rem auto;
}

.signin-main h2 {
  margin-bottom: 2rem;
  font-size: 28px;
  font-weight: 500;
}

.signin-form-input {
  width: 300px;
  font-size: 16px;
  padding: 5px 10px;
  margin-bottom: 1rem;
  outline: none;
}

.btn-signin {
  padding: 10px 20px;
  background-color: #cf5d00;
  border: none;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.btn-signin:hover {
  background-color: #1b1b1d;
}







/* General */

.home-container {
  overflow: hidden;
}

.a-white {
  color: var(--orange);
}

.a-white:hover {
  color: #fff;
}






/* Search */

.container-fluid {
  position: relative;
}

.search-result {
  position: absolute;
  top: 33px;
  right: 0;
  width: 600px;
  height: auto;
  min-height: auto;
  max-height: 400px;
  overflow-y: auto;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid var(--orange);
  border-radius: 5px;
  box-shadow: 0px 4px 8px 0px var(--orange);
}

.search-results {
  margin-bottom: 1rem;
}




/* Media Query */


/* Main */
@media (min-width: 1200px) {
  .container {
    width: 1180px;
  }

  .home-container {
    width: 1180px;
  }

}

@media (max-width: 600px) {
  .button-w {
    border-width: 1px;
  }
}

@media (max-width: 490px) {

  .button-b,
  .button-b::before,
  .button-w,
  .button-w::before {
    cursor: auto;
  }
}




/* Header */

@media (max-width: 1150px) {
  .n-name {
    width: 200px;
  }

  .n-name img {
    margin-top: -0.4rem;
  }
}

@media (max-width: 1100px) {
  .n-button span {
    display: none;
  }

  .n-button i {
    display: block;
  }
}

@media (max-width: 1000px) {
  .n-name {
    width: 200px;
  }

  .n-name img {
    margin-top: 0rem;
  }

  .n-wrapper {
    padding-top: 0.5rem;
    height: 6vh;
  }

  .n-wrapper-h {
    padding: 1rem 2.5rem 0.5rem;
    height: 8vh;
  }

  .n-list {
    display: none;
  }

  .n-button {
    max-width: fit-content;
  }

  .n-right {
    justify-content: flex-end;
  }

  .menu-bar {
    display: flex;
  }

  .mobile {
    display: block;
  }
}

@media (max-width: 991px) {
  .blog-read-header {
    font-size: 1em;
  }

  .blog-read-excerpt {
    font-size: 0.9em;
  }

  .blog-read-excerpt p {
    margin-top: 10px;
  }

  .blog-read-author-time {
    font-size: 12px;
    text-transform: capitalize;
  }

  .category-con {
    flex-direction: column;
    gap: 2rem;
  }

  .category-editor {
    width: 100%;
  }
}

@media (max-width: 890px) {
  .blog-create-row {
    flex-direction: column;
    gap: 3rem;
  }
  .blog-col {
    width: 100%;
  }
  .create-blog-actions {
    width: 100%;
  }
}

@media (max-width: 772px) {
  .n-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .n-name img {
    cursor: auto;
  }

  .logo-sm-img {
    cursor: auto;
  }
}

@media (max-width: 600px) {
  .blog-read-main {
    display: block;
  }

  .blog-read-img-div {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: auto;
  }

  .blog-read-txt {
    margin-top: 10px;
  }

  .n-wrapper-h {
    padding: 1rem;
    height: 5vh;
  }
}

@media (max-width: 550px) {
  .n-name {
    width: 180px;
  }

  .n-name img {
    margin-top: 0rem;
  }

  .n-wrapper {
    padding-top: 0.5rem;
    height: 6vh;
  }

  .button {
    border-width: 1px;
    padding: 8px 16px;
  }

  .form-group {
    margin-bottom: 3rem;
  }
}


/* Footer */

@media (max-width: 1100px) {
  .fcd {
    display: block;
  }

  .fcd-left {
    width: 100%;
  }

  .fcd-right {
    width: 50%;
    margin: 5rem auto 2rem;
  }

  .copy {
    font-size: 12px;
  }
}

@media (max-width: 822px) {
  .fcd-right {
    width: 366px;
  }
}

@media (max-width: 750px) {
  .fcd-left {
    display: block;
  }

  .fcd-left-r {
    width: 400px;
    margin: 5rem auto 0;
  }

  .fcd-left-l {
    width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 450px) {
  .fcd {
    padding: 1rem;
  }

  .fcd-right {
    width: 100%;
  }

  .fcd-left-l {
    width: 100%;
  }

  .fcd-left-r {
    width: 100%;
  }

  .copy {
    font-size: 12px;
  }
}



/* general */

@media (max-width: 1250px) {
  .bl-con {
    grid-template-columns: auto auto auto;
    width: 1000px;
  }
}

@media (max-width: 1190px) {

  .cat-top-text,
  .mpt-txt,
  .bp-top-text {
    width: -webkit-fill-available;
  }

  .bp-body {
    width: 1000px;
    gap: 3rem;
  }

  .bp-blog {
    width: 800px;
  }
}

@media (max-width: 1160px) {
  .c-menu {
    width: 100%;
  }

  .c-menu-con {
    margin: 0 2rem;
    width: -webkit-fill-available;
  }

  

  

  .cmc-left {
    display: block;
  }

  

  .cmc-right {
    width: fit-content;
  }
  
  .cmc {
    width: -webkit-fill-available;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  
  .cmc-ul {
    display: none;
  }
  
  .mobile-cmc {
    display: block;
    position: relative;
  }

  .mcmc {
    display: flex;
    gap: 0.5rem;
    cursor: context-menu;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-weight: 500;
    color: #474747;
  }

  .mcmc-ul {
    position: absolute;
    top: 40px;
    width: max-content;
    background-color: #fff;
    padding: 0 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  .bl-front {
    z-index: 99;
  }

  .sub a {
    color: var(--black);
  }

  .sub a:hover {
    color: var(--orange);
  }

  .mcmc-li-top {
    margin-top: 0.8rem;
  }
}

@media (max-width: 1020px) {
  .bl-con {
    grid-template-columns: auto auto;
    width: 700px;
  }

  .bp-body {
    width: 800px;
    gap: 3rem;
  }

  .bp-blog {
    width: -webkit-fill-available;
  }
}

@media (max-width: 980px) {
  

  .search {
    display: flex;
  }

  .search-form {
    display: block;
  }

  .bp-body {
    margin: 4rem 1rem;
    width: -webkit-fill-available;
    gap: 3rem;
    flex-direction: column;
  }

  .bp-soc ul {
    flex-direction: row;
  }

  .cmc {
    gap: 0;
  }
}

@media (max-width: 718px) {
  .cat-rm {
    font-size: 20px;
  }

  .cat-top-text h1,
  .mpt-txt,
  .bp-top-text h1 {
    font-size: 60px;
    line-height: 65px;
  }

  .auth-desc {
    display: none;
  }

  .cat-bd,
  .mpt-desc {
    font-size: 24px;
    line-height: 28px;
  }

  .bl-con {
    grid-template-columns: auto;
    margin: 5rem 1rem 0;
    width: -webkit-fill-available;
  }

  .post-title {
    height: auto;
    width: -webkit-fill-available;
  }

  .post-desc {
    height: auto;
  }

  .post-desc p {
    height: auto;
    width: -webkit-fill-available;
    max-height: fit-content;
  }

  .post-img {
    margin-top: 2rem;
    height: 200px;
  }

  .aba-details {
    flex-direction: column-reverse;
  }

  .aba-img {
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .search-result {
    width: 300px;
  }

  .search-form {
    width: 150px;
  }
}

@media (max-width: 510px) {
  .search-form {
    width: 125px;
  }

  .c-menu-con {
    margin: 0 1rem;
  }

  .cat-top-text,
  .mpt-txt,
  .bp-top-text {
    padding: 150px 20px 80px;
  }

  .bp-top-text h1 {
    letter-spacing: -1px;
  }

  .cat-top-text h1,
  .mpt-txt h1,
  .bp-top-text h1 {
    font-size: 40px;
    line-height: 45px;
  }

  .mpt-desc {
    display: none;
  }

  .c-menu {
    height: 7vh;
  }

  .search {
    z-index: 98;
    position: relative;
  }

  .mcmc-ul {
    top: 49px;
  }
}