@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  -webkit-overflow-scrolling: touch;
}
html:focus-within {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  will-change: auto;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  loading: lazy;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:focus, a:hover {
  text-decoration: underline;
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.top-section {
  position: relative;
  overflow: hidden;
}
.top-section .top-section-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.top-section .navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transform: translateY(0); /* Domyślnie widoczna */
  transition: transform 0.3s ease-in-out;
}
.top-section .navbar-container-mobile .navbar-logo {
  position: relative;
  padding: 0.7em 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-section .navbar-container-mobile .navbar-logo .logo {
  font-size: 2rem;
  font-weight: bold;
  color: #5f4538;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.top-section .navbar-container-mobile .navbar-logo .logo:hover, .top-section .navbar-container-mobile .navbar-logo .logo:focus {
  color: #382720;
}
.top-section .navbar-container-mobile .navbar-logo .navbar-toggle {
  position: relative;
  display: flex;
  z-index: 1000;
  flex-direction: column;
  justify-content: space-around;
  height: 48px;
  width: 48px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1em 0.2em;
}
.top-section .navbar-container-mobile .navbar-logo .navbar-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #5f4538;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.top-section .navbar-container-mobile .navbar-logo .navbar-toggle span:nth-child(1) {
  width: 36px;
}
.top-section .navbar-container-mobile .navbar-logo .navbar-toggle span:nth-child(2) {
  width: 28px;
}
.top-section .navbar-container-mobile .navbar-logo .navbar-toggle span:nth-child(3) {
  width: 20px;
}
.top-section .navbar-container-mobile .navbar-logo .navbar-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  width: 36px;
}
.top-section .navbar-container-mobile .navbar-logo .navbar-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.top-section .navbar-container-mobile .navbar-logo .navbar-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  width: 36px;
}
.top-section .navbar-container-mobile .menu-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: white;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5em;
  margin-bottom: 4em;
  overscroll-behavior: contain;
  overflow: hidden;
}
.top-section .navbar-container-mobile .menu-mobile .menu-logo {
  align-items: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: #5f4538;
  padding: 0em 3em;
  margin: 0 auto 2.5em;
  margin-bottom: 1.5em;
  border-bottom: 2px solid #f7eacd;
}
.top-section .navbar-container-mobile .menu-mobile .menu-mobile-list {
  list-style: none;
  color: #5f4538;
}
.top-section .navbar-container-mobile .menu-mobile .menu-mobile-list .menu-item {
  font-size: 1.6rem;
  color: #161616;
  font-weight: bold;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding: 0.7em 0;
}
.top-section .navbar-container-mobile .menu-mobile .menu-mobile-list .menu-item .fa-solid {
  margin-left: 3em;
  font-size: 1.5rem;
  padding: 0.5em 0.7em;
  border-radius: 50%;
  color: #5f4538;
  background-color: #fff7e6;
  transition: transform 0.3s ease-in;
}
.top-section .navbar-container-mobile .menu-mobile .menu-mobile-list .menu-item .menu-link {
  font-weight: bold;
  text-decoration: none;
  color: #161616;
  cursor: pointer;
  font-size: 1.6rem;
  transition: transform 0.3s ease-in;
}
.top-section .navbar-container-mobile .menu-mobile .menu-mobile-list .menu-item .menu-link:hover {
  font-weight: 700;
}
.top-section .navbar-container-mobile .menu-mobile .menu-mobile-list .menu-item .menu-link:hover .fa-solid {
  transform: translateX(15px);
}
.top-section .navbar-container-mobile .menu-mobile .menu-mobile-list .show {
  opacity: 1;
  transform: translateY(0);
}
.top-section .navbar-container-mobile .menu-mobile .social-link-nav {
  display: flex;
  flex-direction: row;
  width: 80%;
  margin: 2.5em auto 3em;
  justify-content: space-around;
  align-items: center;
}
.top-section .navbar-container-mobile .menu-mobile .social-link-nav .social-link {
  border: 2px solid #5f4538;
  padding: 0.6em 1.5em;
  font-size: 1.45rem;
  margin: 0.5em auto;
  border-radius: 30px;
  color: #161616;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.top-section .navbar-container-mobile .menu-mobile .social-link-nav .social-link i {
  margin-right: 0.3em;
  font-size: 1.7rem;
}
.top-section .navbar-container-mobile .menu-mobile .social-link-nav .social-link:hover, .top-section .navbar-container-mobile .menu-mobile .social-link-nav .social-link:focus {
  background-color: #5f4538;
  color: white;
  transform: translateY(-2px);
}
.top-section .navbar-container-mobile .menu-open {
  transform: translateX(0);
}
.top-section .navbar.sticky-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.top-section .navbar.scrolled-bg {
  background-color: #f7eacd;
}
.top-section .navbar.sticky-hidden {
  transform: translateY(-110%);
}
.top-section .navbar-container-desktop {
  display: none;
}
.top-section .header-blog {
  background-image: radial-gradient(circle at 30% 40%, rgba(247, 234, 205, 0.5) 0%, rgba(255, 255, 255, 0) 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 100;
  padding: 5.5em 1.5em 2em;
}
.top-section .header-blog .header-text {
  margin-top: 6.6em;
}
.top-section .header-blog .blog-header-category-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: #5f4538;
  font-size: 1.1rem;
  text-align: center;
  transition: color 0.3s ease;
}
.top-section .header-blog .blog-header-category-link:hover {
  color: #382720;
}
.top-section .header-blog .header-title {
  font-size: 3.2rem; /* Duży, gruby font */
  line-height: 1.45em;
  color: #5f4538;
  margin: 0.5em 0 0.5em;
  text-align: center;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}
.top-section .header-blog .header-title .black-text {
  color: #161616;
  font-size: 2.5rem;
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: #f7eacd;
  text-decoration-thickness: 5px;
  text-underline-offset: 3px;
}
.top-section .header-blog .blog-header-text {
  font-size: 1.65rem;
  color: #161616;
  text-align: center;
}
.top-section .header-blog .blog-header-meta {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 1em;
  padding: 0.6em 0.3em;
  border-radius: 16px;
  color: #292929;
  border: 2px solid #f7eacd;
  font-size: 1.45rem;
}
.top-section .header-blog .blog-header-meta .blog-header-link {
  text-decoration: none;
  color: #161616;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}
.top-section .header-blog .blog-header-meta .blog-header-link:hover {
  color: #5f4538;
}
.top-section .header-blog .header-text-info {
  color: #161616;
  margin-top: 0.5em;
  font-size: 1.65rem;
  text-align: center;
  font-weight: bold;
}
.top-section .header-blog .header-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1.5em;
}
.top-section .header-blog .header-links .header-link {
  margin: 1em 0 0;
  padding: 0.8em 1.5em;
  font-size: 1.55rem;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  border-radius: 16px;
  transition: background-color 0.3s ease;
}
.top-section .header-blog .header-links .header-link .fa-solid {
  margin-left: 0.3em;
}
.top-section .header-blog .header-links .header-link-meeting {
  background-color: #f7eacd;
  color: #5f4538;
}
.top-section .header-blog .header-links .header-link-about-me {
  background-color: #5f4538;
  color: #fff7e6;
}
.top-section .header-blog .header-links .header-link-meeting:hover {
  background-color: #f5e2b9;
}
.top-section .header-blog .header-links .header-link-about-me:hover {
  background-color: #382720;
}
.top-section .header-blog .blog-header-img {
  display: flex;
  justify-content: center;
  margin: 2.5em auto 0;
}
.top-section .header-blog .blog-header-img .blog-header-photo {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  max-width: 320px;
}
.top-section .header-blog .blog-header-img .blog-header-photo-desktop {
  display: none;
}
.top-section .header-blog .header-links-desktop {
  display: none;
}

.blog-section {
  padding: 6em 2em 2em;
}
.blog-section .blog-article-body {
  margin-top: 2em;
  color: #161616;
}
.blog-section .blog-toc {
  margin: 1em 0 3em;
  padding-bottom: 2em;
  border-bottom: 2px solid #f7eacd;
}
.blog-section .blog-toc .blog-toc-title {
  font-weight: bold;
  font-size: 1.8rem;
}
.blog-section .blog-toc li {
  margin: 0.5em;
}
.blog-section .blog-toc .blog-toc-link {
  text-decoration: none;
  font-size: 1.7rem;
  margin: 0.5em;
  transition: color 0.3s ease;
}
.blog-section .blog-toc .blog-toc-link:hover {
  color: #5f4538;
}
.blog-section .blog-article-h2 {
  font-size: 2.5rem;
  margin-top: 1.5em;
  line-height: 1.45em;
  color: #161616;
  margin: 2.5em 0 0.5em;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}
.blog-section .blog-article-text-main {
  font-size: 1.75rem;
  margin-top: 0.8em;
}
.blog-section .blog-article-text-main em {
  font-weight: bold;
}
.blog-section .blog-article-step-title {
  margin-top: 1.5em;
}
.blog-section .blog-article-text {
  font-size: 1.65rem;
  margin-top: 0.75em;
}
.blog-section .blog-article-text a {
  color: #5f4538;
}
.blog-section .highlight {
  font-weight: bold;
}
.blog-section .blog-article-answer {
  font-size: 1.65rem;
  margin-top: 1.5em;
}
.blog-section .blog-article-list {
  margin-top: 1em;
}
.blog-section .blog-article-list li {
  margin-top: 0.6em;
  list-style: none;
}
.blog-section .blog-article-list li strong {
  font-weight: bold;
  color: #161616;
}
.blog-section .blog-phrase-table {
  margin-top: 1.5em;
}
.blog-section .blog-phrase-row {
  margin: 0.4em 0;
}
.blog-section .blog-phrase {
  font-size: 1.5rem;
}
.blog-section .blog-cta {
  font-size: 1.7rem;
  margin-top: 2.5em;
  text-align: center;
  color: #5f4538;
  font-weight: bold;
}
.blog-section .blog-cta .blog-cta-link {
  display: inline-block;
  margin-top: 2em;
  color: #5f4538;
  background-color: #fff7e6;
  margin: 1em 0 0;
  padding: 0.8em 1.5em;
  font-size: 1.55rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 16px;
}
.blog-section .blog-cta .blog-cta-link .fa-solid {
  margin-left: 0.3em;
}
.blog-section .blog-sidebar {
  margin: 2em 0;
}
.blog-section .blog-sidebar-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  align-items: center;
  background-color: #fff7e6;
  border-radius: 16px;
  border: 1px solid #f7eacd;
  padding: 2.5em 1em;
}
.blog-section .blog-sidebar-card .blog-sidebar-photo {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-section .blog-sidebar-card .blog-sidebar-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.blog-section .blog-sidebar-card .blog-sidebar-link-name {
  margin-top: 0.7em;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 1.7rem;
  color: #5f4538;
  text-decoration: none;
}
.blog-section .blog-sidebar-card .blog-sidebar-link-info {
  margin-top: 0.3em;
  font-weight: bold;
  font-size: 1.2rem;
  color: #161616;
  text-transform: uppercase;
  text-decoration: none;
}
.blog-section .blog-sidebar-card .blog-sidebar-text {
  text-align: center;
  font-size: 1.55rem;
  color: #161616;
  margin-top: 0.2em;
}
.blog-section .blog-sidebar-card .blog-sidebar-btn {
  display: inline-block;
  margin-top: 2em;
  color: #fff7e6;
  background-color: #5f4538;
  margin: 1.5em 0 0;
  padding: 0.7em 1.2em;
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 16px;
  transition: background-color 0.3s ease;
}
.blog-section .blog-sidebar-card .blog-sidebar-btn:hover {
  background-color: #382720;
}

.blog-articles {
  padding: 4em 2em;
}
.blog-articles .blog-title {
  font-size: 2.2rem;
  text-align: center;
  color: #5f4538;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}
.blog-articles .blog-articles-boxs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
  margin-top: 3em;
}
@media (min-width: 768px) {
  .blog-articles .blog-articles-boxs {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .blog-articles .blog-articles-boxs .blog-articles-title {
    font-size: 2.1rem;
    margin: 0.3em 0.5em 0.7em;
  }
  .blog-articles .blog-articles-boxs .blog-articles-img {
    height: 290px;
  }
}
.blog-articles .blog-articles-link {
  text-decoration: none;
  cursor: pointer;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}
.blog-articles .blog-articles-link:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.13);
}
.blog-articles .blog-articles-link:hover .blog-articles-img {
  transform: scale(1.06);
}
.blog-articles .blog-articles-link:hover .blog-articles-title {
  color: #5f4538;
}
.blog-articles .blog-articles-photo {
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.blog-articles .blog-articles-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 250px;
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}
.blog-articles .blog-articles-tag {
  text-transform: uppercase;
  color: rgb(44, 44, 44);
  font-weight: bold;
  font-size: 1.1rem;
  margin: 2em 1em 0.3em;
  font-family: "Poppins", sans-serif;
}
.blog-articles .blog-articles-title {
  color: rgb(22, 22, 22);
  font-size: 1.7rem;
  font-family: "Poppins", sans-serif;
  margin: 0 0.8em 0.5em;
  transition: color 0.3s ease;
  line-height: 1.5;
}
.blog-articles .blog-articles-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0.3em 1em 1.5em;
  font-size: 1.2rem;
  color: rgb(75, 75, 75);
}

.footer-sec {
  padding: 3em 2em 12em;
  position: relative;
}
.footer-sec .footer-photo {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -5;
}
.footer-sec .footer-photo .footer-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
.footer-sec .footer-photo .footer-img-desktop {
  display: none;
}
.footer-sec .footer-sec-box {
  text-align: center;
  z-index: 10;
  margin-top: 3em;
}
.footer-sec .footer-sec-box .footer-sec-title {
  font-size: 1.9rem;
  color: #5f4538;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
.footer-sec .footer-sec-box .footer-sec-info {
  color: #161616;
}
.footer-sec .footer-sec-box .footer-sec-social-title {
  font-size: 1.8rem;
  margin-top: 1.5em;
  color: #5f4538;
}
.footer-sec .footer-sec-box .footer-sec-social {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 1em;
}
.footer-sec .footer-sec-box .footer-sec-social .footer-sec-social-item {
  list-style: none;
  transition: all 0.3s ease-in;
}
.footer-sec .footer-sec-box .footer-sec-social .footer-sec-social-item .footer-social-link {
  text-decoration: none;
  color: #5f4538;
  padding: 0.4em 0.45em;
  border-radius: 16px;
  background-color: #fff7e6;
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in;
}
.footer-sec .footer-sec-box .footer-sec-social .footer-sec-social-item .footer-social-link:hover {
  color: #382720;
  background-color: #f7eacd;
}
.footer-sec .footer-sec-box .footer-sec-social .footer-sec-social-item:hover {
  transform: translateY(-2px);
}
.footer-sec .footer-sec-box .footer-sec-list {
  margin-top: 1em;
}
.footer-sec .footer-sec-box .footer-sec-list .footer-sec-item {
  list-style: none;
  margin: 0.7em 0;
}
.footer-sec .footer-sec-box .footer-sec-list .footer-sec-item .footer-sec-link {
  text-decoration: none;
  color: #161616;
  transition: color 0.3s ease-in;
  padding: 0.8em 0;
  cursor: pointer;
}
.footer-sec .footer-sec-box .footer-sec-list .footer-sec-item .footer-sec-link:hover {
  color: #5f4538;
}
.footer-sec .footer-sec-box:last-of-type {
  margin-bottom: 2.5em;
}
.footer-sec .footer-bottom {
  padding-top: 1.5em;
  border-top: 2px solid #f7eacd;
}
.footer-sec .footer-bottom .footer-bottom-text {
  color: #161616;
  text-align: center;
  font-size: 1.5rem;
}
.footer-sec .footer-bottom .footer-bottom-text span {
  font-weight: bold;
}
.footer-sec .footer-bottom .footer-bottom-text .footer-link-creator {
  text-decoration: none;
  color: #161616;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease-in;
}
.footer-sec .footer-bottom .footer-bottom-text .footer-link-creator:hover {
  color: #5f4538;
}

@media (min-width: 768px) {
  .top-section {
    position: relative;
  }
  .top-section .navbar .navbar-container-mobile .navbar-logo {
    padding: 0.8em 1em;
  }
  .top-section .navbar .navbar-container-mobile .navbar-logo .logo {
    font-size: 2.2rem;
  }
  .top-section .navbar .navbar-container-mobile .navbar-logo .navbar-toggle {
    height: 52px;
    width: 52px;
    padding: 1em 0.5em;
  }
  .top-section .navbar .navbar-container-mobile .navbar-logo .navbar-toggle span {
    height: 3px;
  }
  .top-section .navbar .navbar-container-mobile .navbar-logo .navbar-toggle span:nth-child(1) {
    width: 38px;
  }
  .top-section .navbar .navbar-container-mobile .navbar-logo .navbar-toggle span:nth-child(2) {
    width: 30px;
  }
  .top-section .navbar .navbar-container-mobile .navbar-logo .navbar-toggle span:nth-child(3) {
    width: 22px;
  }
  .top-section .navbar .navbar-container-mobile .navbar-logo .navbar-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    width: 36px;
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    padding-top: 3.5em;
    overscroll-behavior: contain;
    overflow: hidden;
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile .menu-mobile-list .menu-item {
    padding: 0.8em 2em 0.8em;
    font-size: 1.7rem;
    font-weight: bold;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile .menu-mobile-list .menu-item .fa-solid {
    margin-left: 5em;
    font-size: 1.5rem;
    padding: 0.5em 0.8em;
    border-radius: 50%;
    color: #5f4538;
    background-color: #f7eacd;
    transition: transform 0.3s ease-in;
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile .menu-mobile-list .menu-item .menu-link {
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease-in;
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile .menu-mobile-list .menu-item .menu-link:hover {
    font-weight: 700;
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile .menu-mobile-list .menu-item .menu-link:hover .fa-solid {
    transform: translateX(15px);
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile .menu-mobile-list .menu-item .link-course {
    padding-left: 1em;
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile .menu-mobile-list .show {
    opacity: 1;
    transform: translateY(0);
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile .social-link-nav {
    display: flex;
    flex-direction: row;
    width: 70%;
    margin: 2.5em auto 3em;
    justify-content: space-around;
    align-items: center;
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile .social-link-nav .social-link {
    border: 2px solid #5f4538;
    padding: 0.6em 1.5em;
    font-size: 1.45rem;
    margin: 0.5em auto;
    border-radius: 30px;
    color: #161616;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile .social-link-nav .social-link i {
    margin-right: 0.3em;
    font-size: 1.7rem;
  }
  .top-section .navbar .navbar-container-mobile .menu-mobile .social-link-nav .social-link:hover, .top-section .navbar .navbar-container-mobile .menu-mobile .social-link-nav .social-link:focus {
    background-color: #5f4538;
    color: white;
    transform: translateY(-2px);
  }
  .top-section .navbar .navbar-container-mobile .menu-open {
    transform: translateX(0);
  }
  .top-section .navbar .navbar-container-desktop {
    display: none;
  }
  .top-section .header-blog {
    padding: 5.5em 1.5em 2em;
  }
  .top-section .header-blog .header-text {
    margin-top: 5.5em;
  }
  .top-section .header-blog .blog-header-category-link {
    font-size: 1.4rem;
  }
  .top-section .header-blog .header-title {
    font-size: 3.2rem;
    line-height: 1.5em;
    margin: 0.3em 0 0.5em;
  }
  .top-section .header-blog .header-title .black-text {
    font-size: 2.7rem;
  }
  .top-section .header-blog .blog-header-text {
    text-align: center;
    margin: 0 auto;
    font-size: 1.75rem;
    width: 80%;
  }
  .top-section .header-blog .blog-header-meta {
    width: 60%;
    padding: 0.8em 1em;
    border-radius: 16px;
    background-color: #fff7e6;
    margin: 1.5em auto 0.5em;
    font-size: 1.3rem;
  }
  .top-section .header-blog .header-text-info {
    margin-top: 0.5em;
    font-size: 1.75rem;
  }
  .top-section .header-blog .header-links {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 70%;
    margin: 2.5em auto 0.5em;
  }
  .top-section .header-blog .header-links .header-link {
    margin: 1em 0.5em;
    font-size: 1.5rem;
  }
  .top-section .header-blog .header-links .header-link-meeting {
    order: 1;
  }
  .top-section .header-blog .header-links .header-link-about-me {
    order: 0;
  }
  .top-section .header-blog .blog-header-img .blog-header-photo {
    display: none;
  }
  .top-section .header-blog .blog-header-img .blog-header-photo-desktop {
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    max-width: 600px;
  }
  .blog-section .blog-sidebar-card {
    width: 70%;
    margin: 3.5em auto 1em;
    padding: 2.5em 1em;
  }
  .blog-section .blog-sidebar-card .blog-sidebar-photo {
    height: 80px;
    width: 80px;
  }
  .blog-section .blog-sidebar-card .blog-sidebar-link-name {
    font-size: 1.85rem;
  }
  .blog-section .blog-sidebar-card .blog-sidebar-link-info {
    font-size: 1.3rem;
  }
  .blog-section .blog-sidebar-card .blog-sidebar-text {
    font-size: 1.6rem;
  }
  .blog-section .blog-sidebar-card .blog-sidebar-btn {
    padding: 0.7em 1.2em;
    font-size: 1.55rem;
  }
  .footer-sec {
    padding: 4em 2em 2em;
  }
  .footer-sec .footer-photo {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -5;
  }
  .footer-sec .footer-photo .footer-img {
    display: none;
  }
  .footer-sec .footer-photo .footer-img-desktop {
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: auto;
  }
}
@media (min-width: 992px) {
  .top-section {
    position: relative;
  }
  .top-section .navbar {
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    border-bottom: none;
  }
  .top-section .navbar .navbar-container-mobile {
    display: none;
  }
  .top-section .navbar .navbar-container-desktop {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1em 1em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .top-section .navbar .navbar-container-desktop .company-name {
    font-size: 2.2rem;
    color: #5f4538;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
  }
  .top-section .navbar .navbar-container-desktop .company-name a {
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease-in;
  }
  .top-section .navbar .navbar-container-desktop .company-name a:hover {
    color: #382720;
  }
  .top-section .navbar .navbar-container-desktop .menu-desktop {
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: space-around;
    border-bottom: 2.5px solid #f7eacd;
  }
  .top-section .navbar .navbar-container-desktop .menu-desktop .menu-item {
    position: relative;
    padding: 1em 1.2em 0.5em;
    list-style: none;
    font-size: 1.65rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    color: #5f4538;
  }
  .top-section .navbar .navbar-container-desktop .menu-desktop .menu-item a {
    text-decoration: none;
    cursor: pointer;
  }
  .top-section .navbar .navbar-container-desktop .menu-desktop .menu-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2.5px;
    background-color: #5f4538;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  .top-section .navbar .navbar-container-desktop .menu-desktop .menu-item:hover::after {
    transform: scaleX(1);
  }
  .top-section .navbar .navbar-container-desktop .company-number .company-number-link {
    border: 2px solid #5f4538;
    padding: 0.6em 0.8em;
    color: #5f4538;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    font-size: 1.45rem;
    transition: all 0.3s ease-in;
  }
  .top-section .navbar .navbar-container-desktop .company-number .company-number-link .fa-regular {
    margin-right: 0.5em;
    font-size: 1.7rem;
  }
  .top-section .navbar .navbar-container-desktop .company-number .company-number-link:hover {
    color: #fff7e6;
    background-color: #5f4538;
  }
  .top-section .header-blog .header-text {
    margin-top: 7.5em;
  }
  .top-section .header-blog .blog-header-category-link {
    font-size: 1.3rem;
  }
  .top-section .header-blog .header-title {
    font-size: 3.8rem;
    margin: 0.5em 0 0.7em;
  }
  .top-section .header-blog .header-title .black-text {
    font-size: 3rem;
  }
  .top-section .header-blog .blog-header-text {
    font-size: 1.85rem;
  }
  .top-section .header-blog .blog-header-meta {
    width: 55%;
    font-size: 1.4rem;
  }
  .top-section .header-blog .header-links {
    width: 55%;
    margin: 2em auto 0.5em;
  }
  .top-section .header-blog .header-links .header-link {
    margin: 1em 0.5em;
    font-size: 1.55rem;
    padding: 0.8em 1.8em;
  }
  .blog-section {
    padding: 6em 4em 2em;
  }
  .blog-section .blog-toc .blog-toc-title {
    font-size: 2rem;
    margin-bottom: 0.7em;
  }
  .blog-section .blog-toc li {
    margin: 0.7em;
  }
  .blog-section .blog-toc .blog-toc-link {
    font-size: 1.8rem;
  }
  .blog-section .blog-article-h2 {
    font-size: 2.8rem;
    width: 70%;
  }
  .blog-section .blog-article-text-main {
    font-size: 1.75rem;
    margin-top: 0.8em;
    width: 80%;
  }
  .blog-section .blog-article-text {
    font-size: 1.7rem;
    width: 90%;
  }
  .blog-section .blog-article-answer {
    width: 80%;
  }
  .blog-section .blog-phrase-table {
    margin-top: 1em;
    width: 80%;
  }
  .blog-section .blog-phrase-row {
    margin: 0.3em 0;
  }
  .blog-section .blog-phrase-col {
    font-size: 1.65rem;
  }
  .blog-section .blog-sidebar {
    margin: 2em 0;
  }
  .blog-section .blog-sidebar-card {
    width: 70%;
    margin: 3.5em auto 1em;
    padding: 3em 2em 2.5em;
  }
  .blog-section .blog-sidebar-card .blog-sidebar-photo {
    height: 90px;
    width: 90px;
  }
  .blog-section .blog-sidebar-card .blog-sidebar-link-name {
    font-size: 2rem;
  }
  .blog-section .blog-sidebar-card .blog-sidebar-link-info {
    font-size: 1.3rem;
  }
  .blog-section .blog-sidebar-card .blog-sidebar-text {
    font-size: 1.7rem;
  }
  .blog-section .blog-sidebar-card .blog-sidebar-btn {
    padding: 0.7em 1.2em;
    font-size: 1.55rem;
  }
  .blog-articles {
    padding: 6em 2em 3em;
  }
  .blog-articles .blog-title {
    font-size: 3.5rem;
    margin-bottom: 1em;
  }
  .footer-sec {
    padding: 5em 1em 2em;
  }
  .footer-sec .footer-sec-boxs {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .footer-sec .footer-sec-box {
    text-align: left;
    margin-top: 0em;
  }
  .footer-sec .footer-sec-box .footer-sec-title {
    font-size: 1.8rem;
  }
  .footer-sec .footer-sec-box .footer-sec-info {
    margin-top: 1em;
    font-size: 1.5rem;
  }
  .footer-sec .footer-sec-box .footer-sec-social-title {
    font-size: 1.7rem;
  }
  .footer-sec .footer-sec-box .footer-sec-social {
    width: 70%;
  }
  .footer-sec .footer-sec-box .footer-sec-social .footer-sec-social-item .footer-social-link {
    padding: 0.4em;
    font-size: 2.8rem;
  }
  .footer-sec .footer-sec-box .footer-sec-list .footer-sec-item {
    margin: 0.5em 0;
  }
  .footer-sec .footer-sec-box .footer-sec-list .footer-sec-item .footer-sec-link {
    font-size: 1.5rem;
  }
  .footer-sec .footer-sec-box-main {
    width: 45%;
    margin-bottom: 1.5em;
  }
  .footer-sec .footer-sec-box:last-of-type {
    margin-bottom: 0em;
  }
  .footer-sec .footer-bottom .footer-bottom-text {
    font-size: 1.5rem;
  }
  .footer-sec .footer-bottom .footer-bottom-text .footer-link-creator {
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) {
  .top-section {
    position: relative;
    background-color: #ffffff;
  }
  .top-section .navbar .navbar-container-mobile {
    display: none;
  }
  .top-section .navbar .navbar-container-desktop .company-name {
    font-size: 3.2rem;
  }
  .top-section .navbar .navbar-container-desktop .menu-desktop .menu-item {
    font-size: 1.85rem;
  }
  .top-section .navbar .navbar-container-desktop .company-number .company-number-link {
    font-size: 1.7rem;
  }
  .top-section .header-blog {
    padding: 6.5em 1.5em 2em;
  }
  .top-section .header-blog .header-text {
    margin: 6.5em auto 2em;
    width: 80%;
  }
  .top-section .header-blog .blog-header-category-link {
    font-size: 1.3rem;
  }
  .top-section .header-blog .header-title {
    font-size: 5.2rem;
    margin: 0.3em 0 0.3em;
  }
  .top-section .header-blog .header-title .black-text {
    font-size: 4rem;
  }
  .top-section .header-blog .blog-header-text {
    font-size: 2.2rem;
  }
  .top-section .header-blog .blog-header-meta {
    width: 42%;
    font-size: 1.4rem;
  }
  .top-section .header-blog .header-links {
    width: 38%;
    margin: 2em auto 0.5em;
  }
  .top-section .header-blog .header-links .header-link {
    margin: 1em 0.5em;
    font-size: 1.6rem;
    padding: 0.9em 2em;
  }
  .top-section .header-blog .blog-header-img .blog-header-photo-desktop {
    max-width: 850px;
  }
  .blog-section {
    padding: 6em 4em 2em;
  }
  .blog-section .wrapper {
    max-width: 1000px;
  }
  .blog-section .blog-toc .blog-toc-title {
    font-size: 2.5rem;
  }
  .blog-section .blog-toc .blog-toc-link {
    font-size: 1.85rem;
  }
  .blog-section .blog-article-h2 {
    font-size: 3rem;
    width: 80%;
  }
  .blog-section .blog-article-text-main {
    font-size: 2rem;
  }
  .blog-section .blog-article-text {
    font-size: 1.85rem;
    width: 85%;
  }
  .blog-section .blog-article-list {
    font-size: 1.75rem;
    width: 85%;
  }
  .blog-section .blog-phrase-row {
    margin: 0.5em 0;
  }
  .blog-section .blog-phrase-col {
    font-size: 1.85rem;
  }
  .blog-section .blog-article-answer {
    width: 80%;
    font-size: 1.9rem;
  }
  .blog-section .blog-sidebar-card {
    width: 65%;
    margin: 3.5em auto 1em;
    padding: 3.5em 2.5em 3em;
  }
  .blog-section .blog-sidebar-card .blog-sidebar-photo {
    height: 95px;
    width: 95px;
  }
  .blog-section .blog-sidebar-card .blog-sidebar-link-name {
    font-size: 2.2rem;
  }
  .blog-section .blog-sidebar-card .blog-sidebar-link-info {
    font-size: 1.4rem;
  }
  .blog-section .blog-sidebar-card .blog-sidebar-text {
    font-size: 1.85rem;
  }
  .blog-section .blog-sidebar-card .blog-sidebar-btn {
    padding: 0.8em 1.5em;
    font-size: 1.6rem;
  }
  .blog-articles {
    padding: 6em 2em 4em;
  }
  .blog-articles .blog-title {
    font-size: 4.2rem;
    margin-bottom: 1.5em;
  }
  .footer-sec {
    padding: 5em 1em 2em;
  }
  .footer-sec .footer-sec-box .footer-sec-title {
    font-size: 2rem;
  }
  .footer-sec .footer-sec-box .footer-sec-info {
    font-size: 1.65rem;
  }
  .footer-sec .footer-sec-box .footer-sec-social-title {
    font-size: 1.85rem;
  }
  .footer-sec .footer-sec-box .footer-sec-social {
    width: 65%;
  }
  .footer-sec .footer-sec-box .footer-sec-social .footer-sec-social-item {
    margin-top: 0.5em;
  }
  .footer-sec .footer-sec-box .footer-sec-social .footer-sec-social-item .footer-social-link {
    padding: 0.4em 0.45em;
    font-size: 2.5rem;
  }
  .footer-sec .footer-sec-box .footer-sec-list .footer-sec-item {
    margin: 0.5em 0;
  }
  .footer-sec .footer-sec-box .footer-sec-list .footer-sec-item .footer-sec-link {
    font-size: 1.65rem;
  }
  .footer-sec .footer-sec-box-main {
    width: 42%;
    margin-bottom: 2.5em;
  }
  .footer-sec .footer-bottom .footer-bottom-text {
    font-size: 1.55rem;
  }
  .footer-sec .footer-bottom .footer-bottom-text .footer-link-creator {
    font-size: 1.6rem;
  }
}/*# sourceMappingURL=blog.css.map */